Miam-Player  0.8.0
A nice music player
avstring.h File Reference
#include <stddef.h>
#include <stdint.h>
#include "attributes.h"

Go to the source code of this file.

Macros

#define AV_ESCAPE_FLAG_WHITESPACE   (1 << 0)
 
#define AV_ESCAPE_FLAG_STRICT   (1 << 1)
 
#define AV_UTF8_FLAG_ACCEPT_INVALID_BIG_CODES   1
 accept codepoints over 0x10FFFF More...
 
#define AV_UTF8_FLAG_ACCEPT_NON_CHARACTERS   2
 accept non-characters - 0xFFFE and 0xFFFF More...
 
#define AV_UTF8_FLAG_ACCEPT_SURROGATES   4
 accept UTF-16 surrogates codes More...
 
#define AV_UTF8_FLAG_EXCLUDE_XML_INVALID_CONTROL_CODES   8
 exclude control codes not accepted by XML More...
 
#define AV_UTF8_FLAG_ACCEPT_ALL   AV_UTF8_FLAG_ACCEPT_INVALID_BIG_CODES|AV_UTF8_FLAG_ACCEPT_NON_CHARACTERS|AV_UTF8_FLAG_ACCEPT_SURROGATES
 

Enumerations

enum  AVEscapeMode { AV_ESCAPE_MODE_AUTO, AV_ESCAPE_MODE_BACKSLASH, AV_ESCAPE_MODE_QUOTE }
 

Functions

int av_strstart (const char *str, const char *pfx, const char **ptr)
 
int av_stristart (const char *str, const char *pfx, const char **ptr)
 
char * av_stristr (const char *haystack, const char *needle)
 
char * av_strnstr (const char *haystack, const char *needle, size_t hay_length)
 
size_t av_strlcpy (char *dst, const char *src, size_t size)
 
size_t av_strlcat (char *dst, const char *src, size_t size)
 
size_t av_strlcatf (char *dst, size_t size, const char *fmt,...) av_printf_format(3
 
char * av_asprintf (const char *fmt,...) av_printf_format(1
 
char char * av_d2str (double d)
 
char * av_get_token (const char **buf, const char *term)
 
char * av_strtok (char *s, const char *delim, char **saveptr)
 
int av_strcasecmp (const char *a, const char *b)
 
int av_strncasecmp (const char *a, const char *b, size_t n)
 
const char * av_basename (const char *path)
 
const char * av_dirname (char *path)
 
int av_match_name (const char *name, const char *names)
 
char * av_append_path_component (const char *path, const char *component)
 
av_warn_unused_result int av_escape (char **dst, const char *src, const char *special_chars, enum AVEscapeMode mode, int flags)
 
av_warn_unused_result int av_utf8_decode (int32_t *codep, const uint8_t **bufp, const uint8_t *buf_end, unsigned int flags)
 
int av_match_list (const char *name, const char *list, char separator)