#include "captcha.h" #ifdef CONFIG_CAPTCHA int captcha_test1() { int ret = 0; char s[2]; printf("Are you bot?(y/n):\n"); fgets(s,2,stdin); if ( s[0] == 'n' || s[0] == 'N') ret = 1; return ret; } #endif