forked from nakidai/csnake
1
0
Fork 0
csnake/include/input.h

15 lines
189 B
C
Raw Normal View History

2023-10-29 21:31:33 +03:00
#ifndef __INPUT_H__
#define __INPUT_H__
#include <stdbool.h>
typedef struct input_args_t
{
char *out;
bool *alive;
2023-10-29 22:35:37 +03:00
} InputArgs;
2023-10-29 21:31:33 +03:00
2023-10-30 02:51:46 +03:00
int input(void *vargp);
2023-10-29 21:31:33 +03:00
#endif /* __INPUT_H__ */