Skip to content

Commit 6e9ce6e

Browse files
committed
feature(validateGeneration): create generation validator
1 parent f2fd732 commit 6e9ce6e

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

libs/validators.c

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11

2+
#include <limits.h>
3+
#include <stdio.h>
4+
25
#include "./utilities.h"
36

7+
int validateGeneration(char* generation) {
8+
int generationInt;
9+
sscanf(generation, "%d", &generationInt);
10+
return generationInt >= INT_MIN && generationInt <= INT_MAX;
11+
}
12+
413
int validatePattern(char* userInput) {
514
char* options[] = {"glider", "toad", "press", "glider cannon"};
615
return isStrIn(userInput, options, 4);

libs/validators.h

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
#ifndef VALIDATORS_H_INCLUDED
33
#define VALIDATORS_H_INCLUDED
44

5+
/**
6+
* @brief Validates a generation.
7+
*
8+
* This function checks if a provided generation string is between the minimum number, and the
9+
* maximum number for a generation.
10+
*
11+
* @param generation The generation to be validated.
12+
*
13+
* @return 1 if the generation is valid, 0 otherwise.
14+
*/
15+
int validateGeneration(char* generation);
16+
517
/**
618
* @brief Validates the pattern of user input.
719
*

0 commit comments

Comments
 (0)