?? getln.c
字號:
#include "substdio.h"#include "byte.h"#include "stralloc.h"#include "getln.h"int getln(ss,sa,match,sep)register substdio *ss;register stralloc *sa;int *match;int sep;{ char *cont; unsigned int clen; if (getln2(ss,sa,&cont,&clen,sep) == -1) return -1; if (!clen) { *match = 0; return 0; } if (!stralloc_catb(sa,cont,clen)) return -1; *match = 1; return 0;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -