get_config_argv (3) - Linux Manuals
get_config_argv: Reads a token list from the configuration file. Allegro game programming library.
Command to display get_config_argv
manual in Linux: $ man 3 get_config_argv
NAME
get_config_argv - Reads a token list from the configuration file. Allegro game programming library.
SYNOPSIS
#include <allegro.h>
char **get_config_argv(const char *section, const char *name, int *argc);
DESCRIPTION
Reads a token list (words separated by spaces) from the current config
file. The token list is stored in a temporary buffer that will be clobbered
by the next call to get_config_argv(), so the data should not be expected
to persist.
RETURN VALUE
Returns an argv style argument list and sets `argc' to the number of
retrieved tokens. If the variable is not present, returns NULL and sets
argc to zero.
Pages related to get_config_argv
- get_config_float (3) - Retrieves a float from the configuration file. Allegro game programming library.
- get_config_hex (3) - Retrieves a hexadecimal value from the configuration file. Allegro game programming library.
- get_config_id (3) - Retrieves a driver ID from a configuration file. Allegro game programming library.
- get_config_int (3) - Retrieves an integer from the configuration file. Allegro game programming library.
- get_config_string (3) - Retrieves a string from the configuration file. Allegro game programming library.
- get_config_text (3) - Returns a string translated to the current language. Allegro game programming library.
- get_constant (3) - retrieve a scalar constant from a dirfile database
- get_constants (3) - retrieve a list of constant values from a dirfile
- get_color_depth (3) - Returns the current pixel color depth. Allegro game programming library.
- get_compiled_sprite (3) - Creates a compiled sprite using a bitmap as source. Allegro game programming library.