blob: 1b1cc05bf678d43745df65cba56bd1e9e18bee9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef COLOR_H
#define COLOR_H
#include <stdbool.h>
#include <stdint.h>
struct color {
float r;
float g;
float b;
float a;
};
struct color hex_to_color(const char *hex);
#endif /* COLOR_H */
|