* pqPutc: write 1 char to the current message */
| 97 | * pqPutc: write 1 char to the current message |
| 98 | */ |
| 99 | int |
| 100 | pqPutc(char c, PGconn *conn) |
| 101 | { |
| 102 | if (pqPutMsgBytes(&c, 1, conn)) |
| 103 | return EOF; |
| 104 | |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | |
| 109 | /* |
no test coverage detected