diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-02-10 15:49:44 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-02-10 15:49:44 +0800 |
commit | 2ada0f2d94034a9716f0061ba7760e82f90f268b (patch) | |
tree | ba39083e0d86887707552b0d98fc0a6c47d4cb39 /include | |
parent | 790ef96d3e3319f448800689eb40b62aaad31a73 (diff) | |
download | pttbbs-2ada0f2d94034a9716f0061ba7760e82f90f268b.tar pttbbs-2ada0f2d94034a9716f0061ba7760e82f90f268b.tar.gz pttbbs-2ada0f2d94034a9716f0061ba7760e82f90f268b.tar.bz2 pttbbs-2ada0f2d94034a9716f0061ba7760e82f90f268b.tar.lz pttbbs-2ada0f2d94034a9716f0061ba7760e82f90f268b.tar.xz pttbbs-2ada0f2d94034a9716f0061ba7760e82f90f268b.tar.zst pttbbs-2ada0f2d94034a9716f0061ba7760e82f90f268b.zip |
merge from branches/victor.edit
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2488 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
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 738c9f0f..df2c372b 100644 --- a/include/proto.h +++ b/include/proto.h @@ -490,6 +490,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); @@ -503,7 +504,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); |