/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera

« back to all changes in this revision

Viewing changes to pcitool/formaters.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-27 00:28:57 UTC
  • Revision ID: csa@suren.me-20150427002857-82fk6r3e8rfgy4wr
First stand-alone ipecamera implementation

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