.\" Generated by the Allegro makedoc utility .TH fix_filename_slashes 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME fix_filename_slashes \- Converts all the directory separators to a standard character. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B char *fix_filename_slashes(char *path); .SH DESCRIPTION Converts all the directory separators in the filename stored in `path' to a standard character. On DOS and Windows platforms, this is a backslash. On most other platforms this is a slash. Example: .nf 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. */ .fi .SH "RETURN VALUE" Returns a copy of the `path' parameter. .SH SEE ALSO .BR fix_filename_case (3alleg4), .BR canonicalize_filename (3alleg4)