mergerfs/libfuse/include/fuse_msgbuf.h

12 lines
158 B
C
Raw Normal View History

2022-11-30 07:24:09 +08:00
#pragma once
#include <stdint.h>
typedef struct fuse_msgbuf_t fuse_msgbuf_t;
struct fuse_msgbuf_t
{
char *mem;
uint32_t size;
uint32_t used;
};