blob: fabba3dd9788a41daad660f57b47b585a422f572 [file] [log] [blame]
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (c) 2019, KAIST
*/
#include <ctype.h>
int islower(int c)
{
return (c >= 'a' && c <= 'z');
}