]> pd.if.org Git - pdclib/blobdiff - functions/wchar/mbrtowc.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / wchar / mbrtowc.c
index b2912ba691a0c29439de5fca8f951f4f36746224..31be656a43ec368f5b079ae7e8d00140c01fe21c 100644 (file)
@@ -1,8 +1,4 @@
-/* mbrtowc(
-    wchar_t *restrict pwc, 
-    const char *restrict s, 
-    size_t n, 
-    mbstate_t *restrict ps);
+/* mbrtowc( wchar_t * pwc, const char * s, size_t n, mbstate_t * ps )
 
    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"
 
 static size_t mbrtowc_l(
     wchar_t    *restrict    pwc, 
@@ -86,7 +82,7 @@ size_t mbrtowc(
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {