diff options
Diffstat (limited to 'src/include/common/config_info.h')
-rw-r--r-- | src/include/common/config_info.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/include/common/config_info.h b/src/include/common/config_info.h new file mode 100644 index 0000000..a6d076d --- /dev/null +++ b/src/include/common/config_info.h @@ -0,0 +1,21 @@ +/* + * config_info.h + * Common code for pg_config output + * + * Copyright (c) 2016-2023, PostgreSQL Global Development Group + * + * src/include/common/config_info.h + */ +#ifndef COMMON_CONFIG_INFO_H +#define COMMON_CONFIG_INFO_H + +typedef struct ConfigData +{ + char *name; + char *setting; +} ConfigData; + +extern ConfigData *get_configdata(const char *my_exec_path, + size_t *configdata_len); + +#endif /* COMMON_CONFIG_INFO_H */ |