index.c

来自「KPIT GNU Tools is a set of GNU developme」· C语言 代码 · 共 45 行

C
45
字号
/*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 + =
减小字号Ctrl + -
显示快捷键?