From: antirez Date: Fri, 18 Dec 2009 10:30:54 +0000 (-0500) Subject: added sdstoupper() declaration in sds.h X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/c3a7dc32c98a7a9145b6c52399ca478ce64b727f added sdstoupper() declaration in sds.h --- diff --git a/sds.h b/sds.h index 0d296ff7..d3a7a3a9 100644 --- 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