1 // Larbin
2 // Sebastien Ailleret
3 // 03-02-00 -> 20-11-01
4 
5 #ifndef OUTPUT_H
6 #define OUTPUT_H
7 
8 #include "global.h"
9 
10 /** The fetch failed
11  * @param u the URL of the doc
12  * @param reason reason of the fail
13  */
14 void fetchFail (url *u, FetchError reason, bool interesting=false);
15 
16 /** It's over with this file
17  * report the situation ! (and make some stats)
18  */
19 void endOfLoad (html *parser, FetchError err);
20 
21 /** Initialise output */
22 void initOutput ();
23 
24 #endif // OUTPUT_H
25