This website requires JavaScript.
Explore
Help
Register
Sign In
KolibriOS
/
kolibrios
Watch
13
Star
4
Fork
12
You've already forked kolibrios
Code
Issues
78
Pull Requests
5
Projects
Releases
Activity
38ed47b73c
kolibrios
/
programs
/
develop
/
metcc
/
trunk
/
libc
/
file
/
feof.c
5 lines
87 B
C
Raw
Normal View
History
Unescape
Escape
Update Kolibri version of libC library(for usage in TinyC). Correction of various mistakes in functions of work with files. For work with files 70 function is used. Functions for work with memory are changed for use of the new manager of memory. git-svn-id: svn://kolibrios.org@610 a494cfbc-eb01-0410-851d-a64ba20cac60
2007-08-24 21:49:07 +02:00
#
include
<stdio.h>
initial import of metcc project git-svn-id: svn://kolibrios.org@145 a494cfbc-eb01-0410-851d-a64ba20cac60
2006-09-07 16:14:53 +02:00
int
feof
(
FILE
*
file
)
{
return
file
-
>
filepos
>
=
file
-
>
filesize
;
}
Reference in New Issue
Copy Permalink