histogram.h

来自「larbin是一种开源的网络爬虫/网络蜘蛛」· C头文件 代码 · 共 31 行

H
31
字号
// Larbin// Laurent Viennot// 10-10-01 -> 10-10-01// modified by Sebastien Ailleret// 19-10-01 -> 19-10-01/* histogram of number of pages retrieved for graphical stats */#ifndef HISTOGRAM_H#define HISTOGRAM_H#include "options.h"#ifdef GRAPH/* call this every sec to report downloads */void histoHit (uint p, uint s);/* call this in webserver for printing */void histoWrite (int fds);#else // GRAPH NOT DEFINED#define histoHit(p,s) ((void) 0)#define histoWrite(f) ((void) 0)#endif // GRAPH#endif // HISTOGRAM_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?