File: core.c

package info (click to toggle)
rdiff-backup-fs 1.0.0-8
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 952 kB
  • sloc: sh: 3,800; ansic: 2,944; makefile: 23
file content (9 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#include "core.h"

int (*struct_build)(struct file_system_info *) = NULL;

int (*struct_build_multi)(struct file_system_info *) = NULL;

int (*struct_get_file)(struct file_system_info *, char *repo, char *revision, char *internal, struct stats **stats) = NULL;

char** (*struct_get_children)(struct file_system_info *, char *repo, char *revision, char *internal) = NULL;