blob: 4e9de9f9db6eacfff47b61282158373d7d512976 [file] [log] [blame]
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (c) 2019, KAIST
*/
#include <ctype.h>
int isgraph(int c)
{
if (c >= 0x21 && c < 0x7f)
return 1;
return 0;
}