blob: a18996d5f548128c3fc79b73a1156fb5eb16cccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef XDBMS_H
#define XDBMS_H
// init: intialize an XDBMS DB
int xdb_init(char *filename);
// exec: execute a statement on an XDBMS DB
char *exec(char *stmt);
// close: close an XDBMS DB
int close();
#endif
|