summaryrefslogtreecommitdiff
path: root/src/include/utils/conffiles.h
blob: 3f23a2a011bef4df144f0c55d077b9c90f05becb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*--------------------------------------------------------------------
 * conffiles.h
 *
 * Utilities related to configuration files.
 *
 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/include/utils/conffiles.h
 *
 *--------------------------------------------------------------------
 */
#ifndef CONFFILES_H
#define CONFFILES_H

extern char *AbsoluteConfigLocation(const char *location,
									const char *calling_file);
extern char **GetConfFilesInDir(const char *includedir,
								const char *calling_file,
								int elevel, int *num_filenames,
								char **err_msg);

#endif							/* CONFFILES_H */