Files
hpcore/src/killswitch/killswitch.h
2021-06-22 11:08:15 +05:30

19 lines
207 B
C

#ifndef KILLSWITCH_H
#define KILLSWITCH_H
#include <stdint.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
bool kill_switch(const uint64_t epoch_ms);
#ifdef __cplusplus
};
#endif
#endif