aboutsummaryrefslogtreecommitdiff
path: root/src/shape.c
blob: cb72c0537ea0e23b8bf97a2498cb021cd83f2fce (plain)
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
#include <stdlib.h>
#include "shape.h"

struct shape
{
    shape_area_t area;
    shape_destroy_t destroy;
};

double shape_area(struct shape *shape)
{
    return shape->area(shape);
}

void shape_destroy(struct shape *shape)
{
    shape->destroy(shape);
}

void shape_init(
    struct shape *shape,
    shape_area_t area,
    shape_destroy_t destroy)
{
    shape->area = area;
    shape->destroy = destroy;
}

int shape_sizeof()
{
    return sizeof(struct shape);
}