12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #define COMPILE_PCRE32
- #include "pcre_internal.h"
- unsigned int
- PRIV(ord2utf)(pcre_uint32 cvalue, pcre_uchar *buffer)
- {
- #ifdef SUPPORT_UTF
- *buffer = (pcre_uchar)cvalue;
- return 1;
- #else
- (void)(cvalue);
- (void)(buffer);
- return 0;
- #endif
- }
|