mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-29 20:13:57 +08:00
12 lines
158 B
C
12 lines
158 B
C
|
#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;
|
||
|
};
|