public
Description: my blog as a CGI written in C
Homepage: http://alltom.com/
Clone URL: git://github.com/alltom/calltom.git
calltom / alltom.h
100644 8 lines (5 sloc) 0.168 kb
1
2
3
4
5
6
7
8
typedef struct Dict Dict;
 
Dict *get_query_dict(char *query_string);
void free_dict(Dict *d);
char *get_value(Dict *dictionary, char *key);
 
char *unencode(char *str);