From 36d72aed1800f3e2c514bf264164a6f2a6ba5f5e Mon Sep 17 00:00:00 2001 From: foswret Date: Tue, 18 Nov 2025 14:59:54 -0600 Subject: removed /include, moved some stuff around --- include/color.h | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 include/color.h (limited to 'include/color.h') diff --git a/include/color.h b/include/color.h deleted file mode 100644 index e2b4cc0..0000000 --- a/include/color.h +++ /dev/null @@ -1,18 +0,0 @@ - int set_color(cairo_t *c, char *str) { - if (strcmp("BLACK", str) == 0) { - cairo_set_source_rgb (c, 0.0, 0.0, 0.0); - } - if (strcmp("RED", str) == 0) { - cairo_set_source_rgb (c, 255.0, 0.0, 0.0); - } - if (strcmp("GREEN", str) == 0) { - cairo_set_source_rgb (c, 0.0, 255.0, 0.0); - } - if (strcmp("BLUE", str) == 0) { - cairo_set_source_rgb (c, 0.0, 0.0, 255.0); - } - if (strcmp("GREY", str) == 0) { - cairo_set_source_rgb (c, 128.0, 128.0, 128.0); - } - return(0); - } -- cgit v1.2.3