summaryrefslogtreecommitdiff
path: root/src/helpers.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers.hpp')
-rw-r--r--src/helpers.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/helpers.hpp b/src/helpers.hpp
index a5c8089..347232a 100644
--- a/src/helpers.hpp
+++ b/src/helpers.hpp
@@ -11,6 +11,8 @@ STR2NUM_ERROR str2num(int32_t &i, char const *s, int base = 0);
STR2NUM_ERROR str2num(uint32_t &i, char const *s, int base = 0);
STR2NUM_ERROR str2num(int16_t &i, char const *s, int base = 0);
STR2NUM_ERROR str2num(uint16_t &i, char const *s, int base = 0);
+STR2NUM_ERROR str2num(int8_t &i, char const *s, int base = 0);
+STR2NUM_ERROR str2num(uint8_t &i, char const *s, int base = 0);
STR2NUM_ERROR str2num(float &f, char const *s);
STR2NUM_ERROR str2num(double &d, char const *s);
STR2NUM_ERROR str2num(float &f, char const *s, char *&pEnd);