Files
mars-libowfat/buffer/buffer_1small.c
2026-06-03 10:46:57 +02:00

8 lines
190 B
C

#include <unistd.h>
#include "buffer.h"
char buffer_1small_space[128];
static buffer it = BUFFER_INIT(write,1,buffer_1small_space,sizeof buffer_1small_space);
buffer *buffer_1small = &it;