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

📄 index.c

📁 cygwin, 著名的在win32下模拟unix操作系统的东东
💻 C
字号:
/*FUNCTION	<<index>>---search for character in stringINDEX	indexANSI_SYNOPSIS	#include <string.h>	char * index(const char *<[string]>, int <[c]>);TRAD_SYNOPSIS	#include <string.h>	char * index(<[string]>, <[c]>);	char *<[string]>;	int *<[c]>;DESCRIPTION	This function finds the first occurence of <[c]> (converted to	a char) in the string pointed to by <[string]> (including the	terminating null character).	This function is identical to <<strchr>>.RETURNS	Returns a pointer to the located character, or a null pointer	if <[c]> does not occur in <[string]>.PORTABILITY<<index>> requires no supporting OS subroutines.QUICKREF	index - pure*/#include <string.h>char *_DEFUN (index, (s, c),	_CONST char *s _AND	int c){  return strchr (s, c);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -