Function (Path Standard C Header / string.h)

strrchr

char* strrchr(char *s, int __c);

Searches the string pointed to by the argument s for the position of the last occurrence of the character __c (an unsigned character)


Parameters

  char *s
    String

  int __c
    An unsigned character

函数 (属于 标准C头文件 / string.h)

strrchr

char* strrchr(char *s, int __c);

在参数 s 所指向的字符串中搜索最后一次出现字符 __c(一个无符号字符)的位置


参数

  char *s
    字符串

  int __c
    一个无符号字符