csnake/include/input.h

17 lines
223 B
C

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