-
Notifications
You must be signed in to change notification settings - Fork 0
/
funcoes.c
73 lines (69 loc) · 1.48 KB
/
funcoes.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
72
73
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "funcoes.h"
#define TAMBUFFER 4096
char **alocaMemoriaArquivo(char *nomeArquivo)
{
long long int qtdLinhaArquivo = quantidadeLinhasNoArquivo(nomeArquivo), contador = 0;
FILE *arquivo = fopen(nomeArquivo, "r");
char buffer[TAMBUFFER];
if(arquivo == NULL)
{
perror("[-] Erro ao abrir arquivo");
exit(1);
}
char **lista = (char **) malloc(qtdLinhaArquivo * sizeof(char *));
if(lista == NULL)
{
perror("[-] Erro ao alocar memoria");
exit(1);
}
while(!feof(arquivo)){
memset(buffer, '\0', TAMBUFFER);
fgets(buffer, TAMBUFFER, arquivo);
removeCRLF(buffer);
lista[contador] = strndup(buffer, strlen(buffer)+1);
strcpy(lista[contador], buffer);
contador++;
}
fclose(arquivo);
return lista;
}
void removeCRLF(char *buffer)
{
char *posCRLF;
if ((posCRLF = strchr(buffer, '\n')) != NULL)
{
*posCRLF = '\0';
}
if ((posCRLF = strchr(buffer, '\r')) != NULL)
{
*posCRLF = '\0';
}
}
long long int quantidadeLinhasNoArquivo(char *nomeArquivo)
{
int quantidade = 0;
char buffer[TAMBUFFER];
FILE *arquivo = fopen(nomeArquivo, "r");
if(arquivo == NULL)
{
perror("[-] Erro ao abrir arquivo");
return -1;
}
while(!feof(arquivo))
{
fgets(buffer, TAMBUFFER, arquivo);
quantidade++;
}
fclose(arquivo);
return --quantidade;
}
int comparaString(const void *str1, const void *str2)
{
const char *a = *(const char**)str1;
const char *b = *(const char**)str2;
return strcmp(a, b);
}