blob: 5cbbaf467bf9fb0d1f438b2d674705dc730d61d7 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include "aml_isalpha.h"
#include "aml_isupper.h"
#include "aml_islower.h"
int isalpha(int c)
{
return islower(c) || isupper(c);
}