blu_os
Loading...
Searching...
No Matches
stdio.h
1
//
2
// Created by dylan on 08/07/2026.
3
//
4
5
#ifndef BLU_OS_STDIO_H
6
#define BLU_OS_STDIO_H
7
8
#include <sys/cdefs.h>
9
10
#define EOF (-1)
11
12
#ifdef __cplusplus
13
extern
"C"
{
14
#endif
15
16
int
printf(
const
char
* __restrict, ...);
17
int
putchar(
int
);
18
int
puts(
const
char
*);
19
20
#ifdef __cplusplus
21
}
22
#endif
23
24
#endif
//BLU_OS_STDIO_H
libc
include
stdio.h
Generated by
1.16.1