From 239ee42e5853e09d8e5bb4b9c704f05ce9181c91 Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 26 May 2015 22:54:36 -0400 Subject: internal string functions: change the return type from size_t to uint32_t. --- src/internal/pe_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/internal/pe_impl.h') diff --git a/src/internal/pe_impl.h b/src/internal/pe_impl.h index 09e81c9..392f6b2 100644 --- a/src/internal/pe_impl.h +++ b/src/internal/pe_impl.h @@ -12,6 +12,6 @@ struct pe_block { uint32_t size; }; -size_t pe_impl_strlen_ansi(const char * str); -size_t pe_impl_strlen_utf16(const wchar16_t * str); +uint32_t pe_impl_strlen_ansi(const char * str); +uint32_t pe_impl_strlen_utf16(const wchar16_t * str); wchar16_t pe_impl_utf16_char_to_lower(const wchar16_t c); -- cgit v1.2.3