-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspotPrices.c
33 lines (29 loc) · 1.12 KB
/
spotPrices.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
/* spotPrices.c */
#include "spotPrices.h"
#include "allError.h"
/*Funktionen compareSpotPrices sammenligner elpriser, der anvendes af qsort-funktionen*/
int compareSpotPrices(const void *p1, const void *p2) {
const spotPrices *elem1 = p1;
const spotPrices *elem2 = p2;
if (elem1->price < elem2->price)
return -1;
else if (elem1->price > elem2->price)
return 1;
else
return 0;
}
/* Returnerer index for et bestemt tidspunkt */
int getArrayIndex(spotPrices array[], int arrayLen, struct tm tm) {
int i;
char timeDate[DATE_MAX];
sprintf(timeDate, "%d-%02d-%02d %02d", tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday, tm.tm_hour);
for (i = 0; i < arrayLen; i++) {
if (strcmp(array[i].date, timeDate) == 0) /*Tjekker om der er ens dato og tid, med den hentede data fra C#-programmet*/
return i;
}
printError(202, "output.csv"); /*Printer fejlkode hvis der ikke findes nogen ens dato og tid*/
return 0;
}
void printCurrentPrice(spotPrices array[], int arrayLen) {
printf("The price right now is: %.2f EUR.\n", array[arrayLen].price);
}