plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

dat.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*);