16 lines
219 B
C
16 lines
219 B
C
#pragma once
|
|
|
|
/**
|
|
* @brief attempt to find the config path
|
|
*
|
|
* @return the path
|
|
*/
|
|
char *conf_config_path(void);
|
|
|
|
/**
|
|
* @brief attempt to find the state path
|
|
*
|
|
* @return the path
|
|
*/
|
|
char *conf_state_path(void);
|