-
Notifications
You must be signed in to change notification settings - Fork 0
/
appel.c
53 lines (38 loc) · 1.23 KB
/
appel.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
#include <string.h>
#include "appel.h"
void charger_appels(Appel *appels) {
FILE *fichier_repertoire = fopen("../message.txt", "r");
if (!fichier_repertoire) {
printf("Impossible d'ouvrir le fichier répertoire.\n");
exit(1);
}
char ligne[255];
int index_ligne = 0;
char *p;
while (fgets(ligne, sizeof(ligne), fichier_repertoire) && index_ligne < NBR_APPEL) {
int i = 0;
p = strtok(ligne, " ");
while (p != NULL) {
if (i == 0) {
char *bad;
p += 3;
long num = strtol(p, &bad, 10);
appels[index_ligne].numero = num;
} else if (i == 1) {
strcpy(appels[index_ligne].prenom, p);
} else if (i == 2) {
strcpy(appels[index_ligne].nom, p);
} else if (i == 3) {
// if (p[0] == 'S') {
// appels[index_ligne].type = SORTANT;
// } else {
// appels[index_ligne].type = ENTRANT;
// }
appels[index_ligne].type = p[0] == 'S' ? SORTANT : ENTRANT;
}
p = strtok(NULL, " ");
i++;
}
index_ligne++;
}
}