#include "demo_util.h" #include #include #include #include /* Copyright (C) 2007 Shay Green. This module is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This module is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this module; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ unsigned char* load_file( const char* path, long* size_out ) { size_t size; unsigned char* data; FILE* in = fopen( path, "rb" ); if ( !in ) error( "Couldn't open file" ); fseek( in, 0, SEEK_END ); size = ftell( in ); if ( size_out ) *size_out = size; rewind( in ); data = (unsigned char*) malloc( size ); if ( !data ) error( "Out of memory" ); if ( fread( data, 1, size, in ) < size ) error( "Couldn't read file" ); fclose( in ); return data; } void write_file( const char* path, void const* in, long size ) { FILE* out = fopen( path, "wb" ); if ( !out ) error( "Couldn't create file" ); if ( (long) fwrite( in, 1, size, out ) < size ) error( "Couldn't write file" ); fclose( out ); } void error( const char* str ) { if ( str ) { fprintf( stderr, "Error: %s\n", str ); exit( EXIT_FAILURE ); } }