* pqPuts: write a null-terminated string to the current message */
| 157 | * pqPuts: write a null-terminated string to the current message |
| 158 | */ |
| 159 | int |
| 160 | pqPuts(const char *s, PGconn *conn) |
| 161 | { |
| 162 | if (pqPutMsgBytes(s, strlen(s) + 1, conn)) |
| 163 | return EOF; |
| 164 | |
| 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | /* |
| 169 | * pqGetnchar: |
no test coverage detected