Query: append_filename
OS: netbsd
Section: 3alleg4
Links: netbsd man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
append_filename(3alleg4) Allegro manual append_filename(3alleg4)NAMEappend_filename - Concatenates a filename to a path. Allegro game programming library.SYNOPSIS#include <allegro.h> char *append_filename(char *dest, const char *path, const char *filename, int size);DESCRIPTIONConcatenates the specified filename onto the end of the specified path, storing at most `size' bytes into the `dest' buffer. If `path' doesn't have a trailing path separator, the function will append one 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: append_filename(buf, "/home/user", "prog.bin", sizeof(buf));RETURN VALUEReturns a copy of the `dest' parameter.SEE ALSOreplace_filename(3alleg4) Allegro version 4.4.2 append_filename(3alleg4)
Related Man Pages |
---|
canonicalize_filename(3alleg4) - debian |
make_relative_filename(3alleg4) - debian |
get_filename(3alleg4) - centos |
get_filename(3alleg4) - suse |
get_filename(3alleg4) - netbsd |
Similar Topics in the Unix Linux Community |
---|
Append filename to datafile |
Formatting the text file using shell script |
Shell Scripts - Append a filename with date and time.... |
How to append filename to rows in gzip stdout |