#ifndef _KEYBINPUT_H_ #define _KEYBINPUT_H_ struct __keybinput { char text[255]; short int curpos; short int len; char changed; } typedef _keybinput; extern void keybinput_new (_keybinput *ki); extern int keybinput_loop (_keybinput *ki, SDL_Event *event); #endif