summaryrefslogtreecommitdiffstats
path: root/src/object.c
blob: 55ea4af326e1fe97fcfe82298d5374f4d56d7f44 (plain)
1
2
3
4
5
6
7
8
9
#include <xas/object.h>

int xas_object_start(xas_object *object) {
    object->start(object);
}

int xas_object_stop(xas_object *object) {
    object->stop(object);
}