blob: ab0bf1082c9da18ce42ddf4ac3a1295aaae6eeb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef RUNNER_RESULTGEN_H
#define RUNNER_RESULTGEN_H
#include <stdbool.h>
bool generate_results(int dirfd);
bool generate_results_path(char *resultspath);
struct json_object *generate_results_json(int dirfd);
#endif
|