/* Specification. */
#include "unistr.h"
+#if HAVE_INLINE
+
int
u16_mbtouc_aux (ucs4_t *puc, const uint16_t *s, size_t n)
{
*puc = 0xfffd;
return 1;
}
+
+#endif
/* Specification. */
#include "unistr.h"
+#if HAVE_INLINE
+
int
u16_mbtouc_unsafe_aux (ucs4_t *puc, const uint16_t *s, size_t n)
{
*puc = 0xfffd;
return 1;
}
+
+#endif
/* Specification. */
#include "unistr.h"
+#if HAVE_INLINE
+
int
u16_uctomb_aux (uint16_t *s, ucs4_t uc, int n)
{
}
return -2;
}
+
+#endif
/* Specification. */
#include "unistr.h"
+#if HAVE_INLINE
+
int
u8_mbtouc_aux (ucs4_t *puc, const uint8_t *s, size_t n)
{
*puc = 0xfffd;
return 1;
}
+
+#endif
/* Specification. */
#include "unistr.h"
+#if HAVE_INLINE
+
int
u8_mbtouc_unsafe_aux (ucs4_t *puc, const uint8_t *s, size_t n)
{
*puc = 0xfffd;
return 1;
}
+
+#endif
/* Specification. */
#include "unistr.h"
+#if HAVE_INLINE
+
int
u8_uctomb_aux (uint8_t *s, ucs4_t uc, int n)
{
}
return count;
}
+
+#endif