Home | History | Annotate | Download | only in lib

Lines Matching full:character

299    GB18030 and the character to be searched is a digit.  */
302 _GL_WARN_ON_USE (strchr, "strchr cannot work correctly on character strings "
459 _GL_WARN_ON_USE (strcspn, "strcspn cannot work correctly on character strings "
464 /* Find the first occurrence in S of any character in ACCEPT. */
491 _GL_WARN_ON_USE (strpbrk, "strpbrk cannot work correctly on character strings "
508 _GL_WARN_ON_USE (strspn, "strspn cannot work correctly on character strings "
515 GB18030 and the character to be searched is a digit. */
518 _GL_WARN_ON_USE (strrchr, "strrchr cannot work correctly on character strings "
534 Caveat: The identity of the delimiting character is lost.
550 _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings "
595 "work correctly on character strings in most "
642 _GL_WARN_ON_USE (strcasestr, "strcasestr does work correctly on character "
667 Caveat: The identity of the delimiting character is lost.
701 _GL_WARN_ON_USE (strtok_r, "strtok_r cannot work correctly on character "
718 /* Return the number of multibyte characters in the character string STRING.
741 /* Return the number of multibyte characters in the character string starting
749 /* Locate the first single-byte character C in the character string STRING,
771 /* Locate the last single-byte character C in the character string STRING,
793 /* Find the first occurrence of the character string NEEDLE in the character
803 /* Compare the character strings S1 and S2, ignoring case, returning less than,
815 /* Compare the initial segment of the character string S1 consisting of at most
816 N characters with the initial segment of the character string S2 consisting
823 But beware that N is not a byte count but a character count! */
830 /* Compare the initial segment of the character string STRING consisting of
831 at most mbslen (PREFIX) characters with the character string PREFIX,
844 /* Find the first occurrence of the character string NEEDLE in the character
855 /* Find the first occurrence in the character string STRING of any character
856 in the character string ACCEPT. Return the number of bytes from the
866 /* Find the first occurrence in the character string STRING of any character
867 in the character string ACCEPT. Return the pointer to it, or NULL if none
888 /* Find the first occurrence in the character string STRING of any character
889 not in the character string REJECT. Return the number of bytes from the
899 /* Search the next delimiter (multibyte character listed in the character
900 string DELIM) starting at the character string *STRINGP.
902 to the next multibyte character after it. Otherwise, set *STRINGP to NULL.
910 Caveat: The identity of the delimiting character is lost.
918 /* Parse the character string STRING into tokens separated by characters in
919 the character string DELIM.
931 Caveat: The identity of the delimiting character is lost.