00001 #ifndef __FILEIO_H__
00002 #define __FILEIO_H__
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "buffio.h"
00019 #ifdef __cplusplus
00020 extern "C" {
00021 #endif
00022
00023
00024 void TIDY_CALL initFileSource( TidyInputSource* source, FILE* fp );
00025
00026
00027 void TIDY_CALL freeFileSource( TidyInputSource* source, Bool closeIt );
00028
00029
00030 void TIDY_CALL initFileSink( TidyOutputSink* sink, FILE* fp );
00031
00032
00033 void TIDY_CALL filesink_putByte( ulong sinkData, byte bv );
00034
00035 #ifdef __cplusplus
00036 }
00037 #endif
00038 #endif