strstr.h
来自「`smith.motif.tar.Z includes the source c」· C头文件 代码 · 共 36 行
H
36 行
/**** strstr.h ****//********************************************************************This module provides forward and backward string search routines.********************************************************************/#ifndef _strstr_h#define _strstr_h#include <ctype.h>/*Constants:*/#define string_NO_MATCH -1#define string_INSENSITIVE -2#define string_SENSITIVE -3/*Public functions:*/extern int string_search();extern int string_search_reverse();extern int string_search_insensitive();extern int string_search_reverse_insensitive();#endif /* _strstr_h */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?