KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /usr/share/splint/lib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/splint/lib/file.xh
extern int fclose (/*@open@*/ FILE *stream) 
   /*:checkerror EOF@*/ /* The fclose function returns zero if the
			   stream was successfully closed or EOF if any errors were detected. */
   /*@ensures closed stream@*/ ;

/*@open@*/ FILE *fopen (const char *filename, const char *mode);
/*@open@*/ FILE *fdopen (int fildes, const char *mode);

   /*
   ** File modes:
   **       "rb"	read
   **       "wb"        create, truncate, write
   **       "ab"        create, write, append
   **       "rb+"	read, write
   **       "wb+"	create, truncate, read, write
   **       "ab+"	create, read, write, append
   */

extern /*@open@*/ FILE *freopen (char *filename, char *mode, /*@anyopen@*/ FILE *stream) /*@ensures open stream@*/ ;

extern /*@null@*/ char *
  fgets (/*@returned@*/ /*@out@*/ char *s, int n, /*@open@*/ FILE *stream)
  /*@modifies fileSystem, *s, *stream, errno@*/ ;

/*
fgetc
fputc

fseek
ftell 
*/

int ferror (FILE *stream) ;
int feof (FILE *stream) ;
void clearerr (FILE *stream) ;

Anon7 - 2021