sds icon indicating copy to clipboard operation
sds copied to clipboard

Simple Dynamic Strings library for C

Results 108 sds issues
Sort by recently updated
recently updated
newest added

In the example: sds s1 = sdsnew("abcd"); sds s2 = sdsempty(); s[1] = 1; s[2] = 2; s[3] = '\n'; s2 = sdscatrepr(s2,s1,sdslen(s1)); printf("%s\n", s2); output> "a\x01\x02\n" We are editing...

In reference to issue #105 Error in Example, changed this section of the README.md so that the example is editing indices of s1 instead of s, since s is not...

Why are there so many pull requests, even really old ones without any response to say if they'll be incorporated or not, or if you don't yet have time to...

May be will be useful add `make install` target.

- verison → version - low level → low-level - BDS → BSD

Avoid type conversion error in c++ and since we already have a SDS_HDR macro.

First of all, thank you for creating this!! Spent half a day tweaking around with my own string concatenation functions only to find yours to work....much better! In this pull...

I see there is a fix for version 1 for c++ compiler. Is there anything similar for version 2? Facing compilation issues, like below: ![image](https://user-images.githubusercontent.com/14829710/37044837-88eba9a4-2132-11e8-80cc-7cdb822c4bb8.png) Am I missing something?

I'm trying to get another library (https://github.com/redis/hiredis) to compile with an app that is shooting for C89/C90 compliance. I'm running into problems. It uses sds. The errors in sds that...