PyUnicode_DecodeUTF7

  1. PyObject* PyUnicode_DecodeUTF7(const(char)* string, Py_ssize_t length, const(char)* errors)
    version(Python_3_3_Or_Later)
    PyUnicode_DecodeUTF7
    (
    const(char)* string
    ,,
    const(char)* errors
    )
  2. alias PyUnicode_DecodeUTF7 = PyUnicodeUCS2_DecodeUTF7
  3. alias PyUnicode_DecodeUTF7 = PyUnicodeUCS4_DecodeUTF7

Parameters

string
Type: const(char)*

UTF-7 encoded string

length

size of string

errors
Type: const(char)*

error handling

Meta