luohaha / CSpider

A scalable and convenient crawler framework in C:).
https://github.com/luohaha/CSpider
MIT License
367 stars 98 forks source link

You should replace all size_t with "unsigned int" #16

Closed mzer0-yu closed 8 years ago

mzer0-yu commented 8 years ago

1) size_t is defined as uint64_t in most cases. 2) Pure C does NOT support size_t.

unsigned int is equal to uint_64 in case of x64 switched on, or uint_32 as default.

luohaha commented 8 years ago

You are right. Thank you! I will replace all size_t with "unsigned int" after you add page_presser.c.