aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
Commit message (Collapse)AuthorAgeFilesLines
* Introduce error code systemverdant2026-08-061-9/+27
| | | | | Refactor spawn function, use return error code, provide more clearly error handling.
* Add spawn wrapper for executing external commandsverdant2026-07-281-0/+28
Inctroduce process.c and process.h providing spawn() function to fork a child process and execute commands via execvp(). Return -1 on invalid arguments or fork failure, and 0 on success.