* appendPQExpBufferStr * Append the given string to a PQExpBuffer, allocating more space * if necessary. */
| 373 | * if necessary. |
| 374 | */ |
| 375 | void |
| 376 | appendPQExpBufferStr(PQExpBuffer str, const char *data) |
| 377 | { |
| 378 | appendBinaryPQExpBuffer(str, data, strlen(data)); |
| 379 | } |
| 380 | |
| 381 | /* |
| 382 | * appendPQExpBufferChar |