* pqPutnchar: * write exactly len bytes to the current message */
| 207 | * write exactly len bytes to the current message |
| 208 | */ |
| 209 | int |
| 210 | pqPutnchar(const char *s, size_t len, PGconn *conn) |
| 211 | { |
| 212 | if (pqPutMsgBytes(s, len, conn)) |
| 213 | return EOF; |
| 214 | |
| 215 | return 0; |
| 216 | } |
| 217 | |
| 218 | /* |
| 219 | * pqGetInt |
no test coverage detected