File: fuse_msgbuf.h

package info (click to toggle)
mergerfs 2.40.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,000 kB
  • sloc: cpp: 58,559; ansic: 17,241; makefile: 348; python: 156; sh: 119
file content (10 lines) | stat: -rw-r--r-- 140 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <stdint.h>

typedef struct fuse_msgbuf_t fuse_msgbuf_t;
struct fuse_msgbuf_t
{
  uint32_t  size;
  char     *mem;
};