SW500008 Microchip Technology, SW500008 Datasheet - Page 288

PICC-18 STD

SW500008

Manufacturer Part Number
SW500008
Description
PICC-18 STD
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC18r
Datasheets

Specifications of SW500008

Supported Families
PIC18
Core Architecture
PIC
Software Edition
Standard
Kit Contents
Software And Docs
Mcu Supported Families
PIC18
Tool Function
Compiler
Tool Type
Compiler
Lead Free Status / RoHS Status
Not applicable / RoHS Compliant
For Use With/related Products
PIC18 Series
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
015
778-1001
778-1001
STRRCHR, STRRICHR
Synopsis
Description
The strrchr() function is similar to the strchr() function, but searches from the end of the string
rather than the beginning, i.e. it locates the last occurrence of the character c in the null terminated
string s. If successful it returns a pointer to that occurrence, otherwise it returns NULL.
Example
See Also
strchr(), strlen(), strcmp(), strcpy(), strcat()
Return Value
A pointer to the character, or NULL if none is found.
274
The strrichr() function is the case-insensitive version of this function.
#include <string.h>
char * strrchr (char * s, int c)
char * strrichr (char * s, int c)
#include <stdio.h>
#include <string.h>
void
main (void)
{
}
char * str = "This is a string.";
while(str != NULL) {
}
printf( "%s\n", str );
str = strrchr( str+1, ’s’);
Library Functions

Related parts for SW500008