diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-08 10:39:48 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-08 10:39:48 -0400 |
commit | 8a19547957a86bed3f58c9abc1ac218d04698faf (patch) | |
tree | ed7ccc6f3a8902915dfe6c9bf763fc45d752b3c4 /kernel/include/lib.h | |
parent | fmt (diff) | |
download | comus-8a19547957a86bed3f58c9abc1ac218d04698faf.tar.gz comus-8a19547957a86bed3f58c9abc1ac218d04698faf.tar.bz2 comus-8a19547957a86bed3f58c9abc1ac218d04698faf.zip |
break apart c libaray
Diffstat (limited to 'kernel/include/lib.h')
-rw-r--r-- | kernel/include/lib.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/kernel/include/lib.h b/kernel/include/lib.h new file mode 100644 index 0000000..be4e739 --- /dev/null +++ b/kernel/include/lib.h @@ -0,0 +1,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 */ |