diff options
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h index 5a71afd..910483f 100644 --- a/src/utils.h +++ b/src/utils.h @@ -19,9 +19,15 @@ #ifndef MCRON_UTILS_H #define MCRON_UTILS_H +#include <libguile.h> + /** Append DIR in front of ENVAR environment variable value. If ENVAR is not defined, then define it with DIR. Bail out if something went wrong. */ extern void wrap_env_path (const char *envar, const char *dir); +/** + In the association list pointed by ALST, set SYMBOL to VAL. */ +extern void assq_symbol_set_x (SCM *alst, const char *symbol, SCM val); + #endif /* MCRON_UTILS_H */ |