bcachefs-tools/include/linux/seq_file.h
2017-01-20 09:07:08 -09:00

26 lines
381 B
C

#ifndef _LINUX_SEQ_FILE_H
#define _LINUX_SEQ_FILE_H
#include <linux/types.h>
#include <linux/fs.h>
struct seq_operations;
struct path;
struct seq_file {
char *buf;
size_t size;
size_t from;
size_t count;
size_t pad_until;
loff_t index;
loff_t read_pos;
u64 version;
const struct seq_operations *op;
int poll_event;
const struct file *file;
void *private;
};
#endif