pub unsafe extern "C" fn editorconfig_get_version(
major: *mut c_int,
minor: *mut c_int,
patch: *mut c_int,
)Expand description
@brief Get the version number of EditorConfig.
An example is available at src/bin/main.c in EditorConfig C Core source code.
@param major If not null, the integer pointed by major will be filled with the major version of EditorConfig.
@param minor If not null, the integer pointed by minor will be filled with the minor version of EditorConfig.
@param patch If not null, the integer pointed by patch will be filled with the patch version of EditorConfig.
@return None.