GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
replace_filename(3) Allegro manual replace_filename(3)

replace_filename - Replaces path+filename with a new filename tail. Allegro game programming library.

#include <allegro.h>

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.

get_filename(3), replace_extension(3), append_filename(3)
version 4.4.3 Allegro

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.