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

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

#endif