summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorBryan Ischo <bji@lolita.(none)>2009-02-13 01:16:09 +1300
committerBryan Ischo <bji@lolita.(none)>2009-02-13 01:16:09 +1300
commit87a9f31214eac06b1963411e6bc60f5f219fc305 (patch)
tree347c1207dc95b74d8e5900e8f7c9ccca365a0c0b /inc
parentdbfababac17498a14985f3b8f19b184cb6e6f160 (diff)
downloadceph-libs3-87a9f31214eac06b1963411e6bc60f5f219fc305.tar.gz
* Fixed some issues that were breaking recent Windows builds with recent MinGW
Diffstat (limited to 'inc')
-rw-r--r--inc/util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/util.h b/inc/util.h
index 0ed580e..94735a8 100644
--- a/inc/util.h
+++ b/inc/util.h
@@ -83,5 +83,8 @@ void HMAC_SHA1(unsigned char hmac[20], const unsigned char *key, int key_len,
// Compute a 64-bit hash values given a set of bytes
uint64_t hash(const unsigned char *k, int length);
+// Because Windows seems to be missing isblank(), use our own; it's a very
+// easy function to write in any case
+int is_blank(char c);
#endif /* UTIL_H */