summaryrefslogtreecommitdiff
path: root/src/common/container.c
AgeCommit message (Collapse)Author
2005-04-03I hear the smart kinds compile before committing. Then they never miss parensNick Mathewson
svn:r3999
2005-04-03Make smartlist_string_remove consistent with smartlist_stringNick Mathewson
svn:r3998
2005-04-03Add useful smartlist_string_remove function.Nick Mathewson
svn:r3996
2005-04-01update copyright notices.Nick Mathewson
svn:r3982
2005-03-22bugfix: make smartlist_join_strings2 actually use the separator/terminatorRoger Dingledine
svn:r3805
2005-02-28Fix strmap_free to release memory actually held by the strmap.Nick Mathewson
svn:r3708
2005-02-20bugfix: actually use the argument to strmap_free()Roger Dingledine
svn:r3640
2005-02-19avoid case (not yet triggered) where smartlists could grow outRoger Dingledine
of control svn:r3636
2005-01-31clarify what smartlist_remove promises, since we rely on it.Roger Dingledine
svn:r3473
2005-01-12clean up smartlist_string_isin so callers don't have to manage bufsRoger Dingledine
themselves svn:r3338
2004-12-16Make split(..., NULL) split on horizontal space; fix bug with tabs in config ↵Nick Mathewson
file. svn:r3155
2004-12-08Solaris CC freaks out if isspace and friends get anything other than an int. ↵Nick Mathewson
We learned that, so we casted. But it is also a bad idea to cast a signed char to an int and expect things to work on win32. Now we cast to unsigned char, then to int, then pass to isspace. Ug svn:r3120
2004-12-07fix commentRoger Dingledine
svn:r3110
2004-12-04fix commentRoger Dingledine
svn:r3077
2004-12-01Spell-check strings and commentsNick Mathewson
svn:r3052
2004-11-29Suggestion from weasel: Make tor --version --version dump the cvs Id of ↵Nick Mathewson
every file. svn:r3019
2004-11-28Normalize space: add one between every control keyword and control clause.Nick Mathewson
svn:r3003
2004-11-26remove emacs droppings, since nick says he doesn't need them anymoreRoger Dingledine
svn:r2989
2004-11-22Normalize a few more kinds of whitespace. We now dislike:Nick Mathewson
- func (args) - if (x){ This doesn't normalize if(x), for(x); while(x), and friends. svn:r2943
2004-11-12Nobody was using the return values from smartlist_(set|del|del_keeporder), ↵Nick Mathewson
so remove them. svn:r2823
2004-11-12Add a FAST_SMARTLIST define to optionally inline smartlist_get and ↵Nick Mathewson
smartlist_len, which are two major profiling offenders. svn:r2822
2004-11-06parse_line_from_file is obsolete.Roger Dingledine
svn:r2693
2004-11-03Add a slightly trickier string-join interface for making NUL-terminated ↵Nick Mathewson
string messages svn:r2659
2004-11-03my assert.h takes extra pains to be certain to _re-include_Roger Dingledine
itself if you include it twice. this is dumb, but hey. svn:r2653
2004-11-01Split util into util (general utilities), container (smartlist and strmap), ↵Nick Mathewson
and compat (cross-platform compatability). svn:r2640