PyUnicode_DecodeUTF32

  1. PyObject* PyUnicode_DecodeUTF32(const(char)* string, Py_ssize_t length, const(char)* errors, int* byteorder)
    version(Python_2_6_Or_Later)
    PyUnicode_DecodeUTF32
    (
    const(char)* string
    ,,
    const(char)* errors
    ,
    )
  2. alias PyUnicode_DecodeUTF32 = PyUnicodeUCS2_DecodeUTF32
  3. alias PyUnicode_DecodeUTF32 = PyUnicodeUCS4_DecodeUTF32

Parameters

string
Type: const(char)*

UTF-32 encoded string

length

size of string

byteorder
Type: int*

pointer to byteorder to use 0=native;-1=LE,1=BE; updated on exit */ /// Availability: >= 2.

Meta