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