aboutsummaryrefslogtreecommitdiff
path: root/include/template.h
blob: de36293aff9f1cc5b0033f93a53d5fa509bf0d24 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __TEMPLATE_H
#define __TEMPLATE_H

typedef struct {
  char *pre;
  char *post;
} template_t;

template_t *template_create(void);

#endif