~ubuntu-branches/debian/sid/w3m/sid

1
2
3
4
5
6
7
8
9
10
11
12
13
/* $Id: parsetag.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
#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 */