This website requires JavaScript.
Explore
Help
Register
Sign In
keXa
/
kolibrios
Watch
1
Star
0
Fork
0
You've already forked kolibrios
forked from
KolibriOS/kolibrios
Code
Pull Requests
Activity
cd8030cee3
kolibrios
/
programs
/
develop
/
ktcc
/
trunk
/
libc
/
stdio
/
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
;
}
Copy Permalink