dfd8fc0252a3a768e5ff821f3cc0e19c2553613c
[familia.git] / positions.c
1 #include <stdlib.h>
2
3 #include "positions.h"
4 #include "storage/individual.h"
5 #include "storage/family.h"
6
7 struct position * familia_position_calculate_individual_position(struct familia_individual * individual)
8 {
9 /*      TODO: Implement this function*/
10         return NULL;
11 }
12
13 struct position * familia_position_calculate_family_position(struct familia_family * family)
14 {
15 /*      TODO: Implement this function*/
16         return NULL;
17 }