From bc87cea97a02af805e26b00d23c876be5fbfb0ca Mon Sep 17 00:00:00 2001 From: kartofen Date: Sun, 18 May 2025 23:27:50 +0300 Subject: build system upgrade --- msgpack.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'msgpack.h') diff --git a/msgpack.h b/msgpack.h index 0979605..99240b6 100644 --- a/msgpack.h +++ b/msgpack.h @@ -112,14 +112,14 @@ struct mp_timestamp { enum msgpack_type; -int msgpack_read_nil (msgpack_t *pack); +int msgpack_read_nil (msgpack_t *pack); // NOT IMPLEMENTED int msgpack_read_bool (msgpack_t *pack, bool *m); int msgpack_read_int (msgpack_t *pack, union mp_int *m); int msgpack_read_float (msgpack_t *pack, union mp_float *m); int msgpack_read_raw (msgpack_t *pack, struct mp_bin *m); // int msgpack_read_raw_cpy (msgpack_t *pack, struct mp_bin *m); -int msgpack_read_ext (msgpack_t *pack, struct mp_bin *m); +int msgpack_read_ext (msgpack_t *pack, struct mp_bin *m); // NOT IMPLEMENTED // int msgpack_read_ext_cpy (msgpack_t *pack, struct mp_bin *m); int msgpack_read_array (msgpack_t *pack, size_t *length); @@ -127,14 +127,13 @@ int msgpack_read_map (msgpack_t *pack, size_t *length); // int msgpack_read_array2 (const msgpack_t *pack, struct mp_array *m); // int msgpack_read_map2 (const msgpack_t *pack, struct mp_map *m); - int msgpack_write_nil (msgpack_t *pack); -int msgpack_write_bool (msgpack_t *pack, const bool *m); +int msgpack_write_bool (msgpack_t *pack, const bool *m); // NOT IMPLEMENTED int msgpack_write_int (msgpack_t *pack, const union mp_int *m, enum msgpack_type subtype); int msgpack_write_float (msgpack_t *pack, const union mp_float *m, enum msgpack_type subtype); int msgpack_write_raw (msgpack_t *pack, const struct mp_bin *m, enum msgpack_type subtype); -int msgpack_write_ext (msgpack_t *pack, const struct mp_bin *m, enum msgpack_type subtype); +int msgpack_write_ext (msgpack_t *pack, const struct mp_bin *m, enum msgpack_type subtype); // NOT IMPLEMENTED int msgpack_write_map (msgpack_t *pack, const size_t *m); int msgpack_write_array (msgpack_t *pack, const size_t *m); -- cgit v1.2.3