vulcanos/kernel/libc/stdio.h

20 lines
543 B
C
Raw Normal View History

/**************************************
2021-01-02 17:49:15 +01:00
* VulcanOS Kernel *
* Developed by Marco 'icebit' Cetica *
2021-01-02 17:49:15 +01:00
* (c) 2019-2021 *
* Released under GPLv3 *
* https://github.com/ice-bit/iceOS *
***************************************/
2019-07-03 12:37:16 +02:00
#ifndef _STDIO_H_
#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, ...);
int printf_color(const char *format, uint8_t fg, uint8_t bg); // Only for string for now
void puts(const char *buf);
2019-07-03 12:37:16 +02:00
2021-01-02 17:49:15 +01:00
#endif