SW500010 Microchip Technology, SW500010 Datasheet - Page 324

HI-TECH C PRO FOR PIC10/12/16

SW500010

Manufacturer Part Number
SW500010
Description
HI-TECH C PRO FOR PIC10/12/16
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC10/12/16r
Datasheets

Specifications of SW500010

Supported Families
PIC10, PIC12, PIC16
Core Architecture
PIC
Software Edition
Professional
Kit Contents
Software And Docs
Mcu Supported Families
PIC10/12/16
Tool Type
Compiler
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC10, PIC12, PIC14, PIC16, PIC16E
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
019P
778-1006
778-1006
STRTOK
Synopsis
Description
A number of calls to strtok() breaks the string s1 (which consists of a sequence of zero or more text
tokens separated by one or more characters from the separator string s2) into its separate tokens.
token, or NULL if no tokens were found. The inter-token separator character is overwritten by a null
character, which terminates the current token.
from the end of the last token found, and again return a pointer to the first character of the next token,
or NULL if no further tokens were found.
Example
324
The first call must have the string s1. This call returns a pointer to the first character of the first
For subsequent calls to strtok(), s1 should be set to a null pointer. These calls start searching
#include <string.h>
/ * For baseline and midrange processors * /
char * strtok (char * s1, const char * s2)
/ * For high-end processors * /
far char * strtok (far char * s1, const char * s2)
#include <stdio.h>
#include <string.h>
void
main (void)
{
char * ptr;
char * buf = "This is a string of words.";
char * sep_tok = ".,?! ";
ptr = strtok(buf, sep_tok);
while(ptr != NULL) {
printf("%s\n", ptr);
Library Functions

Related parts for SW500010