Subversion Repositories Kolibri OS

Rev

Rev 6082 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef _LINUX_SEQ_FILE_H
  2. #define _LINUX_SEQ_FILE_H
  3.  
  4. #include <linux/types.h>
  5. #include <linux/string.h>
  6. #include <linux/bug.h>
  7. #include <linux/mutex.h>
  8. struct file;
  9. struct path;
  10. struct inode;
  11. struct dentry;
  12.  
  13. struct seq_file {
  14.         char *buf;
  15.         size_t size;
  16.         size_t from;
  17.         size_t count;
  18.         size_t pad_until;
  19.         loff_t index;
  20.         loff_t read_pos;
  21.         u64 version;
  22.         void *private;
  23. };
  24.  
  25. int seq_puts(struct seq_file *m, const char *s);
  26.  
  27. __printf(2, 3) int seq_printf(struct seq_file *, const char *, ...);
  28.  
  29.  
  30. #endif
  31.