rindex.c

来自「标准c库代码,可以应用于各个系统提供了大量的基本函数」· C语言 代码 · 共 45 行

C
45
字号
/*FUNCTION	<<rindex>>---reverse search for character in stringINDEX	rindexANSI_SYNOPSIS	#include <string.h>	char * rindex(const char *<[string]>, int <[c]>);TRAD_SYNOPSIS	#include <string.h>	char * rindex(<[string]>, <[c]>);	char *<[string]>;	int *<[c]>;DESCRIPTION	This function finds the last occurence of <[c]> (converted to	a char) in the string pointed to by <[string]> (including the	terminating null character).	This function is identical to <<strrchr>>.RETURNS	Returns a pointer to the located character, or a null pointer	if <[c]> does not occur in <[string]>.PORTABILITY<<rindex>> requires no supporting OS subroutines.QUICKREF	rindex - pure*/#include <string.h>char *_DEFUN (rindex, (s, c),	_CONST char *s _AND	int c){  return strrchr (s, c);}

⌨️ 快捷键说明

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