-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchec.c
71 lines (43 loc) · 1.11 KB
/
chec.c
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
67
68
69
70
71
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int chec(char *chave,FILE *arq){
fseek(arq,0,SEEK_SET);
int compar=1;
char validade[50];
while(fgets(validade,50,arq)!=NULL){//puxa as strings do arquivo usuario
compar=strcmp(chave,validade);//compara todas as strings do arquivo com a passada para a função
if (!compar){
break;
}
}
return compar;//retorna o estado(0 para strings iguais, !=0 para strings diferentes
}
void get_int(int *num){//filtra as entradas para nao haver problemas com buffer
int flag = 0;
char str[100];
fgets(str, 100,stdin);
*num = atoi(str);
int i = 0;
while(*num == 0 && str[i] != '\n'){
if(str[i] < '0' || str[i] > '9'){
*num = -1;
break;
}
i++;
}
}
void get_char(int *chr){//filtra as entradas para nao haver problemas com buffer
int flag = 0;
char str[100];
fgets(str, 100,stdin);
int i = 0;
*chr = str[0];
while(str[i] != '\n'){
if(str[i] != 's' && str[i] != 'n' || i > 0){
*chr = 'x';
break;
}
i++;
}
}