What is the proper way to convert/cast an int to a size_t in C99 on both 32bit and 64bit linux platforms?
Example:
int hash(void * key) {
//...
}
int main (int argc, char * argv[]) {
size_t size = 10;
void * items[size];
//...
void * key = ...;
// Is this the right was to convert the returned int from the hash function
// to a size_t?
size_t key_index = (size_t)hash(key) % size;
void * item = items[key_index];
}
(size_t)? Is it somehow not "proper"? – AndreyT Mar 30 '11 at 2:02(size_t). – muntoo Mar 30 '11 at 2:02