mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
14 lines
322 B
C
14 lines
322 B
C
// Copyright (c) 2015 YamaArashi
|
|
|
|
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool ParseNumber(char *s, char **end, int radix, int *intValue);
|
|
char *GetFileExtension(char *path);
|
|
unsigned char *ReadWholeFile(char *path, int *size);
|
|
void WriteWholeFile(char *path, void *buffer, int bufferSize);
|
|
|
|
#endif // UTIL_H
|