Initial revision

This commit is contained in:
Akinori Ito
2001-11-08 05:14:08 +00:00
commit 68a07bf03b
305 changed files with 104639 additions and 0 deletions

12
parsetag.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef PARSETAG_H
#define PARSETAG_H
struct parsed_tagarg {
char *arg;
char *value;
struct parsed_tagarg *next;
};
extern char *tag_get_value(struct parsed_tagarg *t, char *arg);
extern int tag_exists(struct parsed_tagarg *t, char *arg);
extern struct parsed_tagarg *cgistr2tagarg(char *cgistr);
#endif /* not PARSETAG_H */