billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=dbba452a8bc4f66e2fdee585dd42e932a99e0ec2
commit dbba452a8bc4f66e2fdee585dd42e932a99e0ec2 Author: Boris Faure <bill...@gmail.com> Date: Wed Aug 19 19:23:00 2020 +0200 cleanup src/bin/colors.h --- src/bin/colors.h | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/src/bin/colors.h b/src/bin/colors.h index d2cf605..679e9ed 100644 --- a/src/bin/colors.h +++ b/src/bin/colors.h @@ -4,8 +4,23 @@ #include <Evas.h> #include "config.h" -void colors_term_init(Evas_Object *textgrid, const Evas_Object *bg, const Config *config); -void colors_standard_get(int set, int col, unsigned char *r, unsigned char *g, unsigned char *b, unsigned char *a); -void colors_256_get(int col, unsigned char *r, unsigned char *g, unsigned char *b, unsigned char *a); +void +colors_term_init(Evas_Object *textgrid, + const Evas_Object *bg, + const Config *config); +void +colors_standard_get(int set, + int col, + unsigned char *r, + unsigned char *g, + unsigned char *b, + unsigned char *a); + +void +colors_256_get(int col, + unsigned char *r, + unsigned char *g, + unsigned char *b, + unsigned char *a); #endif --