Unify unsigned integer usage in the API

Replace all occurences of unsigned int and unsigned long with size_t.

This is a backwards incompatible change, as the signature of many API
functions changes.
This commit is contained in:
Petri Lehtinen
2010-06-15 15:27:35 +03:00
parent 2caac965d4
commit 68f2861e92
12 changed files with 93 additions and 93 deletions

View File

@@ -28,7 +28,7 @@ static int getenv_int(const char *name)
int main(int argc, char *argv[])
{
int indent = 0;
unsigned int flags = 0;
size_t flags = 0;
json_t *json;
json_error_t error;