blob: 542467d439289d3e4c60cb626dbd36fb61060863 [file] [log] [blame] [edit]
/*
* Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
*
* SPDX-License-Identifier: MIT
*/
#include "aml_isspace.h"
int isspace(int c)
{
return c == ' ' || c == '\t' || c == '\r' || c == '\n';
}