logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

wmemmove - copy an array of wide-characters

Attributes

       For an explanation of the terms used in this section, see attributes(7).
       ┌─────────────────────────────────────────────────────────────────────────────┬───────────────┬─────────┐
       │ InterfaceAttributeValue   │
       ├─────────────────────────────────────────────────────────────────────────────┼───────────────┼─────────┤
       │ wmemmove()                                                                  │ Thread safety │ MT-Safe │
       └─────────────────────────────────────────────────────────────────────────────┴───────────────┴─────────┘

Description

       The  wmemmove()  function  is the wide-character equivalent of the memmove(3) function.  It copies n wide
       characters from the array starting at src to the array starting at dest.  The arrays may overlap.

       The programmer must ensure that there is room for at least n wide characters at dest.

History

       POSIX.1-2001, C99.

Library

       Standard C library (libc, -lc)

Name

       wmemmove - copy an array of wide-characters

Return Value

wmemmove() returns dest.

See Also

memmove(3), wmemcpy(3)

Linux man-pages 6.9.1                              2024-05-02                                        wmemmove(3)

Standards

       C11, POSIX.1-2008.

Synopsis

#include<wchar.h>wchar_t*wmemmove(wchar_tdest[.n],constwchar_tsrc[.n],size_tn);

See Also