From 92be7f679123d8ae3d9b517ad1e4bed2bff1f2d4 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 29 Mar 2006 22:58:11 +0000 Subject: [PATCH] synced to core --- plugins/include/file.inc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/include/file.inc b/plugins/include/file.inc index a140965e..61dda8b9 100755 --- a/plugins/include/file.inc +++ b/plugins/include/file.inc @@ -81,6 +81,11 @@ native fseek(file, position, start); //Returns the current position in a file native ftell(file); +//These are straight from the C standard. +native fgetc(file); +native fputc(file, data); +native fungetc(file, data); + //Return the size of a file native filesize(const filename[],{Float,Sql,Result,_}:...);