summaryrefslogtreecommitdiffstats
path: root/man7/system_data_types.7
blob: 3d5dc599052f69b4562682187842467619962957 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
.\" Copyright (c) 2020 by Alejandro Colomar <colomar.6.4.3@gmail.com>
.\" and Copyright (c) 2020 by Michael Kerrisk <mtk.manpages@gmail.com>
.\"
.\" %%%LICENSE_START(VERBATIM)
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\" %%%LICENSE_END
.\"
.\"
.TH SYSTEM_DATA_TYPES 7 2020-12-21 "Linux" "Linux Programmer's Manual"
.SH NAME
system_data_types \- overview of system data types
.SH DESCRIPTION
.\" Layout:
.\"	A list of type names (the struct/union keyword will be omitted).
.\"	Each entry will have the following parts:
.\"		* Include (see NOTES)
.\"
.\"		* Definition (no "Definition" header)
.\"			Only struct/union types will have definition;
.\"			typedefs will remain opaque.
.\"
.\"		* Description (no "Description" header)
.\"			A few lines describing the type.
.\"
.\"		* Versions (optional)
.\"
.\"		* Conforming to (see NOTES)
.\"			Format: CXY and later; POSIX.1-XXXX and later.
.\"
.\"		* Notes (optional)
.\"
.\"		* Bugs (if any)
.\"
.\"		* See also
.\"------------------------------------- aiocb ------------------------/
.TP
.I aiocb
.RS
.IR Include :
.IR <aio.h> .
.PP
.EX
struct aiocb {
    int             aio_fildes;    /* File descriptor */
    off_t           aio_offset;    /* File offset */
    volatile void  *aio_buf;       /* Location of buffer */
    size_t          aio_nbytes;    /* Length of transfer */
    int             aio_reqprio;   /* Request priority offset */
    struct sigevent aio_sigevent;  /* Signal number and value */
    int             aio_lio_opcode;/* Operation to be performed */
};
.EE
.PP
For further information about this structure, see
.BR aio (7).
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR aio_cancel (3),
.BR aio_error (3),
.BR aio_fsync (3),
.BR aio_read (3),
.BR aio_return (3),
.BR aio_suspend (3),
.BR aio_write (3),
.BR lio_listio (3)
.RE
.\"------------------------------------- clock_t ----------------------/
.TP
.I clock_t
.RS
.IR Include :
.I <time.h>
or
.IR <sys/types.h> .
Alternatively,
.IR <sys/time.h> .
.PP
Used for system time in clock ticks or
.B CLOCKS_PER_SEC
(defined in
.IR <time.h> ).
According to POSIX,
it shall be an integer type or a real-floating type.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR times (2),
.BR clock (3)
.RE
.\"------------------------------------- clockid_t --------------------/
.TP
.I clockid_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <time.h> .
.PP
Used for clock ID type in the clock and timer functions.
According to POSIX,
it shall be defined as an arithmetic type.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR clock_adjtime (2),
.BR clock_getres (2),
.BR clock_nanosleep (2),
.BR timer_create (2),
.BR clock_getcpuclockid (3)
.RE
.\"------------------------------------- dev_t ------------------------/
.TP
.I dev_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <sys/stat.h> .
.PP
Used for device IDs.
According to POSIX,
it shall be an integer type.
For further details of this type, see
.BR makedev (3).
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR mknod (2),
.BR stat (2)
.RE
.\"------------------------------------- div_t ------------------------/
.TP
.I div_t
.RS
.IR Include :
.IR <stdlib.h> .
.PP
.EX
typedef struct {
    int quot; /* Quotient */
    int rem;  /* Remainder */
} div_t;
.EE
.PP
It is the type of the value returned by the
.BR div (3)
function.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR div (3)
.RE
.\"------------------------------------- double_t ---------------------/
.TP
.I double_t
.RS
.IR Include :
.IR <math.h> .
.PP
The implementation's most efficient floating type at least as wide as
.IR double .
Its type depends on the value of the macro
.B FLT_EVAL_METHOD
(defined in
.IR <float.h> ):
.TP
0
.I double_t
is
.IR double .
.TP
1
.I double_t
is
.IR double .
.TP
2
.I double_t
is
.IR "long double" .
.PP
For other values of
.BR FLT_EVAL_METHOD ,
the type of
.I double_t
is implementation-defined.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.I float_t
type in this page.
.RE
.\"------------------------------------- fd_set -----------------------/
.TP
.I fd_set
.RS
.IR Include :
.IR <sys/select.h> .
Alternatively,
.IR <sys/time.h> .
.PP
A structure type that can represent a set of file descriptors.
According to POSIX,
the maximum number of file descriptors in an
.I fd_set
structure is the value of the macro
.BR FD_SETSIZE .
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR select (2)
.RE
.\"------------------------------------- fenv_t -----------------------/
.TP
.I fenv_t
.RS
.IR Include :
.IR <fenv.h> .
.PP
This type represents the entire floating-point environment,
including control modes and status flags; for further details, see
.BR fenv (3).
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR fenv (3)
.RE
.\"------------------------------------- fexcept_t --------------------/
.TP
.I fexcept_t
.RS
.IR Include :
.IR <fenv.h> .
.PP
This type represents the floating-point status flags collectively;
for further details see
.BR fenv (3).
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR fenv (3)
.RE
.\"------------------------------------- FILE -------------------------/
.TP
.I FILE
.RS
.IR Include :
.IR <stdio.h> .
Alternatively,
.IR <wchar.h> .
.PP
An object type used for streams.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR fclose (3),
.BR flockfile (3),
.BR fopen (3),
.BR fprintf (3),
.BR fread (3),
.BR fscanf (3),
.BR stdin (3),
.BR stdio (3)
.RE
.\"------------------------------------- float_t ----------------------/
.TP
.I float_t
.RS
.IR Include :
.IR <math.h> .
.PP
The implementation's most efficient floating type at least as wide as
.IR float .
Its type depends on the value of the macro
.B FLT_EVAL_METHOD
(defined in
.IR <float.h> ):
.TP
0
.I float_t
is
.IR float .
.TP
1
.I float_t
is
.IR double .
.TP
2
.I float_t
is
.IR "long double" .
.PP
For other values of
.BR FLT_EVAL_METHOD ,
the type of
.I float_t
is implementation-defined.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.I double_t
type in this page.
.RE
.\"------------------------------------- gid_t ------------------------/
.TP
.I gid_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <grp.h> ,
.IR <pwd.h> ,
.IR <signal.h> ,
.IR <stropts.h> ,
.IR <sys/ipc.h> ,
.IR <sys/stat.h> ,
or
.IR <unistd.h> .
.PP
A type used to hold group IDs.
According to POSIX,
this shall be an integer type.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR chown (2),
.BR getgid (2),
.BR getegid (2),
.BR getgroups (2),
.BR getresgid (2),
.BR getgrnam (2),
.BR credentials (7)
.RE
.\"------------------------------------- id_t -------------------------/
.TP
.I id_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <sys/resource.h> .
.PP
A type used to hold a general identifier.
According to POSIX,
this shall be an integer type that can be used to contain a
.IR pid_t ,
.IR uid_t ,
or
.IR gid_t .
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR getpriority (2),
.BR waitid (2)
.RE
.\"------------------------------------- imaxdiv_t --------------------/
.TP
.I imaxdiv_t
.RS
.IR Include :
.IR <inttypes.h> .
.PP
.EX
typedef struct {
    intmax_t    quot; /* Quotient */
    intmax_t    rem;  /* Remainder */
} imaxdiv_t;
.EE
.PP
It is the type of the value returned by the
.BR imaxdiv (3)
function.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR imaxdiv (3)
.RE
.\"------------------------------------- intmax_t ---------------------/
.TP
.I intmax_t
.RS
.IR Include :
.IR <stdint.h> .
Alternatively,
.IR <inttypes.h> .
.PP
A signed integer type
capable of representing any value of any signed integer type
supported by the implementation.
According to the C language standard, it shall be
capable of storing values in the range
.RB [ INTMAX_MIN ,
.BR INTMAX_MAX ].
.PP
The macro
.BR INTMAX_C ()
.\" TODO: Document INT*_C(3)
expands its argument to an integer constant of type
.IR intmax_t .
.PP
The length modifier for
.I intmax_t
for the
.BR printf (3)
and the
.BR scanf (3)
families of functions is
.BR j ;
resulting commonly in
.B %jd
or
.B %ji
for printing
.I intmax_t
values.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR Bugs :
.I intmax_t
is not large enough to represent values of type
.I __int128
in implementations where
.I __int128
is defined and
.I long long
is less than 128 bits wide.
.PP
.IR "See also" :
the
.I uintmax_t
type in this page.
.RE
.\"------------------------------------- intN_t -----------------------/
.TP
.IR int N _t
.RS
.IR Include :
.IR <stdint.h> .
Alternatively,
.IR <inttypes.h> .
.PP
.IR int8_t ,
.IR int16_t ,
.IR int32_t ,
.I int64_t
.PP
A signed integer type
of a fixed width of exactly N bits,
N being the value specified in its type name.
According to the C language standard, they shall be
capable of storing values in the range
.RB [ INT N _MIN ,
.BR INT N _MAX ],
substituting N by the appropriate number.
.PP
According to POSIX,
.IR int8_t ,
.IR int16_t ,
and
.I int32_t
are required;
.I int64_t
is only required in implementations that provide integer types
with width 64;
and all other types of this form are optional.
.PP
The length modifiers for the
.IR int N _t
types for the
.BR printf (3)
family of functions
are expanded by macros of the forms
.BR PRId N
and
.BR PRIi N
(defined in
.IR <inttypes.h> );
resulting for example in
.B %"PRId64"
or
.B %"PRIi64"
for printing
.I int64_t
values.
The length modifiers for the
.IR int N _t
types for the
.BR scanf (3)
family of functions
are expanded by macros of the forms
.BR SCNd N
and
.BR SCNi N,
(defined in
.IR <inttypes.h> );
resulting for example in
.B %"SCNd8"
or
.B %"SCNi8"
for scanning
.I int8_t
values.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.IR intmax_t ,
.IR uint N _t ,
and
.I uintmax_t
types in this page.
.RE
.\"------------------------------------- intptr_t ---------------------/
.TP
.I intptr_t
.RS
.IR Include :
.IR <stdint.h> .
Alternatively,
.IR <inttypes.h> .
.PP
A signed integer type
such that any valid
.RI ( "void *" )
value can be converted to this type and back.
According to the C language standard, it shall be
capable of storing values in the range
.RB [ INTPTR_MIN ,
.BR INTPTR_MAX ].
.PP
The length modifier for
.I intptr_t
for the
.BR printf (3)
family of functions
is expanded by the macros
.B PRIdPTR
and
.B PRIiPTR
(defined in
.IR <inttypes.h> );
resulting commonly in
.B %"PRIdPTR"
or
.B %"PRIiPTR"
for printing
.I intptr_t
values.
The length modifier for
.I intptr_t
for the
.BR scanf (3)
family of functions
is expanded by the macros
.B SCNdPTR
and
.B SCNiPTR,
(defined in
.IR <inttypes.h> );
resulting commonly in
.B %"SCNdPTR"
or
.B %"SCNiPTR"
for scanning
.I intptr_t
values.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.I uintptr_t
and
.I void *
types in this page.
.RE
.\"------------------------------------- lconv ------------------------/
.TP
.I lconv
.RS
.IR Include :
.IR <locale.h> .
.PP
.EX
struct lconv {                  /* Values in the "C" locale: */
    char   *decimal_point;      /* "." */
    char   *thousands_sep;      /* "" */
    char   *grouping;           /* "" */
    char   *mon_decimal_point;  /* "" */
    char   *mon_thousands_sep;  /* "" */
    char   *mon_grouping;       /* "" */
    char   *positive_sign;      /* "" */
    char   *negative_sign;      /* "" */
    char   *currency_symbol;    /* "" */
    char    frac_digits;        /* CHAR_MAX */
    char    p_cs_precedes;      /* CHAR_MAX */
    char    n_cs_precedes;      /* CHAR_MAX */
    char    p_sep_by_space;     /* CHAR_MAX */
    char    n_sep_by_space;     /* CHAR_MAX */
    char    p_sign_posn;        /* CHAR_MAX */
    char    n_sign_posn;        /* CHAR_MAX */
    char   *int_curr_symbol;    /* "" */
    char    int_frac_digits;    /* CHAR_MAX */
    char    int_p_cs_precedes;  /* CHAR_MAX */
    char    int_n_cs_precedes;  /* CHAR_MAX */
    char    int_p_sep_by_space; /* CHAR_MAX */
    char    int_n_sep_by_space; /* CHAR_MAX */
    char    int_p_sign_posn;    /* CHAR_MAX */
    char    int_n_sign_posn;    /* CHAR_MAX */
};
.EE
.PP
Contains members related to the formatting of numeric values.
In the "C" locale, its members have the values
shown in the comments above.
.PP
.IR "Conforming to" :
C11 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR setlocale (3),
.BR localeconv (3),
.BR charsets (5),
.BR locale (7)
.RE
.\"------------------------------------- ldiv_t -----------------------/
.TP
.I ldiv_t
.RS
.IR Include :
.IR <stdlib.h> .
.PP
.EX
typedef struct {
    long    quot; /* Quotient */
    long    rem;  /* Remainder */
} ldiv_t;
.EE
.PP
It is the type of the value returned by the
.BR ldiv (3)
function.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR ldiv (3)
.RE
.\"------------------------------------- lldiv_t ----------------------/
.TP
.I lldiv_t
.RS
.IR Include :
.IR <stdlib.h> .
.PP
.EX
typedef struct {
    long long   quot; /* Quotient */
    long long   rem;  /* Remainder */
} lldiv_t;
.EE
.PP
It is the type of the value returned by the
.BR lldiv (3)
function.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR lldiv (3)
.RE
.\"------------------------------------- off_t ------------------------/
.TP
.I off_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <aio.h> ,
.IR <fcntl.h> ,
.IR <stdio.h> ,
.IR <sys/mman.h> ,
.IR <sys/stat.h.h> ,
or
.IR <unistd.h> .
.PP
Used for file sizes.
According to POSIX,
this shall be a signed integer type.
.PP
.IR Versions :
.I <aio.h>
and
.I <stdio.h>
define
.I off_t
since POSIX.1-2008.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR Notes :
On some architectures,
the width of this type can be controlled with the feature test macro
.BR _FILE_OFFSET_BITS .
.PP
.IR "See also" :
.\" .BR fallocate (2),
.BR lseek (2),
.BR mmap (2),
.\" .BR mmap2 (2),
.BR posix_fadvise (2),
.BR pread (2),
.\" .BR preadv (2),
.BR truncate (2),
.BR fseeko (3),
.\" .BR getdirentries (3),
.BR lockf (3),
.BR posix_fallocate (3),
.BR feature_test_macros (7)
.\".PP		TODO: loff_t, off64_t
.\"See also the
.\".I loff_t
.\"and
.\".I off64_t
.\"types in this page.
.RE
.\"------------------------------------- pid_t ------------------------/
.TP
.I pid_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <fcntl.h> ,
.IR <sched.h> ,
.IR <signal.h> ,
.IR <spawn.h> ,
.IR <sys/msg.h> ,
.IR <sys/sem.h> ,
.IR <sys/shm.h> ,
.IR <sys/wait.h> ,
.IR <termios.h> ,
.IR <time.h> ,
.IR <unistd.h> ,
or
.IR <utmpx.h> .
.PP
This type is used for storing process IDs, process group IDs, and session IDs.
According to POSIX, it shall be a signed integer type,
and the implementation shall support one or more programming environments
where the width of
.I pid_t
is no greater than the width of the type
.IR long .
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR fork (2),
.BR getpid (2),
.BR getppid (2),
.BR getsid (2),
.BR gettid (2),
.BR getpgid (2),
.BR kill (2),
.BR pidfd_open (2),
.BR sched_setscheduler (2),
.BR waitpid (2),
.BR sigqueue (3),
.BR credentials (7),
.RE
.\"------------------------------------- ptrdiff_t --------------------/
.TP
.I ptrdiff_t
.RS
.IR Include :
.IR <stddef.h> .
.PP
Used for a count of elements, and array indices.
It is the result of subtracting two pointers.
According to the C language standard, it shall be a signed integer type
capable of storing values in the range
.RB [ PTRDIFF_MIN ,
.BR PTRDIFF_MAX ].
.PP
The length modifier for
.I ptrdiff_t
for the
.BR printf (3)
and the
.BR scanf (3)
families of functions is
.BR t ;
resulting commonly in
.B %td
or
.B %ti
for printing
.I ptrdiff_t
values.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.I size_t
and
.I ssize_t
types in this page.
.RE
.\"------------------------------------- regex_t ----------------------/
.TP
.I regex_t
.RS
.IR Include :
.IR <regex.h> .
.PP
.EX
typedef struct {
    size_t  re_nsub; /* Number of parenthesized subexpressions. */
} regex_t;
.EE
.PP
This is a structure type used in regular expression matching.
It holds a compiled regular expression, compiled with
.BR regcomp (3).
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR regex (3)
.RE
.\"------------------------------------- regmatch_t -------------------/
.TP
.I regmatch_t
.RS
.IR Include :
.IR <regex.h> .
.PP
.EX
typedef struct {
    regoff_t    rm_so; /* Byte offset from start of string
                          to start of substring */
    regoff_t    rm_eo; /* Byte offset from start of string of
                          the first character after the end of
                          substring */
} regmatch_t;
.EE
.PP
This is a structure type used in regular expression matching.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR regexec (3)
.RE
.\"------------------------------------- regoff_t ---------------------/
.TP
.I regoff_t
.RS
.IR Include :
.IR <regex.h> .
.PP
According to POSIX, it shall be a signed integer type
capable of storing the largest value that can be stored in either a
.I ptrdiff_t
type or a
.I ssize_t
type.
.PP
.IR Versions :
Prior to POSIX.1-2008, the type was capable of storing
the largest value that can be stored in either an
.I off_t
type or a
.I ssize_t
type.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.I regmatch_t
structure and the
.I ptrdiff_t
and
.I ssize_t
types in this page.
.RE
.\"------------------------------------- sigevent ---------------------/
.TP
.I sigevent
.RS
.IR Include :
.IR <signal.h> .
Alternatively,
.IR <aio.h> ,
.IR <mqueue.h> ,
or
.IR <time.h> .
.PP
.EX
struct sigevent {
    int             sigev_notify; /* Notification type */
    int             sigev_signo;  /* Signal number */
    union sigval    sigev_value;  /* Signal value */
    void          (*sigev_notify_function)(union sigval);
                                  /* Notification function */
    pthread_attr_t *sigev_notify_attributes;
                                  /* Notification attributes */
};
.EE
.PP
For further details about this type, see
.BR sigevent (7).
.PP
.IR Versions :
.I <aio.h>
and
.I <time.h>
define
.I sigevent
since POSIX.1-2008.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR timer_create (2),
.BR getaddrinfo_a (3),
.BR lio_listio (3),
.BR mq_notify (3)
.PP
See also the
.I aiocb
structure in this page.
.RE
.\"------------------------------------- siginfo_t --------------------/
.TP
.I siginfo_t
.RS
.IR Include :
.IR <signal.h> .
Alternatively,
.IR <sys/wait.h> .
.PP
.EX
typedef struct {
    int      si_signo;  /* Signal number */
    int      si_code;   /* Signal code */
    pid_t    si_pid;    /* Sending process ID */
    uid_t    si_uid;    /* Real user ID of sending process */
    void    *si_addr;   /* Address of faulting instruction */
    int      si_status; /* Exit value or signal */
    union sigval si_value;  /* Signal value */
} siginfo_t;
.EE
.PP
Information associated with a signal.
For further details on this structure
(including additional, Linux-specific fields), see
.BR sigaction (2).
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR pidfd_send_signal (2),
.BR rt_sigqueueinfo (2),
.BR sigaction (2),
.BR sigwaitinfo (2),
.BR psiginfo (3)
.RE
.\"------------------------------------- sigset_t ---------------------/
.TP
.I sigset_t
.RS
.IR Include :
.IR <signal.h> .
Alternatively,
.IR <spawn.h> ,
or
.IR <sys/select.h> .
.PP
This is a type that represents a set of signals.
According to POSIX, this shall be an integer or structure type.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR epoll_pwait (2),
.BR ppoll (2),
.BR pselect (2),
.BR sigaction (2),
.BR signalfd (2),
.BR sigpending (2),
.BR sigprocmask (2),
.BR sigsuspend (2),
.BR sigwaitinfo (2),
.BR signal (7)
.RE
.\"------------------------------------- sigval -----------------------/
.TP
.I sigval
.RS
.IR Include :
.IR <signal.h> .
.PP
.EX
union sigval {
    int     sigval_int; /* Integer value */
    void   *sigval_ptr; /* Pointer value */
};
.EE
.PP
Data passed with a signal.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR pthread_sigqueue (3),
.BR sigqueue (3),
.BR sigevent (7)
.PP
See also the
.I sigevent
structure
and the
.I siginfo_t
type
in this page.
.RE
.\"------------------------------------- size_t -----------------------/
.TP
.I size_t
.RS
.IR Include :
.I <stddef.h>
or
.IR <sys/types.h> .
Alternatively,
.IR <aio.h> ,
.IR <glob.h> ,
.IR <grp.h> ,
.IR <iconv.h> ,
.IR <monetary.h> ,
.IR <mqueue.h> ,
.IR <ndbm.h> ,
.IR <pwd.h> ,
.IR <regex.h> ,
.IR <search.h> ,
.IR <signal.h> ,
.IR <stdio.h> ,
.IR <stdlib.h> ,
.IR <string.h> ,
.IR <strings.h> ,
.IR <sys/mman.h> ,
.IR <sys/msg.h> ,
.IR <sys/sem.h> ,
.IR <sys/shm.h> ,
.IR <sys/socket.h> ,
.IR <sys/uio.h> ,
.IR <time.h> ,
.IR <unistd.h> ,
.IR <wchar.h> ,
or
.IR <wordexp.h> .
.PP
Used for a count of bytes.  It is the result of the
.I sizeof
operator.
According to the C language standard,
it shall be an unsigned integer type
capable of storing values in the range [0,
.BR SIZE_MAX ].
According to POSIX,
the implementation shall support one or more programming environments
where the width of
.I size_t
is no greater than the width of the type
.IR long .
.PP
The length modifier for
.I size_t
for the
.BR printf (3)
and the
.BR scanf (3)
families of functions is
.BR z ;
resulting commonly in
.B %zu
or
.B %zx
for printing
.I size_t
values.
.PP
.IR Versions :
.IR <aio.h> ,
.IR <glob.h> ,
.IR <grp.h> ,
.IR <iconv.h> ,
.IR <mqueue.h> ,
.IR <pwd.h> ,
.IR <signal.h> ,
and
.I <sys/socket.h>
define
.I size_t
since POSIX.1-2008.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR read (2),
.BR write (2),
.BR fread (3),
.BR fwrite (3),
.BR memcmp (3),
.BR memcpy (3),
.BR memset (3),
.BR offsetof (3)
.PP
See also the
.I ptrdiff_t
and
.I ssize_t
types in this page.
.RE
.\"------------------------------------- ssize_t ----------------------/
.TP
.I ssize_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <aio.h> ,
.IR <monetary.h> ,
.IR <mqueue.h> ,
.IR <stdio.h> ,
.IR <sys/msg.h> ,
.IR <sys/socket.h> ,
.IR <sys/uio.h> ,
or
.IR <unistd.h> .
.PP
Used for a count of bytes or an error indication.
According to POSIX, it shall be a signed integer type
capable of storing values at least in the range [-1,
.BR SSIZE_MAX ],
and the implementation shall support one or more programming environments
where the width of
.I ssize_t
is no greater than the width of the type
.IR long .
.PP
Glibc and most other implementations provide a length modifier for
.I ssize_t
for the
.BR printf (3)
and the
.BR scanf (3)
families of functions, which is
.BR z ;
resulting commonly in
.B %zd
or
.B %zi
for printing
.I ssize_t
values.
Although
.B z
works for
.I ssize_t
on most implementations,
portable POSIX programs should avoid using it\(emfor example,
by converting the value to
.I intmax_t
and using its length modifier
.RB ( j ).
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR read (2),
.BR readlink (2),
.BR readv (2),
.BR recv (2),
.BR send (2),
.BR write (2)
.PP
See also the
.I ptrdiff_t
and
.I size_t
types in this page.
.RE
.\"------------------------------------- suseconds_t ------------------/
.TP
.I suseconds_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <sys/select.h> ,
or
.IR <sys/time.h> .
.PP
Used for time in microseconds.
According to POSIX, it shall be a signed integer type
capable of storing values at least in the range [-1, 1000000],
and the implementation shall support one or more programming environments
where the width of
.I suseconds_t
is no greater than the width of the type
.IR long .
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.I timeval
structure in this page.
.RE
.\"------------------------------------- time_t -----------------------/
.TP
.I time_t
.RS
.IR Include :
.I <time.h>
or
.IR <sys/types.h> .
Alternatively,
.IR <sched.h> ,
.IR <sys/msg.h> ,
.IR <sys/select.h> ,
.IR <sys/sem.h> ,
.IR <sys/shm.h> ,
.IR <sys/stat.h> ,
.IR <sys/time.h> ,
or
.IR <utime.h> .
.PP
Used for time in seconds.
According to POSIX, it shall be an integer type.
.\" In POSIX.1-2001, the type was specified as being either an integer
.\" type or a real-floating type. However, existing implementations
.\" used an integer type, and POSIX.1-2008 tightened the specification
.\" to reflect this.
.PP
.IR Versions :
.I <sched.h>
defines
.I time_t
since POSIX.1-2008.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR stime (2),
.BR time (2),
.BR ctime (3),
.BR difftime (3)
.RE
.\"------------------------------------- timer_t ----------------------/
.TP
.I timer_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <time.h> .
.PP
Used for timer ID returned by
.BR timer_create (2).
According to POSIX,
there are no defined comparison or assignment operators for this type.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR timer_create (2),
.BR timer_delete (2),
.BR timer_getoverrun (2),
.BR timer_settime (2)
.RE
.\"------------------------------------- timespec ---------------------/
.TP
.I timespec
.RS
.IR Include :
.IR <time.h> .
Alternatively,
.IR <aio.h> ,
.IR <mqueue.h> ,
.IR <sched.h> ,
.IR <signal.h> ,
.IR <sys/select.h> ,
or
.IR <sys/stat.h> .
.PP
.EX
struct timespec {
    time_t  tv_sec;  /* Seconds */
    long    tv_nsec; /* Nanoseconds */
};
.EE
.PP
Describes times in seconds and nanoseconds.
.PP
.IR "Conforming to" :
C11 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR clock_gettime (2),
.BR clock_nanosleep (2),
.BR nanosleep (2),
.BR timerfd_gettime (2),
.BR timer_gettime (2)
.RE
.\"------------------------------------- timeval ----------------------/
.TP
.I timeval
.RS
.IR Include :
.IR <sys/time.h> .
Alternatively,
.IR <sys/resource.h> ,
.IR <sys/select.h> ,
or
.IR <utmpx.h> .
.PP
.EX
struct timeval {
    time_t      tv_sec;  /* Seconds */
    suseconds_t tv_usec; /* Microseconds */
};
.EE
.PP
Describes times in seconds and microseconds.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR gettimeofday (2),
.BR select (2),
.BR utimes (2),
.BR adjtime (3),
.BR futimes (3),
.BR timeradd (3)
.RE
.\"------------------------------------- uid_t ----------------------/
.TP
.I uid_t
.RS
.IR Include :
.IR <sys/types.h> .
Alternatively,
.IR <pwd.h> ,
.IR <signal.h> ,
.IR <stropts.h> ,
.IR <sys/ipc.h> ,
.IR <sys/stat.h> ,
or
.IR <unistd.h> .
.PP
A type used to hold user IDs.
According to POSIX,
this shall be an integer type.
.PP
.IR "Conforming to" :
POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR chown (2),
.BR getuid (2),
.BR geteuid (2),
.BR getresuid (2),
.BR getpwnam (2),
.BR credentials (7)
.RE
.\"------------------------------------- uintmax_t --------------------/
.TP
.I uintmax_t
.RS
.IR Include :
.IR <stdint.h> .
Alternatively,
.IR <inttypes.h> .
.PP
An unsigned integer type
capable of representing any value of any unsigned integer type
supported by the implementation.
According to the C language standard, it shall be
capable of storing values in the range [0,
.BR UINTMAX_MAX ].
.PP
The macro
.BR UINTMAX_C ()
.\" TODO: Document UINT*_C(3)
expands its argument to an integer constant of type
.IR uintmax_t .
.PP
The length modifier for
.I uintmax_t
for the
.BR printf (3)
and the
.BR scanf (3)
families of functions is
.BR j ;
resulting commonly in
.B %ju
or
.B %jx
for printing
.I uintmax_t
values.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR Bugs :
.I uintmax_t
is not large enough to represent values of type
.I unsigned __int128
in implementations where
.I unsigned __int128
is defined and
.I unsigned long long
is less than 128 bits wide.
.PP
.IR "See also" :
the
.I intmax_t
type in this page.
.RE
.\"------------------------------------- uintN_t ----------------------/
.TP
.IR uint N _t
.RS
.IR Include :
.IR <stdint.h> .
Alternatively,
.IR <inttypes.h> .
.PP
.IR uint8_t ,
.IR uint16_t ,
.IR uint32_t ,
.I uint64_t
.PP
An unsigned integer type
of a fixed width of exactly N bits,
N being the value specified in its type name.
According to the C language standard, they shall be
capable of storing values in the range [0,
.BR UINT N _MAX ],
substituting N by the appropriate number.
.PP
According to POSIX,
.IR uint8_t ,
.IR uint16_t ,
and
.I uint32_t
are required;
.I uint64_t
is only required in implementations that provide integer types
with width 64;
and all other types of this form are optional.
.PP
The length modifiers for the
.IR uint N _t
types for the
.BR printf (3)
family of functions
are expanded by macros of the forms
.BR PRIu N,
.BR PRIo N,
.BR PRIx N,
and
.BR PRIX N
(defined in
.IR <inttypes.h> );
resulting for example in
.B %"PRIu32"
or
.B %"PRIx32"
for printing
.I uint32_t
values.
The length modifiers for the
.IR uint N _t
types for the
.BR scanf (3)
family of functions
are expanded by macros of the forms
.BR SCNu N,
.BR SCNo N,
.BR SCNx N,
and
.BR SCNX N
(defined in
.IR <inttypes.h> );
resulting for example in
.B %"SCNu16"
or
.B %"SCNx16"
for scanning
.I uint16_t
values.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.IR intmax_t ,
.IR int N _t ,
and
.IR uintmax_t
types in this page.
.RE
.\"------------------------------------- uintptr_t --------------------/
.TP
.I uintptr_t
.RS
.IR Include :
.IR <stdint.h> .
Alternatively,
.IR <inttypes.h> .
.PP
An unsigned integer type
such that any valid
.RI ( "void *" )
value can be converted to this type and back.
According to the C language standard, it shall be
capable of storing values in the range [0,
.BR UINTPTR_MAX ].
.PP
The length modifier for
.I uintptr_t
for the
.BR printf (3)
family of functions
is expanded by the macros
.BR PRIuPTR ,
.BR PRIoPTR ,
.BR PRIxPTR ,
and
.B PRIXPTR
(defined in
.IR <inttypes.h> );
resulting commonly in
.B %"PRIuPTR"
or
.B %"PRIxPTR"
for printing
.I uintptr_t
values.
The length modifier for
.I uintptr_t
for the
.BR scanf (3)
family of functions
is expanded by the macros
.BR SCNuPTR,
.BR SCNoPTR,
.BR SCNxPTR ,
and
.B SCNXPTR
(defined in
.IR <inttypes.h> );
resulting commonly in
.B %"SCNuPTR"
or
.B %"SCNxPTR"
for scanning
.I uintptr_t
values.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
the
.I intptr_t
and
.I void *
types in this page.
.RE
.\"------------------------------------- va_list ----------------------/
.TP
.I va_list
.RS
.IR Include :
.IR <stdarg> .
Alternatively,
.IR <stdio.h> ,
or
.IR <wchar.h> .
.PP
Used by functions with a varying number of arguments of varying types.
The function must declare an object of type
.I va_list
which is used by the macros
.BR va_start (3),
.BR va_arg (3),
.BR va_copy (3),
and
.BR va_end (3)
to traverse the list of arguments.
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR va_start (3),
.BR va_arg (3),
.BR va_copy (3),
.BR va_end (3)
.RE
.\"------------------------------------- void * -----------------------/
.TP
.I void *
.RS
According to the C language standard,
a pointer to any object type may be converted to a pointer to
.I void
and back.
POSIX further requires that any pointer,
including pointers to functions,
may be converted to a pointer to
.I void
and back.
.PP
Conversions from and to any other pointer type are done implicitly,
not requiring casts at all.
Note that this feature prevents any kind of type checking:
the programmer should be careful not to convert a
.I void *
value to a type incompatible to that of the underlying data,
because that would result in undefined behavior.
.PP
This type is useful in function parameters and return value
to allow passing values of any type.
The function will typically use some mechanism to know
the real type of the data being passed via a pointer to
.IR void .
.PP
A value of this type can't be dereferenced,
as it would give a value of type
.IR void ,
which is not possible.
Likewise, pointer arithmetic is not possible with this type.
However, in GNU C, pointer arithmetic is allowed
as an extension to the standard;
this is done by treating the size of a
.I void
or of a function as 1.
A consequence of this is that
.I sizeof
is also allowed on
.I void
and on function types, and returns 1.
.PP
The conversion specifier for
.I void *
for the
.BR printf (3)
and the
.BR scanf (3)
families of functions is
.BR p .
.PP
.IR Versions :
The POSIX requirement about compatibility between
.I void *
and function pointers was added in
POSIX.1-2008 Technical Corrigendum 1 (2013).
.PP
.IR "Conforming to" :
C99 and later; POSIX.1-2001 and later.
.PP
.IR "See also" :
.BR malloc (3),
.BR memcmp (3),
.BR memcpy (3),
.BR memset (3)
.PP
See also the
.I intptr_t
and
.I uintptr_t
types in this page.
.RE
.\"--------------------------------------------------------------------/
.SH NOTES
The structures described in this manual page shall contain,
at least, the members shown in their definition, in no particular order.
.PP
Most of the integer types described in this page don't have
a corresponding length modifier for the
.BR printf (3)
and the
.BR scanf (3)
families of functions.
To print a value of an integer type that doesn't have a length modifier,
it should be converted to
.I intmax_t
or
.I uintmax_t
by an explicit cast.
To scan into a variable of an integer type
that doesn't have a length modifier,
an intermediate temporary variable of type
.I intmax_t
or
.I uintmax_t
should be used.
When copying from the temporary variable to the destination variable,
the value could overflow.
If the type has upper and lower limits,
the user should check that the value is within those limits,
before actually copying the value.
The example below shows how these conversions should be done.
.SS Conventions used in this page
In "Conforming to" we only concern ourselves with
C99 and later and POSIX.1-2001 and later.
Some types may be specified in earlier versions of one of these standards,
but in the interests of simplicity we omit details from earlier standards.
.PP
In "Include", we first note the "primary" header(s) that
define the type according to either the C or POSIX.1 standards.
Under "Alternatively", we note additional headers that
the standards specify shall define the type.
.SH EXAMPLES
The program shown below scans from a string and prints a value stored in
a variable of an integer type that doesn't have a length modifier.
The appropriate conversions from and to
.IR intmax_t ,
and the appropriate range checks,
are used as explained in the notes section above.
.PP
.EX
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>

int
main (void)
{
    static const char *const str = "500000 us in half a second";
    suseconds_t us;
    intmax_t    tmp;

    /* Scan the number from the string into the temporary variable */

    sscanf(str, "%jd", &tmp);

    /* Check that the value is within the valid range of suseconds_t */

    if (tmp < \-1 || tmp > 1000000) {
        fprintf(stderr, "Scanned value outside valid range!\en");
        exit(EXIT_FAILURE);
    }

    /* Copy the value to the suseconds_t variable \(aqus\(aq */

    us = tmp;

    /* Even though suseconds_t can hold the value \-1, this isn\(aqt
       a sensible number of microseconds */

    if (us < 0) {
        fprintf(stderr, "Scanned value shouldn\(aqt be negative!\en");
        exit(EXIT_FAILURE);
    }

    /* Print the value */

    printf("There are %jd microseconds in half a second.\en",
            (intmax_t) us);

    exit(EXIT_SUCCESS);
}
.EE
.SH SEE ALSO
.BR feature_test_macros (7),
.BR standards (7)
.SH COLOPHON
This page is part of release 5.10 of the Linux
.I man-pages
project.
A description of the project,
information about reporting bugs,
and the latest version of this page,
can be found at
\%https://www.kernel.org/doc/man\-pages/.