Tagged Questions

5
votes
1answer
2k views

Platform independent size_t Format specifiers in c?

I want to print out a variable for type size_t in c but it appears that size_t is aliased to different variable types on different architextures. For example on one machine (64-bit) the following code ...
4
votes
6answers
1k views

Portable way to get file size in C/C++

I need to determin the byte size of a file. The coding language is C++ and the code should work with Linux, windows and any other operating system. This implies using standard C or C++ ...
2
votes
1answer
182 views

Is PhysicsFS platform-independent?

I'm thinking about using PhysicsFS in my game engine project, but I'd like to first make sure it's entirely platform-independent. That's because I'd like to port my engine to some rather obscure ...
0
votes
2answers
544 views

Word and Double Word integers in C

I am trying to implement a simple, moderately efficient bignum library in C. I would like to store digits using the full register size of the system it's compiled on (presumably 32 or 64-bit ints). My ...
0
votes
1answer
274 views

how to provide platform independent keycodes

how do cross platform frameworks like sdl or java provide platform independed keycodes. do they have mapping tables for all possible cases? or is there another (eventually better) way to achieve this. ...