replace_filename
Replaces path+filename with a new filename tail.
Description
char *replace_filename(char *dest,
const char *path,
const char *filename,
int size
);
Replaces the specified path+filename with a new filename tail, storing
at most `size' bytes into the `dest' buffer. You can use the same buffer
both as input and output because Allegro internally works on a copy of
the input before touching `dest'. Example:
char name[200];
...
get_executable_name(name, sizeof(name));
replace_filename(name, name, "sound.dat", sizeof(name));
Returns a copy of the `dest' parameter.
Related Discussions
The following threads each have code containing this keyword:
Note: You can click on the numbers to jump directly to the posts that reference this page.
Related Projects
The following projects include source code containing this keyword: