update bindings for more const correctness

This commit is contained in:
2024-07-17 09:49:22 -07:00
parent e81321d8bf
commit de5d29b3e6
3 changed files with 16 additions and 16 deletions

View File

@ -483,7 +483,7 @@ extern "C" {
pub fn csp_buffer_get(unused: usize) -> *mut csp_packet_t;
#[doc = " Free buffer (from task context).\n\n @param[in] buffer buffer to free. NULL is handled gracefully."]
pub fn csp_buffer_free(buffer: *mut ::core::ffi::c_void);
pub fn csp_buffer_free(buffer: *const ::core::ffi::c_void);
#[doc = " Print connection table to stdout."]
pub fn csp_conn_print_table();