]> pd.if.org Git - pdclib/blobdiff - functions/uchar/mbrtoc32.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / uchar / mbrtoc32.c
index bb269cdcb593a23a12d686496a5a7e7a1d58a456..0209b36a945b129274667f70a47e041e7457d3a2 100644 (file)
@@ -1,8 +1,4 @@
-/* size_t mbrtoc32(
-    char16_t    *restrict   pc16,
-    const char  *restrict   s, 
-    size_t                  n,
-    mbstate_t   *restrict   ps);
+/* size_t mbrtoc32( char32_t *, const char *, size_t, mbstate_t * )
 
    This file is part of the Public Domain C Library (PDCLib).
    Permission is granted to use, modify, and / or redistribute at will.
@@ -13,8 +9,8 @@
 #include <errno.h>
 #include <stdint.h>
 #include <assert.h>
-#include <_PDCLIB_encoding.h>
-#include <_PDCLIB_locale.h>
+#include "_PDCLIB_encoding.h"
+#include "_PDCLIB_locale.h"
 
 size_t mbrtoc32_l(
     char32_t    *restrict   pc32,
@@ -66,7 +62,7 @@ size_t mbrtoc32(
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {