开发者

Verifying ctypes type precision in Python

开发者 https://www.devze.com 2023-03-10 07:00 出处:网络
If an API expects a 64 bit type, how can I check that a ctypes type has that many bits if size开发者_JS百科of returns the number of bytes?
  1. If an API expects a 64 bit type, how can I check that a ctypes type has that many bits if size开发者_JS百科of returns the number of bytes?
  2. How do I know how many bits are in each byte on the current platform?
  3. Where is CHAR_BIT defined in Python?


C/C++ function signatures are written with C/C++ types, like "int" or "double" or "uint32_t". All of these have corresponding ctypes equivalents, so normally you do not care about the number of bits.

That said...

import os
print os.sysconf('SC_CHAR_BIT')

...is about as close as you will get, I think. Does not work on non-Unix platforms. And as tMC points out in the comments, it does not even work on all Unix platforms; I believe it is a GNU extension.

[update]

Actually, the POSIX spec appears to mandate CHAR_BIT == 8. So on any system that supports the SC_CHAR_BIT sysconf selector, you do not actually need it :-).

0

精彩评论

暂无评论...
验证码 换一张
取 消