diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/proto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/proto.h b/include/proto.h index ab551ae6..2088b51f 100644 --- a/include/proto.h +++ b/include/proto.h @@ -478,6 +478,7 @@ char *genpasswd(char *pw); void mouts(int y, int x, char *str); void move(int y, int x); void outs(const char *str); +void outs_n(const char *str, int n); void clrtoeol(void); void clear(void); void refresh(void); @@ -491,7 +492,8 @@ void redoln(void); void clrtoline(int line); void standout(void); void standend(void); -int edit_outs(const char *text); +void edit_outs(const char *text); +void edit_outs_n(const char *text, int n); void outch(unsigned char c); void rscroll(void); void scroll(void); |