/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 pcilib/tools.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-06-22 16:32:27 UTC
  • Revision ID: csa@suren.me-20150622163227-xrajwpfxhequsi7j
Keep C++ compilers happy

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#define min2(a, b) (((a)<(b))?(a):(b))
15
15
 
16
16
 
 
17
#ifdef __cplusplus
 
18
extern "C" {
 
19
#endif
 
20
 
17
21
int pcilib_isnumber(const char *str);
18
22
int pcilib_isxnumber(const char *str);
19
23
int pcilib_isnumber_n(const char *str, size_t len);
41
45
int pcilib_timecmp(struct timeval *tv1, struct timeval *tv2);
42
46
pcilib_timeout_t pcilib_timediff(struct timeval *tve, struct timeval *tvs);
43
47
 
 
48
#ifdef __cplusplus
 
49
}
 
50
#endif
 
51
 
44
52
#endif /* _PCITOOL_TOOS_H */