taiga/src/taiga.h

22 lines
337 B
C
Raw Normal View History

2026-03-01 20:48:09 +09:00
#ifndef __TAIGA_H__
#define __TAIGA_H__
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
2026-03-01 22:48:04 +09:00
#ifdef _WIN32
#include <direct.h>
#else
#include <unistd.h>
#endif
2026-03-01 20:48:09 +09:00
2026-03-01 22:43:41 +09:00
/* site.c */
2026-03-01 20:54:30 +09:00
int action_site(int argc, char** argv);
2026-03-01 22:43:41 +09:00
/* help.c */
int action_help(int argc, char** argv);
/* seed.c */
int action_seed(int argc, char** argv);
2026-03-01 20:48:09 +09:00
#endif