aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/upas/bayes/msgdb.h
blob: 54823d728e66a78405ad721f42eebc36a8c6dcc2 (plain)
1
2
3
4
5
6
7
8
9
10
typedef struct Msgdb Msgdb;

Msgdb *mdopen(char*, int);
long mdget(Msgdb*, char*);
void mdput(Msgdb*, char*, long);

void mdenum(Msgdb*);
int mdnext(Msgdb*, char**, long*);

void mdclose(Msgdb*);