?? string.h
字號:
/* string.h: String types */
/* $Id: string.h 2.1 1995/10/24 15:46:14 tsurace Release $ */
typedef struct cstr Cstr;
typedef struct string String;
typedef struct rstr Rstr;
typedef struct istr Istr;
/* Counted string */
struct cstr {
char *s; /* Text */
int l; /* Length */
};
/* Stretchybuffer */
struct string {
Cstr c; /* Contents */
int sz; /* Space allocated */
};
/* Keeps track of physical representation of strings */
struct rstr {
String str; /* Contents */
int refs; /* Number of istrs pointing to it */
};
/* Keeps track of interpreter copies of strings */
struct istr {
Rstr *rs; /* Physical copy */
int refs; /* Number of dframes pointing to it */
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -