Go to the documentation of this file.
21 #ifndef AVUTIL_AVSTRING_H
22 #define AVUTIL_AVSTRING_H
41 int av_strstart(
const char *str,
const char *pfx,
const char **ptr);
53 int av_stristart(
const char *str,
const char *pfx,
const char **ptr);
67 char *
av_stristr(
const char *haystack,
const char *needle);
82 char *
av_strnstr(
const char *haystack,
const char *needle,
size_t hay_length);
186 char *
av_strtok(
char *
s, const
char *delim,
char **saveptr);
208 if (c >=
'a' && c <=
'z')
218 if (c >=
'A' && c <=
'Z')
270 #define AV_ESCAPE_FLAG_WHITESPACE 0x01
277 #define AV_ESCAPE_FLAG_STRICT 0x02
295 int av_escape(
char **dst,
const char *
src,
const char *special_chars,