Last change
on this file since 4400 was
2315,
checked in by Sam Hocevar, 14 years ago
|
- Update build system and licensing terms to 2008 standards.
|
-
Property svn:keywords set to
Id
|
File size:
689 bytes
|
Line | |
---|
1 | /* |
---|
2 | * easter-eggs.c: captcha decoder for well known pictures |
---|
3 | * $Id: easter-eggs.c 2315 2008-04-26 07:25:03Z sam $ |
---|
4 | * |
---|
5 | * Copyright: (c) 2005 Sam Hocevar <sam@zoy.org> |
---|
6 | * This program is free software. It comes without any warranty, to |
---|
7 | * the extent permitted by applicable law. You can redistribute it |
---|
8 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
9 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
10 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
11 | */ |
---|
12 | |
---|
13 | #include <stdio.h> |
---|
14 | #include <stdlib.h> |
---|
15 | #include <string.h> |
---|
16 | |
---|
17 | #include "config.h" |
---|
18 | #include "common.h" |
---|
19 | |
---|
20 | /* Main function */ |
---|
21 | char *decode_easter_eggs(struct image *img) |
---|
22 | { |
---|
23 | char *result = strdup("OMFG GOATSERY"); |
---|
24 | |
---|
25 | return result; |
---|
26 | } |
---|
27 | |
---|
Note: See
TracBrowser
for help on using the repository browser.