summaryrefslogtreecommitdiff
path: root/include/cookbook.h
blob: 05a8f6328d63606f412c4d8ab665831a0d3f9671 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef COOKBOOK_H
#define COOKBOOK_H

typedef struct url url;
typedef struct string_view string_view;

int cookbook_recipe_run(struct url *script_loc,
			char *script,
			struct string_view *out);

#endif