mirror of
https://github.com/labwc/labwc.git
synced 2026-04-13 08:21:15 -04:00
14 lines
313 B
C
14 lines
313 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_DIR_H
|
|
#define LABWC_DIR_H
|
|
|
|
char *config_dir(void);
|
|
char *config_dir_n(int n);
|
|
|
|
/**
|
|
* 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 */
|