summaryrefslogtreecommitdiff
path: root/config.h
Commit message (Collapse)AuthorAgeFilesLines
* refactor: replace #ifdef DEBUG printf to log_printfdilluti0n2025-05-141-4/+5
| | | | - fix log_printf to not automatically insert newline
* refactor: introduce mem.h; wrappers for allocatorsdilluti0n2025-05-101-2/+2
| | | | This patch removes the dependency on raylib when allocating memory.
* implement: eb_backspacedilluti0n2025-04-271-0/+1
| | | | | | | | | quite a nested function. to implement lazy allocation for line buffer. is there a proper way to do it??? [minor] fix warning msg on eb_insert which was incomplecation type on printf add <stdio.h> on config.h DEBUG section
* refactor: move debugs to config.h and handle build gracefullydilluti0n2025-04-271-0/+3
| | | | | | | makefile now handle each object and sources seperately to handle header change gracefully. and from now on, #DEBUG should declared inside of config.h
* implement: line_deletedilluti0n2025-04-271-0/+8
fix eb_backspace to actually backspace char, not delete it [minor] fix line_insert to handle li->last correctly