summaryrefslogtreecommitdiff
path: root/builtin/ctype.h
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/ctype.h')
-rw-r--r--builtin/ctype.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/builtin/ctype.h b/builtin/ctype.h
new file mode 100644
index 0000000000..8844adca67
--- /dev/null
+++ b/builtin/ctype.h
@@ -0,0 +1,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__ */