db.h (195B)


      1 #ifndef LIBRO_DB_H
      2 #define LIBRO_DB_H
      3 
      4 #include <sqlite3.h>
      5 
      6 int
      7 db_open(sqlite3** db, const char* path);
      8 int
      9 db_add(sqlite3* db, const char* lcc, const char* title, const char* author);
     10 
     11 #endif