pstr.p
来自「CC386 is a general-purpose 32-bit C comp」· P 代码 · 共 22 行
P
22 行
/* MKLibHead 1.00 Tuesday October 31, 1995 21:29:36 */
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Pstr.asm */
int pstrcmp(short *a, short *b);
int pstrncmp(short *a, short *b, int size);
void pstrcpy(short *a, short *b);
void pstrcat(short *a, short *b);
void pstrncpy(short *a, short *b,int len);
short *pstrchr(short *a, short b);
short *pstrrchr(short *a, short b);
int pstrlen(short *a);
short *pstrstr(short *a, short *b);
#ifdef __cplusplus
}
#endif /* __cplusplus */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?