mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 06:25:44 +01:00
10 lines
191 B
C
10 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
|