]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blame - lib/support/profile_helpers.h
Move the profile parsing functions from e2fsck to lib/support
[thirdparty/e2fsprogs.git] / lib / support / profile_helpers.h
CommitLineData
9a4c209c
TT
1/*
2 * profile_helpers.h -- Function prototypes for profile helper functions
3 *
4 * Copyright (C) 2006 by Theodore Ts'o.
5 *
6 * %Begin-Header%
7 * This file may be redistributed under the terms of the GNU Public
8 * License.
9 * %End-Header%
10 */
11
12long profile_get_values
13 (profile_t profile, const char *const *names, char ***ret_values);
14
15void profile_free_list
16 (char **list);
17
18long profile_get_relation_names
19 (profile_t profile, const char **names, char ***ret_names);
20
21long profile_get_subsection_names
22 (profile_t profile, const char **names, char ***ret_names);
23
24void profile_release_string (char *str);
25
26long profile_init_path
27 (const char * filelist, profile_t *ret_profile);
28