added sdstoupper() declaration in sds.h

This commit is contained in:
antirez 2009-12-18 05:30:54 -05:00
parent b2b5ae8006
commit c3a7dc32c9

1
sds.h
View File

@ -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