xref: /llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/Headers/stdio.h (revision 83f875dc94d7a5cc9b2da32e2a7b1502e3b0640c)
1 //===--- stdio.h - Stub header for tests ------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef _STDIO_H_
10 #define _STDIO_H_
11 
12 // A header intended to contain C standard input and output library
13 // declarations.
14 
15 typedef struct structFILE {} FILE;
16 extern FILE *stderr;
17 
18 int printf(const char *, ...);
19 int fprintf(FILE *, const char *, ...);
20 
21 #define NULL (0)
22 
23 #endif // _STDIO_H_
24 
25