* Set one or more flags for a given handle (or default if handle is NULL). * These flags will affect future output. * * @param xop XO handle to alter (or NULL for default handle) * @param flags Flags to be set (XOF_*) */
| 2450 | * @param flags Flags to be set (XOF_*) |
| 2451 | */ |
| 2452 | void |
| 2453 | xo_set_flags (xo_handle_t *xop, xo_xof_flags_t flags) |
| 2454 | { |
| 2455 | xop = xo_default(xop); |
| 2456 | |
| 2457 | XOF_SET(xop, flags); |
| 2458 | } |
| 2459 | |
| 2460 | /** |
| 2461 | * Accessor to return the current set of flags for a handle |