summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorvictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-02-05 17:52:37 +0800
committervictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-02-05 17:52:37 +0800
commit6f1f6cff95aced193cf52c1324e4d485ce83498c (patch)
tree94e668042ceb6150baf5b83c7f7dd4f0d16a2287 /include
parent6ca800ae0a303124ffd12ca4a712b6cdb01e69e7 (diff)
downloadpttbbs-6f1f6cff95aced193cf52c1324e4d485ce83498c.tar
pttbbs-6f1f6cff95aced193cf52c1324e4d485ce83498c.tar.gz
pttbbs-6f1f6cff95aced193cf52c1324e4d485ce83498c.tar.bz2
pttbbs-6f1f6cff95aced193cf52c1324e4d485ce83498c.tar.lz
pttbbs-6f1f6cff95aced193cf52c1324e4d485ce83498c.tar.xz
pttbbs-6f1f6cff95aced193cf52c1324e4d485ce83498c.tar.zst
pttbbs-6f1f6cff95aced193cf52c1324e4d485ce83498c.zip
remove branch victor.solarisvictor.edit
add a new branch victor.edit (already lots of work in it) * refactoring, refactoring, and refactoring * documentation, documentation, and documentation * bug hunting 1.undelete_line segfault 2.string shifting segfault * behavior changing 1.cursor_to_prev_word (more user friendly) 2.disable Ctrl('_') feature, which is expensive (513 bytes per vedit) but not well-known. (I'm still observe people's behavior, but hopefully it's going to be removed.) * less memory usage, and fixing possible memory leak. git-svn-id: http://opensvn.csie.org/pttbbs/branches/victor.edit@2466 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r--include/proto.h4
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);