diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-09-12 16:25:01 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-09-12 16:25:01 +0200 |
commit | 72d528f154807e6e92daddb24d99229413b0310f (patch) | |
tree | c13c36d2514fcb45dd574c2449f3713fa7ee8fef /source | |
parent | d403ce66efb9b1150d103bc3b15eeaad312553a8 (diff) | |
download | kit-72d528f154807e6e92daddb24d99229413b0310f.zip |
Update UV
Diffstat (limited to 'source')
-rw-r--r-- | source/kit/unival.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/source/kit/unival.h b/source/kit/unival.h index 3ff1cb2..a87a763 100644 --- a/source/kit/unival.h +++ b/source/kit/unival.h @@ -1,5 +1,5 @@ -#ifndef KIT_UNIVAL_H -#define KIT_UNIVAL_H +#ifndef KIT_UV_H +#define KIT_UV_H #include "status.h" #include "string_builder.h" @@ -10,18 +10,18 @@ extern "C" { #endif enum { - KIT_UNIVAL_NONE, - KIT_UNIVAL_BOOLEAN, - KIT_UNIVAL_INTEGER, - KIT_UNIVAL_FLOAT, - KIT_UNIVAL_STRING, - KIT_UNIVAL_BYTES, - KIT_UNIVAL_ARRAY, - KIT_UNIVAL_COMPOSITE, + KIT_UV_NONE, + KIT_UV_BOOLEAN, + KIT_UV_INTEGER, + KIT_UV_FLOAT, + KIT_UV_STRING, + KIT_UV_BYTES, + KIT_UV_ARRAY, + KIT_UV_COMPOSITE, }; -enum { KIT_UNIVAL_ENCODE_BZIP = 1 }; -enum { KIT_UNIVAL_PRINT_PRETTY = 1, KIT_UNIVAL_PRINT_JSON = 2 }; +enum { KIT_UV_ENCODE_BZIP = 1 }; +enum { KIT_UV_PRINT_PRETTY = 1, KIT_UV_PRINT_JSON = 2 }; typedef struct kit_uv_data kit_unival_t; |