Blob


1 typedef struct Addr Addr;
2 struct Addr
3 {
4 Addr *next;
5 char *val;
6 };
8 extern Addr* readaddrs(char*, Addr*);