llvm-project/libc/src/stdio/fgetc_unlocked.h
2022-11-07 21:47:29 +00:00

21 lines
613 B
C++

//===-- Implementation header of fgetc_unlocked -----------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_LIBC_SRC_STDIO_FGETC_UNLOCKED_H
#define LLVM_LIBC_SRC_STDIO_FGETC_UNLOCKED_H
#include <stdio.h>
namespace __llvm_libc {
int fgetc_unlocked(::FILE *f);
} // namespace __llvm_libc
#endif // LLVM_LIBC_SRC_STDIO_FGETC_UNLOCKED_H