⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 strstr.h

📁 `smith.motif.tar.Z includes the source code for the book "Designing X clients with Xt/Motif," by Je
💻 H
字号:
/**** 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -