blob: ab583e5430e0c35da5c0ee603f95e05d17ce1508 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef INPUT_FIELD_H_
#define INPUT_FIELD_H_
#include "state.h"
// returns true if the key should repeat
bool type_key(client_state* state, xkb_keysym_t keysym);
void filter_items(client_state* state);
void submit_line(client_state* state);
#endif
|