X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/c3a7dc32c98a7a9145b6c52399ca478ce64b727f..a4798f733dc2cb973552e0ea84cc5f553951e162:/sds.h diff --git a/sds.h b/sds.h index d3a7a3a9..8b632ff9 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 @@ -65,7 +65,9 @@ sds sdsrange(sds s, long start, long end); void sdsupdatelen(sds s); int sdscmp(sds s1, sds s2); sds *sdssplitlen(char *s, int len, char *sep, int seplen, int *count); +void sdsfreesplitres(sds *tokens, int count); void sdstolower(sds s); void sdstoupper(sds s); +sds sdsfromlonglong(long long value); #endif