SW006013 Microchip Technology, SW006013 Datasheet - Page 129

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
© 2008 Microchip Technology Inc.
strcspn (Continued)
strerror
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Example:
strlen
Description:
Include:
Prototype:
Argument:
Return Value:
Remarks:
Explanation:
In the first result, e is in s2 so it stops counting after h.
In the second result, a is in s2.
In the third result, none of the characters of s1 are in s2 so all charac-
ters are counted.
Gets an internal error message.
<string.h>
char *strerror(int errcode);
errcode
Returns a pointer to an internal error message string corresponding to
the specified error code errcode.
The array pointed to by strerror may be overwritten by a subse-
quent call to this function.
#include <stdio.h>
#include <string.h> /* for strerror
#include <errno.h>
int main(void)
{
}
Output:
Cannot open samp.fil: file open error
Finds the length of a string.
<string.h>
size_t strlen(const char *s);
s
Returns the length of a string.
This function determines the length of the string, not including the ter-
minating null character.
FILE *myfile;
if ((myfile = fopen("samp.fil", "r+")) == NULL)
else
fclose(myfile);
printf("Cannot open samp.fil: %s\n",
printf("Success opening samp.fil\n");
number of the error code
the string
strerror(errno));
/* for fopen, fclose, */
/* printf, FILE, NULL */
/* for errno
DS51456E-page 125
*/
*/

Related parts for SW006013