25 lines
311 B
C
25 lines
311 B
C
/* fetch.c - fetch from file */
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
#include <sqlite3.h>
|
|
|
|
#ifdef LOCAL_PROBOTIC_MAIN
|
|
|
|
int
|
|
main (int const argc,
|
|
char const * const * const argv) /* yeah. */
|
|
{
|
|
if (argc == 2)
|
|
{
|
|
}
|
|
else
|
|
{
|
|
/* usage(); */
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
#endif /* LOCAL_PROBOTIC_MAIN */
|