PostgreSQL Source Code git master
Loading...
Searching...
No Matches
config_info.h
Go to the documentation of this file.
1/*
2 * config_info.h
3 * Common code for pg_config output
4 *
5 * Copyright (c) 2016-2026, PostgreSQL Global Development Group
6 *
7 * src/include/common/config_info.h
8 */
9#ifndef COMMON_CONFIG_INFO_H
10#define COMMON_CONFIG_INFO_H
11
12typedef struct ConfigData
13{
14 char *name;
15 char *setting;
17
18extern ConfigData *get_configdata(const char *my_exec_path,
19 size_t *configdata_len);
20
21#endif /* COMMON_CONFIG_INFO_H */
ConfigData * get_configdata(const char *my_exec_path, size_t *configdata_len)
Definition config_info.c:33
char my_exec_path[MAXPGPATH]
Definition globals.c:81
static int fb(int x)
char * name
Definition config_info.h:14
char * setting
Definition config_info.h:15