blob: 395a8326db5293b91e3d63bef3e42f522a531972 [file] [log] [blame]
// SPDX-License-Identifier: BSD-2-Clause
/*
* Copyright (c) 2018, Linaro Limited
*/
#include <ctype.h>
int isspace(int c)
{
return (c == ' ');
}