29 lines
640 B
C
29 lines
640 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/************************
|
|
*** 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>
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif |