summaryrefslogtreecommitdiff
path: root/src/db/sqlite3/db.h
blob: c6279f94fc56f92843cb092504765b5d4a81b021 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef DB_H
#define DB_H

/* initialize data.db file
 * return values:
 *   0 -> success
 *   1 -> failure: could not create directory
 *   2 -> failure: could not create file
 */
int db_init();

#endif