/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool
146 by Suren A. Chilingaryan
Do event counting when rawcallback is used to stream the data
1
#ifndef _PCITOOL_FORMATERS_H
2
#define _PCITOOL_FORMATERS_H
3
4
void PrintTime(size_t duration);
5
void PrintNumber(size_t num);
6
void PrintSize(size_t num);
7
void PrintPercent(size_t num, size_t total);
8
char *GetPrintSize(char *str, size_t size);
9
10
11
#endif /* _PCITOOL_FORMATERS_H */
12