stream_delete_and_insert_char

Function stream_delete_and_insert_char 

Source
pub unsafe extern "C" fn stream_delete_and_insert_char(
    stream: *mut Stream,
    delete_size: usize,
    c: c_char,
) -> bool
Expand description

Delete N chars from the stream and insert char to the stream

§Arguments

  • stream - Stream instance
  • delete_size - size of data to be deleted
  • c - char value

§Returns

true if the operation was successful false on error