mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-08 17:35:42 +01:00
89e746368c
Added configparser.c and curskey.c: - Lines starting with arbitrary whitespace + '#' are comments - Words in a command name don't have a fixed order (toggle_mute is the same as mute_toggle) Moved read_file() from textbox.c to utils.c, so configparser.c can make use of it. Added command line options: -f/-F to specify/disable configuration file -m/-M to enable/disable mouse Signed-off-by: Benjamin Abendroth <braph93@gmx.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
9 lines
191 B
C
9 lines
191 B
C
#ifndef CONFIGPARSER_H_INCLUDED
|
|
#define CONFIGPARSER_H_INCLUDED
|
|
|
|
#define CONFIG_DEFAULT ((const char*) 1)
|
|
|
|
void parse_config_file(const char *file);
|
|
void parse_default_config_file();
|
|
|
|
#endif
|