SW500009 Microchip Technology, SW500009 Datasheet - Page 272

HI-TECH FOR DSPIC/PIC24

SW500009

Manufacturer Part Number
SW500009
Description
HI-TECH FOR DSPIC/PIC24
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC24 & DsPICr
Datasheet

Specifications of SW500009

Supported Families
PIC24
Core Architecture
PIC, DsPIC
Software Edition
Standard
Kit Contents
Software And Docs
Tool Type
Compiler
Mcu Supported Families
PIC24 MCUs And DsPIC DSCs
Lead Free Status / RoHS Status
Not applicable / RoHS Compliant
For Use With/related Products
DSPIC3X/PIC24
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
025
778-1003
778-1003
STRPBRK
Synopsis
Description
The strpbrk() function returns a pointer to the first occurrence in string s1 of any character from
string s2, or a null pointer if no character from s2 exists in s1.
Example
Return Value
Pointer to the first matching character, or NULL if no character found.
258
#include <string.h>
/* For baseline and midrange processors */
const char * strpbrk (const char * s1, const char * s2)
/* For high-end processors */
char * strpbrk (const char * s1, const char * s2)
#include <stdio.h>
#include <string.h>
void
main (void)
{
}
char * str = "This is a string.";
while(str != NULL) {
}
printf( "%s\n", str );
str = strpbrk( str+1, "aeiou" );
Library Functions

Related parts for SW500009