File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ void fillDashboard(TGame* pGame, int with);
49
49
char * getUserInputStr (char * message , int strLength ,
50
50
int (* validator )(char * userInput ));
51
51
52
+ // TODO: Receive an `onInvalidMessage` parameter in `getUserInputStr` function.
53
+
52
54
/**
53
55
* @brief Checks if a string is present in an array of strings.
54
56
*
@@ -124,4 +126,7 @@ void trimLeftStr(char* str);
124
126
*/
125
127
void trimRightStr (char * str );
126
128
129
+ // TODO: Create a function to format an array of strings to a string...
130
+ // conjunction, or disjunction.
131
+
127
132
#endif // UTILITIES_H_INCLUDED
Original file line number Diff line number Diff line change 2
2
3
3
#include "stdio.h"
4
4
5
+ // TODO: Convert `options` variable into a global variable.
5
6
int validatePattern (char * userInput ) {
6
7
char * options [] = {"glider" , "toad" , "press" , "glider cannon" };
7
8
return isStrIn (userInput , options , 2 );
@@ -26,6 +27,9 @@ int main() {
26
27
27
28
fillDashboard (& game , 0 );
28
29
30
+ // TODO: Replace `XXX` with a formatted version of `options` (global...
31
+ // variable).
32
+ // TODO: Add `onInvalidMessage` argument.
29
33
requestedPattern = getUserInputStr ("Which pattern do you want (XXX)? " , 50 ,
30
34
& validatePattern );
31
35
printf ("\n'%s'" , requestedPattern );
You can’t perform that action at this time.
0 commit comments