1 #ifndef R_UTF32_H 2 #define R_UTF32_H 3 4 /* For RRune definition */ 5 #include "r_utf8.h" 6 7 R_API int r_utf32_decode(const ut8 *ptr, int ptrlen, RRune *ch, bool bigendian); 8 R_API int r_utf32le_decode(const ut8 *ptr, int ptrlen, RRune *ch); 9 R_API int r_utf32le_decode(const ut8 *ptr, int ptrlen, RRune *ch); 10 11 #endif // R_UTF32_H 12