/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/fs/adfs/dir_f.h * * Copyright (C) 1999 Russell King * * Structures of directories on the F format disk */ #ifndef ADFS_DIR_F_H #define ADFS_DIR_F_H /* * Directory header */ struct adfs_dirheader { … } __attribute__((packed)); #define ADFS_NEWDIR_SIZE … #define ADFS_NUM_DIR_ENTRIES … /* * Directory entries */ struct adfs_direntry { … } __attribute__((packed)); /* * Directory tail */ struct adfs_olddirtail { … } __attribute__((packed)); struct adfs_newdirtail { … } __attribute__((packed)); #endif