Skip to content

Commit c2f543a

Browse files
hozlucas28GuidolinarestefhuergoTiagoGiannotti
committed
feature: create validatePlatform function
Co-authored-by: Guidolinares <[email protected]> Co-authored-by: tefhuergo <[email protected]> Co-authored-by: Tiago Giannotti <[email protected]>
1 parent e55bb74 commit c2f543a

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

libs/validators.c

+6
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,10 @@ int validateGeneration(char* generation) {
3636
int validatePattern(char* userInput) {
3737
char* options[] = {"glider", "toad", "press", "glider cannon"};
3838
return isStrIn(userInput, options, 4);
39+
}
40+
41+
int validatePlatform(char* userInput) {
42+
char* options[] = {"console", "simple directmedia layer (sdl)", "simple directmedia layer",
43+
"sdl"};
44+
return isStrIn(userInput, options, 4);
3945
}

libs/validators.h

+3
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,7 @@ int validateGeneration(char* generation);
3838
*/
3939
int validatePattern(char* userInput);
4040

41+
// TODO: Documentation
42+
int validatePlatform(char* platform);
43+
4144
#endif // VALIDATORS_H_INCLUDED

0 commit comments

Comments
 (0)