Fixed format tags

This commit is contained in:
David Anderson
2004-09-07 09:26:20 +00:00
parent 226c7300be
commit 1aee2c6f81
6 changed files with 27 additions and 27 deletions

View File

@ -48,7 +48,7 @@ native fclose(file);
//Read a file for ret_size length
native fread(file,ret[],ret_size);
//Write a file
native fwrite(file,const str[],{Float,_}:...);
native fwrite(file,const str[],{Float,Sql,Result,_}:...);
//Check if at the end of a file
native feof(file);
//Seek a file
@ -58,13 +58,13 @@ native rewind(file);
//Flush a file
native fflush(file);
//Scan a file by a format
native fscanf(file,const str[],{Float,_}:...);
native fscanf(file,const str[],{Float,Sql,Result,_}:...);
//Returns the current file position pointer
native ftell(file);
//Return the size of a file
native filesize(const filename[],{Float,_}:...);
native filesize(const filename[],{Float,Sql,Result,_}:...);
//Delete a file (delete_file macro)
native unlink(const filename[],{Float,_}:...);
native unlink(const filename[],{Float,Sql,Result,_}:...);
//These are type specific file getting and writing commands:
//c=char, s=short, l=long, i=int, f=float