Query: replace_extension
OS: centos
Section: 3alleg4
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
replace_extension(3alleg4) Allegro manual replace_extension(3alleg4)NAMEreplace_extension - Replaces filename+extension with a new extension tail. Allegro game programming library.SYNOPSIS#include <allegro.h> char *replace_extension(char *dest, const char *filename, const char *ext, int size);DESCRIPTIONReplaces the specified filename+extension with a new extension tail, storing at most `size' bytes into the `dest' buffer. If the filename doesn't have any extension at all, `ext' will be appended to it, adding a dot character if needed. 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: replace_extension(buf, "C:\game\prog.exe", "dat", sizeof(buf));RETURN VALUEReturns a copy of the `dest' parameter.SEE ALSOget_extension(3alleg4), replace_filename(3alleg4) Allegro version 4.4.2 replace_extension(3alleg4)
Related Man Pages |
---|
make_relative_filename(3alleg4) - debian |
ustrzcpy(3alleg4) - debian |
ustrzncpy(3alleg4) - debian |
ustrzcpy(3alleg4) - plan9 |
ustrzcpy(3alleg4) - freebsd |
Similar Topics in the Unix Linux Community |
---|
[Solved] Replace extension of filename stored in a variable |