summaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h
index 45ecf23..288be67 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -1,7 +1,10 @@
#ifndef _OG_UTILS_H
#define _OG_UTILS_H
+#include <stdint.h>
+
void str_toupper(char *str);
void str_tolower(char *str);
+int safe_strtoull(const char *str, uint64_t *out_value, int base, uint64_t max);
#endif