1 /* 2 * Common utilities for filesystem users. 3 * 4 * Copyright (C) 2019, 2022 Paul Boddie <paul@boddie.org.uk> 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License as 8 * published by the Free Software Foundation; either version 2 of 9 * the License, or (at your option) any later version. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, 19 * Boston, MA 02110-1301, USA 20 */ 21 22 #ifndef __UTILS_H__ 23 #define __UTILS_H__ 24 25 #include <ext2fs/ext2fs.h> 26 27 #ifdef __cplusplus 28 extern "C" { 29 #endif 30 31 struct utils_list_dir_data 32 { 33 ext2_filsys fs; /* filesystem */ 34 const char *filename; /* single filename to show */ 35 int link_count; /* flag to show link counts */ 36 }; 37 38 errcode_t utils_list_dir(ext2_filsys fs, const char *path); 39 40 int utils_list_dir_proc(struct ext2_dir_entry *dirent, int offset, 41 int blocksize, char *buf, void *priv_data); 42 43 #ifdef __cplusplus 44 } 45 #endif 46 47 #endif /* __UTILS_H__ */ 48 49 /* vim: tabstop=4 expandtab shiftwidth=4 50 */