summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_string.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-06-28 15:37:43 -0400
committermidipix <writeonce@midipix.org>2016-06-28 19:46:40 -0400
commit964eed7331c807e553ec42637151fda21b5495d9 (patch)
tree391ff6c01b0e93a87f8ad9c11fa2a9bdd6f29b50 /include/ntapi/nt_string.h
parent060eadf4e7f81c2d2da4f6c4b2f019186c47ec57 (diff)
downloadntapi-964eed7331c807e553ec42637151fda21b5495d9.tar.bz2
ntapi-964eed7331c807e553ec42637151fda21b5495d9.tar.xz
string functions: added __ntapi_tt_strncmp_multibyte().
Diffstat (limited to 'include/ntapi/nt_string.h')
-rw-r--r--include/ntapi/nt_string.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ntapi/nt_string.h b/include/ntapi/nt_string.h
index 241bb37..d5ad05d 100644
--- a/include/ntapi/nt_string.h
+++ b/include/ntapi/nt_string.h
@@ -51,6 +51,11 @@ typedef int __cdecl ntapi_tt_strcmp_utf16(
__in const wchar16_t * a,
__in const wchar16_t * b);
+typedef int __cdecl ntapi_tt_strncmp_multibyte(
+ __in const char * a,
+ __in const char * b,
+ __in size_t n);
+
typedef void __cdecl ntapi_tt_init_unicode_string_from_utf16(
__out nt_unicode_string * str_dest,
__in wchar16_t * str_src);