aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.h
blob: 1e50975eb790d0eabb9c1963cb8dd1d74d44f2a3 (plain)
1
2
3
4
5
6
7
8
#ifndef UTILS_H
#define UTILS_H
#include <stdbool.h>

int parse_int(char *string, char *arg);
bool parse_color(char *arg, Color *c, int a);

#endif