Merge "Test_cel: Fails when DONT_OPTIMIZE is off" into 16

This commit is contained in:
Joshua C. Colp 2019-01-23 12:06:10 -06:00 committed by Gerrit Code Review
commit a40fb7fa7f
2 changed files with 16 additions and 13 deletions

View File

@ -1212,19 +1212,7 @@ static force_inline int attribute_pure ast_str_case_hash(const char *str)
*
* \retval str for convenience
*/
static force_inline char *attribute_pure ast_str_to_lower(char *str)
{
char *str_orig = str;
if (!str) {
return str;
}
for (; *str; ++str) {
*str = tolower(*str);
}
return str_orig;
}
char *attribute_pure ast_str_to_lower(char *str);
/*!
* \brief Convert a string to all upper-case

View File

@ -421,3 +421,18 @@ int ast_vector_string_split(struct ast_vector_string *dest,
return 0;
}
char *attribute_pure ast_str_to_lower(char *str)
{
char *str_orig = str;
if (!str) {
return str;
}
for (; *str; ++str) {
*str = tolower(*str);
}
return str_orig;
}