aboutsummaryrefslogtreecommitdiff
path: root/src/edbox.h
blob: ad70cc686861a40b0503b7abf152246b8446f202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "addrs.h"

/**** public API ****/

#define EDBOX_SIZE 160

void edbox_clear(void);
void edbox_show(void);
void edbox_hide(void);
void edbox_putc(char c);
void edbox_keystroke(void);

/* called when the user presses Enter */
extern void (*edbox_callback)(void);