summaryrefslogtreecommitdiff
path: root/captcha.h
blob: 2aa6475babef854a3eef12a6a3b7659edb399732 (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/file_reader.h"


int captcha_print(char* text);

#endif
..