summaryrefslogtreecommitdiff
path: root/captcha.h
diff options
context:
space:
mode:
Diffstat (limited to 'captcha.h')
-rw-r--r--captcha.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/captcha.h b/captcha.h
new file mode 100644
index 0000000..d294955
--- /dev/null
+++ b/captcha.h
@@ -0,0 +1,18 @@
+#ifndef __MICROBBS_CAPTCHA_H
+#define __MICROBBS_CAPTCHA_H
+
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "kconfig.h"
+
+//ask question if you are bot or no. In 99% cases should protect from random
+//bots.
+// Return:
+// 0 - test not passed
+// 1 - test passed
+int captcha_test1();
+
+
+
+#endif \ No newline at end of file