Files
scoutfs/utils/src/blkid.h
Andy Grover 7befc61482 Implement argp support for mkfs and add --force
Support max-meta-size and max-data-size using KMGTP units with rounding.

Detect other fs signatures using blkid library.

Detect ScoutFS super using magic value.

Move read_block() from print.c into util.c since blkid also needs it.

Signed-off-by: Andy Grover <agrover@versity.com>
2021-01-12 16:29:42 -08:00

7 lines
94 B
C

#ifndef _BLKID_H_
#define _BLKID_H_
int check_bdev(int fd, char *path, char *usage);
#endif