kolibrios-gitea/programs/develop/libraries/newlib/sys/fload.c
Sergey Semyonov (Serge) 2336060a0c newlib: update
git-svn-id: svn://kolibrios.org@1906 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-03-11 18:52:24 +00:00

38 lines
818 B
C

#include <sys/types.h>
#include <stdint.h>
#include <sys/kos_io.h>
void *load_file(const char *path, size_t *len)
{
fileinfo_t info;
size_t bytes;
void *file = NULL;
if( len) *len = 0;
if( !get_fileinfo(path, &info) )
{
file = user_alloc( info.size );
read_file(path, file, 0, info.size, &bytes );
if( bytes == info.size )
{
if ( *(uint32_t*)file == 0x4B43504B )
{
void *tmp = NULL;
info.size = ((size_t*)file)[1];
tmp = user_alloc(info.size);
unpack(file, tmp);
user_free(file);
file = tmp;
}
if(len) *len = info.size;
};
};
return file;
};