/* * easter-eggs.c: captcha decoder for well known pictures * $Id$ * * Copyright: (c) 2005 Sam Hocevar * This program is free software; you can redistribute it and/or * modify it under the terms of the Do What The Fuck You Want To * Public License as published by Banlu Kemiyatorn. See * http://sam.zoy.org/projects/COPYING.WTFPL for more details. */ #include #include #include #include "config.h" #include "common.h" /* Main function */ char *decode_easter_eggs(struct image *img) { char *result = strdup("OMFG GOATSERY"); return result; }