Milestone 2! Polished code, add settings menu

This commit is contained in:
Aidan Haas
2023-01-05 12:04:51 -05:00
committed by GitHub
parent b737ac8375
commit 6ce73ab765
4 changed files with 89 additions and 33 deletions
+1 -2
View File
@@ -127,7 +127,6 @@ int update_max_wpm(Stat_struct *stats) {
return SUCCESS;
}
/* Appends first parameter to the end of end of the second parameter
(Does not change size of the target, assumes there is space) */
void append_line(char *source, char *target) {
@@ -140,4 +139,4 @@ void append_line(char *source, char *target) {
}
target[i] = '\0'; /* End string */
}
}