summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2023-07-08Implement trivial linked listMalfurious3-0/+43
* Bring-your-own-node (generic / zero allocations) * Doubly-linked and circular, forward and backward traversable * Random insert/removal in constant time * All operations are no-fail * [Some type safety concessions though] Signed-off-by: Malfurious <m@lfurio.us>
2023-07-07Add panel clear helperMalfurious2-0/+5
Signed-off-by: Malfurious <m@lfurio.us>
2023-07-07Add malloc wrapperMalfurious2-0/+11
Abort on allocation failure. This is mostly done as a formality, as Linux tends to over-commit memory anyway. In the event of most failures, we won't have a reasonable recovery either. Signed-off-by: Malfurious <m@lfurio.us>
2023-07-06Rename curshelpers unit to 'helpers'Malfurious5-5/+4
Signed-off-by: Malfurious <m@lfurio.us>
2023-07-05Add CMake build systemMalfurious2-0/+39
Signed-off-by: Malfurious <m@lfurio.us>
2023-07-02Add main source fileMalfurious1-0/+105
Signed-off-by: Malfurious <m@lfurio.us>
2023-07-02Add basic pty consoleMalfurious2-0/+117
This is good enough for early testing of the debugger functionality, but should be improved in the future. Signed-off-by: Malfurious <m@lfurio.us>
2023-07-02Add convenience ncurses functionsMalfurious2-0/+59
Signed-off-by: Malfurious <m@lfurio.us>
2023-06-30UNLICENSEMalfurious1-0/+24
Signed-off-by: Malfurious <m@lfurio.us>