Home
       feof.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       feof.c (84B)
       ---
            1 #include <stdio.h>
            2 
            3 #undef feof
            4 
            5 int
            6 feof(FILE *fp)
            7 {
            8         return fp->flags & _IOEOF;
            9 }