aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2014-12-03Correct 'hold' typo in readmeHarry Jeffery1-1/+1
A 'hold' is missing its 'h' and a variable was misnamed. This patch fixes these issues. [antirez/sds#12 fixed the variable typos]
2014-12-03Fixed minor spelling typos in README.Eric Siegel1-1/+1
2014-12-03Fixed variable naming in README for sdscatrepr.Eric Siegel1-3/+3
2014-12-03Fixed some typos and grammar.Jan-Erik Rediger1-10/+10
Some typos where found by aspell: `aspell -l en_US check README.md`
2014-12-03README: Correct typo, BDS -> BSDZyX-I1-1/+1
2014-09-25Make English more idiomatic in README.John Zwinck1-31/+30
2014-02-06Fixed num to string example.antirez1-1/+1
2014-02-06Fix broken markup hopefully.antirez1-6/+6
2014-02-06README: Add C highlight in example it was missing.antirez1-0/+2
2014-02-06Merge pull request #4 from dchest/patch-1Salvatore Sanfilippo1-1/+1
Fix list item indentation
2014-02-06Merge pull request #2 from JuanitoFatas/patch/polish-readmeSalvatore Sanfilippo1-194/+292
quick pass to polish readme.
2014-02-06Fix list item indentationDmitry Chestnykh1-1/+1
2014-02-06SDS Header pointer math rewritten in a more elegant form.antirez2-19/+19
As suggested by unwind in the Hacker News site the calculation of "sh" could be improved. In his own words: "Since the entire idea is that the pointer on the left-hand side is to the type whose size should be subtracted, I think it's better not to repeat the type but to "lock it" to the pointer instead. This also (of course) means we can drop the parenthesis with sizeof, since those are only needed when its argument is a type name."
2014-02-06quick pass to polish readme.Juanito Fatas1-194/+292
2014-02-06Two examples fixed.antirez1-3/+3
2014-02-06README: fixed sdscatprintf() example.antirez1-1/+1
2014-02-06README: sentence improved in concatenating strings sec.antirez1-1/+1
2014-02-06README: advantages/disadvantages layout improved.antirez1-5/+6
2014-02-06README typo: filed -> field.antirez1-1/+1
2014-02-06Merge branch 'master' of github.com:antirez/sdsantirez1-19/+26
2014-02-06README: fixed missing quote.antirez1-1/+1
2014-02-06Merge pull request #1 from frodsan/patch-1Salvatore Sanfilippo1-19/+26
Fix markdown.
2014-02-06Fix markdown.Francesco RodrĂ­guez1-19/+26
2014-02-06Markdown list removed from README where it caused issues.antirez1-10/+3
2014-02-06Markdown fix try #2.antirez1-0/+3
2014-02-06README: fix markdown format for code after bullet list.antirez1-0/+3
2014-02-06README: add sequence numbers to advantages list.antirez1-2/+2
2014-02-06README: first version of documentation is complete.antirez1-0/+176
2014-02-06README: string quoting and tokenization documented.antirez1-0/+125
2014-02-06Join functions improved.antirez2-3/+16
The original implementation of sdsjoin did not allowed a binary separator nor was able to handle sds strings contaning bianry data. sdsjoin() was modified to get a spearator length. sdsjoinsds() was added to join arrays of SDS strings.
2014-02-06sdscatrepr() test added.antirez1-0/+7
2014-02-06indent README examples with 4 spaces.antirez1-32/+38
2014-02-06README added, work in progress.antirez1-0/+461
Low level functions and internals are still to document.
2014-02-06sdstrim() return type changed to void.antirez2-4/+4
2014-02-03LICENSE file added.antirez1-0/+24
2014-02-02.gitignore file added.antirez2-0/+9
2014-02-02Test fixed to work with new sdsrange() API.antirez2-6/+69
2014-02-02Use standard malloc() instead of zmalloc().antirez1-16/+16
2014-02-02Copyright year updated to 2014.antirez2-4/+4
2014-02-02Forked from sds.c in Redis to create a standalone project.antirez2-0/+982