Lines Matching full:restrict
27 void* memcpy(void* restrict s1, const void* restrict s2, size_t n);
29 char* strcpy (char* restrict s1, const char* restrict s2);
30 char* strncpy(char* restrict s1, const char* restrict s2, size_t n);
31 char* strcat (char* restrict s1, const char* restrict s2);
32 char* strncat(char* restrict s1, const char* restrict s2, size_t n);
37 size_t strxfrm(char* restrict s1, const char* restrict s2, size_t n);
50 char* strtok(char* restrict s1, const char* restrict s2);