X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=opt%2Fbasecodecs%2F_PDCLIB_utf8.c;h=a4c19adb349a735c6715af6c66641eab61de66b3;hp=1dfc83a12ee8599c937e400052cc915b4b9f6c78;hb=da0f3f353d417fed71f358a48d5d5394145e460d;hpb=4d14d2133a2ec08b475531abbc2a15635c965a38 diff --git a/opt/basecodecs/_PDCLIB_utf8.c b/opt/basecodecs/_PDCLIB_utf8.c index 1dfc83a..a4c19ad 100644 --- a/opt/basecodecs/_PDCLIB_utf8.c +++ b/opt/basecodecs/_PDCLIB_utf8.c @@ -9,7 +9,7 @@ #include #include #include -#include <_PDCLIB_encoding.h> +#include "_PDCLIB_encoding.h" /* Use of the mbstate: * @@ -232,7 +232,7 @@ static bool c32toutf8( END_CONVERSION; } -const struct _PDCLIB_charcodec _PDCLIB_utf8_codec = { +const struct _PDCLIB_charcodec_t _PDCLIB_utf8_codec = { .__mbsinit = utf8_mbsinit, .__mbstoc32s = utf8toc32, .__c32stombs = c32toutf8, @@ -242,7 +242,7 @@ const struct _PDCLIB_charcodec _PDCLIB_utf8_codec = { #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {