summaryrefslogtreecommitdiff
path: root/kernel/include/lib.h
blob: be4e739e34e4eebf4b5ca0eba3578ff463c0774f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @file lib.h
 *
 * @author Freya Murphy <freya@freyacat.org>
 *
 * Kernel C Library
 */

#ifndef _LIB_H
#define _LIB_H

#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <lib/kctype.h>
#include <lib/kio.h>
#include <lib/klib.h>
#include <lib/kstring.h>

#endif /* lib.h */