blob: 77f32dec16cebfe43d04cc9c5d934c22f099a795 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include "aml_islower.h"
int islower(int c)
{
return c >= 'a' && c <= 'z';
}