diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-04-29 21:36:52 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-04-29 21:36:52 +0300 |
commit | 93eae1c206796d76e930c0c4860e4ead9c8fca14 (patch) | |
tree | 239940d27be834bcd16b28d6fcd03db4a00f3072 /src/engine.h | |
parent | 25ccc84ac00a7b3975dfdb0cc415522ca7793f0f (diff) | |
download | ck-93eae1c206796d76e930c0c4860e4ead9c8fca14.tar.gz ck-93eae1c206796d76e930c0c4860e4ead9c8fca14.tar.bz2 ck-93eae1c206796d76e930c0c4860e4ead9c8fca14.zip |
linkin park
Diffstat (limited to 'src/engine.h')
-rw-r--r-- | src/engine.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/engine.h b/src/engine.h new file mode 100644 index 0000000..f3a3b00 --- /dev/null +++ b/src/engine.h @@ -0,0 +1,26 @@ +/* engine.h - manages the linking and copying of configs ---------------*- C -*- + * + * This file is part of ck, the config keeper + * + * ----------------------------------------------------------------------------- + * + * Copyright (C) 2018 Anastasis Grammenos + * GPLv3 (see LICENCE for the full notice) + * + * ----------------------------------------------------------------------------- + * + * + * + * -------------------------------------------------------------------------- */ +#include "actions.h" +#include "ckutil.h" + +/* if engine_err is set return true + * along with a copy of the error message. + * Pass NULL if you don't care about the message */ +extern int engine_err_message(char *err); + +extern void engine_add_make_link(const AddOpt *opt, + const Conf *conf); + + |