summaryrefslogtreecommitdiff
path: root/captcha.h
blob: 4228625cc95a8cafd1d61d64db6c33788f61e4c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef CAPTCHA_H
#define CAPTCHA_H

#include <stdio.h>
#include <stdlib.h>
#include <err.h>

#include <time.h> // used for rand()
#include <string.h>

#include "gd.h"
#include "file_reader.h"


int captcha_print(char* text);

#endif
..