00001
00002
00003
00004
00005
00006
00007 #ifndef JX_PRINT_H
00008 #define JX_PRINT_H
00009
00012 #include "jx.h"
00013 #include "buffer.h"
00014 #include "link.h"
00015 #include <stdio.h>
00016
00019 char * jx_print_string( struct jx *j );
00020
00023 void jx_print_stream( struct jx *j, FILE *file );
00024
00027 void jx_print_buffer( struct jx *j, buffer_t *buffer);
00028
00031 void jx_print_link( struct jx *j, struct link *l, time_t stoptime );
00032
00034 void jx_escape_string( const char *s, buffer_t *b );
00035
00036 #endif