aboutsummaryrefslogtreecommitdiff
path: root/lib/libutils/isoc/isspace.c
blob: 633995c3971913fa196033d6b6d3e223c29787ce (plain)
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: BSD-2-Clause
/*
 * Copyright (c) 2018, Linaro Limited
 */
#include <ctype.h>

int __builtin_isspace(int c)
{
	return (c == ' ');
}