SW006014 Microchip Technology, SW006014 Datasheet - Page 118

C COMPILER MPLAB FOR PIC24 MCU

SW006014

Manufacturer Part Number
SW006014
Description
C COMPILER MPLAB FOR PIC24 MCU
Manufacturer
Microchip Technology
Type
MPLAB® C Compilerr
Series
PIC24r
Datasheet

Specifications of SW006014

Supported Families
PIC24
Core Architecture
PIC
Kit Contents
Software And Docs
Mcu Supported Families
PIC24
Tool Function
Compiler
Tool Type
Compiler
Processor Series
PIC24
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC24
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
2.15
DS51456E-page 114
<STRING.H> STRING FUNCTIONS
The header file
manipulate strings.
size_t
Description:
Include:
NULL
Description:
Include:
memchr
Description:
Include:
Prototype:
Arguments:
Return Value:
Remarks:
Example:
string.h
The type of the result of the sizeof operator.
<string.h>
The value of a null pointer constant.
<string.h>
Locates a character in a buffer.
<string.h>
void *memchr(const void *s, int c, size_t n);
s
c
n
Returns a pointer to the location of the match if successful; otherwise,
returns null.
memchr stops when it finds the first occurrence of c or after searching
n number of characters.
#include <string.h> /* for memchr, NULL */
#include <stdio.h>
int main(void)
{
if (ptr != NULL)
char buf1[50] = "What time is it?";
char ch1 = 'i', ch2 = 'y';
char *ptr;
int res;
printf("buf1 : %s\n\n", buf1);
ptr = memchr(buf1, ch1, 50);
{
}
else
res = ptr - buf1 + 1;
printf("%c found at position %d\n", ch1, res);
consists of types, macros and functions that provide tools to
printf("%c not found\n", ch1);
pointer to the buffer
character to search for
number of characters to check
/* for printf
© 2008 Microchip Technology Inc.
*/

Related parts for SW006014