diff options
Diffstat (limited to 'src/lib/entrypoint/include')
-rw-r--r-- | src/lib/entrypoint/include/entrypoint.h | 6 | ||||
-rw-r--r-- | src/lib/entrypoint/include/entrypoint_callbacks.h | 10 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/entrypoint/include/entrypoint.h b/src/lib/entrypoint/include/entrypoint.h new file mode 100644 index 0000000..645b119 --- /dev/null +++ b/src/lib/entrypoint/include/entrypoint.h @@ -0,0 +1,6 @@ +#ifndef STASIS_ENTRYPOINT_H +#define STASIS_ENTRYPOINT_H + +int stasis_entrypoint(int argc, char *argv[]); + +#endif //STASIS_ENTRYPOINT_H diff --git a/src/lib/entrypoint/include/entrypoint_callbacks.h b/src/lib/entrypoint/include/entrypoint_callbacks.h new file mode 100644 index 0000000..369ce56 --- /dev/null +++ b/src/lib/entrypoint/include/entrypoint_callbacks.h @@ -0,0 +1,10 @@ +#ifndef STASIS_CALLBACKS_H +#define STASIS_CALLBACKS_H + +#include "core.h" +#include "envctl.h" + +int callback_except_jf(const void *a, const void *b); +int callback_except_gh(const void *a, const void *b); + +#endif //STASIS_CALLBACKS_H |