1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-05 00:28:52 +02:00
Files
pgbackrest/doc/src/command/build/reference.h
David Steele 1eb0162208 Build command and configuration reference in C.
Migrate generation of these files from help.xml to the intermediate documentation format. This allows us to share a lot of code that is already in C and remove duplicated code in Perl. More duplicate code can be removed in Perl once man generation is migrated.

Also update the unit test harness to allow testing of modules in the doc directory.
2023-10-09 14:03:43 -04:00

21 lines
990 B
C

/***********************************************************************************************************************************
Build Command and Configuration Reference
***********************************************************************************************************************************/
#ifndef DOC_COMMAND_BUILD_REFERENCE_H
#define DOC_COMMAND_BUILD_REFERENCE_H
#include "build/config/parse.h"
#include "build/help/parse.h"
#include "common/type/xml.h"
/***********************************************************************************************************************************
Functions
***********************************************************************************************************************************/
// Build command reference
XmlDocument *referenceCommandRender(const BldCfg *bldCfg, const BldHlp *bldHlp);
// Build configuration reference
XmlDocument *referenceConfigurationRender(const BldCfg *bldCfg, const BldHlp *bldHlp);
#endif