(index ("punycode-encode" 0) ("punycode-decode" 120) ("domain->ascii" 240) ("domain->unicode" 444))
(def (sig (procedure "(punycode-encode str)" (id punycode-encode))) (p "Converts a unicode string to Punycode ASCII."))
(def (sig (procedure "(punycode-decode str)" (id punycode-decode))) (p "Converts a Punycode ASCII string to unicode."))
(def (sig (procedure "(domain->ascii str)" (id domain->ascii))) (p "Converts a internationalized domain name to an ASCII representation (if the domain is already ASCII-only it is returned unmodified)."))
(def (sig (procedure "(domain->unicode str)" (id domain->unicode))) (p "Converts a Punycode ASCII domain name to a unicode string (if the domain is already unicode it is returned unmodified)."))
