An open API service indexing awesome lists of open source software.

https://github.com/th3spl/kstd

Implementing STL C++ classes in Kernel Env ( with some differences )
https://github.com/th3spl/kstd

cpp cpp20 kernel stl utility

Last synced: 5 months ago
JSON representation

Implementing STL C++ classes in Kernel Env ( with some differences )

Awesome Lists containing this project

README

          

# kstd ( Kernel Standard Template Library )

For obvious reasons the normal C++ `STL` libraries are not usable in `kernel Mode`
and since sometime doing all the string / list allocations manually
in `kernel mode` can be tedious i decided to implement some basic `STL` functionalities in order
to simplify the process.

### Classes:
- [x] string
- [x] wstring
- [x] vector

A big thanks to my friend [`FURYWOLF`](https://github.com/xxFURYWOLFxx) for the collaboration.