Limited C standard library implementation, part of PSn00bSDK 2019 Lameguy64 / Meido-Tek Productions Some components were inherited from PSXSDK. This library covers only the most commonly used C functions, mainly most string and memory manipulation functions. Improvements to this library such as adding more standard C functions are welcome. This library also contains the start code written in assembler which performs basic initialization such as clearing the bss section, setting the correct gp register value and initializing the heap for malloc. The dynamic memory allocation functions featured in this library are of an original implementation and do not use the BIOS memory allocation functions as they are are reportedly prone to memory leakage and is even explained in the official library documents. The implementation employed uses a simple first-fit memory allocation logic. Library developer(s)/contributor(s): Lameguy64 Library header(s): stdio.h stdlib.h string.h strings.h malloc.h Todo list: * Current vsprintf/sprintf implementation from PSXSDK needs to be replaced as it performs quite slow likely due to the unnecessary int64 arithmetic performed on any integer value which the compiler has to emulate on the R3000. A more efficient implementation that only uses int32 is much preferred. * Many of the string manipulation and memory fill functions in string.c are yet to be replaced with more efficient assembly implementations. Changelog: None thus far...