File: sqlite.c

package info (click to toggle)
sqliteodbc 0.91-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 6,412 kB
  • sloc: ansic: 34,510; sh: 11,960; makefile: 582; sql: 313
file content (11 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Use sqlite_main() entry point in sqliteodbc.dll/sqliteodbcu.dll
 * to provide an SQLite shell, compile with
 *
 *  tcc -o sqlite.exe -lsqlite sqlite.c
 *  tcc -o sqliteu.exe -lsqliteu sqlite.c
 */

extern int sqlite_main(int, char **);

int main(int argc, char **argv) { return sqlite_main(argc, argv); }