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

15 lines
191 B
C

#ifndef __INPUT_H__
#define __INPUT_H__
#include <stdbool.h>
typedef struct input_args_t
{
char *out;
bool *alive;
} InputArgs;
void *input(void *vargp);
#endif /* __INPUT_H__ */