* Set the opaque private pointer for an xo handle. */
| 8446 | * Set the opaque private pointer for an xo handle. |
| 8447 | */ |
| 8448 | void |
| 8449 | xo_set_private (xo_handle_t *xop, void *opaque) |
| 8450 | { |
| 8451 | xop = xo_default(xop); |
| 8452 | xop->xo_private = opaque; |
| 8453 | } |
| 8454 | |
| 8455 | /* |
| 8456 | * Get the encoder function |
no test coverage detected