Lines Matching refs:S1

228     to by S1 to the first N characters of the object pointed to by S2.
230 @param[out] S1 Pointer to the first object to be compared.
231 @param[in] S2 Pointer to the object to be compared to S1.
235 less than zero, accordingly as the object pointed to by S1 is
238 int memcmp(const void *S1, const void *S2, size_t N);
240 /** The strcmp function compares the string pointed to by S1 to the string
243 @param[out] S1 Pointer to the first string to be compared.
244 @param[in] S2 Pointer to the string to be compared to S1.
247 less than zero, accordingly as the string pointed to by S1 is
250 int strcmp(const char *S1, const char *S2);
252 /** The strcoll function compares the string pointed to by S1 to the string
256 @param[out] S1 Pointer to the first string to be compared.
257 @param[in] S2 Pointer to the string to be compared to S1.
260 or less than zero, accordingly as the string pointed to by S1 is
264 int strcoll(const char *S1, const char *S2);
267 follow a null character are not compared) from the array pointed to by S1
270 @param[out] S1 Pointer to the first object to be compared.
271 @param[in] S2 Pointer to the object to be compared to S1.
276 array pointed to by S1 is greater than, equal to, or less than
279 int strncmp(const char *S1, const char *S2, size_t N);
330 the string pointed to by S1 which consists entirely of characters NOT from
333 @param[in] S1 Pointer to the object to be searched.
338 size_t strcspn(const char *S1, const char *S2);
341 by S1 of any character from the string pointed to by S2.
343 @param[in] S1 Pointer to the object to be searched.
347 null pointer if no character from S2 occurs in S1.
349 char *strpbrk(const char *S1, const char *S2);
364 the string pointed to by S1 which consists entirely of characters from the
367 @param[in] S1 Pointer to the object to be searched.
372 size_t strspn(const char *S1 , const char *S2);
375 by S1 of the sequence of characters (excluding the terminating null
378 @param[in] S1 Pointer to the object to be searched.
383 with zero length, the function returns S1.
385 char *strstr(const char *S1 , const char *S2);
390 S1 into a sequence of tokens, each of which is delimited by a character
396 The first call in the sequence searches the string pointed to by S1 for the
399 in the string pointed to by S1 and the strtok function returns a null
404 the current token extends to the end of the string pointed to by S1, and
414 @param[in] S1 Pointer to the string to be tokenized.
420 char *strtok(char * __restrict S1, const char * __restrict S2);