* createPQExpBuffer * * Create an empty 'PQExpBufferData' & return a pointer to it. */
| 78 | * Create an empty 'PQExpBufferData' & return a pointer to it. |
| 79 | */ |
| 80 | PQExpBuffer |
| 81 | createPQExpBuffer(void) |
| 82 | { |
| 83 | PQExpBuffer res; |
| 84 | |
| 85 | res = (PQExpBuffer) malloc(sizeof(PQExpBufferData)); |
| 86 | if (res != NULL) |
| 87 | initPQExpBuffer(res); |
| 88 | |
| 89 | return res; |
| 90 | } |
| 91 | |
| 92 | /* |
| 93 | * initPQExpBuffer |