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 )
- Host: GitHub
- URL: https://github.com/th3spl/kstd
- Owner: Th3Spl
- License: mit
- Created: 2025-07-09T16:56:25.000Z (9 months ago)
- Default Branch: kstd
- Last Pushed: 2025-08-08T13:09:20.000Z (8 months ago)
- Last Synced: 2025-09-12T05:45:11.464Z (7 months ago)
- Topics: cpp, cpp20, kernel, stl, utility
- Language: C++
- Homepage:
- Size: 16.6 KB
- Stars: 6
- Watchers: 0
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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.