00001 #ifdef __cplusplus 00002 extern "C" { 00003 #endif 00004 00005 struct Db { 00006 cdb *c; 00007 int fd; 00008 }; 00009 00010 Db *init_cdb(char *); 00011 int fetch(Db *,char *); 00012 int close_cdb(Db); 00013 00014 #ifdef __cplusplus 00015 } 00016 #endif
1.3.6-20040222