/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcitool/formaters.h

  • Committer: Suren A. Chilingaryan
  • Date: 2011-12-13 21:21:24 UTC
  • Revision ID: csa@dside.dyndns.org-20111213212124-ja6i09tkd03m359l
Do event counting when rawcallback is used to stream the data

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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