blob: 99fd69ac8b3bd6b85c7d80546901930e5bd3228d [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include "aml_isdigit.h"
int isdigit(int c)
{
return c >= '0' && c <= '9';
}