BOC v1.0: RS256 auth, Ledger integration, Prometheus metrics, CI/CD, backup

This commit is contained in:
Bernt
2026-07-28 23:08:32 +00:00
parent 0b4f160af1
commit af874040ca
11541 changed files with 1654104 additions and 1103 deletions
+25
View File
@@ -0,0 +1,25 @@
#ifndef CRT_SHM_H
#define CRT_SHM_H
#include <stddef.h>
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct crt_shm crt_shm_t;
crt_shm_t* crt_shm_create(const char* name, size_t size);
crt_shm_t* crt_shm_open(const char* name);
void crt_shm_close(crt_shm_t* shm);
void* crt_shm_ptr(crt_shm_t* shm);
size_t crt_shm_size(crt_shm_t* shm);
int crt_shm_resize(crt_shm_t* shm, size_t new_size);
#ifdef __cplusplus
}
#endif
#endif