summaryrefslogtreecommitdiff
path: root/src/include/xdbms.h
blob: af7d1dcd263f4e3e2fd5da71e0c6a580b7590972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef XDBMS_H
#define XDBMS_H

// xdb_init: intialize an XDBMS DB
int xdb_init(char *filename);

// xdb_stmt: execute a statement on an XDBMS DB
char *xdb_stmt(char *stmt);

// xdb_close: close an XDBMS DB
void xdb_close(void);

#endif