1
0

Initial commit

Nothing has actually been tested yet.
This commit is contained in:
Patrick Gaskin
2020-04-22 00:13:02 -04:00
commit 7e5320ff6f
18 changed files with 692 additions and 0 deletions

14
src/subsys_c.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef NMI_SUBSYS_C_H
#define NMI_SUBSYS_C_H
#ifdef __cplusplus
extern "C" {
#endif
int nmi_subsys_dbgsyslog(const char *arg, char **err_out);
int nmi_subsys_dbgerror(const char *arg, char **err_out);
int nmi_subsys_kfmon(const char *arg, char **err_out);
#ifdef __cplusplus
}
#endif
#endif