Symbol: stpcpy
headers/posix/string.h
66
extern char *stpcpy(char *dest, const char *source);
src/apps/mail/Words.cpp
526
end = stpcpy(dst, src);
src/apps/mail/Words.cpp
532
end = stpcpy(end - 1, "ive");
src/apps/mail/Words.cpp
535
end = stpcpy(end, "ive");
src/apps/mail/Words.cpp
542
end = stpcpy(end - 1, "ion");
src/apps/mail/Words.cpp
545
end = stpcpy(end - 1, "ication");
src/apps/mail/Words.cpp
548
end = stpcpy(end, "en");
src/apps/mail/Words.cpp
555
end = stpcpy(end - 1, "ions");
src/apps/mail/Words.cpp
558
end = stpcpy(end - 1, "ications");
src/apps/mail/Words.cpp
561
end = stpcpy(end, "ens");
src/apps/mail/Words.cpp
568
end = stpcpy(end - 1, "ieth");
src/apps/mail/Words.cpp
571
end = stpcpy(end, "th");
src/apps/mail/Words.cpp
576
end = stpcpy(end, "ly");
src/apps/mail/Words.cpp
581
end = stpcpy(end - 1, "ing");
src/apps/mail/Words.cpp
584
end = stpcpy(end, "ing");
src/apps/mail/Words.cpp
591
end = stpcpy(end - 1, "ings");
src/apps/mail/Words.cpp
594
end = stpcpy(end, "ings");
src/apps/mail/Words.cpp
601
end = stpcpy(end - 1, "ed");
src/apps/mail/Words.cpp
605
end = stpcpy(end - 1, "ied");
src/apps/mail/Words.cpp
610
end = stpcpy(end, "ed");
src/apps/mail/Words.cpp
617
end = stpcpy(end - 1, "est");
src/apps/mail/Words.cpp
621
end = stpcpy(end - 1, "iest");
src/apps/mail/Words.cpp
626
end = stpcpy(end, "est");
src/apps/mail/Words.cpp
633
end = stpcpy(end - 1, "er");
src/apps/mail/Words.cpp
637
end = stpcpy(end - 1, "ier");
src/apps/mail/Words.cpp
642
end = stpcpy(end, "er");
src/apps/mail/Words.cpp
649
end = stpcpy(end - 1, "ers");
src/apps/mail/Words.cpp
653
end = stpcpy(end - 1, "iers");
src/apps/mail/Words.cpp
658
end = stpcpy(end, "ers");
src/apps/mail/Words.cpp
668
end = stpcpy(end, "es");
src/apps/mail/Words.cpp
672
end = stpcpy(end - 1, "ies");
src/apps/mail/Words.cpp
677
end = stpcpy(end, "s");
src/apps/mail/Words.cpp
685
end = stpcpy(end - 1, "iness");
src/apps/mail/Words.cpp
690
end = stpcpy(end, "ness");
src/apps/mail/Words.cpp
695
end = stpcpy(end, "'s");
src/system/libroot/posix/glibc/include/string.h
13
#define __stpcpy stpcpy
src/system/libroot/posix/musl/string/strcpy.c
6
stpcpy(dest, src);
src/tools/fs_shell/string.cpp
236
return stpcpy(dest, source);