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

#include <types.h>
#include <atomic.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);

extern mutex_t stdio_lock;

#endif