mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-03 23:43:36 +01:00
33 lines
551 B
C
33 lines
551 B
C
|
//---
|
||
|
//
|
||
|
// standard library module: stdio
|
||
|
//
|
||
|
// Handles most input/output for the program. This module does not
|
||
|
// interact with the file system directly.
|
||
|
//
|
||
|
//---
|
||
|
|
||
|
#ifndef _INTERNALS_STDIO_H
|
||
|
#define _INTERNALS_STDIO_H 1
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
//---
|
||
|
// Formatted printing.
|
||
|
//---
|
||
|
|
||
|
#ifndef __stdio_buffer_size
|
||
|
#define __stdio_buffer_size 256
|
||
|
#endif
|
||
|
|
||
|
extern char __stdio_buffer[];
|
||
|
|
||
|
/*
|
||
|
__printf()
|
||
|
Formatted printing to the stdio buffer.
|
||
|
*/
|
||
|
int __printf(size_t size, const char *format, va_list args);
|
||
|
|
||
|
#endif // _INTERNALS_STDIO_H
|