@@ -232,8 +232,24 @@ Fundamental data types
232
232
+----------------------+------------------------------------------+----------------------------+
233
233
| :class: `c_int ` | :c:expr: `int ` | int |
234
234
+----------------------+------------------------------------------+----------------------------+
235
+ | :class: `c_int8 ` | :c:type: `int8_t ` | int |
236
+ +----------------------+------------------------------------------+----------------------------+
237
+ | :class: `c_int16 ` | :c:type: `int16_t ` | int |
238
+ +----------------------+------------------------------------------+----------------------------+
239
+ | :class: `c_int32 ` | :c:type: `int32_t ` | int |
240
+ +----------------------+------------------------------------------+----------------------------+
241
+ | :class: `c_int64 ` | :c:type: `int64_t ` | int |
242
+ +----------------------+------------------------------------------+----------------------------+
235
243
| :class: `c_uint ` | :c:expr: `unsigned int ` | int |
236
244
+----------------------+------------------------------------------+----------------------------+
245
+ | :class: `c_uint8 ` | :c:type: `uint8_t ` | int |
246
+ +----------------------+------------------------------------------+----------------------------+
247
+ | :class: `c_uint16 ` | :c:type: `uint16_t ` | int |
248
+ +----------------------+------------------------------------------+----------------------------+
249
+ | :class: `c_uint32 ` | :c:type: `uint32_t ` | int |
250
+ +----------------------+------------------------------------------+----------------------------+
251
+ | :class: `c_uint64 ` | :c:type: `uint64_t ` | int |
252
+ +----------------------+------------------------------------------+----------------------------+
237
253
| :class: `c_long ` | :c:expr: `long ` | int |
238
254
+----------------------+------------------------------------------+----------------------------+
239
255
| :class: `c_ulong ` | :c:expr: `unsigned long ` | int |
@@ -2348,7 +2364,7 @@ These are the fundamental ctypes data types:
2348
2364
2349
2365
.. class :: c_int8
2350
2366
2351
- Represents the C 8-bit :c:expr: `signed int ` datatype. Usually an alias for
2367
+ Represents the C 8-bit :c:expr: `signed int ` datatype. It is an alias for
2352
2368
:class: `c_byte `.
2353
2369
2354
2370
@@ -2423,7 +2439,7 @@ These are the fundamental ctypes data types:
2423
2439
2424
2440
.. class :: c_uint8
2425
2441
2426
- Represents the C 8-bit :c:expr: `unsigned int ` datatype. Usually an alias for
2442
+ Represents the C 8-bit :c:expr: `unsigned int ` datatype. It is an alias for
2427
2443
:class: `c_ubyte `.
2428
2444
2429
2445
0 commit comments