xref: /optee_os/lib/libutils/isoc/isspace.c (revision ed4b5e39c96bd035788ff4f07c87232d934c1264)
1 // SPDX-License-Identifier: BSD-2-Clause
2 /*
3  * Copyright (c) 2018, Linaro Limited
4  */
5 #include <ctype.h>
6 
7 int __builtin_isspace(int c)
8 {
9 	return (c == ' ');
10 }
11