fix broken links in documentation
This commit is contained in:
parent
7fbfb9370e
commit
0ca1b67cb6
8 changed files with 49 additions and 25 deletions
|
|
@ -117,6 +117,8 @@ pub unsafe extern "C" fn sp_cp437_grid_clone(
|
|||
/// - `cp437_grid` points to a valid [SPCp437Grid]
|
||||
/// - `cp437_grid` is not used concurrently or after cp437_grid call
|
||||
/// - `cp437_grid` was not passed to another consuming function, e.g. to create a [SPCommand]
|
||||
///
|
||||
/// [SPCommand]: [crate::SPCommand]
|
||||
#[no_mangle]
|
||||
pub unsafe extern "C" fn sp_cp437_grid_free(cp437_grid: *mut SPCp437Grid) {
|
||||
assert!(!cp437_grid.is_null());
|
||||
|
|
@ -172,6 +174,8 @@ pub unsafe extern "C" fn sp_cp437_grid_get(
|
|||
///
|
||||
/// - `cp437_grid` points to a valid [SPBitVec]
|
||||
/// - `cp437_grid` is not written to or read from concurrently
|
||||
///
|
||||
/// [SPBitVec]: [crate::SPBitVec]
|
||||
#[no_mangle]
|
||||
pub unsafe extern "C" fn sp_cp437_grid_set(
|
||||
cp437_grid: *mut SPCp437Grid,
|
||||
|
|
|
|||
Loading…
Reference in a new issue