From d1f529f46f957c78a3db73b42c2fcd2d3c9f8a34 Mon Sep 17 00:00:00 2001 From: rsc Date: Sat, 29 Oct 2005 16:26:32 +0000 Subject: Thanks to John Cummings. --- src/cmd/upas/bayes/msgdb.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/cmd/upas/bayes/msgdb.h (limited to 'src/cmd/upas/bayes/msgdb.h') diff --git a/src/cmd/upas/bayes/msgdb.h b/src/cmd/upas/bayes/msgdb.h new file mode 100644 index 00000000..54823d72 --- /dev/null +++ b/src/cmd/upas/bayes/msgdb.h @@ -0,0 +1,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*); -- cgit v1.2.3