SW006014 Microchip Technology, SW006014 Datasheet - Page 129

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
© 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 SW006014