1
0
mirror of https://github.com/bsnes-emu/bsnes.git synced 2025-05-14 14:35:24 +02:00
2021-02-27 14:32:07 +02:00

9 lines
203 B
C

#ifndef utils_h
#define utils_h
#include <stddef.h>
char *resource_path(const char *filename);
void replace_extension(const char *src, size_t length, char *dest, const char *ext);
#endif /* utils_h */