documentation

This commit is contained in:
Jorijn van der Graaf 2025-06-13 23:59:36 +02:00
commit 3275eb2f70
135 changed files with 15649 additions and 430 deletions

10
lib/shm.h Normal file
View file

@ -0,0 +1,10 @@
#ifndef SHM_H
#define SHM_H
#include <sys/types.h>
extern "C" {
int create_shm_file(off_t size);
}
#endif