summaryrefslogtreecommitdiff
path: root/src/til_setup.h
blob: 7f612132aeb34480b4d3709f683245491390c244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _TIL_SETUP_H
#define _TIL_SETUP_H

typedef struct til_setup_t til_setup_t;

struct til_setup_t {
	void (*free)(til_setup_t *setup);
};

void * til_setup_new(size_t size, void (*free_func)(til_setup_t *setup));

#endif
© All Rights Reserved