blob: 75ad0a74969016f85d4766eabefe0017a81a2afb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include "ckutil.h"
typedef enum edit_opt_return_code edit_rc;
enum edit_opt_return_code {
ERC_OK,
ERC_SUGGESTIONS,
ERC_ERR
};
extern edit_rc edit_get_config_or_suggestions(const int argc, char **argv, char *ret);
|