diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-05-08 16:44:05 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-05-08 16:44:05 +0300 |
commit | fb7e3e1352aeca03909ae3720c8cae90fcd57186 (patch) | |
tree | 73ec2c99e3a8c578c1791e83a5ec74749a8316af /src/engine.h | |
parent | 00faacfa1ba2af7dd6dbd441e0ede57029d92686 (diff) | |
download | ck-fb7e3e1352aeca03909ae3720c8cae90fcd57186.tar.gz ck-fb7e3e1352aeca03909ae3720c8cae90fcd57186.tar.bz2 ck-fb7e3e1352aeca03909ae3720c8cae90fcd57186.zip |
user args an now cklist type
Diffstat (limited to 'src/engine.h')
-rw-r--r-- | src/engine.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/engine.h b/src/engine.h deleted file mode 100644 index fc10323..0000000 --- a/src/engine.h +++ /dev/null @@ -1,34 +0,0 @@ -/* 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) - * - * ----------------------------------------------------------------------------- - * - * The functions in here are responsible for manipulating - * the file structure of the system and creating the links. - * - * It makes use of some util functions that wrap the actual - * function calls to linux functions - * - * After a call to an engine_*() function one has to check - * engine_err_message() to check for errors - * - * -------------------------------------------------------------------------- */ -#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); - - |