cscvs to tla changeset 1
[onak.git] / getcgi.h
1 #ifndef __GETCGI_H_
2 #define __GETCGI_H_
3
4 /**
5  *      txt2html - Takes a string and converts it to HTML.
6  *      @string: The string to HTMLize.
7  *
8  *      Takes a string and escapes any HTML entities.
9  */
10 char *txt2html(const char *string);
11
12 char x2c(char *what); 
13 void unescape_url(char *url); 
14 char **getcgivars(int argc, char *argv[]);
15
16 #endif /* __GETCGI_H_ */