summaryrefslogtreecommitdiff
path: root/src/data/tupel.c
blob: 202cd98c3d5009bbefffbf262e0bd79fa8494e01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "tupel.h"

#include <stdlib.h>

Tupel*
tupel_new() {
   Tupel *p_tupel = (Tupel *) malloc(sizeof(Tupel));

   p_tupel->a = NULL;
   p_tupel->b = NULL;
   p_tupel->c = NULL;

   return p_tupel;
}

void
tupel_delete(Tupel *p_tupel) {
   free(p_tupel);
}