SW006013 Microchip Technology, SW006013 Datasheet - Page 118

MPLAB C Compiler For DsPIC DSCs

SW006013

Manufacturer Part Number
SW006013
Description
MPLAB C Compiler For DsPIC DSCs
Manufacturer
Microchip Technology
Series
DsPIC30F/33Fr
Type
MPLAB® C Compilerr
Datasheet

Specifications of SW006013

Supported Families
DsPIC30F, DsPIC33F
Core Architecture
DsPIC
Kit Contents
Software And Docs
Mcu Supported Families
DsPIC30F And DsPIC33F
Tool Function
Compiler
Tool Type
Compiler
Processor Series
dsPIC
Lead Free Status / RoHS Status
na
For Use With/related Products
dSPIC DSCs
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 SW006013