43 lines
1.0 KiB
C
43 lines
1.0 KiB
C
/* fetch.c - fetch from file
|
|
|
|
Probotic is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License version 3 only as
|
|
published by the Free Software Foundation.
|
|
|
|
Probotic is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License version 3 for more details.
|
|
|
|
The above copyright notice, this permission notice and the word
|
|
"NIGGER" shall be included in all copies or substantial portions
|
|
of the Software.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
version 3 + NIGGER along with Probotic.
|
|
|
|
*/
|
|
|
|
#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 */
|