summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2022-06-01 13:08:36 +0200
committerGitHub <noreply@github.com>2022-06-01 13:08:36 +0200
commitb211ca0e420d8086d3fa0358413a6f8b44df1115 (patch)
tree2e60555dc4ce9e81b42b7556dd2e2491473f776c /include
parent9b35df7b37f21043f4be0bdba011000ad4f7cf0f (diff)
parentd99604749d658f5f344d53e77dd52fbb0f6d176c (diff)
Merge pull request #78 from jow-/number-literals
Number literals
Diffstat (limited to 'include')
-rw-r--r--include/ucode/vallist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ucode/vallist.h b/include/ucode/vallist.h
index fb46677..3dc5720 100644
--- a/include/ucode/vallist.h
+++ b/include/ucode/vallist.h
@@ -34,6 +34,7 @@ typedef enum {
} uc_value_type_t;
uc_value_t *uc_number_parse(const char *buf, char **end);
+uc_value_t *uc_number_parse_octal(const char *buf, char **end);
bool uc_double_pack(double d, char *buf, bool little_endian);
double uc_double_unpack(const char *buf, bool little_endian);