File: initialize.h

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

#include "headers.h"
#include "errors.h"
#include "externs.h"
#include "support/gstring.h"
#include "support/gpath.h"
#include "operations.h"

#include "structure/core.h"
#include "structure/full.h"
#include "structure/necessary.h"

#include "layout/core.h"
#include "layout/versions.h"
#include "layout/all.h"

#include "retriever/retriever.h"

void initialize(struct file_system_info *fsinfo);

#endif