#ifndef _INPUT_H #define _INPUT_H #ifdef __cplusplus extern "C" { #endif #include #include typedef uint16_t input_t; extern const size_t INPUT_SIZE; extern const input_t INPUT[]; struct ipair { input_t prev; input_t next; }; #ifdef __cplusplus } #endif #endif /* _INPUT_H */