diff options
Diffstat (limited to 'src/colors.h')
-rw-r--r-- | src/colors.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/colors.h b/src/colors.h index a66d693cc..421163006 100644 --- a/src/colors.h +++ b/src/colors.h @@ -13,10 +13,10 @@ #define COLOR_STATUS_TIME 10 #define COLOR_STATUS_ALERT 11 -short colors_str2color(char *str); +short colors_str2color(const char *str); -int colors_assign(char *name, char *value); -int colors_define(char *name, short r, short g, short b); +int colors_assign(const char *name, const char *value); +int colors_define(const char *name, short r, short g, short b); int colors_start(void); int colors_use(WINDOW *w, int id); |