blob: 1250a1a0d014ba46a72b29d759388654e2b3d1d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef L2SU_RUNTIME_H_INCLUDED
#define L2SU_RUNTIME_H_INCLUDED
#include <jansson.h>
int l2_runtime_load_manifest(json_t **manifest);
int l2_runtime_install_component(json_t *manifest, const char *component, char **ojrepath);
#endif /* include guard */
|