blob: 827572d1f37c9fd395abc76fd20cb74d3ef44107 [file] [log] [blame]
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (c) 2019, KAIST
*/
#include <ctype.h>
int isalnum(int c)
{
return isalpha(c) || isdigit(c);
}