|
|
@ -151,6 +151,21 @@ char *av_d2str(double d); |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
char *av_get_token(const char **buf, const char *term); |
|
|
|
char *av_get_token(const char **buf, const char *term); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Locale-independent conversion of ASCII isdigit. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
int av_isdigit(int c); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Locale-independent conversion of ASCII isgraph. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
int av_isgraph(int c); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Locale-independent conversion of ASCII isspace. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
int av_isspace(int c); |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Locale-independent conversion of ASCII characters to uppercase. |
|
|
|
* Locale-independent conversion of ASCII characters to uppercase. |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -171,6 +186,11 @@ static inline int av_tolower(int c) |
|
|
|
return c; |
|
|
|
return c; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Locale-independent conversion of ASCII isxdigit. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
int av_isxdigit(int c); |
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Locale-independent case-insensitive compare. |
|
|
|
* Locale-independent case-insensitive compare. |
|
|
|
* @note This means only ASCII-range characters are case-insensitive |
|
|
|
* @note This means only ASCII-range characters are case-insensitive |
|
|
|