blob: 9fc0f4563ea900523eb49540ad55d1a468847f0e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* actions.h - Action parser for ck ----------------------------*- C -*-
*
* This file is part of ck, the config keeper
*
* ---------------------------------------------------------------------
*
*
* ------------------------------------------------------------------ */
#ifndef ACTIONS_H
#define ACTIONS_H
#include "actionparser.h"
#include "confparser.h"
#define X(ACTION) \
extern int run_##ACTION(UserOpt *, Conf *);
CK_ACTIONS
#undef X
#endif /* ACTIONS_H */
|