GD/libgd/io.h

/* [<][>]
[^][v][top][bottom][index][help] */

FUNCTIONS

This source file includes following functions.
  1. fread
  2. fwrite

/* just a big of compatibility for the fast CGI protocol */

#include <config.h>
#ifdef FCGI
#include <fcgi_stdio.h>
#else
#ifdef USE_SFIO
#include <perlio.h>
#undef fread
#undef fwrite
#define fread(buffer, len, size, file)   PerlIO_read(file,buffer,size*len)
/* [<][>][^][v][top][bottom][index][help] */
#define fwrite(buffer, len, size, file) PerlIO_write(file,buffer,size*len)
/* [<][>][^][v][top][bottom][index][help] */
#else
#include <stdio.h>
#endif
#endif

/* [<][>][^][v][top][bottom][index][help] */