plan9port

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

msgdb.h (196B)


      1 typedef struct Msgdb Msgdb;
      2 
      3 Msgdb *mdopen(char*, int);
      4 long mdget(Msgdb*, char*);
      5 void mdput(Msgdb*, char*, long);
      6 
      7 void mdenum(Msgdb*);
      8 int mdnext(Msgdb*, char**, long*);
      9 
     10 void mdclose(Msgdb*);