Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
FERROR.3
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:
OS Develop
Development Platform:
WINDOWS
- FERROR(3) Minix Programmer's Manual FERROR(3)
- NAME
- ferror, feof, clearerr, fileno - stream status inquiries
- SYNOPSIS
- #include <stdio.h>
- int feof(FILE *stream)
- int ferror(FILE *stream)
- int clearerr(FILE *stream)
- int fileno(FILE *stream)
- DESCRIPTION
- Feof returns non-zero when end of file is read on the named input stream,
- otherwise zero. Unless cleared by clearerr, the end-of-file indication
- lasts until the stream is closed.
- Ferror returns non-zero when an error has occurred reading or writing the
- named stream, otherwise zero. Unless cleared by clearerr, the error
- indication lasts until the stream is closed.
- Clearerr resets the error and end-of-file indicators on the named stream.
- Fileno returns the integer file descriptor associated with the stream,
- see open(2).
- Currently all of these functions are implemented as macros; they cannot
- be redeclared.
- SEE ALSO
- fopen(3), open(2).
- 4BSD May 14, 1986 1