Documentation

StrPushFrontZstr

StrPushFrontZstr Description Push a null-terminated string to the front of this string.

Read More

StrPushZstr

StrPushZstr Description Push a null-terminated string to this string at given position.

Read More

StrReadFmt

StrReadFmt Description Parse input string according to format string with rust-style placeholders, extracting values into provided arguments. This is a macro wrapper around StrReadFmtInternal.

Read More

StrRemove

StrRemove Description Remove char from string at given index and store in given pointer.

Read More

StrRemoveRange

StrRemoveRange Description Remove data from string in given range [start, start + count)

Read More

StrReplace

StrReplace Description Replace occurrences of a Str in string with another Str.

Read More

StrReplaceCstr

StrReplaceCstr Description Replace occurrences of a fixed-length string (Cstr) in string.

Read More

StrReplaceZstr

StrReplaceZstr Description Replace occurrences of a null-terminated string (Zstr) in string.

Read More

StrReserve

StrReserve Description Reserve space for string.

Read More

StrResize

StrResize Description Resize string. If length is smaller than current capacity, string length is shrinked. If length is greater than current capacity, space is reserved and string is expanded.

Read More