diff options
Diffstat (limited to 'programs/c-ports/subeditor.h')
-rw-r--r-- | programs/c-ports/subeditor.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/programs/c-ports/subeditor.h b/programs/c-ports/subeditor.h index ee5536e..ddb8947 100644 --- a/programs/c-ports/subeditor.h +++ b/programs/c-ports/subeditor.h @@ -2,10 +2,13 @@ #include <stdint.h> #include <stdio.h> #include <string.h> +#include <curses.h> #define debug 0 #define debug_cmd_buf 0 +extern WINDOW *scr; + extern char *buffer; extern char *cmd_buf; @@ -33,5 +36,5 @@ extern uint8_t scr_end; extern uint8_t wrapped; extern void print_str(const char *str); -int16_t str_cmp(const char *s0, uint16_t i, const char *s1, uint16_t j); -extern void subasm(); +extern int str_cmp(const char *s0, const char *s1); +extern uint8_t subasm(); |