Skip to content

Commit 1ed22ab

Browse files
committed
refactor: move validatePattern from src project to libs project
1 parent 00ae693 commit 1ed22ab

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

libs/utilities.c

+5
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@ int strcmpi(const char* str01, const char* str02) {
8484
return cmp;
8585
}
8686

87+
int validatePattern(char* userInput) {
88+
char* options[] = {"glider", "toad", "press", "glider cannon"};
89+
return isStrIn(userInput, options, 4);
90+
}
91+
8792
void trimStr(char* str) {
8893
trimLeftStr(str);
8994
trimRightStr(str);

libs/utilities.h

+12
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,18 @@ void printDashboardByConsole(TGame* pGame);
9090
*/
9191
int strcmpi(const char* str01, const char* str02);
9292

93+
/**
94+
* @brief Validates the pattern of user input.
95+
*
96+
* This function checks if the user input matches `glider`, `toad`, `press`, or
97+
* `glider cannon` pattern. The comparison is case insensitive.
98+
*
99+
* @param userInput The user input to be validated.
100+
*
101+
* @return 1 if the pattern is valid, 0 otherwise.
102+
*/
103+
int validatePattern(char* userInput);
104+
93105
/**
94106
* @brief Trims leading and trailing whitespace characters from a string.
95107
*

src/main.c

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@
22

33
#include "stdio.h"
44

5-
int validatePattern(char* userInput) {
6-
char* options[] = {"glider", "toad", "press", "glider cannon"};
7-
return isStrIn(userInput, options, 4);
8-
}
9-
105
int main() {
116
TGame game;
127

@@ -52,4 +47,4 @@ int main() {
5247
} while (invalidPattern);
5348

5449
return 0;
55-
}
50+
}

0 commit comments

Comments
 (0)