blob: 542467d439289d3e4c60cb626dbd36fb61060863 [file] [log] [blame]
xiaohu.huang1fd6f112022-05-24 11:02:05 +08001/*
2 * Copyright (c) 2021-2022 Amlogic, Inc. All rights reserved.
3 *
4 * SPDX-License-Identifier: MIT
5 */
6
7#include "aml_isspace.h"
8
9int isspace(int c)
10{
11 return c == ' ' || c == '\t' || c == '\r' || c == '\n';
12}