* xmlInitIOCallbacks: * * Initialize callback tables. */
| 2963 | * Initialize callback tables. |
| 2964 | */ |
| 2965 | void |
| 2966 | xmlInitIOCallbacks(void) |
| 2967 | { |
| 2968 | xmlInputCallbackNr = 1; |
| 2969 | xmlInputCallbackTable[0].matchcallback = xmlIODefaultMatch; |
| 2970 | |
| 2971 | #ifdef LIBXML_OUTPUT_ENABLED |
| 2972 | xmlOutputCallbackNr = 1; |
| 2973 | xmlOutputCallbackTable[0].matchcallback = xmlIODefaultMatch; |
| 2974 | #endif |
| 2975 | } |
| 2976 | |
| 2977 | /** |
| 2978 | * xmlRegisterInputCallbacks: |