mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 14:42:33 +01:00
10 lines
251 B
C
10 lines
251 B
C
#ifndef utils_h
|
|
#define utils_h
|
|
#include <stddef.h>
|
|
|
|
const char *executable_folder(void);
|
|
char *executable_relative_path(const char *filename);
|
|
void replace_extension(const char *src, size_t length, char *dest, const char *ext);
|
|
|
|
#endif /* utils_h */
|