first commit

This commit is contained in:
2023-08-15 16:31:07 +02:00
commit 85c68bc097
20 changed files with 729 additions and 0 deletions

5
src/read_until_nl.h Normal file
View File

@ -0,0 +1,5 @@
#pragma once
// this function will read until the next newline character
// and save the characters in a string you provide in arg2
int read_until_nl(int fd, char line[]);