aboutsummaryrefslogtreecommitdiffstats
path: root/include/structs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/structs.h')
-rw-r--r--include/structs.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/structs.h b/include/structs.h
index 3b5c550..035af45 100644
--- a/include/structs.h
+++ b/include/structs.h
@@ -4,21 +4,21 @@
#include <time.h>
struct item {
- double p;
- double w;
+ double p;
+ double w;
};
struct data {
- long int N;
- struct item * items;
- double allp;
- double allw;
+ long int N;
+ struct item * items;
+ double allp;
+ double allw;
};
struct front_item {
- struct item i;
- struct front_item * next;
- struct front_item * prev;
+ struct item i;
+ struct front_item * next;
+ struct front_item * prev;
clock_t time;
};
#endif