aboutsummaryrefslogtreecommitdiff
path: root/lib/mpack/mpack.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-06-05 16:48:59 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-06-05 16:48:59 +0200
commit68471e5800b81285453a26547721d264dbcf49b9 (patch)
treeb583df193179f5d5a2cee34d5d5dab61210148f6 /lib/mpack/mpack.h
parentd9093e3245f9619850cea391adcad1a12164d38e (diff)
add `mpack_read_remaining_bytes` function to mpack
Diffstat (limited to 'lib/mpack/mpack.h')
-rw-r--r--lib/mpack/mpack.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/mpack/mpack.h b/lib/mpack/mpack.h
new file mode 100644
index 0000000..7c0c089
--- /dev/null
+++ b/lib/mpack/mpack.h
@@ -0,0 +1,19 @@
+#pragma once
+
+#include "src/src/mpack/mpack.h"
+
+/**
+ * \brief read remaining bytes in reader without opening a tag first
+ *
+ * \param reader pointer to mpack reader object
+ * \param p pointer to write data to
+ * \param count maximum number of bytes to read
+ *
+ * This function reads *up to* the amount of bytes specified in \p count, or
+ * less if there is less remaining data in the buffer. If \p count is equal to
+ * 0, all remaining data in the buffer is read.
+ *
+ * \return amount of bytes read
+ */
+size_t mpack_read_remaining_bytes(mpack_reader_t * reader, char * p, size_t count);
+