summaryrefslogtreecommitdiff
path: root/common/dict.h
Commit message (Collapse)AuthorAgeFilesLines
* dict: Allow removal of current item in a p11_dict iterationStef Walter2013-03-151-0/+2
| | | | | | | * This was already possible to do safely before * Document and test this behavior https://bugs.freedesktop.org/show_bug.cgi?id=61499
* Use the stdbool.h C99 bool typeStef Walter2013-01-231-13/+13
| | | | | | It was getting really wild knowing whether a function returning an int would return -1 on failure or 0 or whether the int return value was actually a number etc..
* Move debug and library code into the common/ subdirectoryStef Walter2013-01-091-0/+178
Start using p11_ as our internal prefix rather than _p11_. We explicitly export p11_kit_ so this is fine as far as visibility. Move the threading, mutex, and module compat, dict, and array code into the common directory too. Take this opportunity to clean up a bit of internal API as well, since so many lines are being touched internally.