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
2023-08-02 09:14:55 -06:00

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 */