w3m

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/w3m.git/
Log | Files | Refs | README

parsetag.h (352B)


      1 /* $Id$ */
      2 #ifndef PARSETAG_H
      3 #define PARSETAG_H
      4 struct parsed_tagarg {
      5     char *arg;
      6     char *value;
      7     struct parsed_tagarg *next;
      8 };
      9 
     10 extern char *tag_get_value(struct parsed_tagarg *t, char *arg);
     11 extern int tag_exists(struct parsed_tagarg *t, char *arg);
     12 extern struct parsed_tagarg *cgistr2tagarg(char *cgistr);
     13 #endif				/* not PARSETAG_H */