2 * Copyright (c) 2009, 2010 Nicira Networks.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
24 /* Returns true if 'c' is a Unicode code point, otherwise false. */
26 uc_is_code_point(int c)
28 return c >= 0 && c <= 0x10ffff;
31 /* Returns true if 'c' is a Unicode code point for a leading surrogate. */
33 uc_is_leading_surrogate(int c)
35 return c >= 0xd800 && c <= 0xdbff;
38 /* Returns true if 'c' is a Unicode code point for a trailing surrogate. */
40 uc_is_trailing_surrogate(int c)
42 return c >= 0xdc00 && c <= 0xdfff;
45 /* Returns true if 'c' is a Unicode code point for a leading or trailing
48 uc_is_surrogate(int c)
50 return c >= 0xd800 && c <= 0xdfff;
53 int utf16_decode_surrogate_pair(int leading, int trailing);
55 size_t utf8_length(const char *);
56 char *utf8_validate(const char *, size_t *lengthp) WARN_UNUSED_RESULT;
58 #endif /* unicode.h */