Chroma/inc/lainlib/lainlib.h

25 lines
619 B
C
Raw Normal View History

#pragma once
/************************
*** Team Kitty, 2020 ***
*** Chroma ***
***********************/
/* Defines all of the temporary library functions.
* All of this must be moved into the Chroma stdlib.
* They exist here as guidance, and as utility for the kernel itself.
* If need be, they can also be moved into a trimmed-down "kernel libc" or "libk".
*/
#include <lainlib/list/list.h>
#include <lainlib/mutex/spinlock.h>
#include <lainlib/mutex/ticketlock.h>
#include <lainlib/string/str.h>
#include <lainlib/compression/lzg.h>
2021-07-04 20:47:09 +00:00
#ifdef __cplusplus
2022-07-10 00:01:49 +00:00
#include <lainlib/vector/vector.h>
2021-07-04 20:47:09 +00:00
#endif