Next: Comparing Unicode strings, Previous: Creating Unicode strings one character at a time, Up: Elementary string functions [Contents][Index]
The following functions copy Unicode strings in memory.
Copies n units from src to dest.
This function is similar to memcpy
, except that it operates on
Unicode strings.
Copies n units from src to dest, returning a pointer after the last written unit.
This function is similar to mempcpy
, except that it operates on
Unicode strings.
Copies n units from src to dest, guaranteeing correct behavior for overlapping memory areas.
This function is similar to memmove
, except that it operates on
Unicode strings.
The following function fills a Unicode string.
Sets the first n characters of s to uc. uc should be a character that occupies only 1 unit.
This function is similar to memset
, except that it operates on
Unicode strings.
Next: Comparing Unicode strings, Previous: Creating Unicode strings one character at a time, Up: Elementary string functions [Contents][Index]