📄 histogram.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -