Add nwcore and nwssl root libraries
All checks were successful
Source release / source-package (push) Successful in 1m4s

This commit is contained in:
Patch Bot
2026-06-04 18:47:56 +00:00
committed by Mario Fetka
parent 4813aa317a
commit 01ed39c1b0
7 changed files with 180 additions and 0 deletions

14
include/core/core.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef MARS_NWE_CORE_H
#define MARS_NWE_CORE_H
#ifdef __cplusplus
extern "C" {
#endif
const char *nwcore_version(void);
#ifdef __cplusplus
}
#endif
#endif /* MARS_NWE_CORE_H */

15
include/nwssl/nwssl.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef MARS_NWE_NWSSL_H
#define MARS_NWE_NWSSL_H
#ifdef __cplusplus
extern "C" {
#endif
const char *nwssl_version(void);
int nwssl_init(void);
#ifdef __cplusplus
}
#endif
#endif /* MARS_NWE_NWSSL_H */