libc: Useful Headers (memory, stdbool, endian, limits)

Continuing on with our libc bringup, today we’ll look at a few simple headers that we need: memory.h stdbool.h endian.h limits.h memory.h memory.h is probably the easiest header we will write. We simply need to use it as an alias for string.h: #include <string.h> stdbool.h Next up is stdbool.h, also a very simple header. Since …