URI:
       tdat.h - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       tdat.h (107B)
       ---
            1 typedef struct Addr Addr;
            2 struct Addr
            3 {
            4         Addr *next;
            5         char *val;
            6 };
            7 
            8 extern Addr* readaddrs(char*, Addr*);