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

8
src/remove_whitespace.h Normal file
View File

@ -0,0 +1,8 @@
// this function removes all new lines and carriage returns from a string
// you might want to write a new function that replaces '\r' and '\n'
// with a delimiter of user's choice
#pragma once
void remove_nl_and_cr(char raw_string[]);
void remove_whitespace(char raw_string[]);