-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitem.c
85 lines (59 loc) · 1.25 KB
/
item.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
74
75
76
77
78
79
80
81
82
83
84
/* Directivas de pre-compilador*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "item.h"
/* CONSTRUTORES */
char* new_msg (){
int i;
char* msg = (char*)malloc(DIM*sizeof(char));
getchar();
for (i=0; (msg[i]=getchar())!=EOF && msg[i]!='\n' && i<DIM; i++);
msg[i]='\0';
msg = (char*)realloc(msg, i+1*sizeof(char));
return msg;
}
Item new_item(int emissor, int recetor, char* msg){
Item novo = (Item)malloc(sizeof(struct mensagem));
novo->emissor = emissor;
novo->recetor = recetor;
novo->mensagem = msg;
return novo;
}
/* SELETORES */
int recetor(struct mensagem item){
return item.recetor;
}
int emissor(struct mensagem item){
return item.emissor;
}
char* mensagem(struct mensagem item){
return item.mensagem;
}
/* MODIFICADORES */
void delete_string(char* string){
free(string);
}
void delete_item(Item item){
delete_string(item->mensagem);
free(item);
}
/* TESTES */
int compara_msg (const void * c, const void * d){
Item a = (Item) c;
Item b = (Item) d;
if (strcmp(a->mensagem, b->mensagem)<0) {
return -1;
}
if (strcmp(a->mensagem, b->mensagem)>0) {
return 1;
}
else{
if (a->emissor<b->emissor) {
return -1;
}
else {
return 1;
}
}
}