mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-10 12:53:26 -05:00
11 lines
213 B
C
11 lines
213 B
C
#ifndef MISC_H
|
|
#define MISC_H
|
|
|
|
#include "global.h"
|
|
|
|
void CopyBuffer(char *src, char *dest, int size);
|
|
void FreeBuffer(FileInfo *fileInfo);
|
|
bool AddSuffixBuffer(FileInfo *fileInfo, char *suffix);
|
|
|
|
#endif // MISC_H
|