summaryrefslogtreecommitdiff
path: root/kernel/include/libk/stdio.h
blob: 64d16f11156c786fbfe0666068f7989e2d87c819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef STDIO_H
#define STDIO_H

#include <types.h>

void print_char(char c);
void print_string(const char* s);
void print_int(uint64_t num);
void print_hex(uint64_t num);
void printf(const char *s, ...);
void vprintf(const char *s, va_list list);

#endif