fix_filename_case (3) - Linux Manuals
fix_filename_case: Converts a filename to a standardised case. Allegro game programming library.
Command to display fix_filename_case
manual in Linux: $ man 3 fix_filename_case
NAME
fix_filename_case - Converts a filename to a standardised case. Allegro game programming library.
SYNOPSIS
#include <allegro.h>
char *fix_filename_case(char *path);
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:
get_executable_name(name, sizeof(name));
fix_filename_case(name);
allegro_message("Running `%s'\n", name);
RETURN VALUE
Returns a copy of the `path' parameter.
Pages related to fix_filename_case
- fix_filename_slashes (3) - Converts all the directory separators to a standard character. Allegro game programming library.
- fixacos (3) - Fixed point inverse cosine lookup table. Allegro game programming library.
- fixadd (3) - Safe function to add fixed point numbers clamping overflow. Allegro game programming library.
- fixasin (3) - Fixed point inverse sine lookup table. Allegro game programming library.
- fixatan (3) - Fixed point inverse tangent lookup table. Allegro game programming library.
- fixatan2 (3) - Fixed point version of the libc atan2() routine. Allegro game programming library.
- fixceil (3) - Returns the smallest integer not less than x. Allegro game programming library.