Tag: variable-length-array

  • Linux memcpy restrict keyword syntax

    Linux memcpy restrict keyword syntax

    9 I know that the restrict qualifier in C specifies that the memory region pointed by two pointers should not overlap. It was my understanding that the Linux (not SUS) prototype for memcpy looks like – void* memcpy(void *restrict dest, const void *restrict src, size_t count); However, when I looked at man7.org/memcpy it seems that…