* appendStringInfoString * * Append a null-terminated string to str. * Like appendStringInfo(str, "%s", s) but faster. */
| 189 | * Like appendStringInfo(str, "%s", s) but faster. |
| 190 | */ |
| 191 | void |
| 192 | appendStringInfoString(StringInfo str, const char *s) |
| 193 | { |
| 194 | appendBinaryStringInfo(str, s, strlen(s)); |
| 195 | } |
| 196 | |
| 197 | /* |
| 198 | * appendStringInfoChar |