SameBoy/SDL/utils.h

9 lines
203 B
C
Raw Normal View History

2017-05-24 21:44:43 +03:00
#ifndef utils_h
#define utils_h
2018-05-27 19:30:23 +03:00
#include <stddef.h>
2017-05-24 21:44:43 +03:00
char *resource_path(const char *filename);
2017-05-24 21:44:43 +03:00
void replace_extension(const char *src, size_t length, char *dest, const char *ext);
#endif /* utils_h */