/usr/include/repair/librepair.h is in libreiser4-dev 1.1.0-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | /* Copyright 2001-2005 by Hans Reiser, licensing governed by
reiser4progs/COPYING.
repair/librepair.h -- the central recovery include file. */
#ifndef LIBREPAIR_H
#define LIBREPAIR_H
#ifdef __cplusplus
extern "C" {
#endif
#include <reiser4/libreiser4.h>
#include <repair/repair.h>
#include <repair/plugin.h>
#include <repair/filesystem.h>
#include <repair/status.h>
#include <repair/backup.h>
#include <repair/tree.h>
#include <repair/format.h>
#include <repair/alloc.h>
#include <repair/master.h>
#include <repair/journal.h>
#include <repair/node.h>
#include <repair/place.h>
#include <repair/item.h>
#include <repair/object.h>
#include <repair/oid.h>
#include <repair/pset.h>
/* -------------------------------------------------
| Common scheem for communication with users. |
|-----------------------------------------------|
| stream | default | with log | with 'no-log' |
|----------|---------|----------|---------------|
| warn | stderr | stderr | - |
| info | stderr | log | - |
| error | stderr | log | - |
| fatal | stderr | stderr | stderr |
| bug | stderr | stderr | stderr |
-------------------------------------------------
info - Information about what is going on.
warn - warnings to users about what is going on, which should be viewed
on-line.
error - Problems.
fatal - Fatal problems which are supposed to be viewed on-line.
Modifiers: Auto (choose the default answer for all questions) and Verbose
(provide some extra information) and Quiet (quiet progress and provide only
fatal and bug infotmation to stderr; does not affect the log content though
if log presents). */
#ifdef __cplusplus
}
#endif
#endif
|