blob: d2949552aa6241aeb2bbbd65473f16efb5405763 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|