aboutsummaryrefslogtreecommitdiffstats
path: root/src/sds.h
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-01-18 15:41:09 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2015-01-19 00:25:40 +0100
commit459d2cb217e1af053f08d7e30a92b1b6bf61a90a (patch)
tree9a2fb690e0501f761ddfd30c5081313e94804e28 /src/sds.h
parenta3d3b21dbdad912fcca74ba2263d007c764b9ea3 (diff)
downloadsds-459d2cb217e1af053f08d7e30a92b1b6bf61a90a.tar.xz
sdsrange: change start/end args to ptrdiff_t
An sds string can hold a much bigger value than an int can hold, but since size_t is unsigned it can’t be used for this function. Using ptrdiff_t limits the function to work on roughly 1 Exabyte long strings, but if you need to work with longer ones you probably will have your custom string library already.
Diffstat (limited to 'src/sds.h')
-rw-r--r--src/sds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sds.h b/src/sds.h
index 86e2a8c..c0fe90e 100644
--- a/src/sds.h
+++ b/src/sds.h
@@ -77,7 +77,7 @@ sds sdscatprintf(sds s, const char *fmt, ...);
#endif
void sdstrim(sds s, const char *cset);
-void sdsrange(sds s, int start, int end);
+void sdsrange(sds s, ptrdiff_t start, ptrdiff_t end);
void sdsupdatelen(sds s);
void sdsclear(sds s);
int sdscmp(const sds s1, const sds s2);