1#pragma once
 2
 3#include <pw_types.h>
 4
 5#ifdef __cplusplus
 6extern "C" {
 7#endif
 8
 9[[nodiscard]] bool pw_idna_encode(PwValuePtr str, PwValuePtr result);
10[[nodiscard]] bool pw_idna_decode(PwValuePtr str, PwValuePtr result);
11
12#ifdef __cplusplus
13}
14#endif