* Return the current style of a handle * * @param xop XO handle to access * @return The handle's current style */
| 1996 | * @return The handle's current style |
| 1997 | */ |
| 1998 | xo_style_t |
| 1999 | xo_get_style (xo_handle_t *xop) |
| 2000 | { |
| 2001 | xop = xo_default(xop); |
| 2002 | return xo_style(xop); |
| 2003 | } |
| 2004 | |
| 2005 | /** |
| 2006 | * Return the XO_STYLE_* value matching a given name |
no test coverage detected