Home | History | Annotate | Download | only in linux-lib

Lines Matching full:character

611    GB18030 and the character to be searched is a digit.  */
614 _GL_WARN_ON_USE (strchr, "strchr cannot work correctly on character strings "
771 _GL_WARN_ON_USE (strcspn, "strcspn cannot work correctly on character strings "
776 /* Find the first occurrence in S of any character in ACCEPT. */
803 _GL_WARN_ON_USE (strpbrk, "strpbrk cannot work correctly on character strings "
820 _GL_WARN_ON_USE (strspn, "strspn cannot work correctly on character strings "
827 GB18030 and the character to be searched is a digit. */
830 _GL_WARN_ON_USE (strrchr, "strrchr cannot work correctly on character strings "
846 Caveat: The identity of the delimiting character is lost.
862 _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings "
907 "work correctly on character strings in most "
954 _GL_WARN_ON_USE (strcasestr, "strcasestr does work correctly on character "
979 Caveat: The identity of the delimiting character is lost.
1013 _GL_WARN_ON_USE (strtok_r, "strtok_r cannot work correctly on character "
1030 /* Return the number of multibyte characters in the character string STRING.
1053 /* Return the number of multibyte characters in the character string starting
1061 /* Locate the first single-byte character C in the character string STRING,
1083 /* Locate the last single-byte character C in the character string STRING,
1105 /* Find the first occurrence of the character string NEEDLE in the character
1115 /* Compare the character strings S1 and S2, ignoring case, returning less than,
1127 /* Compare the initial segment of the character string S1 consisting of at most
1128 N characters with the initial segment of the character string S2 consisting
1135 But beware that N is not a byte count but a character count! */
1142 /* Compare the initial segment of the character string STRING consisting of
1143 at most mbslen (PREFIX) characters with the character string PREFIX,
1156 /* Find the first occurrence of the character string NEEDLE in the character
1167 /* Find the first occurrence in the character string STRING of any character
1168 in the character string ACCEPT. Return the number of bytes from the
1178 /* Find the first occurrence in the character string STRING of any character
1179 in the character string ACCEPT. Return the pointer to it, or NULL if none
1200 /* Find the first occurrence in the character string STRING of any character
1201 not in the character string REJECT. Return the number of bytes from the
1211 /* Search the next delimiter (multibyte character listed in the character
1212 string DELIM) starting at the character string *STRINGP.
1214 to the next multibyte character after it. Otherwise, set *STRINGP to NULL.
1222 Caveat: The identity of the delimiting character is lost.
1230 /* Parse the character string STRING into tokens separated by characters in
1231 the character string DELIM.
1243 Caveat: The identity of the delimiting character is lost.