labwc/include/common/dir.h
2024-01-08 10:39:03 +00:00

15 lines
343 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_DIR_H
#define LABWC_DIR_H
char *config_dir(void);
char *user_config_dir(void);
char *sys_config_dir(void);
/**
* theme_dir - find theme directory containing theme @theme_name
* @theme_name: theme to search for
*/
char *theme_dir(const char *theme_name);
#endif /* LABWC_DIR_H */