shithub: cstory

ref: 1cf5df2d7201171a49c8bfe47e89ef7bd847a3c7
dir: /src/File.h/

View raw version
#pragma once

#include <stdio.h>

long LoadFileToMemory(const char *file_path, unsigned char **file_buffer);

unsigned short File_ReadBE16(FILE *stream);
unsigned long File_ReadBE32(FILE *stream);
unsigned short File_ReadLE16(FILE *stream);
unsigned long File_ReadLE32(FILE *stream);

void File_WriteBE16(unsigned short value, FILE *stream);
void File_WriteBE32(unsigned long value, FILE *stream);
void File_WriteLE16(unsigned short value, FILE *stream);
void File_WriteLE32(unsigned long value, FILE *stream);