summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorvictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-03-12 17:39:16 +0800
committervictor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-03-12 17:39:16 +0800
commitf10d92d96581666a7ac2898168f0cc6f7558f32c (patch)
treeb0d98f8554c5113bc244dc7ced2ba5f7627809f7 /docs
parent786d63f533b3cd2ff6cda0ef1797fdace352561c (diff)
downloadpttbbs-f10d92d96581666a7ac2898168f0cc6f7558f32c.tar
pttbbs-f10d92d96581666a7ac2898168f0cc6f7558f32c.tar.gz
pttbbs-f10d92d96581666a7ac2898168f0cc6f7558f32c.tar.bz2
pttbbs-f10d92d96581666a7ac2898168f0cc6f7558f32c.tar.lz
pttbbs-f10d92d96581666a7ac2898168f0cc6f7558f32c.tar.xz
pttbbs-f10d92d96581666a7ac2898168f0cc6f7558f32c.tar.zst
pttbbs-f10d92d96581666a7ac2898168f0cc6f7558f32c.zip
merge from victor.symbolic branch
symbolic link to board rename something might cause misunderstanding git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1589 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'docs')
-rw-r--r--docs/keeploc_t.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/keeploc_t.txt b/docs/keeploc_t.txt
new file mode 100644
index 00000000..fc98a2db
--- /dev/null
+++ b/docs/keeploc_t.txt
@@ -0,0 +1,22 @@
+typedef struct keeploc_t {
+ char *key;
+ int top_ln;
+ int crs_ln;
+ struct keeploc_t *next;
+} keeploc_t;
+
+keeploc_t 是一個 linked list,紀錄不同的 key(字串)所對應到的游標位置。
+
+
+
+keeploc_t *getkeep(char *s, int def_topline, int def_cursline);
+
+ 給定一個字串 s 當 key(不存在則新增),傳回對應的 keeploc_t。
+
+ 1.如果 def_cursline >= 0,表示要從目前的 keeplist 中找出 key s 所對應到的 keeploc_t 並傳回。
+ 如果該筆記錄的 curse position 不合法,則會先設為 1。沒找到則依下面的動作
+ 新增。
+
+ 2.如果 def_cursline < 0,代表要新增一筆記錄。
+ 將 def_cursline 取絕對值。然後把參數中的 def_* 填入新記錄中。
+ 傳回這筆新記錄。