2
0
mirror of https://github.com/alliedmodders/amxmodx.git synced 2025-03-29 05:49:05 +03:00

synced to core

This commit is contained in:
David Anderson 2006-03-29 22:58:11 +00:00
parent 94c449936d
commit 92be7f6791

@ -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,_}:...);