10 lines
148 B
C
10 lines
148 B
C
|
|
#ifndef DATABASE_H
|
||
|
|
#define DATABASE_H
|
||
|
|
|
||
|
|
int db_init();
|
||
|
|
char* db_query(const char *query);
|
||
|
|
int db_insert(const char *value);
|
||
|
|
void db_close();
|
||
|
|
|
||
|
|
#endif
|