Subversion Repositories Kolibri OS

Rev

Rev 5270 | Go to most recent revision | 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.  
  9. struct seq_file {
  10.         char *buf;
  11.         size_t size;
  12.         size_t from;
  13.         size_t count;
  14.         size_t pad_until;
  15.         loff_t index;
  16.         loff_t read_pos;
  17.         u64 version;
  18.         void *private;
  19. };
  20.  
  21. int seq_puts(struct seq_file *m, const char *s);
  22.  
  23. __printf(2, 3) int seq_printf(struct seq_file *, const char *, ...);
  24.  
  25.  
  26. #endif
  27.