blob: 77f32dec16cebfe43d04cc9c5d934c22f099a795 [file] [log] [blame]
xiaohu.huangf3ffd7b2022-11-01 15:14:52 +08001/*
2 * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#include "aml_islower.h"
8
9int islower(int c)
10{
11 return c >= 'a' && c <= 'z';
12}