• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef RUNNER_RESULTGEN_H
2 #define RUNNER_RESULTGEN_H
3 
4 #include <stdbool.h>
5 
6 bool generate_results(int dirfd);
7 bool generate_results_path(char *resultspath);
8 
9 struct json_object *generate_results_json(int dirfd);
10 
11 #endif
12