News

Just remember casting pointer to int is a bad idea. When someone port the code to 64bit the pointer will be 64bit but int usually stay at 32bit. I would use (uint8_t*) ...
I'm working with a group to create a big program.We store data in a Vector, which is passed from/to a server. When it reaches the destination, we decode ...