FreeBSD Manual Pages
fix_filename_slashes(3) Allegro manual fix_filename_slashes(3) NAME fix_filename_slashes - Converts all the directory separators to a stan- dard character. Allegro game programming library. SYNOPSIS #include <allegro.h> char *fix_filename_slashes(char *path); DESCRIPTION Converts all the directory separators in the filename stored in `path' to a standard character. On DOS and Windows platforms, this is a back- slash. On most other platforms this is a slash. Example: char buf[200] = "c:/dos\\backup/weirdo\\test"; ... fix_filename_slashes(buf); /* Under DOS we would have c:\dos\backup\weirdo\test. Under Unix we would have c:/dos/backup/weirdo/test. */ RETURN VALUE Returns a copy of the `path' parameter. SEE ALSO fix_filename_case(3), canonicalize_filename(3) Allegro version 4.4.3 fix_filename_slashes(3)
NAME | SYNOPSIS | DESCRIPTION | RETURN VALUE | SEE ALSO
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=fix_filename_slashes&sektion=3&manpath=FreeBSD+Ports+14.3.quarterly>
