There is a process_create() function, which has a param as void*.
If I want to pass in an int, how could I do that to avoid build error from compiler?
I can't change the param list to process_create()
|
|
To be safe, you can cast your integer to
Use This is still technically not portable ISO C, because:
Both of these cases are highly unlikely to be encountered in practice. C code in widely deployed and portable software uses casts like the above for this purpose. |
||||
|
|
|
You could just cast the For example you could allocate storage for
Without knowing more about what My assumption here is that
So, the bottom line is that I think it best to pass an |
|||||
|