mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
22 lines
443 B
C
22 lines
443 B
C
|
|
// https://issues.dlang.org/show_bug.cgi?id=23580
|
|
// https://issues.dlang.org/show_bug.cgi?id=23581
|
|
// https://issues.dlang.org/show_bug.cgi?id=23582
|
|
// https://issues.dlang.org/show_bug.cgi?id=23583
|
|
|
|
#include <string.h>
|
|
|
|
void foo()
|
|
{
|
|
memmove(0, 0, 0);
|
|
memcpy(0, 0, 0);
|
|
memset(0, 0, 0);
|
|
#if __APPLE__
|
|
stpcpy(0, 0);
|
|
stpncpy(0, 0, 0);
|
|
#endif
|
|
strcat(0, 0);
|
|
strcpy(0, 0);
|
|
strncat(0, 0, 0);
|
|
strncpy(0, 0, 0);
|
|
}
|