fstyp.h (e41d62768dbdd71bef30ca68125ead5c6dcc85e4) | fstyp.h (509798ea65f3bb459f4262e7f5c2c1bfeb5051d7) |
---|---|
1/*- 2 * Copyright (c) 2014 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Edward Tomasz Napierala under sponsorship 6 * from the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 41 unchanged lines hidden (view full) --- 50char *checked_strdup(const char *s); 51void rtrim(char *label, size_t size); 52 53int fstyp_apfs(FILE *fp, char *label, size_t size); 54int fstyp_cd9660(FILE *fp, char *label, size_t size); 55int fstyp_exfat(FILE *fp, char *label, size_t size); 56int fstyp_ext2fs(FILE *fp, char *label, size_t size); 57int fstyp_geli(FILE *fp, char *label, size_t size); | 1/*- 2 * Copyright (c) 2014 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Edward Tomasz Napierala under sponsorship 6 * from the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 41 unchanged lines hidden (view full) --- 50char *checked_strdup(const char *s); 51void rtrim(char *label, size_t size); 52 53int fstyp_apfs(FILE *fp, char *label, size_t size); 54int fstyp_cd9660(FILE *fp, char *label, size_t size); 55int fstyp_exfat(FILE *fp, char *label, size_t size); 56int fstyp_ext2fs(FILE *fp, char *label, size_t size); 57int fstyp_geli(FILE *fp, char *label, size_t size); |
58int fstyp_hammer(FILE *fp, char *label, size_t size); 59int fstyp_hammer2(FILE *fp, char *label, size_t size); |
|
58int fstyp_hfsp(FILE *fp, char *label, size_t size); 59int fstyp_msdosfs(FILE *fp, char *label, size_t size); 60int fstyp_ntfs(FILE *fp, char *label, size_t size); 61int fstyp_ufs(FILE *fp, char *label, size_t size); 62#ifdef HAVE_ZFS 63int fstyp_zfs(FILE *fp, char *label, size_t size); 64#endif 65 66#endif /* !FSTYP_H */ | 60int fstyp_hfsp(FILE *fp, char *label, size_t size); 61int fstyp_msdosfs(FILE *fp, char *label, size_t size); 62int fstyp_ntfs(FILE *fp, char *label, size_t size); 63int fstyp_ufs(FILE *fp, char *label, size_t size); 64#ifdef HAVE_ZFS 65int fstyp_zfs(FILE *fp, char *label, size_t size); 66#endif 67 68#endif /* !FSTYP_H */ |