36int av_strstart(
const char *str,
const char *pfx,
const char **ptr)
38 while (*pfx && *pfx == *str) {
47int av_stristart(
const char *str,
const char *pfx,
const char **ptr)
61 return (
char*)(intptr_t)s1;
65 return (
char*)(intptr_t)s1;
71char *
av_strnstr(
const char *haystack,
const char *needle,
size_t hay_length)
73 size_t needle_len = strlen(needle);
75 return (
char*)haystack;
76 while (hay_length >= needle_len) {
78 if (!memcmp(haystack, needle, needle_len))
79 return (
char*)haystack;
92 return len + strlen(
src) - 1;
141#define WHITESPACES " \n\t\r"
146 char *ret =
out, *end =
out;
147 const char *p = *buf;
152 while (*p && !strspn(p, term)) {
154 if (
c ==
'\\' && *p) {
157 }
else if (
c ==
'\'') {
158 while (*p && *p !=
'\'')
176 return small_ret ? small_ret : ret;
183 if (!
s && !(
s = *saveptr))
187 s += strspn(
s, delim);
197 s += strcspn(
s, delim);
226 }
while (--n &&
c1 &&
c1 ==
c2);
233 const char *pstr2, *pstr = str;
234 size_t tolen = strlen(
to), fromlen = strlen(
from);
240 pstr = pstr2 + fromlen;
255 if (!path || *path ==
'\0')
258 const char *p = strrchr(path,
'/');
260 const char *q = strrchr(path,
'\\');
261 const char *d = strchr(path,
':');
273 char *p = path ? strrchr(path,
'/') :
NULL;
276 char *q = path ? strrchr(path,
'\\') :
NULL;
277 char *d = path ? strchr(path,
':') :
NULL;
302 p_len = strlen(path);
303 c_len = strlen(component);
304 if (p_len > SIZE_MAX - c_len || p_len + c_len > SIZE_MAX - 2)
311 if (fullpath[p_len - 1] !=
'/' && component[0] !=
'/')
312 fullpath[p_len++] =
'/';
313 else if (fullpath[p_len - 1] ==
'/' && component[0] ==
'/')
317 av_strlcpy(&fullpath[p_len], component, c_len + 1);
318 fullpath[p_len + c_len] = 0;
349 namelen = strlen(
name);
351 int negate =
'-' == *names;
352 p = strchr(names,
',');
354 p = names + strlen(names);
359 names = p + (*p ==
',');
367 const uint8_t *p = *bufp;
370 int ret = 0, tail_len;
371 uint32_t overlong_encoding_mins[6] = {
372 0x00000000, 0x00000080, 0x00000800, 0x00010000, 0x00200000, 0x04000000,
382 if ((
code & 0xc0) == 0x80 ||
code >= 0xFE) {
386 top = (
code & 128) >> 1;
406 code &= (top << 1) - 1;
410 if (
code < overlong_encoding_mins[tail_len]) {
415 if (
code >= 1U<<31) {
422 if (
code > 0x10FFFF &&
428 if (
code >= 0xD800 &&
code <= 0xDFFF &&
431 if ((
code == 0xFFFE ||
code == 0xFFFF) &&
444 for (p =
name; p && *p; ) {
445 for (q = list; q && *q; ) {
447 for (k = 0; p[k] == q[k] || (p[k]*q[k] == 0 && p[k]+q[k] ==
separator); k++)
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
char * av_asprintf(const char *fmt,...)
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
#define AV_BPRINT_SIZE_UNLIMITED
#define flags(name, subs,...)
static char separator(CheckasmFormat format)
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
void av_bprint_escape(AVBPrint *dstbuf, const char *src, const char *special_chars, enum AVEscapeMode mode, int flags)
Escape the content in src and append it to dstbuf.
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
void av_bprint_append_data(AVBPrint *buf, const char *data, unsigned size)
Append data to a print buffer.
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes,...
char * av_stristr(const char *s1, const char *s2)
Locate the first case-independent occurrence in the string haystack of the string needle.
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
#define AV_UTF8_FLAG_ACCEPT_SURROGATES
accept UTF-16 surrogates codes
int av_escape(char **dst, const char *src, const char *special_chars, enum AVEscapeMode mode, int flags)
Escape string in src, and put the escaped string in an allocated string in *dst, which must be freed ...
static av_const int av_tolower(int c)
Locale-independent conversion of ASCII characters to lowercase.
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
int av_match_name(const char *name, const char *names)
Match instances of a name in a comma-separated list of names.
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
#define AV_UTF8_FLAG_ACCEPT_INVALID_BIG_CODES
accept codepoints over 0x10FFFF
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
char * av_strnstr(const char *haystack, const char *needle, size_t hay_length)
Locate the first occurrence of the string needle in the string haystack where not more than hay_lengt...
int av_match_list(const char *name, const char *list, char separator)
Check if a name is in a list.
char * av_get_token(const char **buf, const char *term)
Unescape the given string until a non escaped terminating char, and return the token corresponding to...
static av_const int av_toupper(int c)
Locale-independent conversion of ASCII characters to uppercase.
const char * av_dirname(char *path)
Thread safe dirname.
const char * av_basename(const char *path)
Thread safe basename.
int av_utf8_decode(int32_t *codep, const uint8_t **bufp, const uint8_t *buf_end, unsigned int flags)
Read and decode a single UTF-8 code point (character) from the buffer in *buf, and update *buf to poi...
int av_stristart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str independent of case.
char * av_append_path_component(const char *path, const char *component)
Append path component to the existing path.
#define AV_UTF8_FLAG_ACCEPT_NON_CHARACTERS
accept non-characters - 0xFFFE and 0xFFFF
char * av_strireplace(const char *str, const char *from, const char *to)
Locale-independent strings replace.
int av_strncasecmp(const char *a, const char *b, size_t n)
Locale-independent case-insensitive compare.
#define AV_UTF8_FLAG_EXCLUDE_XML_INVALID_CONTROL_CODES
exclude control codes not accepted by XML
Utility Preprocessor macros.
Memory handling functions.