2019-07-03 18:12:57 +02:00
|
|
|
/**************************************
|
|
|
|
* iceOS Kernel *
|
|
|
|
* Developed by Marco 'icebit' Cetica *
|
|
|
|
* (c) 2019 *
|
|
|
|
* Released under GPLv3 *
|
|
|
|
* https://github.com/ice-bit/iceOS *
|
|
|
|
***************************************/
|
|
|
|
|
2019-07-03 12:37:16 +02:00
|
|
|
#ifndef _STDIO_H_
|
2019-07-03 18:12:57 +02:00
|
|
|
#define _STDIO_H_
|
2019-07-03 12:37:16 +02:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
int printf(const char *format, ...);
|
2019-07-08 18:43:45 +02:00
|
|
|
int printf_color(const char *format, uint8_t fg, uint8_t bg); // Only for string for now
|
2019-07-03 21:04:05 +02:00
|
|
|
void puts(const char *buf);
|
2019-07-03 12:37:16 +02:00
|
|
|
|
|
|
|
#endif
|