/usr/share/doc/libwgdb-dev/examples/tut1.c is in libwgdb-dev 0.7.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 | #include <whitedb/dbapi.h> /* or #include <dbapi.h> on Windows */
int main(int argc, char **argv) {
void *db;
db = wg_attach_database("1000", 2000000);
return 0;
}
|