diff options
author | FreeArtMan <dos21h@gmail.com> | 2015-03-24 20:16:29 +0900 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2015-03-24 20:16:29 +0900 |
commit | f1fb9827faec228246062f2cd8e38f0dd3338e3a (patch) | |
tree | 4b142676d0f7dbfb2decd2eb9886372d7c1fb34d /libterm/term.h | |
parent | c1e6c1341ace1f61569e6d1d0dbfb36cb192113c (diff) | |
download | microbbs-f1fb9827faec228246062f2cd8e38f0dd3338e3a.tar.gz microbbs-f1fb9827faec228246062f2cd8e38f0dd3338e3a.zip |
Added ini file support
Diffstat (limited to 'libterm/term.h')
-rw-r--r-- | libterm/term.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libterm/term.h b/libterm/term.h index 51af31d..878cda4 100644 --- a/libterm/term.h +++ b/libterm/term.h @@ -12,10 +12,13 @@ #include <sys/types.h> #include <sys/ioctl.h> #include <unistd.h> +#include <assert.h> #include "screen_modes.h" #include "debug.h" +#define ASSERT assert + enum TERM_KEY_ACTION { KEY_NULL = 0, /* NULL */ CTRL_A = 1, /* Ctrl+a */ |