X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/682ac7248a11ae7bf0e8d935c3ec13177500484e..92b27fe946004935f0f29277d2a762c63af55ce3:/sds.h diff --git a/sds.h b/sds.h index 0d296ff7..c8b42f77 100644 --- a/sds.h +++ b/sds.h @@ -1,6 +1,6 @@ /* SDSLib, A C dynamic strings library * - * Copyright (c) 2006-2009, Salvatore Sanfilippo + * Copyright (c) 2006-2010, Salvatore Sanfilippo * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -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