.\" Generated by the Allegro makedoc utility .TH fix_filename_case 3alleg4 "version 4.4.2" "Allegro" "Allegro manual" .SH NAME fix_filename_case \- Converts a filename to a standardised case. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B char *fix_filename_case(char *path); .SH DESCRIPTION Converts the filename stored in `path' to a standardised case. On DOS platforms, they will be entirely uppercase. On other platforms this function doesn't do anything. Example: .nf get_executable_name(name, sizeof(name)); fix_filename_case(name); allegro_message("Running `%s'\\n", name); .fi .SH "RETURN VALUE" Returns a copy of the `path' parameter. .SH SEE ALSO .BR fix_filename_slashes (3alleg4), .BR canonicalize_filename (3alleg4)