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

@@ -96,7 +96,7 @@ static char *request(const char *url)
int main(int argc, char *argv[])
{
unsigned int i;
size_t i;
char *text;
char url[URL_SIZE];