blob: 4c2231a262e324bf0dd710fc8dd8c7bc449ebcaa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef STASIS_SYSTEM_REQUIREMENTS_H
#define STASIS_SYSTEM_REQUIREMENTS_H
#include "delivery.h"
#include "callbacks.h"
#include "envctl.h"
void check_system_env_requirements();
void check_system_requirements(struct Delivery *ctx);
void check_requirements(struct Delivery *ctx);
char *check_pathvar(struct Delivery *ctx);
#endif //STASIS_SYSTEM_REQUIREMENTS_H
|