File: buffer.h

package info (click to toggle)
wob 0.14.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: ansic: 1,392; xml: 251; makefile: 7
file content (10 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#ifndef _WOB_BUFFER_H
#define _WOB_BUFFER_H

#include <stddef.h>

int wob_shm_create();

void *wob_shm_alloc(int shmid, size_t size);

#endif