You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
doxygen: misc consistency, spelling and wording fixes
This commit is contained in:
@@ -137,7 +137,7 @@ char *av_d2str(double d);
|
||||
char *av_get_token(const char **buf, const char *term);
|
||||
|
||||
/**
|
||||
* Locale independent conversion of ASCII characters to upper case.
|
||||
* Locale-independent conversion of ASCII characters to uppercase.
|
||||
*/
|
||||
static inline int av_toupper(int c)
|
||||
{
|
||||
@@ -147,7 +147,7 @@ static inline int av_toupper(int c)
|
||||
}
|
||||
|
||||
/**
|
||||
* Locale independent conversion of ASCII characters to lower case.
|
||||
* Locale-independent conversion of ASCII characters to lowercase.
|
||||
*/
|
||||
static inline int av_tolower(int c)
|
||||
{
|
||||
@@ -157,13 +157,13 @@ static inline int av_tolower(int c)
|
||||
}
|
||||
|
||||
/*
|
||||
* Locale independent case-insensitive compare.
|
||||
* Locale-independent case-insensitive compare.
|
||||
* @note This means only ASCII-range characters are case-insensitive
|
||||
*/
|
||||
int av_strcasecmp(const char *a, const char *b);
|
||||
|
||||
/**
|
||||
* Locale independent case-insensitive compare.
|
||||
* Locale-independent case-insensitive compare.
|
||||
* @note This means only ASCII-range characters are case-insensitive
|
||||
*/
|
||||
int av_strncasecmp(const char *a, const char *b, size_t n);
|
||||
|
||||
Reference in New Issue
Block a user