mirror of
https://github.com/CTurt/dsgmLib.git
synced 2025-06-18 22:55:33 -04:00
8 lines
211 B
C
8 lines
211 B
C
#pragma once
|
|
|
|
#define DSGM_AUTO_LENGTH 0
|
|
|
|
size_t DSGM_GetFileLength(char *filename);
|
|
size_t DSGM_ReadFileManual(void *destination, int start, size_t length, char *filename);
|
|
char *DSGM_ReadFile(char *filename);
|