]> git.saurik.com Git - redis.git/commitdiff
added sdstoupper() declaration in sds.h
authorantirez <antirez@gmail.com>
Fri, 18 Dec 2009 10:30:54 +0000 (05:30 -0500)
committerantirez <antirez@gmail.com>
Fri, 18 Dec 2009 10:30:54 +0000 (05:30 -0500)
sds.h

diff --git a/sds.h b/sds.h
index 0d296ff781fe7d1773857808caf5ba9e81413fa5..d3a7a3a9f88692650767b572d53e40f24b6da598 100644 (file)
--- a/sds.h
+++ b/sds.h
@@ -66,5 +66,6 @@ void sdsupdatelen(sds s);
 int sdscmp(sds s1, sds s2);
 sds *sdssplitlen(char *s, int len, char *sep, int seplen, int *count);
 void sdstolower(sds s);
+void sdstoupper(sds s);
 
 #endif