-
Notifications
You must be signed in to change notification settings - Fork 0
/
itemkey_int.c
46 lines (43 loc) · 1.53 KB
/
itemkey_int.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
/*******************************************************************************
* Implementazione dell'interfaccia itemkey.h, nel caso in cui Item INTERO e la *
* chiave dell'Item è l'intero stesso. *
* *
* N.B: per semplicità i tipi sono definiti in itmkey.h *
*******************************************************************************/
#include <stdio.h>
#include "itemkey.h"
/******************************************************************************/
Item newItem( Key k ){
return k;
}
/******************************************************************************/
void destroyItem( Item i ){
}
/******************************************************************************/
void printItem( Item i ){
if( i != NULL_Item )
printf("%d ",i);
}
/******************************************************************************/
void printlnItem( Item i ){
printItem( i );
printf("\n");
}
/******************************************************************************/
Key key( Item i ){
if( i == NULL_Item ) return NULL_Key;
else return i;
}
/******************************************************************************/
int cmp( Key k1, Key k2 ){
return k1 - k2;
}
/******************************************************************************/
void printKey( Key k ){
printf("%d ",k);
}
/******************************************************************************/
void printlnKey( Key k ){
printKey( k );
printf("\n");
}