moo_getenv_bool()
This commit is contained in:
parent
2e1a6d1cbc
commit
0441281cd3
@ -1198,6 +1198,14 @@ _moo_get_pid_string (void)
|
||||
}
|
||||
|
||||
|
||||
gboolean
|
||||
moo_getenv_bool (const char *var)
|
||||
{
|
||||
const char *value = g_getenv (var);
|
||||
return value && *value && strcmp (value, "0") != 0;
|
||||
}
|
||||
|
||||
|
||||
char *
|
||||
moo_tempnam (void)
|
||||
{
|
||||
|
@ -103,6 +103,8 @@ char **moo_get_lib_subdirs (const char *subdir);
|
||||
#define moo_get_data_files moo_get_data_subdirs
|
||||
#define moo_get_sys_data_files moo_get_sys_data_subdirs
|
||||
|
||||
gboolean moo_getenv_bool (const char *var);
|
||||
|
||||
char *moo_tempnam (void);
|
||||
void moo_cleanup (void);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user