* Convert string name to XOF_* flag value. * Not all are useful. Or safe. Or sane. */
| 2136 | * Not all are useful. Or safe. Or sane. |
| 2137 | */ |
| 2138 | static unsigned |
| 2139 | xo_name_to_flag (const char *name) |
| 2140 | { |
| 2141 | return (unsigned) xo_name_lookup(xo_xof_names, name, -1); |
| 2142 | } |
| 2143 | |
| 2144 | /** |
| 2145 | * Set the style of an libxo handle based on a string name |
no test coverage detected