aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.h
blob: 50703b0ca6bd3186505e556bb8ea3d755bd57a19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef UTILS_H
#define UTILS_H
#include <stdbool.h>

/// Prototypes

signed
parse_int(char *string, char *arg);

unsigned
parse_uint(char *string, char *arg);

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

#endif