X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fcolor.c;fp=src%2Flib%2Fcolor.c;h=c36a70ea5ff8b9b2dc2f3ae77150a9da0a2b4443;hb=c4ce15360826b98bd850d9a7749fe46f9e1acde4;hp=0c5e30c6fb9ad464888383706b36b5178afb9943;hpb=9faa6c9c70a9fefeb732175464994273d6b6dd33;p=psensor.git diff --git a/src/lib/color.c b/src/lib/color.c index 0c5e30c..c36a70e 100644 --- a/src/lib/color.c +++ b/src/lib/color.c @@ -23,9 +23,10 @@ #include "color.h" -void -color_set(struct color *color, - unsigned int red, unsigned int green, unsigned int blue) +void color_set(struct color *color, + unsigned int red, + unsigned int green, + unsigned int blue) { color->red = red; color->green = green; @@ -65,7 +66,7 @@ int is_color(const char *str) return 1; } -struct color *string_to_color(const char *str) +struct color *str_to_color(const char *str) { char tmp[5]; unsigned int red, green, blue; @@ -88,7 +89,7 @@ struct color *string_to_color(const char *str) return color_new(red, green, blue); } -char *color_to_string(struct color *color) +char *color_to_str(const struct color *color) { char *str = malloc(1 + 12 + 1);