Commit ed736890 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '4981baf9'

* commit '4981baf9':
  avstring: Mark some character handling functions av_const
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents edff061f 4981baf9
...@@ -203,22 +203,22 @@ char *av_strtok(char *s, const char *delim, char **saveptr); ...@@ -203,22 +203,22 @@ char *av_strtok(char *s, const char *delim, char **saveptr);
/** /**
* Locale-independent conversion of ASCII isdigit. * Locale-independent conversion of ASCII isdigit.
*/ */
int av_isdigit(int c); av_const int av_isdigit(int c);
/** /**
* Locale-independent conversion of ASCII isgraph. * Locale-independent conversion of ASCII isgraph.
*/ */
int av_isgraph(int c); av_const int av_isgraph(int c);
/** /**
* Locale-independent conversion of ASCII isspace. * Locale-independent conversion of ASCII isspace.
*/ */
int av_isspace(int c); av_const int av_isspace(int c);
/** /**
* Locale-independent conversion of ASCII characters to uppercase. * Locale-independent conversion of ASCII characters to uppercase.
*/ */
static inline int av_toupper(int c) static inline av_const int av_toupper(int c)
{ {
if (c >= 'a' && c <= 'z') if (c >= 'a' && c <= 'z')
c ^= 0x20; c ^= 0x20;
...@@ -228,7 +228,7 @@ static inline int av_toupper(int c) ...@@ -228,7 +228,7 @@ static inline int av_toupper(int c)
/** /**
* Locale-independent conversion of ASCII characters to lowercase. * Locale-independent conversion of ASCII characters to lowercase.
*/ */
static inline int av_tolower(int c) static inline av_const int av_tolower(int c)
{ {
if (c >= 'A' && c <= 'Z') if (c >= 'A' && c <= 'Z')
c ^= 0x20; c ^= 0x20;
...@@ -238,7 +238,7 @@ static inline int av_tolower(int c) ...@@ -238,7 +238,7 @@ static inline int av_tolower(int c)
/** /**
* Locale-independent conversion of ASCII isxdigit. * Locale-independent conversion of ASCII isxdigit.
*/ */
int av_isxdigit(int c); av_const int av_isxdigit(int c);
/** /**
* Locale-independent case-insensitive compare. * Locale-independent case-insensitive compare.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment