From 77878abe90a3bec0055faf6bd6e4871cc6f1a474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Tue, 14 Oct 2014 00:24:47 +0200 Subject: Renaming continued --- tests/04flags.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'tests/04flags.c') diff --git a/tests/04flags.c b/tests/04flags.c index eb6e20b..00e786d 100644 --- a/tests/04flags.c +++ b/tests/04flags.c @@ -1,40 +1,40 @@ #include -#include "../termkey.h" +#include "../termo.h" #include "taplib.h" int main (int argc, char *argv[]) { - termkey_t *tk; - termkey_key_t key; + termo_t *tk; + termo_key_t key; plan_tests (8); - tk = termkey_new_abstract ("vt100", NULL, 0); + tk = termo_new_abstract ("vt100", NULL, 0); - termkey_push_bytes (tk, " ", 1); + termo_push_bytes (tk, " ", 1); - is_int (termkey_getkey (tk, &key), TERMKEY_RES_KEY, + is_int (termo_getkey (tk, &key), TERMO_RES_KEY, "getkey yields RES_KEY after space"); - is_int (key.type, TERMKEY_TYPE_KEY, "key.type after space"); + is_int (key.type, TERMO_TYPE_KEY, "key.type after space"); is_int (key.code.codepoint, ' ', "key.code.codepoint after space"); is_int (key.modifiers, 0, "key.modifiers after space"); - termkey_set_flags (tk, TERMKEY_FLAG_SPACESYMBOL); + termo_set_flags (tk, TERMO_FLAG_SPACESYMBOL); - termkey_push_bytes (tk, " ", 1); + termo_push_bytes (tk, " ", 1); - is_int (termkey_getkey (tk, &key), TERMKEY_RES_KEY, + is_int (termo_getkey (tk, &key), TERMO_RES_KEY, "getkey yields RES_KEY after space"); - is_int (key.type, TERMKEY_TYPE_KEYSYM, + is_int (key.type, TERMO_TYPE_KEYSYM, "key.type after space with FLAG_SPACESYMBOL"); - is_int (key.code.sym, TERMKEY_SYM_SPACE, + is_int (key.code.sym, TERMO_SYM_SPACE, "key.code.sym after space with FLAG_SPACESYMBOL"); is_int (key.modifiers, 0, "key.modifiers after space with FLAG_SPACESYMBOL"); - termkey_destroy (tk); + termo_destroy (tk); return exit_status (); } -- cgit v1.2.3