This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
probotic/src/fetch.c

43 lines
1.0 KiB
C
Raw Normal View History

2023-08-02 11:58:18 -04:00
/* 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.
*/
2023-08-02 06:57:45 -04:00
#include <stdio.h>
2023-08-02 09:08:22 -04:00
#include <unistd.h>
#include <sqlite3.h>
2023-08-02 06:57:45 -04:00
#ifdef LOCAL_PROBOTIC_MAIN
int
2023-08-02 09:08:22 -04:00
main (int const argc,
char const * const * const argv) /* yeah. */
2023-08-02 06:57:45 -04:00
{
2023-08-02 09:08:22 -04:00
if (argc == 2)
2023-08-02 06:57:45 -04:00
{
}
else
{
/* usage(); */
return 1;
}
}
#endif /* LOCAL_PROBOTIC_MAIN */