-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
147 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Build docs | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
docs_ubuntu: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: Build documentation | ||
run: cargo doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* automatically generated by rust-bindgen 0.69.2 */ | ||
|
||
pub const EDITORCONFIG_PARSE_NOT_FULL_PATH: i32 = -2; | ||
pub const EDITORCONFIG_PARSE_MEMORY_ERROR: i32 = -3; | ||
pub const EDITORCONFIG_PARSE_VERSION_TOO_NEW: i32 = -4; | ||
#[doc = " @brief The editorconfig handle object type"] | ||
pub type editorconfig_handle = *mut ::std::os::raw::c_void; | ||
extern "C" { | ||
#[doc = " @brief Create and intialize a default editorconfig_handle object.\n\n @retval NULL Failed to create the editorconfig_handle object.\n\n @retval non-NULL The created editorconfig_handle object is returned."] | ||
pub fn editorconfig_handle_init() -> editorconfig_handle; | ||
} | ||
extern "C" { | ||
#[doc = " @brief Destroy an editorconfig_handle object\n\n @param h The editorconfig_handle object needs to be destroyed.\n\n @retval zero The editorconfig_handle object is destroyed successfully.\n\n @retval non-zero Failed to destroy the editorconfig_handle object."] | ||
pub fn editorconfig_handle_destroy(h: editorconfig_handle) -> ::std::os::raw::c_int; | ||
} | ||
extern "C" { | ||
#[doc = " @brief Get the err_file field of an editorconfig_handle object\n\n @param h The editorconfig_handle object whose err_file needs to be obtained.\n\n @retval NULL No error file exists.\n\n @retval non-NULL The pointer to the path of the file caused the parsing\n error is returned."] | ||
pub fn editorconfig_handle_get_err_file( | ||
h: editorconfig_handle, | ||
) -> *const ::std::os::raw::c_char; | ||
} | ||
extern "C" { | ||
#[doc = " @brief Get the version fields of an editorconfig_handle object.\n\n @param h The editorconfig_handle object whose version field need to be\n obtained.\n\n @param major If not null, the integer pointed by major will be filled with\n the major version field of the editorconfig_handle object.\n\n @param minor If not null, the integer pointed by minor will be filled with\n the minor version field of the editorconfig_handle object.\n\n @param patch If not null, the integer pointed by patch will be filled\n with the patch version field of the editorconfig_handle object.\n\n @return None."] | ||
pub fn editorconfig_handle_get_version( | ||
h: editorconfig_handle, | ||
major: *mut ::std::os::raw::c_int, | ||
minor: *mut ::std::os::raw::c_int, | ||
patch: *mut ::std::os::raw::c_int, | ||
); | ||
} | ||
extern "C" { | ||
#[doc = " @brief Set the version fields of an editorconfig_handle object.\n\n @param h The editorconfig_handle object whose version fields need to be set.\n\n @param major If not less than 0, the major version field will be set to\n major. If this parameter is less than 0, the major version field of the\n editorconfig_handle object will remain unchanged.\n\n @param minor If not less than 0, the minor version field will be set to\n minor. If this parameter is less than 0, the minor version field of the\n editorconfig_handle object will remain unchanged.\n\n @param patch If not less than 0, the patch version field will be set to\n patch. If this parameter is less than 0, the patch version field of the\n editorconfig_handle object will remain unchanged.\n\n @return None."] | ||
pub fn editorconfig_handle_set_version( | ||
h: editorconfig_handle, | ||
major: ::std::os::raw::c_int, | ||
minor: ::std::os::raw::c_int, | ||
patch: ::std::os::raw::c_int, | ||
); | ||
} | ||
extern "C" { | ||
#[doc = " @brief Set the conf_file_name field of an editorconfig_handle object.\n\n @param h The editorconfig_handle object whose conf_file_name field needs to\n be set.\n\n @param conf_file_name The new value of the conf_file_name field of the\n editorconfig_handle object.\n\n @return None."] | ||
pub fn editorconfig_handle_set_conf_file_name( | ||
h: editorconfig_handle, | ||
conf_file_name: *const ::std::os::raw::c_char, | ||
); | ||
} | ||
extern "C" { | ||
#[doc = " @brief Get the conf_file_name field of an editorconfig_handle object.\n\n @param h The editorconfig_handle object whose conf_file_name field needs to\n be obtained.\n\n @return The value of the conf_file_name field of the editorconfig_handle\n object."] | ||
pub fn editorconfig_handle_get_conf_file_name( | ||
h: editorconfig_handle, | ||
) -> *const ::std::os::raw::c_char; | ||
} | ||
extern "C" { | ||
#[doc = " @brief Get the nth name and value fields of an editorconfig_handle object.\n\n @param h The editorconfig_handle object whose name and value fields need to\n be obtained.\n\n @param n The zero-based index of the name and value fields to be obtained.\n\n @param name If not null, *name will be set to point to the obtained name.\n\n @param value If not null, *value will be set to point to the obtained value.\n\n @return None."] | ||
pub fn editorconfig_handle_get_name_value( | ||
h: editorconfig_handle, | ||
n: ::std::os::raw::c_int, | ||
name: *mut *const ::std::os::raw::c_char, | ||
value: *mut *const ::std::os::raw::c_char, | ||
); | ||
} | ||
extern "C" { | ||
#[doc = " @brief Get the count of name and value fields of an editorconfig_handle\n object.\n\n @param h The editorconfig_handle object whose count of name and value fields\n need to be obtained.\n\n @return the count of name and value fields of the editorconfig_handle\n object."] | ||
pub fn editorconfig_handle_get_name_value_count( | ||
h: editorconfig_handle, | ||
) -> ::std::os::raw::c_int; | ||
} | ||
extern "C" { | ||
#[doc = " @brief Parse editorconfig files corresponding to the file path given by\n full_filename, and related information is input and output in h.\n\n An example is available at\n <a href=https://github.com/editorconfig/editorconfig-core/blob/master/src/bin/main.c>src/bin/main.c</a>\n in EditorConfig C Core source code.\n\n @param full_filename The full path of a file that is edited by the editor\n for which the parsing result is.\n\n @param h The @ref editorconfig_handle to be used and returned from this\n function (including the parsing result). The @ref editorconfig_handle should\n be created by editorconfig_handle_init().\n\n @retval 0 Everything is OK.\n\n @retval \"Positive Integer\" A parsing error occurs. The return value would be\n the line number of parsing error. err_file obtained from h by calling\n editorconfig_handle_get_err_file() will also be filled with the file path\n that caused the parsing error.\n\n @retval \"Negative Integer\" Some error occured. See below for the reason of\n the error for each return value.\n\n @retval EDITORCONFIG_PARSE_NOT_FULL_PATH The full_filename is not a full\n path name.\n\n @retval EDITORCONFIG_PARSE_MEMORY_ERROR A memory error occurs.\n\n @retval EDITORCONFIG_PARSE_VERSION_TOO_NEW The required version specified in\n @ref editorconfig_handle is greater than the current version.\n"] | ||
pub fn editorconfig_parse( | ||
full_filename: *const ::std::os::raw::c_char, | ||
h: editorconfig_handle, | ||
) -> ::std::os::raw::c_int; | ||
} | ||
extern "C" { | ||
#[doc = " @brief Get the error message from the error number returned by\n editorconfig_parse().\n\n An example is available at\n <a href=https://github.com/editorconfig/editorconfig-core/blob/master/src/bin/main.c>src/bin/main.c</a>\n in EditorConfig C Core source code.\n\n @param err_num The error number that is used to obtain the error message.\n\n @return The error message corresponding to err_num."] | ||
pub fn editorconfig_get_error_msg( | ||
err_num: ::std::os::raw::c_int, | ||
) -> *const ::std::os::raw::c_char; | ||
} | ||
extern "C" { | ||
#[doc = " @brief Get the version number of EditorConfig.\n\n An example is available at\n <a href=https://github.com/editorconfig/editorconfig-core/blob/master/src/bin/main.c>src/bin/main.c</a>\n in EditorConfig C Core source code.\n\n @param major If not null, the integer pointed by major will be filled with\n the major version of EditorConfig.\n\n @param minor If not null, the integer pointed by minor will be filled with\n the minor version of EditorConfig.\n\n @param patch If not null, the integer pointed by patch will be filled\n with the patch version of EditorConfig.\n\n @return None."] | ||
pub fn editorconfig_get_version( | ||
major: *mut ::std::os::raw::c_int, | ||
minor: *mut ::std::os::raw::c_int, | ||
patch: *mut ::std::os::raw::c_int, | ||
); | ||
} | ||
extern "C" { | ||
#[doc = " @brief Get the version suffix.\n\n @return The version suffix, such as \"-development\" for a development\n version, empty string for a stable version."] | ||
pub fn editorconfig_get_version_suffix() -> *const ::std::os::raw::c_char; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
#![allow(non_camel_case_types)] | ||
|
||
#[cfg(feature = "buildtime-bindgen")] | ||
include!(concat!(env!("OUT_DIR"), "/bindings.rs")); | ||
|
||
#[cfg(not(feature = "buildtime-bindgen"))] | ||
mod bindings; | ||
|
||
#[cfg(not(feature = "buildtime-bindgen"))] | ||
pub use bindings::*; |