/* Copyright (c) 2011, 2018 Ben Noordhuis <[email protected]>1*2* Permission to use, copy, modify, and/or distribute this software for any3* purpose with or without fee is hereby granted, provided that the above4* copyright notice and this permission notice appear in all copies.5*6* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES7* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF8* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR9* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES10* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN11* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF12* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.13*/1415#ifndef UV_SRC_IDNA_H_16#define UV_SRC_IDNA_H_1718/* Decode a single codepoint. Returns the codepoint or UINT32_MAX on error.19* |p| is updated on success _and_ error, i.e., bad multi-byte sequences are20* skipped in their entirety, not just the first bad byte.21*/22unsigned uv__utf8_decode1(const char** p, const char* pe);2324/* Convert a UTF-8 domain name to IDNA 2008 / Punycode. A return value >= 025* is the number of bytes written to |d|, including the trailing nul byte.26* A return value < 0 is a libuv error code. |s| and |d| can not overlap.27*/28long uv__idna_toascii(const char* s, const char* se, char* d, char* de);2930#endif /* UV_SRC_IDNA_H_ */313233