mirror of
https://github.com/gbdk-2020/gbdk-2020.git
synced 2026-02-20 00:32:21 +01:00
11 lines
377 B
C
11 lines
377 B
C
// This is free and unencumbered software released into the public domain.
|
|
// For more information, please refer to <https://unlicense.org>
|
|
// bbbbbr 2020
|
|
|
|
#ifndef _PATH_OPS_H
|
|
#define _PATH_OPS_H
|
|
|
|
void filename_replace_extension(char * filename, char * new_ext, size_t maxlen);
|
|
void filename_replace_path(char * filename, char * new_path, size_t maxlen);
|
|
|
|
#endif // _PATH_OPS_H
|