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

25 lines
311 B
C
Raw Normal View History

2023-08-02 06:57:45 -04:00
/* fetch.c - fetch from file */
#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 */