summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/kit/unival.h24
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;