summaryrefslogtreecommitdiffstats
path: root/src/cmd/upas/bayes/msgdb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/upas/bayes/msgdb.h')
-rw-r--r--src/cmd/upas/bayes/msgdb.h10
1 files changed, 10 insertions, 0 deletions
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*);