1 /** 2 * compress.h 3 * 4 * Copyright (c) 2020 Google Inc. 5 * Robin Hsu <robinhsu@google.com> 6 * : add sload compression support 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. 11 */ 12 13 #ifndef COMPRESS_H 14 #define COMPRESS_H 15 16 #include "f2fs_fs.h" 17 18 extern const char *supported_comp_names[]; 19 extern compress_ops supported_comp_ops[]; 20 extern filter_ops ext_filter; 21 22 #endif /* COMPRESS_H */ 23