forked from nakidai/csnake
15 lines
190 B
C
15 lines
190 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__ */
|