diff options
author | Haru <haru@dotalux.com> | 2020-06-01 04:08:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 04:08:28 +0200 |
commit | 36aff97b92f9f42f9bc59911b7d06110a8e9aed5 (patch) | |
tree | 69d20dc9137da111ecda664a896bbf0abbead02e /3rdparty/libconfig/libconfig.h | |
parent | b9f7d1439c84b64facaf7d2875adc29110c65cf4 (diff) | |
parent | c66d467fb5816734851b7de6b20537ce7a08c861 (diff) | |
download | hercules-36aff97b92f9f42f9bc59911b7d06110a8e9aed5.tar.gz hercules-36aff97b92f9f42f9bc59911b7d06110a8e9aed5.tar.bz2 hercules-36aff97b92f9f42f9bc59911b7d06110a8e9aed5.tar.xz hercules-36aff97b92f9f42f9bc59911b7d06110a8e9aed5.zip |
Merge pull request #2671 from Helianthella/binliteral
add support for binary and octal number literals
Diffstat (limited to '3rdparty/libconfig/libconfig.h')
-rw-r--r-- | 3rdparty/libconfig/libconfig.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/3rdparty/libconfig/libconfig.h b/3rdparty/libconfig/libconfig.h index 5662968a7..8c432b023 100644 --- a/3rdparty/libconfig/libconfig.h +++ b/3rdparty/libconfig/libconfig.h @@ -57,6 +57,8 @@ extern "C" { #define CONFIG_FORMAT_DEFAULT 0 #define CONFIG_FORMAT_HEX 1 +#define CONFIG_FORMAT_BIN 2 +#define CONFIG_FORMAT_OCT 3 #define CONFIG_OPTION_AUTOCONVERT 0x01 #define CONFIG_OPTION_SEMICOLON_SEPARATORS 0x02 |