/
githubmirror
/
e2fsprogs
Обзор
Документация
Войти
/
githubmirror
/
e2fsprogs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/support/plausible.h
29 строк
633 B
Darrick J. Wong
e2fsck: fix sparse bmap to extent conversion
25 май 2017, 05:12
25 май 2017, 05:12
855c2ec
Код
Авторство
О чём код?
/* * plausible.h --- header file defining prototypes for helper functions * used by tune2fs and mke2fs * * Copyright 2014 by Oracle, Inc. * * %Begin-Header% * This file may be redistributed under the terms of the GNU Public * License. * %End-Header% */ #ifndef PLAUSIBLE_H_ #define PLAUSIBLE_H_ /* * Flags for check_plausibility() */ #define CHECK_BLOCK_DEV 0x0001 #define CREATE_FILE 0x0002 #define CHECK_FS_EXIST 0x0004 #define VERBOSE_CREATE 0x0008 #define NO_SIZE 0x0010 #define QUIET_CHECK 0x0020 extern int check_plausibility(const char *device, int flags, int *ret_is_dev); #endif /* PLAUSIBLE_H_ */