Remove unused variables
[notion.git] / libtu / setparam.h
blob8e6fad6e2de6c2d9d859f9a5827bf82950557ead
1 /*
2 * libtu/setparam.h
4 * Copyright (c) Tuomo Valkonen 2005.
6 * You may distribute and modify this library under the terms of either
7 * the Clarified Artistic License or the GNU LGPL, version 2.1 or later.
8 */
10 #ifndef LIBTU_SETPARAM_H
11 #define LIBTU_SETPARAM_H
13 #include "types.h"
15 enum{
16 SETPARAM_UNKNOWN,
17 SETPARAM_SET,
18 SETPARAM_UNSET,
19 SETPARAM_TOGGLE
22 extern int libtu_string_to_setparam(const char *str);
23 extern bool libtu_do_setparam_str(const char *str, bool val);
24 extern bool libtu_do_setparam(int sp, bool val);
25 extern int libtu_setparam_invert(int sp);
27 #endif /* LIBTU_SETPARAM_H */