From 1762aa42cd86e0bb2631631488bf8b2474378f83 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 14 Feb 2025 10:05:58 -0500 Subject: Move cli/stasis main program to a library stasis_entrypoint.a --- src/lib/entrypoint/include/system_requirements.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/lib/entrypoint/include/system_requirements.h (limited to 'src/lib/entrypoint/include/system_requirements.h') diff --git a/src/lib/entrypoint/include/system_requirements.h b/src/lib/entrypoint/include/system_requirements.h new file mode 100644 index 0000000..b97c83e --- /dev/null +++ b/src/lib/entrypoint/include/system_requirements.h @@ -0,0 +1,13 @@ +#ifndef STASIS_SYSTEM_REQUIREMENTS_H +#define STASIS_SYSTEM_REQUIREMENTS_H + +#include "delivery.h" +#include "entrypoint_callbacks.h" +#include "envctl.h" + +void check_system_path(); +void check_system_env_requirements(); +void check_system_requirements(struct Delivery *ctx); +void check_requirements(struct Delivery *ctx); + +#endif //STASIS_SYSTEM_REQUIREMENTS_H -- cgit