]> git.saurik.com Git - redis.git/blobdiff - sds.h
support dual encoding in LTRIM
[redis.git] / sds.h
diff --git a/sds.h b/sds.h
index ba2a5ca0b6ce8c749f2064198dcbd380cf680d46..8b632ff920570d3770815a38109b5abec06dbea4 100644 (file)
--- a/sds.h
+++ b/sds.h
@@ -1,6 +1,6 @@
 /* SDSLib, A C dynamic strings library
  *
- * Copyright (c) 2006-2009, Salvatore Sanfilippo <antirez at gmail dot com>
+ * Copyright (c) 2006-2010, Salvatore Sanfilippo <antirez at gmail dot com>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -38,7 +38,7 @@ typedef char *sds;
 struct sdshdr {
     long len;
     long free;
-    char buf[0];
+    char buf[];
 };
 
 sds sdsnewlen(const void *init, size_t initlen);
@@ -52,12 +52,22 @@ sds sdscatlen(sds s, void *t, size_t len);
 sds sdscat(sds s, char *t);
 sds sdscpylen(sds s, char *t, size_t len);
 sds sdscpy(sds s, char *t);
+
+#ifdef __GNUC__
+sds sdscatprintf(sds s, const char *fmt, ...)
+    __attribute__((format(printf, 2, 3)));
+#else
 sds sdscatprintf(sds s, const char *fmt, ...);
+#endif
+
 sds sdstrim(sds s, const char *cset);
 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