Lines Matching refs:str
35 * Return non-zero if pfx is a prefix of str. If it is, *ptr is set to
36 * the address of the first character in str after the prefix.
38 * @param str input string
40 * @param ptr updated if the prefix is matched inside str
43 int av_strstart(const char *str, const char *pfx, const char **ptr);
46 * Return non-zero if pfx is a prefix of str independent of case. If
47 * it is, *ptr is set to the address of the first character in str
50 * @param str input string
52 * @param ptr updated if the prefix is matched inside str
55 int av_stristart(const char *str, const char *pfx, const char **ptr);
278 char *av_strireplace(const char *str, const char *from, const char *to);