Skip to content

Commit 7adbfa9

Browse files
committed
todo: add new todos (comments)
1 parent e891460 commit 7adbfa9

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

libs/utilities.h

+5
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ void fillDashboard(TGame* pGame, int with);
4949
char* getUserInputStr(char* message, int strLength,
5050
int (*validator)(char* userInput));
5151

52+
// TODO: Receive an `onInvalidMessage` parameter in `getUserInputStr` function.
53+
5254
/**
5355
* @brief Checks if a string is present in an array of strings.
5456
*
@@ -124,4 +126,7 @@ void trimLeftStr(char* str);
124126
*/
125127
void trimRightStr(char* str);
126128

129+
// TODO: Create a function to format an array of strings to a string...
130+
// conjunction, or disjunction.
131+
127132
#endif // UTILITIES_H_INCLUDED

src/main.c

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#include "stdio.h"
44

5+
// TODO: Convert `options` variable into a global variable.
56
int validatePattern(char* userInput) {
67
char* options[] = {"glider", "toad", "press", "glider cannon"};
78
return isStrIn(userInput, options, 2);
@@ -26,6 +27,9 @@ int main() {
2627

2728
fillDashboard(&game, 0);
2829

30+
// TODO: Replace `XXX` with a formatted version of `options` (global...
31+
// variable).
32+
// TODO: Add `onInvalidMessage` argument.
2933
requestedPattern = getUserInputStr("Which pattern do you want (XXX)? ", 50,
3034
&validatePattern);
3135
printf("\n'%s'", requestedPattern);

0 commit comments

Comments
 (0)