-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.h
48 lines (36 loc) · 902 Bytes
/
main.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef MAIN_H_INCLUDED
#define MAIN_H_INCLUDED
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <stdlib.h>
//#include "db.h"
#include "handle.h"
#include "functions.h"
#include "template_functions.h"
#include "global.h"
//#define DEBUG TRUE
#define TRUE 1
#define FALSE 0
//#define MAX_WORDS 40
//#define MAX_LETTERS 20
#define MAX_WORDS 80
#define MAX_LETTERS 80
// function list
//int tokenize(char[][100], char[][100], char);
//void xget_string(void);
//void parse(void);
/*
int isword(char*);
int is_nonsense_word(char*);
int isconsonant(char);
int isvowel(char);
void handle_help(void);
int tokenize(char*, char*, char);
//void separate_words(char* in, char* out[]);
int separate_words(char* in, char out[MAX_WORDS][MAX_LETTERS]);
int template_search(char*user, char*template2);
int check_gender_by_name(char*);
//int isvalidname(char*);
*/
#endif // MAIN_H_INCLUDED