File: core.h

package info (click to toggle)
rdiff-backup-fs 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 460 kB
  • sloc: ansic: 3,002; python: 231; makefile: 26
file content (15 lines) | stat: -rw-r--r-- 383 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _LAYOUT_CORE_H_
#define _LAYOUT_CORE_H_

#include "../headers.h"
#include "../support/gstats.h"

extern int (*init)(struct file_system_info *);

extern int (*init_multi)(struct file_system_info *);

extern int (*get_file)(struct file_system_info *, const char *path, struct stats **stats);

extern char** (*get_children)(struct file_system_info *, const char *path);

#endif