Available on crate feature
core only.Expand description
Raw C string processing.
Functions§
- nstd_
core_ ⚠cstr_ raw_ compare - Compares two raw null-terminated C strings, returning
NSTD_TRUEif they are lexicographically equal. - nstd_
core_ ⚠cstr_ raw_ copy - Copies the contents of one raw C string to another, excluding the source’s null-terminator.
- nstd_
core_ ⚠cstr_ raw_ copy_ with_ null - Copies the contents of one raw C string to another, including the source’s null-terminator.
- nstd_
core_ ⚠cstr_ raw_ len - Gets the length of a raw null terminated C string, not counting the C string’s null byte.
- nstd_
core_ ⚠cstr_ raw_ len_ with_ null - Gets the length of a raw null terminated C string, counting the C string’s null byte.