Home | History | Annotate | Download | only in Include

Lines Matching refs:S2

33       void     *memcpy      (void * __restrict s1, const void * __restrict s2, size_t n);

34 void *memmove (void *s1, const void *s2, size_t n);
35 char *strcpy (char * __restrict s1, const char * __restrict s2);
36 char *strncpy (char * __restrict s1, const char * __restrict s2, size_t n);
37 int strncpyX (char * __restrict s1, const char * __restrict s2, size_t n);
40 char *strcat (char * __restrict s1, const char * __restrict s2);
41 char *strncat (char * __restrict s1, const char * __restrict s2, size_t n);
42 int strncatX (char * __restrict s1, const char * __restrict s2, size_t n);
45 int memcmp (const void *s1, const void *s2, size_t n);
46 int strcmp (const char *s1, const char *s2);
47 int strcoll (const char *s1, const char *s2);
48 int strncmp (const char *s1, const char *s2, size_t n);
49 size_t strxfrm (char * __restrict s1, const char * __restrict s2, size_t n);
54 size_t strcspn (const char *s1, const char *s2);
55 char *strpbrk (const char *s1, const char *s2);
57 size_t strspn (const char *s1 , const char *s2);
58 char *strstr (const char *s1 , const char *s2);
59 char *strtok (char * __restrict s1, const char * __restrict s2);
69 int strcasecmp (const char *s1, const char *s2);
71 int strncasecmp (const char *s1, const char *s2, size_t n);
223 int strncatX(char * __restrict s1, const char * __restrict s2, size_t n);
228 to by S1 to the first N characters of the object pointed to by S2.
231 @param[in] S2 Pointer to the object to be compared to S1.
236 greater than, equal to, or less than the object pointed to by S2.
238 int memcmp(const void *S1, const void *S2, size_t N);
241 pointed to by S2.
244 @param[in] S2 Pointer to the string to be compared to S1.
248 greater than, equal to, or less than the string pointed to by S2.
250 int strcmp(const char *S1, const char *S2);
253 pointed to by S2, both interpreted as appropriate to the LC_COLLATE
257 @param[in] S2 Pointer to the string to be compared to S1.
261 greater than, equal to, or less than the string pointed to by S2
264 int strcoll(const char *S1, const char *S2);
268 to the array pointed to by S2.
271 @param[in] S2 Pointer to the object to be compared to S1.
277 the possibly null-terminated array pointed to by S2.
279 int strncmp(const char *S1, const char *S2, size_t N);
331 the string pointed to by S2.
334 @param[in] S2 Pointer to the list of characters to search for.
338 size_t strcspn(const char *S1, const char *S2);
341 by S1 of any character from the string pointed to by S2.
344 @param[in] S2 Pointer to the list of characters to search for.
347 null pointer if no character from S2 occurs in S1.
349 char *strpbrk(const char *S1, const char *S2);
365 string pointed to by S2.
368 @param[in] S2 Pointer to the list of characters to search for.
372 size_t strspn(const char *S1 , const char *S2);
376 character) in the string pointed to by S2.
379 @param[in] S2 Pointer to the sequence of characters to search for.
382 null pointer if the string is not found. If S2 points to a string
385 char *strstr(const char *S1 , const char *S2);
391 from the string pointed to by S2. The first call in the sequence has a
393 argument. The separator string pointed to by S2 may be different from call
398 pointed to by S2. If no such character is found, then there are no tokens
415 @param[in] S2 Pointer to a list of separator characters.
420 char *strtok(char * __restrict S1, const char * __restrict S2);
462 int strcasecmp(const char *s1, const char *s2);
464 int strncasecmp(const char *s1, const char *s2, size_t n);