#[no_mangle]
pub extern "C" fn nstd_string_new() -> NSTDString
Available on crate feature nstd_string only.
Expand description

Creates a new instance of NSTDString.

Returns

NSTDString string - The new string.

Example

use nstd_sys::string::nstd_string_new;

let string = nstd_string_new();