PostgreSQL Source Code  git master
percentrepl.h
Go to the documentation of this file.
1 /*-------------------------------------------------------------------------
2  *
3  * percentrepl.h
4  * Common routines to replace percent placeholders in strings
5  *
6  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  * src/include/common/percentrepl.h
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PERCENTREPL_H
14 #define PERCENTREPL_H
15 
16 extern char *replace_percent_placeholders(const char *instr, const char *param_name, const char *letters,...);
17 
18 #endif /* PERCENTREPL_H */
char * replace_percent_placeholders(const char *instr, const char *param_name, const char *letters,...)
Definition: percentrepl.c:59