summaryrefslogtreecommitdiff
path: root/utils.c
blob: 8ef5567a7a39d0ec276412cb0eeefc8fc78bb911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include "utils.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>

int
checkIfFileExists (char *path)
{
	return access (path, F_OK);
}

int
numerize (char *string)
{
	int val = 0;
	for (int i = 0; i < strlen (string); i++)
	{
		val += string[i];
	}
	return val;
}

int
lineCounter (FILE *dictionary)
{
	int words = 0;
	if (dictionary != NULL)
	{
		char line[MAX_LINE];
		for (int i = words; (!feof (dictionary)); i++)
		{
			fgets (line, MAX_LINE, dictionary);
			words = i;
		}
		rewind (dictionary);
		words--;
	}
	return words;
}

char *
getLine (FILE *dictionary, int lineNumber)
{
	char *line = (char *)calloc (MAX_LINE, sizeof (char));
	if (dictionary != NULL)
	{
		for (int i = 0; (!feof (dictionary) && i != lineNumber); i++)
		{
			fgets (line, MAX_LINE, dictionary);
		}
		rewind (dictionary);
	}
	return line;
}

int
getRandomNumber (int min, int max, char *question)
{
	struct timeval randtime;
	gettimeofday(&randtime,NULL);
	srand(((randtime.tv_sec * 100) + time(NULL)) + ((randtime.tv_usec / 100) - time(NULL)));
	return ((rand() % (max - min + 1)) + 1);
}