aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjluehrs2 <jluehrs2@uiuc.edu>2008-03-17 23:11:57 -0500
committerjluehrs2 <jluehrs2@uiuc.edu>2008-03-17 23:11:57 -0500
commite459f949963207928d487d0b7ee9fa766e58368e (patch)
treee08169481807626fa125f5a0a4097759bc70e0b9
parente28454e11ec422924595046a2aac225f5d261670 (diff)
downloadluancurses-e459f949963207928d487d0b7ee9fa766e58368e.tar.gz
luancurses-e459f949963207928d487d0b7ee9fa766e58368e.zip
oops, need declarations too
-rw-r--r--src/strings.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/strings.h b/src/strings.h
index 757c686..98d145d 100644
--- a/src/strings.h
+++ b/src/strings.h
@@ -6,13 +6,16 @@ typedef void (*table_cb)(const char* str, int tag, void* data);
int get_color_enum(const char* str);
int get_mode_enum(const char* str);
int get_key_enum(const char* str);
+int get_char_enum(const char* str);
const char* get_color_str(int tag);
const char* get_mode_str(int tag);
const char* get_key_str(int tag);
+const char* get_char_str(int tag);
void each_color(table_cb cb, void* data);
void each_mode(table_cb cb, void* data);
void each_key(table_cb cb, void* data);
+void each_char(table_cb cb, void* data);
#endif