Home | History | Annotate | Download | only in lib

Lines Matching full:character

164    GB18030 and the character to be searched is a digit.  */
167 (GL_LINK_WARNING ("strchr cannot work correctly on character strings " \
244 (GL_LINK_WARNING ("strcspn cannot work correctly on character strings " \
250 /* Find the first occurrence in S of any character in ACCEPT. */
263 (GL_LINK_WARNING ("strpbrk cannot work correctly on character strings " \
281 (GL_LINK_WARNING ("strspn cannot work correctly on character strings " \
289 GB18030 and the character to be searched is a digit. */
292 (GL_LINK_WARNING ("strrchr cannot work correctly on character strings " \
309 Caveat: The identity of the delimiting character is lost.
321 (GL_LINK_WARNING ("strsep cannot work correctly on character strings " \
348 "work correctly on character strings in most " \
371 (GL_LINK_WARNING ("strcasestr does work correctly on character strings " \
396 Caveat: The identity of the delimiting character is lost.
409 (GL_LINK_WARNING ("strtok_r cannot work correctly on character strings " \
427 /* Return the number of multibyte characters in the character string STRING.
433 /* Return the number of multibyte characters in the character string starting
439 /* Locate the first single-byte character C in the character string STRING,
448 /* Locate the last single-byte character C in the character string STRING,
457 /* Find the first occurrence of the character string NEEDLE in the character
465 /* Compare the character strings S1 and S2, ignoring case, returning less than,
475 /* Compare the initial segment of the character string S1 consisting of at most
476 N characters with the initial segment of the character string S2 consisting
483 But beware that N is not a byte count but a character count! */
488 /* Compare the initial segment of the character string STRING consisting of
489 at most mbslen (PREFIX) characters with the character string PREFIX,
501 /* Find the first occurrence of the character string NEEDLE in the character
510 /* Find the first occurrence in the character string STRING of any character
511 in the character string ACCEPT. Return the number of bytes from the
519 /* Find the first occurrence in the character string STRING of any character
520 in the character string ACCEPT. Return the pointer to it, or NULL if none
528 /* Find the first occurrence in the character string STRING of any character
529 not in the character string REJECT. Return the number of bytes from the
537 /* Search the next delimiter (multibyte character listed in the character
538 string DELIM) starting at the character string *STRINGP.
540 to the next multibyte character after it. Otherwise, set *STRINGP to NULL.
548 Caveat: The identity of the delimiting character is lost.
555 /* Parse the character string STRING into tokens separated by characters in
556 the character string DELIM.
568 Caveat: The identity of the delimiting character is lost.