summaryrefslogtreecommitdiff
path: root/builtin/ctype.h
blob: 682cc0569471420dd05349e4aec20f20e507c709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright 2022 The ChromiumOS Authors.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef __CROS_EC_CTYPE_H__
#define __CROS_EC_CTYPE_H__

int isdigit(int c);
int isspace(int c);
int isalpha(int c);
int isupper(int c);
int isprint(int c);
int tolower(int c);

#endif /* __CROS_EC_CTYPE_H__ */