X-Git-Url: http://wpitchoune.net/gitweb/?p=psensor-pkg-debian.git;a=blobdiff_plain;f=src%2Flib%2Fcolor.c;h=ab8462df492ee86c06e1ca6f4aa411c1ef2006e7;hp=0c5e30c6fb9ad464888383706b36b5178afb9943;hb=dcd813f21c83592155f712ff1acf450b483d8072;hpb=f055e7507526592d3a74c652f5f053701614c9c0 diff --git a/src/lib/color.c b/src/lib/color.c index 0c5e30c..ab8462d 100644 --- a/src/lib/color.c +++ b/src/lib/color.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2012 jeanfi@gmail.com + * Copyright (C) 2010-2013 jeanfi@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -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);