![]() |
![]()
| ![]() |
![]()
NAMEreplace_filename - Replaces path+filename with a new filename tail. Allegro game programming library. SYNOPSIS#include <allegro.h> char *replace_filename(char *dest, const char *path, const char *filename, int size); DESCRIPTIONReplaces 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:
RETURN VALUEReturns a copy of the `dest' parameter. SEE ALSOget_filename(3), replace_extension(3), append_filename(3)
|