fstyp.c (50c59bbb53f353cc63cedf3d8bedd1cefe885125) fstyp.c (e41d62768dbdd71bef30ca68125ead5c6dcc85e4)
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

--- 48 unchanged lines hidden (view full) ---

57typedef int (*fstyp_function)(FILE *, char *, size_t);
58
59static struct {
60 const char *name;
61 fstyp_function function;
62 bool unmountable;
63 char *precache_encoding;
64} fstypes[] = {
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

--- 48 unchanged lines hidden (view full) ---

57typedef int (*fstyp_function)(FILE *, char *, size_t);
58
59static struct {
60 const char *name;
61 fstyp_function function;
62 bool unmountable;
63 char *precache_encoding;
64} fstypes[] = {
65 { "apfs", &fstyp_apfs, true, NULL },
65 { "cd9660", &fstyp_cd9660, false, NULL },
66 { "exfat", &fstyp_exfat, false, EXFAT_ENC },
67 { "ext2fs", &fstyp_ext2fs, false, NULL },
68 { "geli", &fstyp_geli, true, NULL },
69 { "hfs+", &fstyp_hfsp, false, NULL },
70 { "msdosfs", &fstyp_msdosfs, false, NULL },
71 { "ntfs", &fstyp_ntfs, false, NTFS_ENC },
72 { "ufs", &fstyp_ufs, false, NULL },

--- 190 unchanged lines hidden ---
66 { "cd9660", &fstyp_cd9660, false, NULL },
67 { "exfat", &fstyp_exfat, false, EXFAT_ENC },
68 { "ext2fs", &fstyp_ext2fs, false, NULL },
69 { "geli", &fstyp_geli, true, NULL },
70 { "hfs+", &fstyp_hfsp, false, NULL },
71 { "msdosfs", &fstyp_msdosfs, false, NULL },
72 { "ntfs", &fstyp_ntfs, false, NTFS_ENC },
73 { "ufs", &fstyp_ufs, false, NULL },

--- 190 unchanged lines hidden ---