blob: 86ec12048f5176dbb1f9776f2b97cf698da49598 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_FIRMWARE_GIGABOOT_INCLUDE_CTYPE_H_
#define SRC_FIRMWARE_GIGABOOT_INCLUDE_CTYPE_H_
int isdigit(int c);
int isspace(int c);
int tolower(int c);
#endif // SRC_FIRMWARE_GIGABOOT_INCLUDE_CTYPE_H_