pub unsafe extern "C" fn parse_setup(
    string: *mut c_char,
    output: *mut *mut *mut c_char,
    length: *mut c_int
    ...
)
Expand description

Parses a string into arguments, replacing keys with values.

Returns true if successful, false if it failed.

  • string: The input string.
  • output: Pointer to 2-dimensional array with parsed string.
  • length: Length of 2-dimensional array.
  • ...: Key, value parse. Replace the string key with value.