summaryrefslogtreecommitdiffstats
path: root/pcilib/tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'pcilib/tools.h')
-rw-r--r--pcilib/tools.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/pcilib/tools.h b/pcilib/tools.h
index 41dc071..8e91b17 100644
--- a/pcilib/tools.h
+++ b/pcilib/tools.h
@@ -14,6 +14,10 @@
#define min2(a, b) (((a)<(b))?(a):(b))
+#ifdef __cplusplus
+extern "C" {
+#endif
+
int pcilib_isnumber(const char *str);
int pcilib_isxnumber(const char *str);
int pcilib_isnumber_n(const char *str, size_t len);
@@ -41,4 +45,8 @@ int pcilib_sleep_until_deadline(struct timeval *tv);
int pcilib_timecmp(struct timeval *tv1, struct timeval *tv2);
pcilib_timeout_t pcilib_timediff(struct timeval *tve, struct timeval *tvs);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _PCITOOL_TOOS_H */