DIP 1030--Named Arguments--Community Review Round 1 Discussion
Walter Bright
newshound2 at digitalmars.com
Tue Feb 11 18:39:47 UTC 2020
On 2/11/2020 8:35 AM, Paul Backus wrote:
> Here's a better example: functions like move and memcpy that take source and
> destination arguments. Currently, move uses 'source" and "target", but memcpy
> uses "s2" and "s1".
The C99 Standard says:
void *memcpy(void * restrict s1,
const void * restrict s2,
size_t n);
which is what we will slavishly use for all Standard C library functions.
More information about the Digitalmars-d
mailing list