* Cheap convenience function to return either the argument, or * the internal handle, after it has been initialized. The usage * is: * xop = xo_default(xop); */
| 686 | * xop = xo_default(xop); |
| 687 | */ |
| 688 | static xo_handle_t * |
| 689 | xo_default (xo_handle_t *xop) |
| 690 | { |
| 691 | if (xop == NULL) { |
| 692 | if (xo_default_inited == 0) |
| 693 | xo_default_init(); |
| 694 | xop = &xo_default_handle; |
| 695 | } |
| 696 | |
| 697 | return xop; |
| 698 | } |
| 699 | |
| 700 | /* |
| 701 | * Return the number of spaces we should be indenting. If |
no test coverage detected