SW500007 Microchip Technology, SW500007 Datasheet - Page 288

PICC-18 PRO

SW500007

Manufacturer Part Number
SW500007
Description
PICC-18 PRO
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC18r
Datasheets

Specifications of SW500007

Supported Families
PIC18
Core Architecture
PIC
Software Edition
Professional
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
015P
778-1002
778-1002
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 SW500007