summaryrefslogtreecommitdiff
path: root/json_object_iterator.c
Commit message (Collapse)AuthorAgeFilesLines
* Add linkhash accessor functions (lh_table_head(), lh_entry_next(), etc...) ↵Eric Haszlakiewicz2021-11-301-2/+2
| | | | | | | to pave the way for making the lh_table and lh_entry structure opaque in the future. Update the docs to mark all members of those structures deprecated, and suggest what to use instead.
* Include unistd.h to fix the build on OSXEric Haszlakiewicz2020-06-141-0/+1
|
* clang-format the filesdota172020-04-031-53/+42
|
* add the disabling formatting coments and adjust the partial code manulydota172020-04-031-4/+4
|
* Adjust the description of json_object_iterator a bit.Eric Haszlakiewicz2017-12-051-5/+0
|
* Issue #236: Add -Wcast-qual and fix casts to retain constness.Eric Haszlakiewicz2016-06-111-3/+3
| | | | | To better distinguish between entry->k and entry->v being const within linkhash, but non-const outside, add lh_entry_v() and lh_entry_k() accessors. Make lh_entry->k const.
* Since we already use a local json_bool type, replace any stdbool.h usage withEric Haszlakiewicz2012-04-241-2/+1
| | | | that, since not all environments actually have a stdbool.h to use.
* Clean up documentation and correct sample codeKeith Derrick2012-04-231-16/+16
|
* Add alternative iterator implementationKeith Derrick2012-04-121-0/+169