Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/runtime/Builtin/cHIsEOF.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <errno.h>
#include "haskell2c.h"


/* foreign import hIsEOF :: Handle -> IO Bool */
int hIsEOF (FileDesc* f)
{
  int err, c;
  c = fgetc(f->fp);	/* Horrible but true: feof does not truly test for */
  err = feof(f->fp);	/* end of file!  The EOF flag must be set by a     */
  ungetc(c,f->fp);	/* read operation, hence the getc -> ungetc pair.  */
  return err;
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.