SW006013 Microchip Technology, SW006013 Datasheet - Page 70

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 66
fsetpos (Continued)
Example:
/* This program opens a file and reads bytes at */
/* several different locations. The fgetpos
/* function notes the 8th byte. 21 bytes are
/* read then 18 bytes are read. Next the
/* fsetpos function is set based on the
/* fgetpos position and the previous 21 bytes
/* are reread.
#include <stdio.h> /* for fgetpos, fread,
int main(void)
{
}
Output:
Bytes read: program opens a file
Bytes read: and reads bytes at
Bytes read: program opens a file
FILE
fpos_t pos;
char
if ((myfile = fopen("sampfgetpos.c", "rb")) ==
else
{
if (fsetpos(myfile, &pos) != 0)
fread(buf, sizeof(char), 21, myfile);
printf("Bytes read: %.21s\n", buf);
fclose(myfile);
}
printf("Cannot open file\n");
fread(buf, sizeof(char), 8, myfile);
if (fgetpos(myfile, &pos) != 0)
else
{
}
perror("fsetpos error");
perror("fgetpos error");
fread(buf, sizeof(char), 21, myfile);
printf("Bytes read: %.21s\n", buf);
fread(buf, sizeof(char), 18, myfile);
printf("Bytes read: %.18s\n", buf);
*myfile;
buf[25];
/* printf, fopen, fclose, */
/* FILE, NULL, perror,
/* fpos_t, sizeof
NULL)
© 2008 Microchip Technology Inc.
*/
*/
*/
*/
*/
*/
*/
*/
*/

Related parts for SW006013