blob: df1a7b19add1d8fa7c3e5752dac89805815d997f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef FS_CRYPT_SETTINGS_H
#define FS_CRYPT_SETTINGS_H
struct fs_crypt_settings {
ARRAY(const char *) plugin_envs;
};
extern const struct setting_parser_info fs_crypt_setting_parser_info;
#endif
|