// SPDX-License-Identifier: BSD-2-Clause /* * Copyright (c) 2019, KAIST */ #include int isalnum(int c) { return isalpha(c) || isdigit(c); }