From d2ba67e68b6a7e262be4fac31fecf3977494c4a4 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Tue, 11 Nov 2014 00:37:11 +0100 Subject: use ‘signed’ instead of ‘int’, redo prototypes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The flip arguments are implemented so delete comment --- src/utils.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'src/utils.h') diff --git a/src/utils.h b/src/utils.h index ae9612e..50703b0 100644 --- a/src/utils.h +++ b/src/utils.h @@ -2,8 +2,15 @@ #define UTILS_H #include -int parse_int(char *string, char *arg); -unsigned int parse_uint(char *string, char *arg); -bool parse_color(char *arg, Color *c, int a); +/// 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 -- cgit v1.2.3-54-g00ecf