blob: 4fe9a35021835872776a123e9c7f3cac1acd6d3c [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include "aml_isupper.h"
int isupper(int c)
{
return c >= 'A' && c <= 'Z';
}