flush
[m6w6/ext-psi] / tests / idn / idn.psi
index 1583680060fd7bf54d1987ee1a2b4ae0c3ea6368..2bed911651c95d2af4745eb8bf1fcd843bdf5913 100644 (file)
@@ -20,16 +20,16 @@ const int \IDNA_ALLOW_UNASSIGNED = 1;
 const int \IDNA_USE_STD3_ASCII_RULES = 2;
 
 
-default int idna_to_ascii_8z(sint8 *host, sint8 **buffer, int flags);
+default int idna_to_ascii_8z(char *host, char **buffer, int flags);
 function idn\utf8_to_ascii(string $host, string &$result, int $flags = 0) : int {
        let buffer = &NULL;
        let host = strval($host);
        let flags = intval($flags);
        set $result = to_string(*buffer);
        return to_int(idna_to_ascii_8z);
-       free *buffer;
+       free free(buffer);
 }
-default sint8 *idna_strerror(int rc);
+default char *idna_strerror(int rc);
 function idn\strerror(int $rc) : string {
        return to_string(idna_strerror);
        let rc = intval($rc);