version 1.4 | | version 1.5 |
---|
| | |
/* | | /* |
* static char *rcsid_png_c = | | * static char *rcsid_png_c = |
* "$Id: png.c,v 1.4 2001/03/10 08:27:36 mwedel Exp $"; | | * "$Id: png.c,v 1.5 2001/07/14 04:05:28 mwedel Exp $"; |
*/ | | */ |
/* | | /* |
Crossfire client, a client program for the crossfire program. | | Crossfire client, a client program for the crossfire program. |
| | |
| | |
| | |
| | |
void user_read_data(png_structp png_ptr, png_bytep data, png_size_t length) { | | static void user_read_data(png_structp png_ptr, png_bytep data, png_size_t length) { |
memcpy(data, data_cp + data_start, length); | | memcpy(data, data_cp + data_start, length); |
data_start += length; | | data_start += length; |
} | | } |