Lines Matching full:restrict
24 void* memcpy(void* restrict s1, const void* restrict s2, size_t n);
26 char* strcpy (char* restrict s1, const char* restrict s2);
27 char* strncpy(char* restrict s1, const char* restrict s2, size_t n);
28 char* strcat (char* restrict s1, const char* restrict s2);
29 char* strncat(char* restrict s1, const char* restrict s2, size_t n);
34 size_t strxfrm(char* restrict s1, const char* restrict s2, size_t n);
47 char* strtok(char* restrict s1, const char* restrict s2);