File: sqlite3.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 (10 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
/*
 * Use sqlite3_main() entry point in sqlite3odbc.dll
 * to provide an SQLite3 shell, compile with
 *
 *  tcc -o sqlite3.exe -lsqlite3 sqlite3.c
 */

extern int sqlite3_main(int, char **);

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