SW006013 Microchip Technology, SW006013 Datasheet - Page 56

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
DS51456E-page 52
ferror
Description:
Include:
Prototype:
Argument:
Return Value:
Example:
Tests if error indicator is set.
<stdio.h>
int ferror(FILE *stream);
stream
Returns a non-zero value if error indicator is set; otherwise, returns a
zero.
/* This program tries to write to a file that is */
/* readonly. This causes the error indicator to
/* be set.
/* the error indicator and find the error. The
/* function clearerr is used to reset the error
/* indicator so the next time ferror is called
/* it will not report an error.
#include <stdio.h> /* for ferror, clearerr, */
int main(void)
{
}
Output:
Error
Error indicator reset
FILE *myfile;
if ((myfile = fopen("sampclearerr.c", "r")) ==
else
{
}
printf("Cannot open file\n");
fprintf(myfile, "Write this line to the "
if (ferror(myfile))
else
clearerr(myfile);
if (ferror(myfile))
else
fclose(myfile);
printf("Error\n");
printf("No error\n");
printf("Still has Error\n");
printf("Error indicator reset\n");
NULL)
pointer to FILE structure
The function ferror is used to check */
"file.\n");
/* printf, fprintf,
/* fopen, fclose,
/* FILE, NULL
© 2008 Microchip Technology Inc.
*/
*/
*/
*/
*/
*/
*/
*/

Related parts for SW006013