From c752e8780b043c8822be2417cc5596b8f2ad9c0b Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 1 Jul 2025 00:45:50 +0200 Subject: Update codebase to use (const) void* and size_t where applicable --- src/mbn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mbn.h') diff --git a/src/mbn.h b/src/mbn.h index 008ba61..a328128 100644 --- a/src/mbn.h +++ b/src/mbn.h @@ -100,8 +100,8 @@ typedef struct { uint32_t size; } mbn_file; -mbn_file* mbn_parse(unsigned char* data, unsigned int size); +mbn_file* mbn_parse(const void* data, size_t size); void mbn_free(mbn_file* mbn); -int mbn_update_sig_blob(mbn_file* mbn, const unsigned char* data, unsigned int size); +int mbn_update_sig_blob(mbn_file* mbn, const void* data, size_t size); #endif -- cgit v1.1-32-gdbae