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
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
|
!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/
!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/
!_TAG_PROGRAM_NAME Exuberant Ctags //
!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/
!_TAG_PROGRAM_VERSION 5.9~svn20110310 //
ABDAY_1 src/langinfo/ABDAY_1.c 2;" d file:
ABDAY_2 src/langinfo/ABDAY_2.c 2;" d file:
ABDAY_3 src/langinfo/ABDAY_3.c 2;" d file:
ABDAY_4 src/langinfo/ABDAY_4.c 2;" d file:
ABDAY_5 src/langinfo/ABDAY_5.c 2;" d file:
ABDAY_6 src/langinfo/ABDAY_6.c 2;" d file:
ABDAY_7 src/langinfo/ABDAY_7.c 2;" d file:
ABMON_1 src/langinfo/ABMON_1.c 2;" d file:
ABMON_10 src/langinfo/ABMON_10.c 2;" d file:
ABMON_11 src/langinfo/ABMON_11.c 2;" d file:
ABMON_12 src/langinfo/ABMON_12.c 2;" d file:
ABMON_2 src/langinfo/ABMON_2.c 2;" d file:
ABMON_3 src/langinfo/ABMON_3.c 2;" d file:
ABMON_4 src/langinfo/ABMON_4.c 2;" d file:
ABMON_5 src/langinfo/ABMON_5.c 2;" d file:
ABMON_6 src/langinfo/ABMON_6.c 2;" d file:
ABMON_7 src/langinfo/ABMON_7.c 2;" d file:
ABMON_8 src/langinfo/ABMON_8.c 2;" d file:
ABMON_9 src/langinfo/ABMON_9.c 2;" d file:
ACS_BLOCK src/curses/ACS_BLOCK.c 2;" d file:
ACS_BOARD src/curses/ACS_BOARD.c 2;" d file:
ACS_BTEE src/curses/ACS_BTEE.c 2;" d file:
ACS_BULLET src/curses/ACS_BULLET.c 2;" d file:
ACS_CKBOARD src/curses/ACS_CKBOARD.c 2;" d file:
ACS_DARROW src/curses/ACS_DARROW.c 2;" d file:
ACS_DEGREE src/curses/ACS_DEGREE.c 2;" d file:
ACS_DIAMOND src/curses/ACS_DIAMOND.c 2;" d file:
ACS_HLINE src/curses/ACS_HLINE.c 2;" d file:
ACS_LANTERN src/curses/ACS_LANTERN.c 2;" d file:
ACS_LARROW src/curses/ACS_LARROW.c 2;" d file:
ACS_LLCORNER src/curses/ACS_LLCORNER.c 2;" d file:
ACS_LRCORNER src/curses/ACS_LRCORNER.c 2;" d file:
ACS_LTEE src/curses/ACS_LTEE.c 2;" d file:
ACS_PLMINUS src/curses/ACS_PLMINUS.c 2;" d file:
ACS_PLUS src/curses/ACS_PLUS.c 2;" d file:
ACS_RARROW src/curses/ACS_RARROW.c 2;" d file:
ACS_RTEE src/curses/ACS_RTEE.c 2;" d file:
ACS_S1 src/curses/ACS_S1.c 2;" d file:
ACS_S9 src/curses/ACS_S9.c 2;" d file:
ACS_TTEE src/curses/ACS_TTEE.c 2;" d file:
ACS_UARROW src/curses/ACS_UARROW.c 2;" d file:
ACS_ULCORNER src/curses/ACS_ULCORNER.c 2;" d file:
ACS_URCORNER src/curses/ACS_URCORNER.c 2;" d file:
ACS_VLINE src/curses/ACS_VLINE.c 2;" d file:
ACTION src/search/ACTION.c /^} ACTION;$/;" t typeref:enum:__anon5 file:
AIO_ALLDONE src/aio/AIO_ALLDONE.c 2;" d file:
AIO_CANCELED src/aio/AIO_CANCELED.c 2;" d file:
AIO_NOTCANCELED src/aio/AIO_NOTCANCELED.c 2;" d file:
ALT src/stdio/__printf.c 24;" d file:
ALT_DIGITS src/langinfo/ALT_DIGITS.c 2;" d file:
AM_STR src/langinfo/AM_STR.c 2;" d file:
ANYMARK src/stropts/ANYMARK.c 2;" d file:
AREGTYPE src/tar/AREGTYPE.c 3;" d file:
A_ALTCHARSET src/curses/A_ALTCHARSET.c 2;" d file:
A_ATTRIBUTES src/curses/A_ATTRIBUTES.c 2;" d file:
A_BLINK src/curses/A_BLINK.c 2;" d file:
A_BOLD src/curses/A_BOLD.c 2;" d file:
A_CHARTEXT src/curses/A_CHARTEXT.c 2;" d file:
A_COLOR src/curses/A_COLOR.c 2;" d file:
A_DIM src/curses/A_DIM.c 2;" d file:
A_INVIS src/curses/A_INVIS.c 2;" d file:
A_PROTECT src/curses/A_PROTECT.c 2;" d file:
A_REVERSE src/curses/A_REVERSE.c 2;" d file:
A_STANDOUT src/curses/A_STANDOUT.c 2;" d file:
A_UNDERLINE src/curses/A_UNDERLINE.c 2;" d file:
B0 src/termios/B0.c 2;" d file:
B110 src/termios/B110.c 2;" d file:
B1200 src/termios/B1200.c 2;" d file:
B134 src/termios/B134.c 2;" d file:
B150 src/termios/B150.c 2;" d file:
B1800 src/termios/B1800.c 2;" d file:
B19200 src/termios/B19200.c 2;" d file:
B200 src/termios/B200.c 2;" d file:
B2400 src/termios/B2400.c 2;" d file:
B300 src/termios/B300.c 2;" d file:
B38400 src/termios/B38400.c 2;" d file:
B4800 src/termios/B4800.c 2;" d file:
B50 src/termios/B50.c 2;" d file:
B600 src/termios/B600.c 2;" d file:
B75 src/termios/B75.c 2;" d file:
B9600 src/termios/B9600.c 2;" d file:
BC_BASE_MAX src/limits/BC_BASE_MAX.c 2;" d file:
BC_DIM_MAX src/limits/BC_DIM_MAX.c 2;" d file:
BC_SCALE_MAX src/limits/BC_SCALE_MAX.c 2;" d file:
BC_STRING_MAX src/limits/BC_STRING_MAX.c 2;" d file:
BLKTYPE src/tar/BLKTYPE.c 3;" d file:
BOOT_TIME src/utmpx/BOOT_TIME.c 2;" d file:
BRKINT src/termios/BRKINT.c 2;" d file:
BS0 src/termios/BS0.c 2;" d file:
BS1 src/termios/BS1.c 2;" d file:
BSDLY src/termios/BSDLY.c 2;" d file:
BUFSIZ src/stdio/BUFSIZ.c 2;" d file:
BUS_ADRALN src/signal/BUS_ADRALN.c 2;" d file:
BUS_ADRERR src/signal/BUS_ADRERR.c 2;" d file:
BUS_OBJERR src/signal/BUS_OBJERR.c 2;" d file:
CHARCLASS_NAME_MAX src/limits/CHARCLASS_NAME_MAX.c 2;" d file:
CHAR_BIT src/limits/CHAR_BIT.c 2;" d file:
CHAR_MAX src/limits/CHAR_MAX.c 3;" d file:
CHAR_MAX src/limits/CHAR_MAX.c 5;" d file:
CHAR_MIN src/limits/CHAR_MIN.c 3;" d file:
CHAR_MIN src/limits/CHAR_MIN.c 5;" d file:
CHRTYPE src/tar/CHRTYPE.c 3;" d file:
CLD_CONTINUED src/signal/CLD_CONTINUED.c 2;" d file:
CLD_DUMPED src/signal/CLD_DUMPED.c 2;" d file:
CLD_EXITED src/signal/CLD_EXITED.c 2;" d file:
CLD_KILLED src/signal/CLD_KILLED.c 2;" d file:
CLD_STOPPED src/signal/CLD_STOPPED.c 2;" d file:
CLD_TRAPPED src/signal/CLD_TRAPPED.c 2;" d file:
CLK_TCK src/time/CLK_TCK.c 2;" d file:
CLOCAL src/termios/CLOCAL.c 2;" d file:
CLOCKS_PER_SEC src/time/CLOCKS_PER_SEC.c 2;" d file:
CLOCK_REALTIME src/time/CLOCK_REALTIME.c 2;" d file:
CMPLX src/complex/CMPLX.c 4;" d file:
CMPLX src/complex/CMPLX.c 7;" d file:
CMPLXF src/complex/CMPLXF.c 4;" d file:
CMPLXF src/complex/CMPLXF.c 7;" d file:
CMPLXL src/complex/CMPLXL.c 4;" d file:
CMPLXL src/complex/CMPLXL.c 8;" d file:
CODESET src/langinfo/CODESET.c 2;" d file:
COLL_WEIGHTS_MAX src/limits/COLL_WEIGHTS_MAX.c 2;" d file:
COLORS src/curses/COLORS.c /^int COLORS;$/;" v
COLOR_BLACK src/curses/COLOR_BLACK.c 2;" d file:
COLOR_BLUE src/curses/COLOR_BLUE.c 2;" d file:
COLOR_CYAN src/curses/COLOR_CYAN.c 2;" d file:
COLOR_GREEN src/curses/COLOR_GREEN.c 2;" d file:
COLOR_MAGENTA src/curses/COLOR_MAGENTA.c 2;" d file:
COLOR_PAIR src/curses/COLOR_PAIR.c 2;" d file:
COLOR_PAIRS src/curses/COLOR_PAIRS.c /^int COLOR_PAIRS;$/;" v
COLOR_RED src/curses/COLOR_RED.c 2;" d file:
COLOR_WHITE src/curses/COLOR_WHITE.c 2;" d file:
COLOR_YELLOW src/curses/COLOR_YELLOW.c 2;" d file:
COLS src/curses/COLS.c /^int COLS;$/;" v
CONTTYPE src/tar/CONTTYPE.c 3;" d file:
CR0 src/termios/CR0.c 2;" d file:
CR1 src/termios/CR1.c 2;" d file:
CR2 src/termios/CR2.c 2;" d file:
CR3 src/termios/CR3.c 2;" d file:
CRDLY src/termios/CRDLY.c 2;" d file:
CREAD src/termios/CREAD.c 2;" d file:
CRNCYSTR src/langinfo/CRNCYSTR.c 2;" d file:
CS5 src/termios/CS5.c 2;" d file:
CS6 src/termios/CS6.c 2;" d file:
CS7 src/termios/CS7.c 2;" d file:
CS8 src/termios/CS8.c 2;" d file:
CSIZE src/termios/CSIZE.c 2;" d file:
CSTOPB src/termios/CSTOPB.c 2;" d file:
C_IRGRP src/cpio/C_IRGRP.c 2;" d file:
C_IROTH src/cpio/C_IROTH.c 2;" d file:
C_IRUSR src/cpio/C_IRUSR.c 2;" d file:
C_ISBLK src/cpio/C_ISBLK.c 2;" d file:
C_ISCHR src/cpio/C_ISCHR.c 2;" d file:
C_ISCTG src/cpio/C_ISCTG.c 2;" d file:
C_ISDIR src/cpio/C_ISDIR.c 2;" d file:
C_ISFIFO src/cpio/C_ISFIFO.c 2;" d file:
C_ISGID src/cpio/C_ISGID.c 2;" d file:
C_ISLNK src/cpio/C_ISLNK.c 2;" d file:
C_ISREG src/cpio/C_ISREG.c 2;" d file:
C_ISSOCK src/cpio/C_ISSOCK.c 2;" d file:
C_ISUID src/cpio/C_ISUID.c 2;" d file:
C_ISVTX src/cpio/C_ISVTX.c 2;" d file:
C_IWGRP src/cpio/C_IWGRP.c 2;" d file:
C_IWOTH src/cpio/C_IWOTH.c 2;" d file:
C_IWUSR src/cpio/C_IWUSR.c 2;" d file:
C_IXGRP src/cpio/C_IXGRP.c 2;" d file:
C_IXOTH src/cpio/C_IXOTH.c 2;" d file:
C_IXUSR src/cpio/C_IXUSR.c 2;" d file:
DAY_1 src/langinfo/DAY_1.c 2;" d file:
DAY_2 src/langinfo/DAY_2.c 2;" d file:
DAY_3 src/langinfo/DAY_3.c 2;" d file:
DAY_4 src/langinfo/DAY_4.c 2;" d file:
DAY_5 src/langinfo/DAY_5.c 2;" d file:
DAY_6 src/langinfo/DAY_6.c 2;" d file:
DAY_7 src/langinfo/DAY_7.c 2;" d file:
DAY_PER_YEAR src/time/gmtime.c 9;" d file:
DBL_DIG src/float/DBL_DIG.c 2;" d file:
DBL_EPSILON src/float/DBL_EPSILON.c 2;" d file:
DBL_MANT_DIG src/float/DBL_MANT_DIG.c 2;" d file:
DBL_MAX src/float/DBL_MAX.c 2;" d file:
DBL_MAX_10_EXP src/float/DBL_MAX_10_EXP.c 2;" d file:
DBL_MAX_EXP src/float/DBL_MAX_EXP.c 2;" d file:
DBL_MIN src/float/DBL_MIN.c 2;" d file:
DBL_MIN_10_EXP src/float/DBL_MIN_10_EXP.c 2;" d file:
DBL_MIN_EXP src/float/DBL_MIN_EXP.c 2;" d file:
DBM src/ndbm/DBM.c /^typedef struct __DBM DBM;$/;" t typeref:struct:__DBM file:
DBM_INSERT src/ndbm/DBM_INSERT.c 2;" d file:
DBM_REPLACE src/ndbm/DBM_REPLACE.c 2;" d file:
DEAD_PROCESS src/utmpx/DEAD_PROCESS.c 2;" d file:
DECIMAL_DIG src/float/DECIMAL_DIG.c 3;" d file:
DEFAULT_LOCALE src/__main.c 11;" d file:
DEFAULT_LOCALE src/__main.c 8;" d file:
DIR src/dirent/DIR.c /^typedef struct __DIR DIR;$/;" t typeref:struct:__DIR file:
DIRTYPE src/tar/DIRTYPE.c 3;" d file:
D_FMT src/langinfo/D_FMT.c 2;" d file:
D_T_FMT src/langinfo/D_T_FMT.c 2;" d file:
E2BIG src/errno/E2BIG.c 3;" d file:
EACCES src/errno/EACCES.c 3;" d file:
EADDRINUSE src/errno/EADDRINUSE.c 2;" d file:
EADDRNOTAVAIL src/errno/EADDRNOTAVAIL.c 2;" d file:
EAFNOSUPPORT src/errno/EAFNOSUPPORT.c 2;" d file:
EAGAIN src/errno/EAGAIN.c 3;" d file:
EALREADY src/errno/EALREADY.c 2;" d file:
EBADF src/errno/EBADF.c 3;" d file:
EBADMSG src/errno/EBADMSG.c 2;" d file:
EBUSY src/errno/EBUSY.c 3;" d file:
ECANCELED src/errno/ECANCELED.c 2;" d file:
ECHILD src/errno/ECHILD.c 3;" d file:
ECHO src/termios/ECHO.c 2;" d file:
ECHOE src/termios/ECHOE.c 2;" d file:
ECHOK src/termios/ECHOK.c 2;" d file:
ECHONL src/termios/ECHONL.c 2;" d file:
ECONNABORTED src/errno/ECONNABORTED.c 2;" d file:
ECONNREFUSED src/errno/ECONNREFUSED.c 2;" d file:
ECONNRESET src/errno/ECONNRESET.c 2;" d file:
EDEADLK src/errno/EDEADLK.c 3;" d file:
EDESTADDRREQ src/errno/EDESTADDRREQ.c 2;" d file:
EDOM src/errno/EDOM.c 2;" d file:
EDQUOT src/errno/EDQUOT.c 2;" d file:
EEXIST src/errno/EEXIST.c 3;" d file:
EFAULT src/errno/EFAULT.c 3;" d file:
EFBIG src/errno/EFBIG.c 3;" d file:
EHOSTUNREACH src/errno/EHOSTUNREACH.c 2;" d file:
EIDRM src/errno/EIDRM.c 2;" d file:
EILSEQ src/errno/EILSEQ.c 2;" d file:
EINPROGRESS src/errno/EINPROGRESS.c 2;" d file:
EINTR src/errno/EINTR.c 3;" d file:
EINVAL src/errno/EINVAL.c 3;" d file:
EIO src/errno/EIO.c 3;" d file:
EISCONN src/errno/EISCONN.c 2;" d file:
EISDIR src/errno/EISDIR.c 3;" d file:
ELOOP src/errno/ELOOP.c 2;" d file:
EMFILE src/errno/EMFILE.c 3;" d file:
EMLINK src/errno/EMLINK.c 3;" d file:
EMPTY src/utmpx/EMPTY.c 2;" d file:
EMSGSIZE src/errno/EMSGSIZE.c 2;" d file:
EMULTIHOP src/errno/EMULTIHOP.c 2;" d file:
ENAMETOOLONG src/errno/ENAMETOOLONG.c 3;" d file:
ENETDOWN src/errno/ENETDOWN.c 2;" d file:
ENETUNREACH src/errno/ENETUNREACH.c 2;" d file:
ENFILE src/errno/ENFILE.c 3;" d file:
ENOBUFS src/errno/ENOBUFS.c 2;" d file:
ENODATA src/errno/ENODATA.c 2;" d file:
ENODEV src/errno/ENODEV.c 3;" d file:
ENOENT src/errno/ENOENT.c 3;" d file:
ENOEXEC src/errno/ENOEXEC.c 3;" d file:
ENOLCK src/errno/ENOLCK.c 3;" d file:
ENOLINK src/errno/ENOLINK.c 2;" d file:
ENOMEM src/errno/ENOMEM.c 3;" d file:
ENOMSG src/errno/ENOMSG.c 2;" d file:
ENOPROTOOPT src/errno/ENOPROTOOPT.c 2;" d file:
ENOSPC src/errno/ENOSPC.c 3;" d file:
ENOSR src/errno/ENOSR.c 2;" d file:
ENOSTR src/errno/ENOSTR.c 2;" d file:
ENOSYS src/errno/ENOSYS.c 3;" d file:
ENOTCONN src/errno/ENOTCONN.c 2;" d file:
ENOTDIR src/errno/ENOTDIR.c 3;" d file:
ENOTEMPTY src/errno/ENOTEMPTY.c 3;" d file:
ENOTSOCK src/errno/ENOTSOCK.c 2;" d file:
ENOTSUP src/errno/ENOTSUP.c 2;" d file:
ENOTTY src/errno/ENOTTY.c 3;" d file:
ENTER src/search/ACTION.c /^ ENTER$/;" e enum:__anon5 file:
ENTRY src/search/ENTRY.c /^} ENTRY;$/;" t typeref:struct:__anon3 file:
ENXIO src/errno/ENXIO.c 3;" d file:
EOF src/stdio/EOF.c 2;" d file:
EOPNOTSUPP src/errno/EOPNOTSUPP.c 2;" d file:
EOVERFLOW src/errno/EOVERFLOW.c 2;" d file:
EPERM src/errno/EPERM.c 3;" d file:
EPIPE src/errno/EPIPE.c 3;" d file:
EPOCH_YEAR src/time/gmtime.c 12;" d file:
EPROTO src/errno/EPROTO.c 2;" d file:
EPROTONOSUPPORT src/errno/EPROTONOSUPPORT.c 2;" d file:
EPROTOTYPE src/errno/EPROTOTYPE.c 2;" d file:
ERA src/langinfo/ERA.c 2;" d file:
ERANGE src/errno/ERANGE.c 2;" d file:
ERA_D_FMT src/langinfo/ERA_D_FMT.c 2;" d file:
ERA_D_T_FMT src/langinfo/ERA_D_T_FMT.c 2;" d file:
ERA_T_FMT src/langinfo/ERA_T_FMT.c 2;" d file:
EROFS src/errno/EROFS.c 3;" d file:
ERR src/curses/ERR.c 2;" d file:
ERROR src/regexp/ERROR.c 1;" d file:
ESPIPE src/errno/ESPIPE.c 3;" d file:
ESRCH src/errno/ESRCH.c 3;" d file:
ESTALE src/errno/ESTALE.c 2;" d file:
ETIME src/errno/ETIME.c 2;" d file:
ETIMEDOUT src/errno/ETIMEDOUT.c 2;" d file:
ETXTBSY src/errno/ETXTBSY.c 2;" d file:
EWOULDBLOCK src/errno/EWOULDBLOCK.c 2;" d file:
EXDEV src/errno/EXDEV.c 3;" d file:
EXIT_FAILURE src/stdlib/EXIT_FAILURE.c 5;" d file:
EXIT_SUCCESS src/stdlib/EXIT_SUCCESS.c 5;" d file:
EXPR_NEST_MAX src/limits/EXPR_NEST_MAX.c 2;" d file:
FALSE src/curses/FALSE.c 2;" d file:
FD_CLOEXEC src/fcntl/FD_CLOEXEC.c 3;" d file:
FD_CLR src/sys/time/FD_CLR.c 2;" d file:
FD_ISSET src/sys/time/FD_ISSET.c 2;" d file:
FD_SET src/sys/time/FD_SET.c 2;" d file:
FD_SETSIZE src/sys/time/FD_SETSIZE.c 2;" d file:
FD_ZERO src/sys/time/FD_ZERO.c 2;" d file:
FE_ALL_EXCEPT src/fenv/FE_ALL_EXCEPT.c 3;" d file:
FE_DFL_ENV src/fenv/FE_DFL_ENV.c 3;" d file:
FE_DIVBYZERO src/fenv/FE_DIVBYZERO.c 3;" d file:
FE_DOWNWARD src/fenv/FE_DOWNWARD.c 3;" d file:
FE_INEXACT src/fenv/FE_INEXACT.c 3;" d file:
FE_INVALID src/fenv/FE_INVALID.c 3;" d file:
FE_OVERFLOW src/fenv/FE_OVERFLOW.c 3;" d file:
FE_TONEAREST src/fenv/FE_TONEAREST.c 3;" d file:
FE_TOWARDZERO src/fenv/FE_TOWARDZERO.c 3;" d file:
FE_UNDERFLOW src/fenv/FE_UNDERFLOW.c 3;" d file:
FE_UPWARD src/fenv/FE_UPWARD.c 3;" d file:
FF0 src/termios/FF0.c 2;" d file:
FF1 src/termios/FF1.c 2;" d file:
FFDLY src/termios/FFDLY.c 2;" d file:
FIFOTYPE src/tar/FIFOTYPE.c 3;" d file:
FILE src/stdio/FILE.c /^typedef struct __FILE FILE;$/;" t typeref:struct:__FILE file:
FILENAME_MAX src/stdio/FILENAME_MAX.c 2;" d file:
FIND src/search/ACTION.c /^ FIND,$/;" e enum:__anon5 file:
FLT_DIG src/float/FLT_DIG.c 2;" d file:
FLT_EPSILON src/float/FLT_EPSILON.c 2;" d file:
FLT_EVAL_METHOD src/float/FLT_EVAL_METHOD.c 3;" d file:
FLT_MANT_DIG src/float/FLT_MANT_DIG.c 2;" d file:
FLT_MAX src/float/FLT_MAX.c 2;" d file:
FLT_MAX_10_EXP src/float/FLT_MAX_10_EXP.c 2;" d file:
FLT_MAX_EXP src/float/FLT_MAX_EXP.c 2;" d file:
FLT_MIN src/float/FLT_MIN.c 2;" d file:
FLT_MIN_10_EXP src/float/FLT_MIN_10_EXP.c 2;" d file:
FLT_MIN_EXP src/float/FLT_MIN_EXP.c 2;" d file:
FLT_RADIX src/float/FLT_RADIX.c 2;" d file:
FLT_ROUNDS src/float/FLT_ROUNDS.c 3;" d file:
FLUSHR src/stropts/FLUSHR.c 2;" d file:
FLUSHRW src/stropts/FLUSHRW.c 2;" d file:
FLUSHW src/stropts/FLUSHW.c 2;" d file:
FMNAMESZ src/stropts/FMNAMESZ.c 2;" d file:
FNM_NOESCAPE src/fnmatch/FNM_NOESCAPE.c 2;" d file:
FNM_NOMATCH src/fnmatch/FNM_NOMATCH.c 2;" d file:
FNM_NOSYS src/fnmatch/FNM_NOSYS.c 2;" d file:
FNM_PATHNAME src/fnmatch/FNM_PATHNAME.c 2;" d file:
FNM_PERIOD src/fnmatch/FNM_PERIOD.c 2;" d file:
FOPEN_MAX src/stdio/FOPEN_MAX.c 2;" d file:
FPE_FLTDIV src/signal/FPE_FLTDIV.c 2;" d file:
FPE_FLTINV src/signal/FPE_FLTINV.c 2;" d file:
FPE_FLTOVF src/signal/FPE_FLTOVF.c 2;" d file:
FPE_FLTRES src/signal/FPE_FLTRES.c 2;" d file:
FPE_FLTSUB src/signal/FPE_FLTSUB.c 2;" d file:
FPE_FLTUND src/signal/FPE_FLTUND.c 2;" d file:
FPE_INTDIV src/signal/FPE_INTDIV.c 2;" d file:
FPE_INTOVF src/signal/FPE_INTOVF.c 2;" d file:
FP_FAST_FMA src/math/FP_FAST_FMA.c 6;" d file:
FP_FAST_FMAF src/math/FP_FAST_FMAF.c 6;" d file:
FP_FAST_FMAL src/math/FP_FAST_FMAL.c 6;" d file:
FP_ILOGB0 src/math/FP_ILOGB0.c 2;" d file:
FP_ILOGBNAN src/math/FP_ILOGBNAN.c 2;" d file:
FP_INFINITE src/math/FP_INFINITE.c 2;" d file:
FP_NAN src/math/FP_NAN.c 2;" d file:
FP_NORMAL src/math/FP_NORMAL.c 2;" d file:
FP_SUBNORMAL src/math/FP_SUBNORMAL.c 2;" d file:
FP_ZERO src/math/FP_ZERO.c 2;" d file:
FTW src/ftw/struct_FTW.c /^struct FTW {$/;" s file:
FTW_CHDIR src/ftw/FTW_CHDIR.c 2;" d file:
FTW_D src/ftw/FTW_D.c 2;" d file:
FTW_DEPTH src/ftw/FTW_DEPTH.c 2;" d file:
FTW_DNR src/ftw/FTW_DNR.c 2;" d file:
FTW_F src/ftw/FTW_F.c 2;" d file:
FTW_MOUNT src/ftw/FTW_MOUNT.c 2;" d file:
FTW_NS src/ftw/FTW_NS.c 2;" d file:
FTW_PHYS src/ftw/FTW_PHYS.c 2;" d file:
FTW_SL src/ftw/FTW_SL.c 2;" d file:
FTW_SLN src/ftw/FTW_SLN.c 2;" d file:
F_DUPFD src/fcntl/F_DUPFD.c 3;" d file:
F_GETFD src/fcntl/F_GETFD.c 3;" d file:
F_GETFL src/fcntl/F_GETFL.c 3;" d file:
F_GETLK src/fcntl/F_GETLK.c 3;" d file:
F_LOCK src/unistd/F_LOCK.c 2;" d file:
F_OK src/unistd/F_OK.c 2;" d file:
F_RDLCK src/fcntl/F_RDLCK.c 3;" d file:
F_SETFD src/fcntl/F_SETFD.c 3;" d file:
F_SETFL src/fcntl/F_SETFL.c 3;" d file:
F_SETLK src/fcntl/F_SETLK.c 3;" d file:
F_SETLKW src/fcntl/F_SETLKW.c 3;" d file:
F_TEST src/unistd/F_TEST.c 2;" d file:
F_TLOCK src/unistd/F_TLOCK.c 2;" d file:
F_ULOCK src/unistd/F_ULOCK.c 2;" d file:
F_UNLCK src/fcntl/F_UNLCK.c 3;" d file:
F_WRLCK src/fcntl/F_WRLCK.c 3;" d file:
GETALL src/sys/sem/GETALL.c 2;" d file:
GETC src/regexp/GETC.c 1;" d file:
GETNCNT src/sys/sem/GETNCNT.c 2;" d file:
GETPID src/sys/sem/GETPID.c 2;" d file:
GETVAL src/sys/sem/GETVAL.c 2;" d file:
GETZCNT src/sys/sem/GETZCNT.c 2;" d file:
GLOB_ABORTED src/glob/GLOB_ABORTED.c 2;" d file:
GLOB_APPEND src/glob/GLOB_APPEND.c 2;" d file:
GLOB_DOOFFS src/glob/GLOB_DOOFFS.c 2;" d file:
GLOB_ERR src/glob/GLOB_ERR.c 2;" d file:
GLOB_MARK src/glob/GLOB_MARK.c 2;" d file:
GLOB_NOCHECK src/glob/GLOB_NOCHECK.c 2;" d file:
GLOB_NOESCAPE src/glob/GLOB_NOESCAPE.c 2;" d file:
GLOB_NOMATCH src/glob/GLOB_NOMATCH.c 2;" d file:
GLOB_NOSORT src/glob/GLOB_NOSORT.c 2;" d file:
GLOB_NOSPACE src/glob/GLOB_NOSPACE.c 2;" d file:
GLOB_NOSYS src/glob/GLOB_NOSYS.c 2;" d file:
HR_PER_DAY src/time/gmtime.c 7;" d file:
HUGE_VAL src/math/HUGE_VAL.c 2;" d file:
HUGE_VALF src/math/HUGE_VALF.c 2;" d file:
HUGE_VALL src/math/HUGE_VALL.c 2;" d file:
HUPCL src/termios/HUPCL.c 2;" d file:
I src/complex/I.c 4;" d file:
I src/complex/I.c 6;" d file:
ICANON src/termios/ICANON.c 2;" d file:
ICRNL src/termios/ICRNL.c 2;" d file:
IEXTEN src/termios/IEXTEN.c 2;" d file:
IGNBRK src/termios/IGNBRK.c 2;" d file:
IGNCR src/termios/IGNCR.c 2;" d file:
IGNPAR src/termios/IGNPAR.c 2;" d file:
ILL_BADSTK src/signal/ILL_BADSTK.c 2;" d file:
ILL_COPROC src/signal/ILL_COPROC.c 2;" d file:
ILL_ILLADR src/signal/ILL_ILLADR.c 2;" d file:
ILL_ILLOPC src/signal/ILL_ILLOPC.c 2;" d file:
ILL_ILLOPN src/signal/ILL_ILLOPN.c 2;" d file:
ILL_ILLTRP src/signal/ILL_ILLTRP.c 2;" d file:
ILL_PRVOPC src/signal/ILL_PRVOPC.c 2;" d file:
ILL_PRVREG src/signal/ILL_PRVREG.c 2;" d file:
INFINITY src/math/INFINITY.c 2;" d file:
INIT src/regexp/INIT.c 1;" d file:
INIT_PROCESS src/utmpx/INIT_PROCESS.c 2;" d file:
INLCR src/termios/INLCR.c 2;" d file:
INPCK src/termios/INPCK.c 2;" d file:
INT16_C src/stdint/INT16_C.c 3;" d file:
INT16_MAX src/stdint/INT16_MAX.c 2;" d file:
INT16_MIN src/stdint/INT16_MIN.c 2;" d file:
INT32_C src/stdint/INT32_C.c 3;" d file:
INT32_MAX src/stdint/INT32_MAX.c 2;" d file:
INT32_MIN src/stdint/INT32_MIN.c 2;" d file:
INT64_C src/stdint/INT64_C.c 3;" d file:
INT64_MAX src/stdint/INT64_MAX.c 2;" d file:
INT64_MIN src/stdint/INT64_MIN.c 2;" d file:
INT8_C src/stdint/INT8_C.c 3;" d file:
INT8_MAX src/stdint/INT8_MAX.c 2;" d file:
INT8_MIN src/stdint/INT8_MIN.c 2;" d file:
INTMAX_C src/stdint/INTMAX_C.c 3;" d file:
INTMAX_MAX src/stdint/INTMAX_MAX.c 2;" d file:
INTMAX_MIN src/stdint/INTMAX_MIN.c 2;" d file:
INTPTR_MAX src/stdint/INTPTR_MAX.c 2;" d file:
INTPTR_MIN src/stdint/INTPTR_MIN.c 2;" d file:
INT_FAST16_MAX src/stdint/INT_FAST16_MAX.c 2;" d file:
INT_FAST16_MIN src/stdint/INT_FAST16_MIN.c 2;" d file:
INT_FAST32_MAX src/stdint/INT_FAST32_MAX.c 2;" d file:
INT_FAST32_MIN src/stdint/INT_FAST32_MIN.c 2;" d file:
INT_FAST64_MAX src/stdint/INT_FAST64_MAX.c 2;" d file:
INT_FAST64_MIN src/stdint/INT_FAST64_MIN.c 2;" d file:
INT_FAST8_MAX src/stdint/INT_FAST8_MAX.c 2;" d file:
INT_FAST8_MIN src/stdint/INT_FAST8_MIN.c 2;" d file:
INT_LEAST16_MAX src/stdint/INT_LEAST16_MAX.c 2;" d file:
INT_LEAST16_MIN src/stdint/INT_LEAST16_MIN.c 2;" d file:
INT_LEAST32_MAX src/stdint/INT_LEAST32_MAX.c 2;" d file:
INT_LEAST32_MIN src/stdint/INT_LEAST32_MIN.c 2;" d file:
INT_LEAST64_MAX src/stdint/INT_LEAST64_MAX.c 2;" d file:
INT_LEAST64_MIN src/stdint/INT_LEAST64_MIN.c 2;" d file:
INT_LEAST8_MAX src/stdint/INT_LEAST8_MAX.c 2;" d file:
INT_LEAST8_MIN src/stdint/INT_LEAST8_MIN.c 2;" d file:
INT_MAX src/limits/INT_MAX.c 3;" d file:
INT_MAX src/limits/INT_MAX.c 5;" d file:
INT_MAX src/limits/INT_MAX.c 7;" d file:
INT_MIN src/limits/INT_MIN.c 2;" d file:
IPC_CREAT src/sys/ipc/IPC_CREAT.c 2;" d file:
IPC_EXCL src/sys/ipc/IPC_EXCL.c 2;" d file:
IPC_NOWAIT src/sys/ipc/IPC_NOWAIT.c 2;" d file:
IPC_PRIVATE src/sys/ipc/IPC_PRIVATE.c 2;" d file:
IPC_RMID src/sys/ipc/IPC_RMID.c 2;" d file:
IPC_SET src/sys/ipc/IPC_SET.c 2;" d file:
IPC_STAT src/sys/ipc/IPC_STAT.c 2;" d file:
ISIG src/termios/ISIG.c 2;" d file:
ISLEAPYEAR src/time/gmtime.c 11;" d file:
ISTRIP src/termios/ISTRIP.c 2;" d file:
ITIMER_PROF src/sys/time/ITIMER_PROF.c 2;" d file:
ITIMER_REAL src/sys/time/ITIMER_REAL.c 2;" d file:
ITIMER_VIRTUAL src/sys/time/ITIMER_VIRTUAL.c 2;" d file:
IUCLC src/termios/IUCLC.c 2;" d file:
IXANY src/termios/IXANY.c 2;" d file:
IXOFF src/termios/IXOFF.c 2;" d file:
IXON src/termios/IXON.c 2;" d file:
I_ATMARK src/stropts/I_ATMARK.c 2;" d file:
I_CANPUT src/stropts/I_CANPUT.c 2;" d file:
I_CKBAND src/stropts/I_CKBAND.c 2;" d file:
I_FDINSERT src/stropts/I_FDINSERT.c 2;" d file:
I_FIND src/stropts/I_FIND.c 2;" d file:
I_FLUSH src/stropts/I_FLUSH.c 2;" d file:
I_FLUSHBAND src/stropts/I_FLUSHBAND.c 2;" d file:
I_GETBAND src/stropts/I_GETBAND.c 2;" d file:
I_GETCLTIME src/stropts/I_GETCLTIME.c 2;" d file:
I_GETSIG src/stropts/I_GETSIG.c 2;" d file:
I_GRDOPT src/stropts/I_GRDOPT.c 2;" d file:
I_GWROPT src/stropts/I_GWROPT.c 2;" d file:
I_LINK src/stropts/I_LINK.c 2;" d file:
I_LIST src/stropts/I_LIST.c 2;" d file:
I_LOOK src/stropts/I_LOOK.c 2;" d file:
I_NREAD src/stropts/I_NREAD.c 2;" d file:
I_PEEK src/stropts/I_PEEK.c 2;" d file:
I_PLINK src/stropts/I_PLINK.c 2;" d file:
I_POP src/stropts/I_POP.c 2;" d file:
I_PUNLINK src/stropts/I_PUNLINK.c 2;" d file:
I_PUSH src/stropts/I_PUSH.c 2;" d file:
I_RECVFD src/stropts/I_RECVFD.c 2;" d file:
I_SENDFD src/stropts/I_SENDFD.c 2;" d file:
I_SETCLTIME src/stropts/I_SETCLTIME.c 2;" d file:
I_SETSIG src/stropts/I_SETSIG.c 2;" d file:
I_SRDOPT src/stropts/I_SRDOPT.c 2;" d file:
I_STR src/stropts/I_STR.c 2;" d file:
I_SWROPT src/stropts/I_SWROPT.c 2;" d file:
I_UNLINK src/stropts/I_UNLINK.c 2;" d file:
KEY_A1 src/curses/KEY_A1.c 2;" d file:
KEY_A3 src/curses/KEY_A3.c 2;" d file:
KEY_B2 src/curses/KEY_B2.c 2;" d file:
KEY_BACKSPACE src/curses/KEY_BACKSPACE.c 2;" d file:
KEY_BEG src/curses/KEY_BEG.c 2;" d file:
KEY_BREAK src/curses/KEY_BREAK.c 2;" d file:
KEY_BTAB src/curses/KEY_BTAB.c 2;" d file:
KEY_C1 src/curses/KEY_C1.c 2;" d file:
KEY_C3 src/curses/KEY_C3.c 2;" d file:
KEY_CANCEL src/curses/KEY_CANCEL.c 2;" d file:
KEY_CATAB src/curses/KEY_CATAB.c 2;" d file:
KEY_CLEAR src/curses/KEY_CLEAR.c 2;" d file:
KEY_CLOSE src/curses/KEY_CLOSE.c 2;" d file:
KEY_CODE_YES src/curses/KEY_CODE_YES.c 2;" d file:
KEY_COMMAND src/curses/KEY_COMMAND.c 2;" d file:
KEY_COPY src/curses/KEY_COPY.c 2;" d file:
KEY_CREATE src/curses/KEY_CREATE.c 2;" d file:
KEY_CTAB src/curses/KEY_CTAB.c 2;" d file:
KEY_DC src/curses/KEY_DC.c 2;" d file:
KEY_DL src/curses/KEY_DL.c 2;" d file:
KEY_DOWN src/curses/KEY_DOWN.c 2;" d file:
KEY_EIC src/curses/KEY_EIC.c 2;" d file:
KEY_END src/curses/KEY_END.c 2;" d file:
KEY_ENTER src/curses/KEY_ENTER.c 2;" d file:
KEY_EOL src/curses/KEY_EOL.c 2;" d file:
KEY_EOS src/curses/KEY_EOS.c 2;" d file:
KEY_EXIT src/curses/KEY_EXIT.c 2;" d file:
KEY_F0 src/curses/KEY_F0.c 2;" d file:
KEY_FIND src/curses/KEY_FIND.c 2;" d file:
KEY_HELP src/curses/KEY_HELP.c 2;" d file:
KEY_HOME src/curses/KEY_HOME.c 2;" d file:
KEY_IC src/curses/KEY_IC.c 2;" d file:
KEY_IL src/curses/KEY_IL.c 2;" d file:
KEY_LEFT src/curses/KEY_LEFT.c 2;" d file:
KEY_LL src/curses/KEY_LL.c 2;" d file:
KEY_MARK src/curses/KEY_MARK.c 2;" d file:
KEY_MESSAGE src/curses/KEY_MESSAGE.c 2;" d file:
KEY_MOVE src/curses/KEY_MOVE.c 2;" d file:
KEY_NEXT src/curses/KEY_NEXT.c 2;" d file:
KEY_NPAGE src/curses/KEY_NPAGE.c 2;" d file:
KEY_OPEN src/curses/KEY_OPEN.c 2;" d file:
KEY_OPTIONS src/curses/KEY_OPTIONS.c 2;" d file:
KEY_PPAGE src/curses/KEY_PPAGE.c 2;" d file:
KEY_PREVIOUS src/curses/KEY_PREVIOUS.c 2;" d file:
KEY_PRINT src/curses/KEY_PRINT.c 2;" d file:
KEY_REDO src/curses/KEY_REDO.c 2;" d file:
KEY_REFERENCE src/curses/KEY_REFERENCE.c 2;" d file:
KEY_REFRESH src/curses/KEY_REFRESH.c 2;" d file:
KEY_REPLACE src/curses/KEY_REPLACE.c 2;" d file:
KEY_RESET src/curses/KEY_RESET.c 2;" d file:
KEY_RESTART src/curses/KEY_RESTART.c 2;" d file:
KEY_RESUME src/curses/KEY_RESUME.c 2;" d file:
KEY_RIGHT src/curses/KEY_RIGHT.c 2;" d file:
KEY_SAVE src/curses/KEY_SAVE.c 2;" d file:
KEY_SBEG src/curses/KEY_SBEG.c 2;" d file:
KEY_SCANCEL src/curses/KEY_SCANCEL.c 2;" d file:
KEY_SCOMMAND src/curses/KEY_SCOMMAND.c 2;" d file:
KEY_SCOPY src/curses/KEY_SCOPY.c 2;" d file:
KEY_SCREATE src/curses/KEY_SCREATE.c 2;" d file:
KEY_SDC src/curses/KEY_SDC.c 2;" d file:
KEY_SDL src/curses/KEY_SDL.c 2;" d file:
KEY_SELECT src/curses/KEY_SELECT.c 2;" d file:
KEY_SEND src/curses/KEY_SEND.c 2;" d file:
KEY_SEOL src/curses/KEY_SEOL.c 2;" d file:
KEY_SEXIT src/curses/KEY_SEXIT.c 2;" d file:
KEY_SF src/curses/KEY_SF.c 2;" d file:
KEY_SFIND src/curses/KEY_SFIND.c 2;" d file:
KEY_SHELP src/curses/KEY_SHELP.c 2;" d file:
KEY_SHOME src/curses/KEY_SHOME.c 2;" d file:
KEY_SIX src/curses/KEY_SIX.c 2;" d file:
KEY_SLEFT src/curses/KEY_SLEFT.c 2;" d file:
KEY_SMESSAGE src/curses/KEY_SMESSAGE.c 2;" d file:
KEY_SMOVE src/curses/KEY_SMOVE.c 2;" d file:
KEY_SNEXT src/curses/KEY_SNEXT.c 2;" d file:
KEY_SOPTIONS src/curses/KEY_SOPTIONS.c 2;" d file:
KEY_SPREVIOUS src/curses/KEY_SPREVIOUS.c 2;" d file:
KEY_SPRINT src/curses/KEY_SPRINT.c 2;" d file:
KEY_SR src/curses/KEY_SR.c 2;" d file:
KEY_SREDO src/curses/KEY_SREDO.c 2;" d file:
KEY_SREPLACE src/curses/KEY_SREPLACE.c 2;" d file:
KEY_SRESET src/curses/KEY_SRESET.c 2;" d file:
KEY_SRIGHT src/curses/KEY_SRIGHT.c 2;" d file:
KEY_SRSUME src/curses/KEY_SRSUME.c 2;" d file:
KEY_SSAVE src/curses/KEY_SSAVE.c 2;" d file:
KEY_SSUSPEND src/curses/KEY_SSUSPEND.c 2;" d file:
KEY_STAB src/curses/KEY_STAB.c 2;" d file:
KEY_SUNDO src/curses/KEY_SUNDO.c 2;" d file:
KEY_SUSPEND src/curses/KEY_SUSPEND.c 2;" d file:
KEY_UNDO src/curses/KEY_UNDO.c 2;" d file:
KEY_UP src/curses/KEY_UP.c 2;" d file:
LASTMARK src/stropts/LASTMARK.c 2;" d file:
LC_ALL src/locale/LC_ALL.c 2;" d file:
LC_ALL_MASK src/locale/LC_ALL_MASK.c 1;" d file:
LC_ALL_MASK src/locale/__load_locale.c 15;" d file:
LC_COLLATE src/locale/LC_COLLATE.c 2;" d file:
LC_COLLATE_MASK src/locale/LC_COLLATE_MASK.c 1;" d file:
LC_COLLATE_MASK src/locale/__load_locale.c 9;" d file:
LC_CTYPE src/locale/LC_CTYPE.c 2;" d file:
LC_CTYPE_MASK src/locale/LC_CTYPE_MASK.c 1;" d file:
LC_CTYPE_MASK src/locale/__load_locale.c 10;" d file:
LC_MESSAGES src/locale/LC_MESSAGES.c 2;" d file:
LC_MESSAGES_MASK src/locale/LC_MESSAGES_MASK.c 1;" d file:
LC_MESSAGES_MASK src/locale/__load_locale.c 14;" d file:
LC_MONETARY src/locale/LC_MONETARY.c 2;" d file:
LC_MONETARY_MASK src/locale/LC_MONETARY_MASK.c 1;" d file:
LC_MONETARY_MASK src/locale/__load_locale.c 11;" d file:
LC_NUMERIC src/locale/LC_NUMERIC.c 2;" d file:
LC_NUMERIC_MASK src/locale/LC_NUMERIC_MASK.c 1;" d file:
LC_NUMERIC_MASK src/locale/__load_locale.c 12;" d file:
LC_TIME src/locale/LC_TIME.c 2;" d file:
LC_TIME_MASK src/locale/LC_TIME_MASK.c 1;" d file:
LC_TIME_MASK src/locale/__load_locale.c 13;" d file:
LDBL_DIG src/float/LDBL_DIG.c 2;" d file:
LDBL_EPSILON src/float/LDBL_EPSILON.c 2;" d file:
LDBL_MANT_DIG src/float/LDBL_MANT_DIG.c 2;" d file:
LDBL_MAX src/float/LDBL_MAX.c 2;" d file:
LDBL_MAX_10_EXP src/float/LDBL_MAX_10_EXP.c 2;" d file:
LDBL_MAX_EXP src/float/LDBL_MAX_EXP.c 2;" d file:
LDBL_MIN src/float/LDBL_MIN.c 2;" d file:
LDBL_MIN_10_EXP src/float/LDBL_MIN_10_EXP.c 2;" d file:
LDBL_MIN_EXP src/float/LDBL_MIN_EXP.c 2;" d file:
LEFT src/stdio/__printf.c 21;" d file:
LINES src/curses/LINES.c /^int LINES;$/;" v
LINE_MAX src/grp/getgrent.c 11;" d file:
LINE_MAX src/limits/LINE_MAX.c 2;" d file:
LINE_MAX src/pwd/getpwent.c 12;" d file:
LIO_NOP src/aio/LIO_NOP.c 2;" d file:
LIO_NOWAIT src/aio/LIO_NOWAIT.c 2;" d file:
LIO_READ src/aio/LIO_READ.c 2;" d file:
LIO_WAIT src/aio/LIO_WAIT.c 2;" d file:
LIO_WRITE src/aio/LIO_WRITE.c 2;" d file:
LLONG_MAX src/limits/LLONG_MAX.c 3;" d file:
LLONG_MIN src/limits/LLONG_MIN.c 2;" d file:
LNKTYPE src/tar/LNKTYPE.c 3;" d file:
LOGIN_PROCESS src/utmpx/LOGIN_PROCESS.c 2;" d file:
LOG_ALERT src/syslog/LOG_ALERT.c 2;" d file:
LOG_AUTH src/syslog/LOG_AUTH.c 2;" d file:
LOG_CONS src/syslog/LOG_CONS.c 2;" d file:
LOG_CRIT src/syslog/LOG_CRIT.c 2;" d file:
LOG_CRON src/syslog/LOG_CRON.c 2;" d file:
LOG_DAEMON src/syslog/LOG_DAEMON.c 2;" d file:
LOG_DEBUG src/syslog/LOG_DEBUG.c 2;" d file:
LOG_EMERG src/syslog/LOG_EMERG.c 2;" d file:
LOG_ERR src/syslog/LOG_ERR.c 2;" d file:
LOG_INFO src/syslog/LOG_INFO.c 2;" d file:
LOG_KERN src/syslog/LOG_KERN.c 2;" d file:
LOG_LOCAL0 src/syslog/LOG_LOCAL0.c 2;" d file:
LOG_LOCAL1 src/syslog/LOG_LOCAL1.c 2;" d file:
LOG_LOCAL2 src/syslog/LOG_LOCAL2.c 2;" d file:
LOG_LOCAL3 src/syslog/LOG_LOCAL3.c 2;" d file:
LOG_LOCAL4 src/syslog/LOG_LOCAL4.c 2;" d file:
LOG_LOCAL5 src/syslog/LOG_LOCAL5.c 2;" d file:
LOG_LOCAL6 src/syslog/LOG_LOCAL6.c 2;" d file:
LOG_LOCAL7 src/syslog/LOG_LOCAL7.c 2;" d file:
LOG_LPR src/syslog/LOG_LPR.c 2;" d file:
LOG_MAIL src/syslog/LOG_MAIL.c 2;" d file:
LOG_MASK src/syslog/LOG_MASK.c 2;" d file:
LOG_NDELAY src/syslog/LOG_NDELAY.c 2;" d file:
LOG_NEWS src/syslog/LOG_NEWS.c 2;" d file:
LOG_NOTICE src/syslog/LOG_NOTICE.c 2;" d file:
LOG_NOWAIT src/syslog/LOG_NOWAIT.c 2;" d file:
LOG_ODELAY src/syslog/LOG_ODELAY.c 2;" d file:
LOG_PID src/syslog/LOG_PID.c 2;" d file:
LOG_UPTO src/syslog/LOG_UPTO.c 2;" d file:
LOG_USER src/syslog/LOG_USER.c 2;" d file:
LOG_UUCP src/syslog/LOG_UUCP.c 2;" d file:
LOG_WARNING src/syslog/LOG_WARNING.c 2;" d file:
LONG_BIT src/limits/LONG_BIT.c 2;" d file:
LONG_MAX src/limits/LONG_MAX.c 3;" d file:
LONG_MAX src/limits/LONG_MAX.c 5;" d file:
LONG_MIN src/limits/LONG_MIN.c 2;" d file:
L_ctermid src/stdio/L_ctermid.c 2;" d file:
L_cuserid src/stdio/L_cuserid.c 2;" d file:
L_tmpnam src/stdio/L_tmpnam.c 2;" d file:
MAGIC src/cpio/MAGIC.c 2;" d file:
MAP_FAILED src/sys/mman/MAP_FAILED.c 3;" d file:
MAP_FIXED src/sys/mman/MAP_FIXED.c 2;" d file:
MAP_PRIVATE src/stdlib/realloc.c 11;" d file:
MAP_PRIVATE src/sys/mman/MAP_PRIVATE.c 2;" d file:
MAP_SHARED src/sys/mman/MAP_SHARED.c 2;" d file:
MATH_ERREXCEPT src/math/MATH_ERREXCEPT.c 2;" d file:
MATH_ERRNO src/math/MATH_ERRNO.c 2;" d file:
MAXFLOAT src/math/MAXFLOAT.c 2;" d file:
MB_CUR_MAX src/stdlib/MB_CUR_MAX.c 5;" d file:
MB_LEN_MAX src/limits/MB_LEN_MAX.c 2;" d file:
MCL_CURRENT src/sys/mman/MCL_CURRENT.c 3;" d file:
MCL_FUTURE src/sys/mman/MCL_FUTURE.c 3;" d file:
MINSIGSTKSZ src/signal/MINSIGSTKSZ.c 2;" d file:
MIN_PER_HR src/time/gmtime.c 5;" d file:
MM_APPL src/fmtmsg/MM_APPL.c 2;" d file:
MM_CONSOLE src/fmtmsg/MM_CONSOLE.c 2;" d file:
MM_ERROR src/fmtmsg/MM_ERROR.c 2;" d file:
MM_FIRM src/fmtmsg/MM_FIRM.c 2;" d file:
MM_HALT src/fmtmsg/MM_HALT.c 2;" d file:
MM_HARD src/fmtmsg/MM_HARD.c 2;" d file:
MM_INFO src/fmtmsg/MM_INFO.c 2;" d file:
MM_NOCON src/fmtmsg/MM_NOCON.c 2;" d file:
MM_NOMSG src/fmtmsg/MM_NOMSG.c 2;" d file:
MM_NOSEV src/fmtmsg/MM_NOSEV.c 2;" d file:
MM_NOTOK src/fmtmsg/MM_NOTOK.c 2;" d file:
MM_NRECOV src/fmtmsg/MM_NRECOV.c 2;" d file:
MM_NULLACT src/fmtmsg/MM_NULLACT.c 2;" d file:
MM_NULLLBL src/fmtmsg/MM_NULLLBL.c 2;" d file:
MM_NULLMC src/fmtmsg/MM_NULLMC.c 2;" d file:
MM_NULLSEV src/fmtmsg/MM_NULLSEV.c 2;" d file:
MM_NULLTAG src/fmtmsg/MM_NULLTAG.c 2;" d file:
MM_NULLTXT src/fmtmsg/MM_NULLTXT.c 2;" d file:
MM_OK src/fmtmsg/MM_OK.c 2;" d file:
MM_OPSYS src/fmtmsg/MM_OPSYS.c 2;" d file:
MM_PRINT src/fmtmsg/MM_PRINT.c 2;" d file:
MM_RECOVER src/fmtmsg/MM_RECOVER.c 2;" d file:
MM_SOFT src/fmtmsg/MM_SOFT.c 2;" d file:
MM_UTIL src/fmtmsg/MM_UTIL.c 2;" d file:
MM_WARNING src/fmtmsg/MM_WARNING.c 2;" d file:
MON_1 src/langinfo/MON_1.c 2;" d file:
MON_10 src/langinfo/MON_10.c 2;" d file:
MON_11 src/langinfo/MON_11.c 2;" d file:
MON_12 src/langinfo/MON_12.c 2;" d file:
MON_2 src/langinfo/MON_2.c 2;" d file:
MON_3 src/langinfo/MON_3.c 2;" d file:
MON_4 src/langinfo/MON_4.c 2;" d file:
MON_5 src/langinfo/MON_5.c 2;" d file:
MON_6 src/langinfo/MON_6.c 2;" d file:
MON_7 src/langinfo/MON_7.c 2;" d file:
MON_8 src/langinfo/MON_8.c 2;" d file:
MON_9 src/langinfo/MON_9.c 2;" d file:
MORECTL src/stropts/MORECTL.c 2;" d file:
MOREDATA src/stropts/MOREDATA.c 2;" d file:
MSG_ANY src/stropts/MSG_ANY.c 2;" d file:
MSG_BAND src/stropts/MSG_BAND.c 2;" d file:
MSG_HIPRI src/stropts/MSG_HIPRI.c 2;" d file:
MSG_NOERROR src/sys/msg/MSG_NOERROR.c 2;" d file:
MS_ASYNC src/sys/mman/MS_ASYNC.c 2;" d file:
MS_INVALIDATE src/sys/mman/MS_INVALIDATE.c 2;" d file:
MS_SYNC src/sys/mman/MS_SYNC.c 2;" d file:
MUXID_ALL src/stropts/MUXID_ALL.c 2;" d file:
M_1_PI src/math/M_1_PI.c 2;" d file:
M_2_PI src/math/M_2_PI.c 2;" d file:
M_2_SQRTPI src/math/M_2_SQRTPI.c 2;" d file:
M_E src/math/M_E.c 2;" d file:
M_LN10 src/math/M_LN10.c 2;" d file:
M_LN2 src/math/M_LN2.c 2;" d file:
M_LOG10E src/math/M_LOG10E.c 2;" d file:
M_LOG2E src/math/M_LOG2E.c 2;" d file:
M_PI src/math/M_PI.c 2;" d file:
M_PI_2 src/math/M_PI_2.c 2;" d file:
M_PI_4 src/math/M_PI_4.c 2;" d file:
M_SQRT1_2 src/math/M_SQRT1_2.c 2;" d file:
M_SQRT2 src/math/M_SQRT2.c 2;" d file:
NAME_MAX src/dirent/readdir.c 11;" d file:
NAN src/math/NAN.c 2;" d file:
NCCS src/termios/NCCS.c 2;" d file:
NDEBUG src/assert/NDEBUG.c 3;" d file:
NEW_TIME src/utmpx/NEW_TIME.c 2;" d file:
NGROUPS_MAX src/limits/NGROUPS_MAX.c 2;" d file:
NL0 src/termios/NL0.c 2;" d file:
NL1 src/termios/NL1.c 2;" d file:
NLDLY src/termios/NLDLY.c 2;" d file:
NL_ARGMAX src/limits/NL_ARGMAX.c 2;" d file:
NL_CAT_LOCALE src/nl_types/NL_CAT_LOCALE.c 2;" d file:
NL_LANGMAX src/limits/NL_LANGMAX.c 2;" d file:
NL_MSGMAX src/limits/NL_MSGMAX.c 2;" d file:
NL_NMAX src/limits/NL_NMAX.c 2;" d file:
NL_SETD src/nl_types/NL_SETD.c 2;" d file:
NL_SETMAX src/limits/NL_SETMAX.c 2;" d file:
NL_TEXTMAX src/limits/NL_TEXTMAX.c 2;" d file:
NOEXPR src/langinfo/NOEXPR.c 2;" d file:
NOFLSH src/termios/NOFLSH.c 2;" d file:
NOSTR src/langinfo/NOSTR.c 2;" d file:
NULL src/stddef/NULL.c 2;" d file:
NUMBUFLEN src/stdio/__printf.c 19;" d file:
NZERO src/limits/NZERO.c 2;" d file:
OCRNL src/termios/OCRNL.c 2;" d file:
OFILL src/termios/OFILL.c 2;" d file:
OK src/curses/OK.c 2;" d file:
OLCUC src/termios/OLCUC.c 2;" d file:
OLD_TIME src/utmpx/OLD_TIME.c 2;" d file:
ONCE_FLAG_INIT src/threads/ONCE_FLAG_INIT.c 1;" d file:
ONLCR src/termios/ONLCR.c 2;" d file:
ONLRET src/termios/ONLRET.c 2;" d file:
ONOCR src/termios/ONOCR.c 2;" d file:
OPOST src/termios/OPOST.c 2;" d file:
O_ACCMODE src/fcntl/O_ACCMODE.c 3;" d file:
O_APPEND src/fcntl/O_APPEND.c 3;" d file:
O_CREAT src/fcntl/O_CREAT.c 3;" d file:
O_DIRECTORY src/dirent/opendir.c 9;" d file:
O_DSYNC src/fcntl/O_DSYNC.c 2;" d file:
O_EXCL src/fcntl/O_EXCL.c 3;" d file:
O_NOCTTY src/fcntl/O_NOCTTY.c 3;" d file:
O_NONBLOCK src/fcntl/O_NONBLOCK.c 3;" d file:
O_RDONLY src/fcntl/O_RDONLY.c 3;" d file:
O_RDWR src/fcntl/O_RDWR.c 3;" d file:
O_RSYNC src/fcntl/O_RSYNC.c 2;" d file:
O_SEARCH src/dirent/opendir.c 13;" d file:
O_SYNC src/fcntl/O_SYNC.c 3;" d file:
O_TRUNC src/fcntl/O_TRUNC.c 3;" d file:
O_WRONLY src/fcntl/O_WRONLY.c 3;" d file:
PAGESIZE src/limits/PAGESIZE.c 2;" d file:
PAIR_NUMBER src/curses/PAIR_NUMBER.c 2;" d file:
PARENB src/termios/PARENB.c 2;" d file:
PARMRK src/termios/PARMRK.c 2;" d file:
PARODD src/termios/PARODD.c 2;" d file:
PATH_MAX src/unistd/ttyname.c 10;" d file:
PEEK src/regexp/PEEK.c 1;" d file:
PM_STR src/langinfo/PM_STR.c 2;" d file:
POLLERR src/poll/POLLERR.c 2;" d file:
POLLHUP src/poll/POLLHUP.c 2;" d file:
POLLIN src/poll/POLLIN.c 2;" d file:
POLLNVAL src/poll/POLLNVAL.c 2;" d file:
POLLOUT src/poll/POLLOUT.c 2;" d file:
POLLPRI src/poll/POLLPRI.c 2;" d file:
POLLRDBAND src/poll/POLLRDBAND.c 2;" d file:
POLLRDNORM src/poll/POLLRDNORM.c 2;" d file:
POLLWRBAND src/poll/POLLWRBAND.c 2;" d file:
POLLWRNORM src/poll/POLLWRNORM.c 2;" d file:
POLL_ERR src/signal/POLL_ERR.c 2;" d file:
POLL_HUP src/signal/POLL_HUP.c 2;" d file:
POLL_IN src/signal/POLL_IN.c 2;" d file:
POLL_MSG src/signal/POLL_MSG.c 2;" d file:
POLL_OUT src/signal/POLL_OUT.c 2;" d file:
POLL_PRI src/signal/POLL_PRI.c 2;" d file:
PRIO_PGRP src/sys/resource/PRIO_PGRP.c 2;" d file:
PRIO_PROCESS src/sys/resource/PRIO_PROCESS.c 2;" d file:
PRIO_USER src/sys/resource/PRIO_USER.c 2;" d file:
PRIX16 src/inttypes/PRIX16.c 2;" d file:
PRIX32 src/inttypes/PRIX32.c 2;" d file:
PRIX64 src/inttypes/PRIX64.c 2;" d file:
PRIX8 src/inttypes/PRIX8.c 2;" d file:
PRIXFAST16 src/inttypes/PRIXFAST16.c 2;" d file:
PRIXFAST32 src/inttypes/PRIXFAST32.c 2;" d file:
PRIXFAST64 src/inttypes/PRIXFAST64.c 2;" d file:
PRIXFAST8 src/inttypes/PRIXFAST8.c 2;" d file:
PRIXLEAST16 src/inttypes/PRIXLEAST16.c 2;" d file:
PRIXLEAST32 src/inttypes/PRIXLEAST32.c 2;" d file:
PRIXLEAST64 src/inttypes/PRIXLEAST64.c 2;" d file:
PRIXLEAST8 src/inttypes/PRIXLEAST8.c 2;" d file:
PRIXMAX src/inttypes/PRIXMAX.c 2;" d file:
PRIXPTR src/inttypes/PRIXPTR.c 3;" d file:
PRIXPTR src/inttypes/PRIXPTR.c 5;" d file:
PRId16 src/inttypes/PRId16.c 2;" d file:
PRId32 src/inttypes/PRId32.c 2;" d file:
PRId64 src/inttypes/PRId64.c 2;" d file:
PRId8 src/inttypes/PRId8.c 2;" d file:
PRIdFAST16 src/inttypes/PRIdFAST16.c 2;" d file:
PRIdFAST32 src/inttypes/PRIdFAST32.c 2;" d file:
PRIdFAST64 src/inttypes/PRIdFAST64.c 2;" d file:
PRIdFAST8 src/inttypes/PRIdFAST8.c 2;" d file:
PRIdLEAST16 src/inttypes/PRIdLEAST16.c 2;" d file:
PRIdLEAST32 src/inttypes/PRIdLEAST32.c 2;" d file:
PRIdLEAST64 src/inttypes/PRIdLEAST64.c 2;" d file:
PRIdLEAST8 src/inttypes/PRIdLEAST8.c 2;" d file:
PRIdMAX src/inttypes/PRIdMAX.c 2;" d file:
PRIdPTR src/inttypes/PRIdPTR.c 3;" d file:
PRIdPTR src/inttypes/PRIdPTR.c 5;" d file:
PRIi16 src/inttypes/PRIi16.c 2;" d file:
PRIi32 src/inttypes/PRIi32.c 2;" d file:
PRIi64 src/inttypes/PRIi64.c 2;" d file:
PRIi8 src/inttypes/PRIi8.c 2;" d file:
PRIiFAST16 src/inttypes/PRIiFAST16.c 2;" d file:
PRIiFAST32 src/inttypes/PRIiFAST32.c 2;" d file:
PRIiFAST64 src/inttypes/PRIiFAST64.c 2;" d file:
PRIiFAST8 src/inttypes/PRIiFAST8.c 2;" d file:
PRIiLEAST16 src/inttypes/PRIiLEAST16.c 2;" d file:
PRIiLEAST32 src/inttypes/PRIiLEAST32.c 2;" d file:
PRIiLEAST64 src/inttypes/PRIiLEAST64.c 2;" d file:
PRIiLEAST8 src/inttypes/PRIiLEAST8.c 2;" d file:
PRIiMAX src/inttypes/PRIiMAX.c 2;" d file:
PRIiPTR src/inttypes/PRIiPTR.c 3;" d file:
PRIiPTR src/inttypes/PRIiPTR.c 5;" d file:
PRIo16 src/inttypes/PRIo16.c 2;" d file:
PRIo32 src/inttypes/PRIo32.c 2;" d file:
PRIo64 src/inttypes/PRIo64.c 2;" d file:
PRIo8 src/inttypes/PRIo8.c 2;" d file:
PRIoFAST16 src/inttypes/PRIoFAST16.c 2;" d file:
PRIoFAST32 src/inttypes/PRIoFAST32.c 2;" d file:
PRIoFAST64 src/inttypes/PRIoFAST64.c 2;" d file:
PRIoFAST8 src/inttypes/PRIoFAST8.c 2;" d file:
PRIoLEAST16 src/inttypes/PRIoLEAST16.c 2;" d file:
PRIoLEAST32 src/inttypes/PRIoLEAST32.c 2;" d file:
PRIoLEAST64 src/inttypes/PRIoLEAST64.c 2;" d file:
PRIoLEAST8 src/inttypes/PRIoLEAST8.c 2;" d file:
PRIoMAX src/inttypes/PRIoMAX.c 2;" d file:
PRIoPTR src/inttypes/PRIoPTR.c 3;" d file:
PRIoPTR src/inttypes/PRIoPTR.c 5;" d file:
PRIu16 src/inttypes/PRIu16.c 2;" d file:
PRIu32 src/inttypes/PRIu32.c 2;" d file:
PRIu64 src/inttypes/PRIu64.c 2;" d file:
PRIu8 src/inttypes/PRIu8.c 2;" d file:
PRIuFAST16 src/inttypes/PRIuFAST16.c 2;" d file:
PRIuFAST32 src/inttypes/PRIuFAST32.c 2;" d file:
PRIuFAST64 src/inttypes/PRIuFAST64.c 2;" d file:
PRIuFAST8 src/inttypes/PRIuFAST8.c 2;" d file:
PRIuLEAST16 src/inttypes/PRIuLEAST16.c 2;" d file:
PRIuLEAST32 src/inttypes/PRIuLEAST32.c 2;" d file:
PRIuLEAST64 src/inttypes/PRIuLEAST64.c 2;" d file:
PRIuLEAST8 src/inttypes/PRIuLEAST8.c 2;" d file:
PRIuMAX src/inttypes/PRIuMAX.c 2;" d file:
PRIuPTR src/inttypes/PRIuPTR.c 3;" d file:
PRIuPTR src/inttypes/PRIuPTR.c 5;" d file:
PRIx16 src/inttypes/PRIx16.c 2;" d file:
PRIx32 src/inttypes/PRIx32.c 2;" d file:
PRIx64 src/inttypes/PRIx64.c 2;" d file:
PRIx8 src/inttypes/PRIx8.c 2;" d file:
PRIxFAST16 src/inttypes/PRIxFAST16.c 2;" d file:
PRIxFAST32 src/inttypes/PRIxFAST32.c 2;" d file:
PRIxFAST64 src/inttypes/PRIxFAST64.c 2;" d file:
PRIxFAST8 src/inttypes/PRIxFAST8.c 2;" d file:
PRIxLEAST16 src/inttypes/PRIxLEAST16.c 2;" d file:
PRIxLEAST32 src/inttypes/PRIxLEAST32.c 2;" d file:
PRIxLEAST64 src/inttypes/PRIxLEAST64.c 2;" d file:
PRIxLEAST8 src/inttypes/PRIxLEAST8.c 2;" d file:
PRIxMAX src/inttypes/PRIxMAX.c 2;" d file:
PRIxPTR src/inttypes/PRIxPTR.c 3;" d file:
PRIxPTR src/inttypes/PRIxPTR.c 5;" d file:
PROT_EXEC src/sys/mman/PROT_EXEC.c 2;" d file:
PROT_NONE src/sys/mman/PROT_NONE.c 2;" d file:
PROT_READ src/stdlib/realloc.c 9;" d file:
PROT_READ src/sys/mman/PROT_READ.c 2;" d file:
PROT_WRITE src/stdlib/realloc.c 10;" d file:
PROT_WRITE src/sys/mman/PROT_WRITE.c 2;" d file:
PTRDIFF_MAX src/stdint/PTRDIFF_MAX.c 2;" d file:
PTRDIFF_MIN src/stdint/PTRDIFF_MIN.c 2;" d file:
P_ALL src/sys/wait/P_ALL.c 1;" d file:
P_ALL src/sys/wait/idtype_t.c /^ P_ALL,$/;" e enum:__anon2 file:
P_PGID src/sys/wait/P_PGID.c 1;" d file:
P_PGID src/sys/wait/idtype_t.c /^ P_PGID,$/;" e enum:__anon2 file:
P_PID src/sys/wait/P_PID.c 1;" d file:
P_PID src/sys/wait/idtype_t.c /^ P_PID$/;" e enum:__anon2 file:
P_tmpdir src/stdio/P_tmpdir.c 2;" d file:
RADIXCHAR src/langinfo/RADIXCHAR.c 2;" d file:
RAND_MAX src/stdlib/RAND_MAX.c 5;" d file:
REGTYPE src/tar/REGTYPE.c 3;" d file:
REG_BADBR src/regex/REG_BADBR.c 2;" d file:
REG_BADPAT src/regex/REG_BADPAT.c 2;" d file:
REG_BADRPT src/regex/REG_BADRPT.c 2;" d file:
REG_EBRACE src/regex/REG_EBRACE.c 2;" d file:
REG_EBRACK src/regex/REG_EBRACK.c 2;" d file:
REG_ECOLLATE src/regex/REG_ECOLLATE.c 2;" d file:
REG_ECTYPE src/regex/REG_ECTYPE.c 2;" d file:
REG_EESCAPE src/regex/REG_EESCAPE.c 2;" d file:
REG_ENOSYS src/regex/REG_ENOSYS.c 2;" d file:
REG_EPAREN src/regex/REG_EPAREN.c 2;" d file:
REG_ERANGE src/regex/REG_ERANGE.c 2;" d file:
REG_ESPACE src/regex/REG_ESPACE.c 2;" d file:
REG_ESUBREG src/regex/REG_ESUBREG.c 2;" d file:
REG_EXTENDED src/regex/REG_EXTENDED.c 2;" d file:
REG_ICASE src/regex/REG_ICASE.c 2;" d file:
REG_NEWLINE src/regex/REG_NEWLINE.c 2;" d file:
REG_NOMATCH src/regex/REG_NOMATCH.c 2;" d file:
REG_NOSUB src/regex/REG_NOSUB.c 2;" d file:
REG_NOTBOL src/regex/REG_NOTBOL.c 2;" d file:
REG_NOTEOL src/regex/REG_NOTEOL.c 2;" d file:
RETURN src/regexp/RETURN.c 1;" d file:
RE_DUP_MAX src/limits/RE_DUP_MAX.c 2;" d file:
RLIMIT_AS src/sys/resource/RLIMIT_AS.c 2;" d file:
RLIMIT_CORE src/sys/resource/RLIMIT_CORE.c 2;" d file:
RLIMIT_CPU src/sys/resource/RLIMIT_CPU.c 2;" d file:
RLIMIT_DATA src/sys/resource/RLIMIT_DATA.c 2;" d file:
RLIMIT_FSIZE src/sys/resource/RLIMIT_FSIZE.c 2;" d file:
RLIMIT_NOFILE src/sys/resource/RLIMIT_NOFILE.c 2;" d file:
RLIMIT_STACK src/sys/resource/RLIMIT_STACK.c 2;" d file:
RLIM_INFINITY src/sys/resource/RLIM_INFINITY.c 2;" d file:
RMSGD src/stropts/RMSGD.c 2;" d file:
RMSGN src/stropts/RMSGN.c 2;" d file:
RNORM src/stropts/RNORM.c 2;" d file:
RPOTNORM src/stropts/RPOTNORM.c 2;" d file:
RPROTDAT src/stropts/RPROTDAT.c 2;" d file:
RPROTDIS src/stropts/RPROTDIS.c 2;" d file:
RS_HIPRI src/stropts/RS_HIPRI.c 2;" d file:
RUSAGE_CHILDREN src/sys/resource/RUSAGE_CHILDREN.c 2;" d file:
RUSAGE_SELF src/sys/resource/RUSAGE_SELF.c 2;" d file:
R_OK src/unistd/R_OK.c 2;" d file:
SA_NOCLDSTOP src/signal/SA_NOCLDSTOP.c 3;" d file:
SA_NOCLDWAIT src/signal/SA_NOCLDWAIT.c 2;" d file:
SA_NODEFER src/signal/SA_NODEFER.c 2;" d file:
SA_ONSTACK src/signal/SA_ONSTACK.c 2;" d file:
SA_RESETHAND src/signal/SA_RESETHAND.c 2;" d file:
SA_RESTART src/signal/SA_RESTART.c 2;" d file:
SA_RESTART src/signal/signal.c 14;" d file:
SA_RESTART src/signal/signal.c 17;" d file:
SA_SIGINFO src/signal/SA_SIGINFO.c 2;" d file:
SCHAR_MAX src/limits/SCHAR_MAX.c 2;" d file:
SCHAR_MIN src/limits/SCHAR_MIN.c 2;" d file:
SCHED_FIFO src/sched/SCHED_FIFO.c 2;" d file:
SCHED_OTHER src/sched/SCHED_OTHER.c 2;" d file:
SCHED_RR src/sched/SCHED_RR.c 2;" d file:
SCNX16 src/inttypes/SCNX16.c 2;" d file:
SCNX32 src/inttypes/SCNX32.c 2;" d file:
SCNX64 src/inttypes/SCNX64.c 2;" d file:
SCNX8 src/inttypes/SCNX8.c 2;" d file:
SCNXFAST16 src/inttypes/SCNXFAST16.c 2;" d file:
SCNXFAST32 src/inttypes/SCNXFAST32.c 2;" d file:
SCNXFAST64 src/inttypes/SCNXFAST64.c 2;" d file:
SCNXFAST8 src/inttypes/SCNXFAST8.c 2;" d file:
SCNXLEAST16 src/inttypes/SCNXLEAST16.c 2;" d file:
SCNXLEAST32 src/inttypes/SCNXLEAST32.c 2;" d file:
SCNXLEAST64 src/inttypes/SCNXLEAST64.c 2;" d file:
SCNXLEAST8 src/inttypes/SCNXLEAST8.c 2;" d file:
SCNXMAX src/inttypes/SCNXMAX.c 2;" d file:
SCNXPTR src/inttypes/SCNXPTR.c 3;" d file:
SCNXPTR src/inttypes/SCNXPTR.c 5;" d file:
SCNd16 src/inttypes/SCNd16.c 2;" d file:
SCNd32 src/inttypes/SCNd32.c 2;" d file:
SCNd64 src/inttypes/SCNd64.c 2;" d file:
SCNd8 src/inttypes/SCNd8.c 2;" d file:
SCNdFAST16 src/inttypes/SCNdFAST16.c 2;" d file:
SCNdFAST32 src/inttypes/SCNdFAST32.c 2;" d file:
SCNdFAST64 src/inttypes/SCNdFAST64.c 2;" d file:
SCNdFAST8 src/inttypes/SCNdFAST8.c 2;" d file:
SCNdLEAST16 src/inttypes/SCNdLEAST16.c 2;" d file:
SCNdLEAST32 src/inttypes/SCNdLEAST32.c 2;" d file:
SCNdLEAST64 src/inttypes/SCNdLEAST64.c 2;" d file:
SCNdLEAST8 src/inttypes/SCNdLEAST8.c 2;" d file:
SCNdMAX src/inttypes/SCNdMAX.c 2;" d file:
SCNdPTR src/inttypes/SCNdPTR.c 3;" d file:
SCNdPTR src/inttypes/SCNdPTR.c 5;" d file:
SCNi16 src/inttypes/SCNi16.c 2;" d file:
SCNi32 src/inttypes/SCNi32.c 2;" d file:
SCNi64 src/inttypes/SCNi64.c 2;" d file:
SCNi8 src/inttypes/SCNi8.c 2;" d file:
SCNiFAST16 src/inttypes/SCNiFAST16.c 2;" d file:
SCNiFAST32 src/inttypes/SCNiFAST32.c 2;" d file:
SCNiFAST64 src/inttypes/SCNiFAST64.c 2;" d file:
SCNiFAST8 src/inttypes/SCNiFAST8.c 2;" d file:
SCNiLEAST16 src/inttypes/SCNiLEAST16.c 2;" d file:
SCNiLEAST32 src/inttypes/SCNiLEAST32.c 2;" d file:
SCNiLEAST64 src/inttypes/SCNiLEAST64.c 2;" d file:
SCNiLEAST8 src/inttypes/SCNiLEAST8.c 2;" d file:
SCNiMAX src/inttypes/SCNiMAX.c 2;" d file:
SCNiPTR src/inttypes/SCNiPTR.c 3;" d file:
SCNiPTR src/inttypes/SCNiPTR.c 5;" d file:
SCNo16 src/inttypes/SCNo16.c 2;" d file:
SCNo32 src/inttypes/SCNo32.c 2;" d file:
SCNo64 src/inttypes/SCNo64.c 2;" d file:
SCNo8 src/inttypes/SCNo8.c 2;" d file:
SCNoFAST16 src/inttypes/SCNoFAST16.c 2;" d file:
SCNoFAST32 src/inttypes/SCNoFAST32.c 2;" d file:
SCNoFAST64 src/inttypes/SCNoFAST64.c 2;" d file:
SCNoFAST8 src/inttypes/SCNoFAST8.c 2;" d file:
SCNoLEAST16 src/inttypes/SCNoLEAST16.c 2;" d file:
SCNoLEAST32 src/inttypes/SCNoLEAST32.c 2;" d file:
SCNoLEAST64 src/inttypes/SCNoLEAST64.c 2;" d file:
SCNoLEAST8 src/inttypes/SCNoLEAST8.c 2;" d file:
SCNoMAX src/inttypes/SCNoMAX.c 2;" d file:
SCNoPTR src/inttypes/SCNoPTR.c 3;" d file:
SCNoPTR src/inttypes/SCNoPTR.c 5;" d file:
SCNu16 src/inttypes/SCNu16.c 2;" d file:
SCNu32 src/inttypes/SCNu32.c 2;" d file:
SCNu64 src/inttypes/SCNu64.c 2;" d file:
SCNu8 src/inttypes/SCNu8.c 2;" d file:
SCNuFAST16 src/inttypes/SCNuFAST16.c 2;" d file:
SCNuFAST32 src/inttypes/SCNuFAST32.c 2;" d file:
SCNuFAST64 src/inttypes/SCNuFAST64.c 2;" d file:
SCNuFAST8 src/inttypes/SCNuFAST8.c 2;" d file:
SCNuLEAST16 src/inttypes/SCNuLEAST16.c 2;" d file:
SCNuLEAST32 src/inttypes/SCNuLEAST32.c 2;" d file:
SCNuLEAST64 src/inttypes/SCNuLEAST64.c 2;" d file:
SCNuLEAST8 src/inttypes/SCNuLEAST8.c 2;" d file:
SCNuMAX src/inttypes/SCNuMAX.c 2;" d file:
SCNuPTR src/inttypes/SCNuPTR.c 3;" d file:
SCNuPTR src/inttypes/SCNuPTR.c 5;" d file:
SCNx16 src/inttypes/SCNx16.c 2;" d file:
SCNx32 src/inttypes/SCNx32.c 2;" d file:
SCNx64 src/inttypes/SCNx64.c 2;" d file:
SCNx8 src/inttypes/SCNx8.c 2;" d file:
SCNxFAST16 src/inttypes/SCNxFAST16.c 2;" d file:
SCNxFAST32 src/inttypes/SCNxFAST32.c 2;" d file:
SCNxFAST64 src/inttypes/SCNxFAST64.c 2;" d file:
SCNxFAST8 src/inttypes/SCNxFAST8.c 2;" d file:
SCNxLEAST16 src/inttypes/SCNxLEAST16.c 2;" d file:
SCNxLEAST32 src/inttypes/SCNxLEAST32.c 2;" d file:
SCNxLEAST64 src/inttypes/SCNxLEAST64.c 2;" d file:
SCNxLEAST8 src/inttypes/SCNxLEAST8.c 2;" d file:
SCNxMAX src/inttypes/SCNxMAX.c 2;" d file:
SCNxPTR src/inttypes/SCNxPTR.c 3;" d file:
SCNxPTR src/inttypes/SCNxPTR.c 5;" d file:
SCREEN src/curses/SCREEN.c /^typedef struct __SCREEN SCREEN;$/;" t typeref:struct:__SCREEN file:
SEC_PER_DAY src/time/gmtime.c 8;" d file:
SEC_PER_HR src/time/gmtime.c 6;" d file:
SEC_PER_MIN src/time/gmtime.c 4;" d file:
SEC_PER_YEAR src/time/gmtime.c 10;" d file:
SEEK_CUR src/stdio/SEEK_CUR.c 2;" d file:
SEEK_END src/stdio/SEEK_END.c 2;" d file:
SEEK_SET src/stdio/SEEK_SET.c 2;" d file:
SEGV_ACCERR src/signal/SEGV_ACCERR.c 2;" d file:
SEGV_MAPERR src/signal/SEGV_MAPERR.c 2;" d file:
SEM_UNDO src/sys/sem/SEM_UNDO.c 2;" d file:
SETALL src/sys/sem/SETALL.c 2;" d file:
SETVAL src/sys/sem/SETVAL.c 2;" d file:
SHMLBA src/sys/shm/SHMLBA.c 2;" d file:
SHM_RDONLY src/sys/shm/SHM_RDONLY.c 2;" d file:
SHM_RND src/sys/shm/SHM_RND.c 2;" d file:
SHRT_MAX src/limits/SHRT_MAX.c 2;" d file:
SHRT_MIN src/limits/SHRT_MIN.c 2;" d file:
SIGABRT src/signal/SIGABRT.c 2;" d file:
SIGABRT src/stdlib/abort.c 10;" d file:
SIGALRM src/signal/SIGALRM.c 2;" d file:
SIGBUS src/signal/SIGBUS.c 2;" d file:
SIGCHLD src/signal/SIGCHLD.c 2;" d file:
SIGCONT src/signal/SIGCONT.c 2;" d file:
SIGEV_NONE src/signal/SIGEV_NONE.c 2;" d file:
SIGEV_SIGNAL src/signal/SIGEV_SIGNAL.c 2;" d file:
SIGFPE src/signal/SIGFPE.c 2;" d file:
SIGHUP src/signal/SIGHUP.c 2;" d file:
SIGILL src/signal/SIGILL.c 2;" d file:
SIGINT src/signal/SIGINT.c 2;" d file:
SIGKILL src/signal/SIGKILL.c 2;" d file:
SIGN src/stdio/__printf.c 22;" d file:
SIGPIPE src/signal/SIGPIPE.c 2;" d file:
SIGPOLL src/signal/SIGPOLL.c 2;" d file:
SIGPROF src/signal/SIGPROF.c 2;" d file:
SIGQUIT src/signal/SIGQUIT.c 2;" d file:
SIGRTMAX src/signal/SIGRTMAX.c 2;" d file:
SIGRTMIN src/signal/SIGRTMIN.c 2;" d file:
SIGSEGV src/signal/SIGSEGV.c 2;" d file:
SIGSTKSZ src/signal/SIGSTKSZ.c 2;" d file:
SIGSTOP src/signal/SIGSTOP.c 2;" d file:
SIGSYS src/signal/SIGSYS.c 2;" d file:
SIGTERM src/signal/SIGTERM.c 2;" d file:
SIGTRAP src/signal/SIGTRAP.c 2;" d file:
SIGTSTP src/signal/SIGTSTP.c 2;" d file:
SIGTTIN src/signal/SIGTTIN.c 2;" d file:
SIGTTOU src/signal/SIGTTOU.c 2;" d file:
SIGURG src/signal/SIGURG.c 2;" d file:
SIGUSR1 src/signal/SIGUSR1.c 2;" d file:
SIGUSR2 src/signal/SIGUSR2.c 2;" d file:
SIGVTALRM src/signal/SIGVTALRM.c 2;" d file:
SIGXCPU src/signal/SIGXCPU.c 2;" d file:
SIGXFSZ src/signal/SIGXFSZ.c 2;" d file:
SIG_ATOMIC_MAX src/stdint/SIG_ATOMIC_MAX.c 2;" d file:
SIG_ATOMIC_MIN src/stdint/SIG_ATOMIC_MIN.c 2;" d file:
SIG_BLOCK src/signal/SIG_BLOCK.c 2;" d file:
SIG_DFL src/signal/SIG_DFL.c 2;" d file:
SIG_ERR src/signal/SIG_ERR.c 2;" d file:
SIG_HOLD src/signal/SIG_HOLD.c 2;" d file:
SIG_IGN src/signal/SIG_IGN.c 2;" d file:
SIG_SETMASK src/signal/SIG_SETMASK.c 2;" d file:
SIG_UNBLOCK src/signal/SIG_UNBLOCK.c 2;" d file:
SIZE_MAX src/stdint/SIZE_MAX.c 2;" d file:
SIZE_MAX src/stdio/sprintf.c 9;" d file:
SI_ASYNCIO src/signal/SI_ASYNCIO.c 2;" d file:
SI_MESGQ src/signal/SI_MESGQ.c 2;" d file:
SI_QUEUE src/signal/SI_QUEUE.c 2;" d file:
SI_TIMER src/signal/SI_TIMER.c 2;" d file:
SI_USER src/signal/SI_USER.c 2;" d file:
SNDZERO src/stropts/SNDZERO.c 2;" d file:
SPACE src/stdio/__printf.c 23;" d file:
SSIZE_MAX src/limits/SSIZE_MAX.c 3;" d file:
SS_DISABLE src/signal/SS_DISABLE.c 2;" d file:
SS_ONSTACK src/signal/SS_ONSTACK.c 2;" d file:
STDERR_FILENO src/unistd/STDERR_FILENO.c 2;" d file:
STDIN_FILENO src/unistd/STDIN_FILENO.c 2;" d file:
STDOUT_FILENO src/unistd/STDOUT_FILENO.c 2;" d file:
ST_NOSUID src/sys/statvfs/ST_NOSUID.c 2;" d file:
ST_RDONLY src/sys/statvfs/ST_RDONLY.c 2;" d file:
SYMTYPE src/tar/SYMTYPE.c 3;" d file:
S_BANDURG src/stropts/S_BANDURG.c 2;" d file:
S_ERROR src/stropts/S_ERROR.c 2;" d file:
S_HANGUP src/stropts/S_HANGUP.c 2;" d file:
S_HIPRI src/stropts/S_HIPRI.c 2;" d file:
S_IFBLK src/sys/stat/S_IFBLK.c 2;" d file:
S_IFCHR src/sys/stat/S_IFCHR.c 2;" d file:
S_IFDIR src/sys/stat/S_IFDIR.c 2;" d file:
S_IFIFO src/sys/stat/S_IFIFO.c 2;" d file:
S_IFLNK src/sys/stat/S_IFLNK.c 2;" d file:
S_IFMT src/sys/stat/S_IFMT.c 2;" d file:
S_IFREG src/sys/stat/S_IFREG.c 2;" d file:
S_INPUT src/stropts/S_INPUT.c 2;" d file:
S_IRGRP src/sys/stat/S_IRGRP.c 3;" d file:
S_IROTH src/sys/stat/S_IROTH.c 3;" d file:
S_IRUSR src/sys/stat/S_IRUSR.c 3;" d file:
S_IRWXG src/sys/stat/S_IRWXG.c 3;" d file:
S_IRWXO src/sys/stat/S_IRWXO.c 3;" d file:
S_IRWXU src/sys/stat/S_IRWXU.c 3;" d file:
S_ISBLK src/sys/stat/S_ISBLK.c 2;" d file:
S_ISCHR src/sys/stat/S_ISCHR.c 2;" d file:
S_ISDIR src/stdio/remove.c 10;" d file:
S_ISDIR src/sys/stat/S_ISDIR.c 2;" d file:
S_ISFIFO src/sys/stat/S_ISFIFO.c 2;" d file:
S_ISGID src/sys/stat/S_ISGID.c 2;" d file:
S_ISLNK src/sys/stat/S_ISLNK.c 2;" d file:
S_ISREG src/sys/stat/S_ISREG.c 2;" d file:
S_ISUID src/sys/stat/S_ISUID.c 2;" d file:
S_ISVTX src/sys/stat/S_ISVTX.c 2;" d file:
S_IWGRP src/sys/stat/S_IWGRP.c 2;" d file:
S_IWOTH src/sys/stat/S_IWOTH.c 2;" d file:
S_IWUSR src/sys/stat/S_IWUSR.c 2;" d file:
S_IXGRP src/sys/stat/S_IXGRP.c 2;" d file:
S_IXOTH src/sys/stat/S_IXOTH.c 2;" d file:
S_IXUSR src/sys/stat/S_IXUSR.c 2;" d file:
S_MSG src/stropts/S_MSG.c 2;" d file:
S_OUTPUT src/stropts/S_OUTPUT.c 2;" d file:
S_RDBAND src/stropts/S_RDBAND.c 2;" d file:
S_RDNORM src/stropts/S_RDNORM.c 2;" d file:
S_TYPEISMQ src/sys/stat/S_TYPEISMQ.c 2;" d file:
S_TYPEISSEM src/sys/stat/S_TYPEISSEM.c 2;" d file:
S_TYPEISSHM src/sys/stat/S_TYPEISSHM.c 2;" d file:
S_WRBAND src/stropts/S_WRBAND.c 2;" d file:
S_WRNORM src/stropts/S_WRNORM.c 2;" d file:
TAB0 src/termios/TAB0.c 2;" d file:
TAB1 src/termios/TAB1.c 2;" d file:
TAB2 src/termios/TAB2.c 2;" d file:
TAB3 src/termios/TAB3.c 2;" d file:
TABDLY src/termios/TABDLY.c 2;" d file:
TCIFLUSH src/termios/TCIFLUSH.c 2;" d file:
TCIOFF src/termios/TCIOFF.c 2;" d file:
TCIOFLUSH src/termios/TCIOFLUSH.c 2;" d file:
TCION src/termios/TCION.c 2;" d file:
TCOFLUSH src/termios/TCOFLUSH.c 2;" d file:
TCOOFF src/termios/TCOOFF.c 2;" d file:
TCOON src/termios/TCOON.c 2;" d file:
TCSADRAIN src/termios/TCSADRAIN.c 2;" d file:
TCSAFLUSH src/termios/TCSAFLUSH.c 2;" d file:
TCSANOW src/termios/TCSANOW.c 2;" d file:
TERMINAL src/term/TERMINAL.c /^typedef struct __TERMINAL TERMINAL;$/;" t typeref:struct:__TERMINAL file:
TGEXEC src/tar/TGEXEC.c 3;" d file:
TGREAD src/tar/TGREAD.c 3;" d file:
TGSOURCE src/complex/cabs.c 1;" d file:
TGSOURCE src/complex/cacos.c 1;" d file:
TGSOURCE src/complex/cacosh.c 1;" d file:
TGSOURCE src/complex/carg.c 1;" d file:
TGSOURCE src/complex/casin.c 1;" d file:
TGSOURCE src/complex/casinh.c 1;" d file:
TGSOURCE src/complex/catan.c 1;" d file:
TGSOURCE src/complex/catanh.c 1;" d file:
TGSOURCE src/complex/ccos.c 1;" d file:
TGSOURCE src/complex/ccosh.c 1;" d file:
TGSOURCE src/complex/cexp.c 1;" d file:
TGSOURCE src/complex/cimag.c 1;" d file:
TGSOURCE src/complex/clog.c 1;" d file:
TGSOURCE src/complex/conj.c 1;" d file:
TGSOURCE src/complex/cpow.c 1;" d file:
TGSOURCE src/complex/cproj.c 1;" d file:
TGSOURCE src/complex/creal.c 1;" d file:
TGSOURCE src/complex/csin.c 1;" d file:
TGSOURCE src/complex/csinh.c 1;" d file:
TGSOURCE src/complex/csqrt.c 1;" d file:
TGSOURCE src/complex/ctan.c 1;" d file:
TGSOURCE src/complex/ctanh.c 1;" d file:
TGSOURCE src/math/__fpclassify.c 1;" d file:
TGSOURCE src/math/acos.c 1;" d file:
TGSOURCE src/math/acosh.c 1;" d file:
TGSOURCE src/math/asin.c 1;" d file:
TGSOURCE src/math/asinh.c 1;" d file:
TGSOURCE src/math/atan.c 1;" d file:
TGSOURCE src/math/atan2.c 1;" d file:
TGSOURCE src/math/atanh.c 1;" d file:
TGSOURCE src/math/cbrt.c 1;" d file:
TGSOURCE src/math/ceil.c 1;" d file:
TGSOURCE src/math/copysign.c 1;" d file:
TGSOURCE src/math/cos.c 1;" d file:
TGSOURCE src/math/cosh.c 1;" d file:
TGSOURCE src/math/erf.c 1;" d file:
TGSOURCE src/math/erfc.c 1;" d file:
TGSOURCE src/math/exp.c 1;" d file:
TGSOURCE src/math/exp2.c 1;" d file:
TGSOURCE src/math/expm1.c 1;" d file:
TGSOURCE src/math/fabs.c 1;" d file:
TGSOURCE src/math/fdim.c 1;" d file:
TGSOURCE src/math/floor.c 1;" d file:
TGSOURCE src/math/fma.c 1;" d file:
TGSOURCE src/math/fmax.c 1;" d file:
TGSOURCE src/math/fmin.c 1;" d file:
TGSOURCE src/math/fmod.c 1;" d file:
TGSOURCE src/math/frexp.c 1;" d file:
TGSOURCE src/math/hypot.c 1;" d file:
TGSOURCE src/math/ilogb.c 1;" d file:
TGSOURCE src/math/ldexp.c 1;" d file:
TGSOURCE src/math/lgamma.c 1;" d file:
TGSOURCE src/math/llrint.c 1;" d file:
TGSOURCE src/math/llround.c 1;" d file:
TGSOURCE src/math/log.c 1;" d file:
TGSOURCE src/math/log10.c 1;" d file:
TGSOURCE src/math/log1p.c 1;" d file:
TGSOURCE src/math/log2.c 1;" d file:
TGSOURCE src/math/logb.c 1;" d file:
TGSOURCE src/math/lrint.c 1;" d file:
TGSOURCE src/math/lround.c 1;" d file:
TGSOURCE src/math/modf.c 1;" d file:
TGSOURCE src/math/nan.c 1;" d file:
TGSOURCE src/math/nearbyint.c 1;" d file:
TGSOURCE src/math/nextafter.c 1;" d file:
TGSOURCE src/math/nexttoward.c 1;" d file:
TGSOURCE src/math/pow.c 1;" d file:
TGSOURCE src/math/remainder.c 2;" d file:
TGSOURCE src/math/remquo.c 1;" d file:
TGSOURCE src/math/rint.c 1;" d file:
TGSOURCE src/math/round.c 1;" d file:
TGSOURCE src/math/scalbln.c 1;" d file:
TGSOURCE src/math/scalbn.c 1;" d file:
TGSOURCE src/math/sin.c 1;" d file:
TGSOURCE src/math/sinh.c 1;" d file:
TGSOURCE src/math/sqrt.c 1;" d file:
TGSOURCE src/math/tan.c 1;" d file:
TGSOURCE src/math/tanh.c 1;" d file:
TGSOURCE src/math/tgamma.c 1;" d file:
TGSOURCE src/math/trunc.c 1;" d file:
TGWRITE src/tar/TGWRITE.c 3;" d file:
THOUSEP src/langinfo/THOUSEP.c 2;" d file:
TIMER_ABSTIME src/time/TIMER_ABSTIME.c 2;" d file:
TMAGIC src/tar/TMAGIC.c 3;" d file:
TMAGLEN src/tar/TMAGLEN.c 3;" d file:
TMP_MAX src/limits/TMP_MAX.c 2;" d file:
TMP_MAX src/stdio/TMP_MAX.c 2;" d file:
TOEXEC src/tar/TOEXEC.c 3;" d file:
TOREAD src/tar/TOREAD.c 3;" d file:
TOSTOP src/termios/TOSTOP.c 2;" d file:
TOWRITE src/tar/TOWRITE.c 3;" d file:
TRAP_BRKPT src/signal/TRAP_BRKPT.c 2;" d file:
TRAP_TRACE src/signal/TRAP_TRACE.c 2;" d file:
TRUE src/curses/TRUE.c 2;" d file:
TSGID src/tar/TSGID.c 3;" d file:
TSS_DTOR_ITERATIONS src/threads/TSS_DTOR_ITERATIONS.c 1;" d file:
TSUID src/tar/TSUID.c 3;" d file:
TSVTX src/tar/TSVTX.c 3;" d file:
TUEXEC src/tar/TUEXEC.c 3;" d file:
TUREAD src/tar/TUREAD.c 3;" d file:
TUWRITE src/tar/TUWRITE.c 3;" d file:
TVERSION src/tar/TVERSION.c 3;" d file:
TVERSLEN src/tar/TVERSLEN.c 3;" d file:
T_FMT src/langinfo/T_FMT.c 2;" d file:
T_FMT_AMPM src/langinfo/T_FMT_AMPM.c 2;" d file:
UCHAR_MAX src/limits/UCHAR_MAX.c 2;" d file:
UINT16_C src/stdint/UINT16_C.c 3;" d file:
UINT16_MAX src/stdint/UINT16_MAX.c 2;" d file:
UINT32_C src/stdint/UINT32_C.c 3;" d file:
UINT32_MAX src/stdint/UINT32_MAX.c 2;" d file:
UINT64_C src/stdint/UINT64_C.c 3;" d file:
UINT64_MAX src/stdint/UINT64_MAX.c 2;" d file:
UINT8_C src/stdint/UINT8_C.c 3;" d file:
UINT8_MAX src/stdint/UINT8_MAX.c 2;" d file:
UINTMAX_C src/stdint/UINTMAX_C.c 3;" d file:
UINTMAX_MAX src/stdint/UINTMAX_MAX.c 2;" d file:
UINTPTR_MAX src/stdint/UINTPTR_MAX.c 2;" d file:
UINT_FAST16_MAX src/stdint/UINT_FAST16_MAX.c 2;" d file:
UINT_FAST32_MAX src/stdint/UINT_FAST32_MAX.c 2;" d file:
UINT_FAST64_MAX src/stdint/UINT_FAST64_MAX.c 2;" d file:
UINT_FAST8_MAX src/stdint/UINT_FAST8_MAX.c 2;" d file:
UINT_LEAST16_MAX src/stdint/UINT_LEAST16_MAX.c 2;" d file:
UINT_LEAST32_MAX src/stdint/UINT_LEAST32_MAX.c 2;" d file:
UINT_LEAST64_MAX src/stdint/UINT_LEAST64_MAX.c 2;" d file:
UINT_LEAST8_MAX src/stdint/UINT_LEAST8_MAX.c 2;" d file:
UINT_MAX src/limits/UINT_MAX.c 3;" d file:
UINT_MAX src/limits/UINT_MAX.c 5;" d file:
UINT_MAX src/limits/UINT_MAX.c 7;" d file:
ULLONG_MAX src/limits/ULLONG_MAX.c 2;" d file:
ULONG_MAX src/limits/ULONG_MAX.c 3;" d file:
ULONG_MAX src/limits/ULONG_MAX.c 5;" d file:
UL_GETFSIZE src/ulimit/UL_GETFSIZE.c 2;" d file:
UL_SETFSIZE src/ulimit/UL_SETFSIZE.c 2;" d file:
UNGETC src/regexp/UNGETC.c 1;" d file:
UNSIGNED src/stdio/__printf.c 27;" d file:
UPPER src/stdio/__printf.c 26;" d file:
USER_PROCESS src/utmpx/USER_PROCESS.c 2;" d file:
USE_FORK src/stdlib/system.c 8;" d file:
USHRT_MAX src/limits/USHRT_MAX.c 2;" d file:
VEOF src/termios/VEOF.c 2;" d file:
VEOL src/termios/VEOL.c 2;" d file:
VERASE src/termios/VERASE.c 2;" d file:
VINTR src/termios/VINTR.c 2;" d file:
VISIT src/search/VISIT.c /^} VISIT;$/;" t typeref:enum:__anon4 file:
VKILL src/termios/VKILL.c 2;" d file:
VMIN src/termios/VMIN.c 2;" d file:
VQUIT src/termios/VQUIT.c 2;" d file:
VSTART src/termios/VSTART.c 2;" d file:
VSTOP src/termios/VSTOP.c 2;" d file:
VSUSP src/termios/VSUSP.c 2;" d file:
VT0 src/termios/VT0.c 2;" d file:
VT1 src/termios/VT1.c 2;" d file:
VTDLY src/termios/VTDLY.c 2;" d file:
VTIME src/termios/VTIME.c 2;" d file:
WACS_BLOCK src/curses/WACS_BLOCK.c 2;" d file:
WACS_BOARD src/curses/WACS_BOARD.c 2;" d file:
WACS_BTEE src/curses/WACS_BTEE.c 2;" d file:
WACS_BULLET src/curses/WACS_BULLET.c 2;" d file:
WACS_CKBOARD src/curses/WACS_CKBOARD.c 2;" d file:
WACS_DARROW src/curses/WACS_DARROW.c 2;" d file:
WACS_DEGREE src/curses/WACS_DEGREE.c 2;" d file:
WACS_DIAMOND src/curses/WACS_DIAMOND.c 2;" d file:
WACS_HLINE src/curses/WACS_HLINE.c 2;" d file:
WACS_LANTERN src/curses/WACS_LANTERN.c 2;" d file:
WACS_LARROW src/curses/WACS_LARROW.c 2;" d file:
WACS_LLCORNER src/curses/WACS_LLCORNER.c 2;" d file:
WACS_LRCORNER src/curses/WACS_LRCORNER.c 2;" d file:
WACS_LTEE src/curses/WACS_LTEE.c 2;" d file:
WACS_PLMINUS src/curses/WACS_PLMINUS.c 2;" d file:
WACS_PLUS src/curses/WACS_PLUS.c 2;" d file:
WACS_RARROW src/curses/WACS_RARROW.c 2;" d file:
WACS_RTEE src/curses/WACS_RTEE.c 2;" d file:
WACS_S1 src/curses/WACS_S1.c 2;" d file:
WACS_S9 src/curses/WACS_S9.c 2;" d file:
WACS_TTEE src/curses/WACS_TTEE.c 2;" d file:
WACS_UARROW src/curses/WACS_UARROW.c 2;" d file:
WACS_ULCORNER src/curses/WACS_ULCORNER.c 2;" d file:
WACS_URCORNER src/curses/WACS_URCORNER.c 2;" d file:
WACS_VLINE src/curses/WACS_VLINE.c 2;" d file:
WA_ALTCHARSET src/curses/WA_ALTCHARSET.c 2;" d file:
WA_BLINK src/curses/WA_BLINK.c 2;" d file:
WA_BOLD src/curses/WA_BOLD.c 2;" d file:
WA_DIM src/curses/WA_DIM.c 2;" d file:
WA_HORIZONTAL src/curses/WA_HORIZONTAL.c 2;" d file:
WA_INVIS src/curses/WA_INVIS.c 2;" d file:
WA_LEFT src/curses/WA_LEFT.c 2;" d file:
WA_LOW src/curses/WA_LOW.c 2;" d file:
WA_PROTECT src/curses/WA_PROTECT.c 2;" d file:
WA_REVERSE src/curses/WA_REVERSE.c 2;" d file:
WA_RIGHT src/curses/WA_RIGHT.c 2;" d file:
WA_STANDOUT src/curses/WA_STANDOUT.c 2;" d file:
WA_TOP src/curses/WA_TOP.c 2;" d file:
WA_UNDERLINE src/curses/WA_UNDERLINE.c 2;" d file:
WCHAR_MAX src/wchar/WCHAR_MAX.c 2;" d file:
WCHAR_MIN src/wchar/WCHAR_MIN.c 2;" d file:
WCONTINUED src/sys/wait/WCONTINUED.c 2;" d file:
WEOF src/wctype/WEOF.c 2;" d file:
WEXITED src/sys/wait/WEXITED.c 2;" d file:
WEXITSTATUS src/sys/wait/WEXITSTATUS.c 2;" d file:
WIFCONTINUED src/sys/wait/WIFCONTINUED.c 2;" d file:
WIFEXITED src/sys/wait/WIFEXITED.c 2;" d file:
WIFSIGNALED src/sys/wait/WIFSIGNALED.c 2;" d file:
WIFSTOPPED src/sys/wait/WIFSTOPPED.c 2;" d file:
WINDOW src/curses/WINDOW.c /^typedef struct __WINDOW WINDOW;$/;" t typeref:struct:__WINDOW file:
WINT_MAX src/stdint/WINT_MAX.c 2;" d file:
WINT_MIN src/stdint/WINT_MIN.c 2;" d file:
WNOHANG src/sys/wait/WNOHANG.c 2;" d file:
WNOWAIT src/sys/wait/WNOWAIT.c 2;" d file:
WORD_BIT src/limits/WORD_BIT.c 2;" d file:
WRDE_APPEND src/wordexp/WRDE_APPEND.c 2;" d file:
WRDE_BADCHAR src/wordexp/WRDE_BADCHAR.c 2;" d file:
WRDE_BADVAL src/wordexp/WRDE_BADVAL.c 2;" d file:
WRDE_CMDSUB src/wordexp/WRDE_CMDSUB.c 2;" d file:
WRDE_DOOFFS src/wordexp/WRDE_DOOFFS.c 2;" d file:
WRDE_NOCMD src/wordexp/WRDE_NOCMD.c 2;" d file:
WRDE_NOSPACE src/wordexp/WRDE_NOSPACE.c 2;" d file:
WRDE_NOSYS src/wordexp/WRDE_NOSYS.c 2;" d file:
WRDE_REUSE src/wordexp/WRDE_REUSE.c 2;" d file:
WRDE_SHOWERR src/wordexp/WRDE_SHOWERR.c 2;" d file:
WRDE_SYNTAX src/wordexp/WRDE_SYNTAX.c 2;" d file:
WRDE_UNDEF src/wordexp/WRDE_UNDEF.c 2;" d file:
WSTOPPED src/sys/wait/WSTOPPED.c 2;" d file:
WSTOPSIG src/sys/wait/WSTOPSIG.c 2;" d file:
WTERMSIG src/sys/wait/WTERMSIG.c 2;" d file:
WUNTRACED src/sys/wait/WUNTRACED.c 2;" d file:
W_OK src/unistd/W_OK.c 2;" d file:
XCASE src/termios/XCASE.c 2;" d file:
X_OK src/unistd/X_OK.c 2;" d file:
YESEXPR src/langinfo/YESEXPR.c 2;" d file:
YESSTR src/langinfo/YESSTR.c 2;" d file:
ZERO src/stdio/__printf.c 25;" d file:
_CS_PATH src/unistd/_CS_PATH.c 2;" d file:
_Complex_I src/complex/_Complex_I.c 3;" d file:
_Exit src/stdlib/_Exit.c /^_Noreturn void _Exit(int status)$/;" f
_IOFBF src/stdio/_IOFBF.c 2;" d file:
_IOLBF src/stdio/_IOLBF.c 2;" d file:
_IONBF src/stdio/_IONBF.c 2;" d file:
_Imaginary_I src/complex/_Imaginary_I.c 4;" d file:
_PC_ASYNC_IO src/unistd/_PC_ASYNC_IO.c 2;" d file:
_PC_CHOWN_RESTRICTED src/unistd/_PC_CHOWN_RESTRICTED.c 2;" d file:
_PC_LINK_MAX src/unistd/_PC_LINK_MAX.c 2;" d file:
_PC_MAX_CANON src/unistd/_PC_MAX_CANON.c 2;" d file:
_PC_MAX_INPUT src/unistd/_PC_MAX_INPUT.c 2;" d file:
_PC_NAME_MAX src/unistd/_PC_NAME_MAX.c 2;" d file:
_PC_NO_TRUNC src/unistd/_PC_NO_TRUNC.c 2;" d file:
_PC_PATH_MAX src/unistd/_PC_PATH_MAX.c 2;" d file:
_PC_PIPE_BUF src/unistd/_PC_PIPE_BUF.c 2;" d file:
_PC_PRIO_IO src/unistd/_PC_PRIO_IO.c 2;" d file:
_PC_SYNC_IO src/unistd/_PC_SYNC_IO.c 2;" d file:
_PC_VDISABLE src/unistd/_PC_VDISABLE.c 2;" d file:
_POSIX2_BC_BASE_MAX src/limits/_POSIX2_BC_BASE_MAX.c 2;" d file:
_POSIX2_BC_DIM_MAX src/limits/_POSIX2_BC_DIM_MAX.c 2;" d file:
_POSIX2_BC_SCALE_MAX src/limits/_POSIX2_BC_SCALE_MAX.c 2;" d file:
_POSIX2_BC_STRING_MAX src/limits/_POSIX2_BC_STRING_MAX.c 2;" d file:
_POSIX2_CHAR_TERM src/unistd/_POSIX2_CHAR_TERM.c 2;" d file:
_POSIX2_COLL_WEIGHTS_MAX src/limits/_POSIX2_COLL_WEIGHTS_MAX.c 2;" d file:
_POSIX2_C_BIND src/unistd/_POSIX2_C_BIND.c 2;" d file:
_POSIX2_C_DEV src/unistd/_POSIX2_C_DEV.c 2;" d file:
_POSIX2_C_VERSION src/unistd/_POSIX2_C_VERSION.c 2;" d file:
_POSIX2_EXPR_NEST_MAX src/limits/_POSIX2_EXPR_NEST_MAX.c 2;" d file:
_POSIX2_FORT_DEV src/unistd/_POSIX2_FORT_DEV.c 2;" d file:
_POSIX2_FORT_RUN src/unistd/_POSIX2_FORT_RUN.c 2;" d file:
_POSIX2_LINE_MAX src/limits/_POSIX2_LINE_MAX.c 2;" d file:
_POSIX2_LOCALEDEF src/unistd/_POSIX2_LOCALEDEF.c 2;" d file:
_POSIX2_RE_DUP_MAX src/limits/_POSIX2_RE_DUP_MAX.c 2;" d file:
_POSIX2_SW_DEV src/unistd/_POSIX2_SW_DEV.c 2;" d file:
_POSIX2_UPE src/unistd/_POSIX2_UPE.c 2;" d file:
_POSIX2_VERSION src/unistd/_POSIX2_VERSION.c 11;" d file:
_POSIX2_VERSION src/unistd/_POSIX2_VERSION.c 13;" d file:
_POSIX2_VERSION src/unistd/_POSIX2_VERSION.c 5;" d file:
_POSIX2_VERSION src/unistd/_POSIX2_VERSION.c 7;" d file:
_POSIX2_VERSION src/unistd/_POSIX2_VERSION.c 9;" d file:
_POSIX_AIO_LISTIO_MAX src/limits/_POSIX_AIO_LISTIO_MAX.c 2;" d file:
_POSIX_AIO_MAX src/limits/_POSIX_AIO_MAX.c 2;" d file:
_POSIX_ARG_MAX src/limits/_POSIX_ARG_MAX.c 2;" d file:
_POSIX_ASYNCHRONOUS_IO src/unistd/_POSIX_ASYNCHRONOUS_IO.c 2;" d file:
_POSIX_ASYNC_IO src/unistd/_POSIX_ASYNC_IO.c 2;" d file:
_POSIX_CHILD_MAX src/limits/_POSIX_CHILD_MAX.c 2;" d file:
_POSIX_CHOWN_RESTRICTED src/unistd/_POSIX_CHOWN_RESTRICTED.c 2;" d file:
_POSIX_CLOCKRES_MIN src/limits/_POSIX_CLOCKRES_MIN.c 2;" d file:
_POSIX_DELAYTIMER_MAX src/limits/_POSIX_DELAYTIMER_MAX.c 2;" d file:
_POSIX_FSYNC src/unistd/_POSIX_FSYNC.c 2;" d file:
_POSIX_JOB_CONTROL src/unistd/_POSIX_JOB_CONTROL.c 2;" d file:
_POSIX_LINK_MAX src/limits/_POSIX_LINK_MAX.c 2;" d file:
_POSIX_MAPPED_FILES src/unistd/_POSIX_MAPPED_FILES.c 2;" d file:
_POSIX_MAX_CANON src/limits/_POSIX_MAX_CANON.c 2;" d file:
_POSIX_MAX_INPUT src/limits/_POSIX_MAX_INPUT.c 2;" d file:
_POSIX_MEMLOCK src/unistd/_POSIX_MEMLOCK.c 2;" d file:
_POSIX_MEMLOCK_RANGE src/unistd/_POSIX_MEMLOCK_RANGE.c 2;" d file:
_POSIX_MEMORY_PROTECTION src/unistd/_POSIX_MEMORY_PROTECTION.c 2;" d file:
_POSIX_MESSAGE_PASSING src/unistd/_POSIX_MESSAGE_PASSING.c 2;" d file:
_POSIX_MQ_OPEN_MAX src/limits/_POSIX_MQ_OPEN_MAX.c 2;" d file:
_POSIX_MQ_PRIO_MAX src/limits/_POSIX_MQ_PRIO_MAX.c 2;" d file:
_POSIX_NAME_MAX src/limits/_POSIX_NAME_MAX.c 2;" d file:
_POSIX_NGROUPS_MAX src/limits/_POSIX_NGROUPS_MAX.c 2;" d file:
_POSIX_NO_TRUNC src/unistd/_POSIX_NO_TRUNC.c 2;" d file:
_POSIX_OPEN_MAX src/limits/_POSIX_OPEN_MAX.c 2;" d file:
_POSIX_PATH_MAX src/limits/_POSIX_PATH_MAX.c 2;" d file:
_POSIX_PIPE_BUF src/limits/_POSIX_PIPE_BUF.c 2;" d file:
_POSIX_PRIORITIZED_IO src/unistd/_POSIX_PRIORITIZED_IO.c 2;" d file:
_POSIX_PRIORITY_SCHEDULING src/unistd/_POSIX_PRIORITY_SCHEDULING.c 2;" d file:
_POSIX_PRIO_IO src/unistd/_POSIX_PRIO_IO.c 2;" d file:
_POSIX_REALTIME_SIGNALS src/unistd/_POSIX_REALTIME_SIGNALS.c 2;" d file:
_POSIX_RTSIG_MAX src/limits/_POSIX_RTSIG_MAX.c 2;" d file:
_POSIX_SAVED_IDS src/unistd/_POSIX_SAVED_IDS.c 2;" d file:
_POSIX_SEMAPHORES src/unistd/_POSIX_SEMAPHORES.c 2;" d file:
_POSIX_SEM_NSEMS_MAX src/limits/_POSIX_SEM_NSEMS_MAX.c 2;" d file:
_POSIX_SEM_VALUE_MAX src/limits/_POSIX_SEM_VALUE_MAX.c 2;" d file:
_POSIX_SHARED_MEMORY_OBJECTS src/unistd/_POSIX_SHARED_MEMORY_OBJECTS.c 2;" d file:
_POSIX_SIGQUEUE_MAX src/limits/_POSIX_SIGQUEUE_MAX.c 2;" d file:
_POSIX_SOURCE src/__FEATURE_TEST_MACROS__/_POSIX_SOURCE.c 1;" d file:
_POSIX_SSIZE_MAX src/limits/_POSIX_SSIZE_MAX.c 3;" d file:
_POSIX_STREAM_MAX src/limits/_POSIX_STREAM_MAX.c 2;" d file:
_POSIX_SYNCHRONIZED_IO src/unistd/_POSIX_SYNCHRONIZED_IO.c 2;" d file:
_POSIX_SYNC_IO src/unistd/_POSIX_SYNC_IO.c 2;" d file:
_POSIX_TIMERS src/unistd/_POSIX_TIMERS.c 2;" d file:
_POSIX_TIMER_MAX src/limits/_POSIX_TIMER_MAX.c 2;" d file:
_POSIX_TZNAME_MAX src/limits/_POSIX_TZNAME_MAX.c 3;" d file:
_POSIX_VDISABLE src/unistd/_POSIX_VDISABLE.c 2;" d file:
_POSIX_VERISON src/unistd/_POSIX_VERSION.c 3;" d file:
_POSIX_VERSION src/unistd/_POSIX_VERSION.c 11;" d file:
_POSIX_VERSION src/unistd/_POSIX_VERSION.c 13;" d file:
_POSIX_VERSION src/unistd/_POSIX_VERSION.c 5;" d file:
_POSIX_VERSION src/unistd/_POSIX_VERSION.c 7;" d file:
_POSIX_VERSION src/unistd/_POSIX_VERSION.c 9;" d file:
_SC_2_CHAR_TERM src/unistd/_SC_2_CHAR_TERM.c 2;" d file:
_SC_2_C_BIND src/unistd/_SC_2_C_BIND.c 2;" d file:
_SC_2_C_DEV src/unistd/_SC_2_C_DEV.c 2;" d file:
_SC_2_C_VERSION src/unistd/_SC_2_C_VERSION.c 2;" d file:
_SC_2_FORT_DEV src/unistd/_SC_2_FORT_DEV.c 2;" d file:
_SC_2_FORT_RUN src/unistd/_SC_2_FORT_RUN.c 2;" d file:
_SC_2_LOCALEDEF src/unistd/_SC_2_LOCALEDEF.c 2;" d file:
_SC_2_SW_DEV src/unistd/_SC_2_SW_DEV.c 2;" d file:
_SC_2_UPE src/unistd/_SC_2_UPE.c 2;" d file:
_SC_2_VERSION src/unistd/_SC_2_VERSION.c 2;" d file:
_SC_AIO_LISTIO_MAX src/unistd/_SC_AIO_LISTIO_MAX.c 2;" d file:
_SC_AIO_MAX src/unistd/_SC_AIO_MAX.c 2;" d file:
_SC_AIO_PRIO_DELTA_MAX src/unistd/_SC_AIO_PRIO_DELTA_MAX.c 2;" d file:
_SC_ARG_MAX src/unistd/_SC_ARG_MAX.c 2;" d file:
_SC_ASYNCHRONOUS_IO src/unistd/_SC_ASYNCHRONOUS_IO.c 2;" d file:
_SC_ATEXIT_MAX src/unistd/_SC_ATEXIT_MAX.c 2;" d file:
_SC_BC_BASE_MAX src/unistd/_SC_BC_BASE_MAX.c 2;" d file:
_SC_BC_DIM_MAX src/unistd/_SC_BC_DIM_MAX.c 2;" d file:
_SC_BC_SCALE_MAX src/unistd/_SC_BC_SCALE_MAX.c 2;" d file:
_SC_BC_STRING_MAX src/unistd/_SC_BC_STRING_MAX.c 2;" d file:
_SC_CHILD_MAX src/unistd/_SC_CHILD_MAX.c 2;" d file:
_SC_CLK_TCK src/unistd/_SC_CLK_TCK.c 2;" d file:
_SC_COLL_WEIGHTS_MAX src/unistd/_SC_COLL_WEIGHTS_MAX.c 2;" d file:
_SC_DELAYTIMER_MAX src/unistd/_SC_DELAYTIMER_MAX.c 2;" d file:
_SC_EXPR_NEST_MAX src/unistd/_SC_EXPR_NEST_MAX.c 2;" d file:
_SC_FSYNC src/unistd/_SC_FSYNC.c 2;" d file:
_SC_IOV_MAX src/unistd/_SC_IOV_MAX.c 2;" d file:
_SC_JOB_CONTROL src/unistd/_SC_JOB_CONTROL.c 2;" d file:
_SC_LINE_MAX src/unistd/_SC_LINE_MAX.c 2;" d file:
_SC_MAPPED_FILES src/unistd/_SC_MAPPED_FILES.c 2;" d file:
_SC_MEMLOCK src/unistd/_SC_MEMLOCK.c 2;" d file:
_SC_MEMLOCK_RANGE src/unistd/_SC_MEMLOCK_RANGE.c 2;" d file:
_SC_MEMORY_PROTECTION src/unistd/_SC_MEMORY_PROTECTION.c 2;" d file:
_SC_MESSAGE_PASSING src/unistd/_SC_MESSAGE_PASSING.c 2;" d file:
_SC_MQ_OPEN_MAX src/unistd/_SC_MQ_OPEN_MAX.c 2;" d file:
_SC_MQ_PRIO_MAX src/unistd/_SC_MQ_PRIO_MAX.c 2;" d file:
_SC_NGROUPS_MAX src/unistd/_SC_NGROUPS_MAX.c 2;" d file:
_SC_OPEN_MAX src/unistd/_SC_OPEN_MAX.c 2;" d file:
_SC_PAGESIZE src/unistd/_SC_PAGESIZE.c 2;" d file:
_SC_PAGE_SIZE src/unistd/_SC_PAGE_SIZE.c 2;" d file:
_SC_PASS_MAX src/unistd/_SC_PASS_MAX.c 2;" d file:
_SC_PRIORITIZED_IO src/unistd/_SC_PRIORITIZED_IO.c 2;" d file:
_SC_PRIORITY_SCHEDULING src/unistd/_SC_PRIORITY_SCHEDULING.c 2;" d file:
_SC_REALTIME_SIGNALS src/unistd/_SC_REALTIME_SIGNALS.c 2;" d file:
_SC_RE_DUP_MAX src/unistd/_SC_RE_DUP_MAX.c 2;" d file:
_SC_RTSIG_MAX src/unistd/_SC_RTSIG_MAX.c 2;" d file:
_SC_SAVED_IDS src/unistd/_SC_SAVED_IDS.c 2;" d file:
_SC_SEMAPHORES src/unistd/_SC_SEMAPHORES.c 2;" d file:
_SC_SEM_NSEMS_MAX src/unistd/_SC_SEM_NSEMS_MAX.c 2;" d file:
_SC_SEM_VALUE_MAX src/unistd/_SC_SEM_VALUE_MAX.c 2;" d file:
_SC_SHARED_MEMORY_OBJECTS src/unistd/_SC_SHARED_MEMORY_OBJECTS.c 2;" d file:
_SC_SIGQUEUE_MAX src/unistd/_SC_SIGQUEUE_MAX.c 2;" d file:
_SC_STREAM_MAX src/unistd/_SC_STREAM_MAX.c 3;" d file:
_SC_SYNCHRONIZED_IO src/unistd/_SC_SYNCHRONIZED_IO.c 2;" d file:
_SC_TIMERS src/unistd/_SC_TIMERS.c 2;" d file:
_SC_TIMER_MAX src/unistd/_SC_TIMER_MAX.c 2;" d file:
_SC_TZNAME_MAX src/unistd/_SC_TZNAME_MAX.c 3;" d file:
_SC_VERSION src/unistd/_SC_VERSION.c 2;" d file:
_SC_XOPEN_CRYPT src/unistd/_SC_XOPEN_CRYPT.c 2;" d file:
_SC_XOPEN_ENH_I18N src/unistd/_SC_XOPEN_ENH_I18N.c 2;" d file:
_SC_XOPEN_SHM src/unistd/_SC_XOPEN_SHM.c 2;" d file:
_SC_XOPEN_UNIX src/unistd/_SC_XOPEN_UNIX.c 2;" d file:
_SC_XOPEN_VERSION src/unistd/_SC_XOPEN_VERSION.c 2;" d file:
_SC_XOPEN_XCU_VERSION src/unistd/_SC_XOPEN_XCU_VERSION.c 2;" d file:
_XOPEN_CRYPT src/unistd/_XOPEN_CRYPT.c 2;" d file:
_XOPEN_CURSES src/curses/_XOPEN_CURSES.c 2;" d file:
_XOPEN_ENH_I18N src/unistd/_XOPEN_ENH_I18N.c 2;" d file:
_XOPEN_IOV_MAX src/limits/_XOPEN_IOV_MAX.c 2;" d file:
_XOPEN_LEGACY src/re_comp/re_exec.c 3;" d file:
_XOPEN_LEGACY src/regexp/advance.c 3;" d file:
_XOPEN_LEGACY src/regexp/compile.c 3;" d file:
_XOPEN_LEGACY src/regexp/step.c 3;" d file:
_XOPEN_LEGACY src/stdio/getw.c 3;" d file:
_XOPEN_LEGACY src/stdio/putw.c 3;" d file:
_XOPEN_SHM src/unistd/_XOPEN_SHM.c 2;" d file:
_XOPEN_UNIX src/unistd/_XOPEN_UNIX.c 2;" d file:
_XOPEN_VERSION src/unistd/_XOPEN_VERSION.c 11;" d file:
_XOPEN_VERSION src/unistd/_XOPEN_VERSION.c 5;" d file:
_XOPEN_VERSION src/unistd/_XOPEN_VERSION.c 7;" d file:
_XOPEN_VERSION src/unistd/_XOPEN_VERSION.c 9;" d file:
_XOPEN_XCU_VERSION src/unistd/_XOPEN_XCU_VERSION.c 2;" d file:
__DATE__ src/__PREDEFINED_MACROS__/__DATE__.c 1;" d file:
__FILE__ src/__PREDEFINED_MACROS__/__FILE__.c 1;" d file:
__LINE__ src/__PREDEFINED_MACROS__/__LINE__.c 1;" d file:
__LONGEST_STRERR src/string/strerror.c 4;" d file:
__PLATFORM__ src/sys/utsname/uname.c 5;" d file:
__SIGNAL_H__ src/stdlib/abort.c 9;" d file:
__STDC_HOSTED__ src/__PREDEFINED_MACROS__/__STDC_HOSTED__.c 1;" d file:
__STDC_IEC_559_COMPLEX__ src/__PREDEFINED_MACROS__/__STDC_IEC_559_COMPLEX__.c 1;" d file:
__STDC_IEC_559__ src/__PREDEFINED_MACROS__/__STDC_IEC_559__.c 1;" d file:
__STDC_ISO_10646__ src/__PREDEFINED_MACROS__/__STDC_ISO_10646__.c 1;" d file:
__STDC_VERSION__ src/__PREDEFINED_MACROS__/__STDC_VERSION__.c 1;" d file:
__STDC__ src/__PREDEFINED_MACROS__/__STDC__.c 1;" d file:
__SYS_WAIT_H__ src/sys/wait/waitid.c 10;" d file:
__TIME__ src/__PREDEFINED_MACROS__/__TIME__.c 1;" d file:
__append src/stdio/__printf.c /^static int __append(char *s, char *argstring, int nout, size_t n)$/;" f file:
__assert src/assert/__assert.c /^void __assert(const char *expr, const char *file, int line, const char *func)$/;" f
__bits src/signal/sigset_t.c /^typedef struct { unsigned char __bits[8]; }$/;" m struct:__anon17 file:
__bool_true_false_are_defined src/stdbool/__bool_true_false_are_defined.c 5;" d file:
__errno src/errno/__errno.c /^int *__errno(void)$/;" f
__fpclassify src/math/__fpclassify.c /^int TGFN(__fpclassify)(TYPE x)$/;" f
__func__ src/assert/assert.c 12;" d file:
__get_locale src/locale/__get_locale.c /^struct __locale_t * __get_locale(void)$/;" f
__grp src/grp/__grp.c /^struct __grp __grp =$/;" v typeref:struct:__grp
__int_n_cs_precedes src/locale/struct_lconv.c /^ char __int_n_cs_precedes;$/;" m struct:lconv file:
__int_n_sep_by_space src/locale/struct_lconv.c /^ char __int_n_sep_by_space;$/;" m struct:lconv file:
__int_n_sign_posn src/locale/struct_lconv.c /^ char __int_n_sign_posn;$/;" m struct:lconv file:
__int_p_cs_precedes src/locale/struct_lconv.c /^ char __int_p_cs_precedes;$/;" m struct:lconv file:
__int_p_sep_by_space src/locale/struct_lconv.c /^ char __int_p_sep_by_space;$/;" m struct:lconv file:
__int_p_sign_posn src/locale/struct_lconv.c /^ char __int_p_sign_posn;$/;" m struct:lconv file:
__itos src/stdio/__printf.c /^static void __itos(char *s, intmax_t n, int flags, int precision, int base)$/;" f file:
__load_locale src/locale/__load_locale.c /^char * __load_locale(struct __locale_t *loc, int mask, const char *name)$/;" f
__loc1 src/libgen/__loc1.c /^char *__loc1;$/;" v
__main src/__main.c /^void __main(int argc, char **argv)$/;" f
__padding src/signal/struct_sigaction.c /^ void (*__padding)(int, void *, void *);$/;" m struct:sigaction file:
__printf src/stdio/__printf.c /^int (__printf)(struct io_options *opt, const char * format, va_list arg)$/;" f
__pwd src/pwd/__pwd.c /^struct __pwd __pwd =$/;" v typeref:struct:__pwd
__sem_anonymous src/sys/sem/struct_sem_anonymous.c /^struct __sem_anonymous {$/;" s file:
__stderr src/stdio/__stderr.c /^FILE *__stderr;$/;" v
__stdin src/stdio/__stdin.c /^FILE *__stdin;$/;" v
__stdio src/stdio/__stdio.c /^struct __stdio __stdio =$/;" v typeref:struct:__stdio
__stdlib src/stdlib/__stdlib.c /^struct __stdlib __stdlib;$/;" v typeref:struct:__stdlib
__stdout src/stdio/__stdout.c /^FILE *__stdout;$/;" v
__tios src/__main.c /^static struct termios __tios;$/;" v typeref:struct:termios file:
__unistd src/unistd/__unistd.c /^struct __unistd __unistd;$/;" v typeref:struct:__unistd
_exit src/unistd/_exit.c /^void _exit(int status)$/;" f
_longjmp src/setjmp/_longjmp.c /^void _longjmp(jmp_buf env, int val)$/;" f
_setjmp src/setjmp/_setjmp.c /^int _setjmp(jmp_buf env)$/;" f
_tolower src/ctype/_tolower.c 5;" d file:
_toupper src/ctype/_toupper.c 5;" d file:
a64l src/stdlib/a64l.c /^long a64l(const char *s)$/;" f
abort src/stdlib/abort.c /^_Noreturn void abort(void)$/;" f
abs src/stdlib/abs.c /^int abs(int j)$/;" f
access src/unistd/access.c /^int access(const char *path, int amode)$/;" f
acos src/math/acos.c /^TYPE TGFN(acos)(TYPE x)$/;" f
acosh src/math/acosh.c /^TYPE TGFN(acosh)(TYPE x)$/;" f
acs_chars src/term/acs_chars.c 3;" d file:
actime src/utime/struct_utimbuf.c /^ time_t actime;$/;" m struct:utimbuf file:
advance src/regexp/advance.c /^int advance(const char *string, const char *expbuf)$/;" f
aio_buf src/aio/struct_aiocb.c /^ volatile void * aio_buf;$/;" m struct:aiocb file:
aio_cancel src/aio/aio_cancel.c /^int aio_cancel(int fildes, struct aiocb *aiocbp)$/;" f
aio_error src/aio/aio_error.c /^int aio_error(const struct aiocb * aiocbp)$/;" f
aio_fildes src/aio/struct_aiocb.c /^ int aio_fildes;$/;" m struct:aiocb file:
aio_fsync src/aio/aio_fsync.c /^int aio_fsync(int op, struct aiocb * aiocbp)$/;" f
aio_lio_opcode src/aio/struct_aiocb.c /^ int aio_lio_opcode;$/;" m struct:aiocb file:
aio_nbytes src/aio/struct_aiocb.c /^ size_t aio_nbytes;$/;" m struct:aiocb file:
aio_offset src/aio/struct_aiocb.c /^ off_t aio_offset;$/;" m struct:aiocb file:
aio_read src/aio/aio_read.c /^int aio_read(struct aiocb * aiocbp)$/;" f
aio_reqprio src/aio/struct_aiocb.c /^ int aio_reqprio;$/;" m struct:aiocb file:
aio_return src/aio/aio_return.c /^ssize_t aio_return(struct aiocb *aiocbp)$/;" f
aio_sigevent src/aio/struct_aiocb.c /^ struct sigevent aio_sigevent;$/;" m struct:aiocb typeref:struct:aiocb::sigevent file:
aio_suspend src/aio/aio_suspend.c /^int aio_suspend(const struct aiocb * const list[], int nent, const struct timespec * timeout)$/;" f
aio_write src/aio/aio_write.c /^int aio_write(struct aiocb * aiocbp)$/;" f
aiocb src/aio/struct_aiocb.c /^struct aiocb {$/;" s file:
alarm src/unistd/alarm.c /^unsigned alarm(unsigned seconds)$/;" f
alt_scancode_esc src/term/alt_scancode_esc.c 3;" d file:
and src/iso646/and.c 5;" d file:
and_eq src/iso646/and_eq.c 5;" d file:
asctime src/time/asctime.c /^char * asctime(const struct tm * timeptr)$/;" f
asin src/math/asin.c /^TYPE TGFN(asin)(TYPE x)$/;" f
asinh src/math/asinh.c /^TYPE TGFN(asinh)(TYPE x)$/;" f
assert src/assert/assert.c 15;" d file:
assert src/assert/assert.c 3;" d file:
assert src/assert/assert.c 7;" d file:
atan src/math/atan.c /^TYPE TGFN(atan)(TYPE x)$/;" f
atan2 src/math/atan2.c /^TYPE TGFN(atan2)(TYPE y, TYPE x)$/;" f
atanh src/math/atanh.c /^TYPE TGFN(atanh)(TYPE x)$/;" f
atexit src/stdlib/atexit.c /^int atexit(void (*func)(void))$/;" f
atof src/stdlib/atof.c /^double atof(const char * nptr)$/;" f
atoi src/stdlib/atoi.c /^int atoi(const char * nptr)$/;" f
atol src/stdlib/atol.c /^long int atol(const char * nptr)$/;" f
atoll src/stdlib/atoll.c /^long long int atoll(const char *nptr)$/;" f
attr_t src/curses/attr_t.c /^typedef unsigned int attr_t;$/;" t file:
auto_left_margin src/term/auto_left_margin.c 3;" d file:
auto_right_margin src/term/auto_right_margin.c 3;" d file:
back_color_erase src/term/back_color_erase.c 3;" d file:
back_tab src/term/back_tab.c 3;" d file:
bandinfo src/stropts/struct_bandinfo.c /^struct bandinfo {$/;" s file:
base src/ftw/struct_FTW.c /^ int base;$/;" m struct:FTW file:
basename src/libgen/basename.c /^char * basename(char * path)$/;" f
baudrate src/curses/baudrate.c /^int baudrate(void)$/;" f
bcmp src/strings/bcmp.c /^int bcmp(const void *s1, const void *s2, size_t n)$/;" f
bcopy src/strings/bcopy.c /^int bcopy(const void *s1, void *s2, size_t n)$/;" f
beep src/curses/beep.c /^int beep(void)$/;" f
bell src/term/bell.c 3;" d file:
bi_flag src/stropts/struct_bandinfo.c /^ int bi_flag;$/;" m struct:bandinfo file:
bi_pri src/stropts/struct_bandinfo.c /^ unsigned char bi_pri;$/;" m struct:bandinfo file:
bit_image_carriage_return src/term/bit_image_carriage_return.c 3;" d file:
bit_image_entwining src/term/bit_image_entwining.c 3;" d file:
bit_image_newline src/term/bit_image_newline.c 3;" d file:
bit_image_repeat src/term/bit_image_repeat.c 3;" d file:
bit_image_type src/term/bit_image_type.c 3;" d file:
bitand src/iso646/bitand.c 5;" d file:
bitor src/iso646/bitor.c 5;" d file:
bool src/curses/bool.c /^typedef _Bool bool;$/;" t file:
bool src/curses/bool.c /^typedef int bool;$/;" t file:
bool src/stdbool/bool.c 5;" d file:
box src/curses/box.c /^int box(WINDOW * win, chtype verch, chtype horch)$/;" f
box_set src/curses/box_set.c /^int box_set(WINDOW * win, const cchar_t * verch, const cchar_t * horch)$/;" f
brk src/unistd/brk.c /^int brk(void *addr)$/;" f
bsd_signal src/signal/bsd_signal.c /^void (*bsd_signal(int sig, void (*func)(int)))(int)$/;" f
bsearch src/stdlib/bsearch.c /^void * bsearch(const void * key, const void * base, size_t nmemb, size_t size, int (*compar)(const void *, const void*))$/;" f
btowc src/wchar/btowc.c /^wint_t btowc(int c)$/;" f
buf src/stropts/struct_strbuf.c /^ char *buf;$/;" m struct:strbuf file:
buf src/stropts/struct_strpeek.c /^ char *buf;$/;" m struct:strpeek file:
buffer_capacity src/term/buffer_capacity.c 3;" d file:
buttons src/term/buttons.c 3;" d file:
bzero src/strings/bzero.c /^void bzero(void* s, size_t n)$/;" f
c_cc src/termios/struct_termios.c /^ cc_t c_cc[NCCS];$/;" m struct:termios file:
c_cflag src/termios/struct_termios.c /^ tcflag_t c_cflag;$/;" m struct:termios file:
c_iflag src/termios/struct_termios.c /^ tcflag_t c_iflag;$/;" m struct:termios file:
c_lflag src/termios/struct_termios.c /^ tcflag_t c_lflag;$/;" m struct:termios file:
c_oflag src/termios/struct_termios.c /^ tcflag_t c_oflag;$/;" m struct:termios file:
cabs src/complex/cabs.c /^TYPE TGFN(cabs)(TYPE complex z)$/;" f
cacos src/complex/cacos.c /^TYPE complex TGFN(cacos)(TYPE complex z)$/;" f
cacosh src/complex/cacosh.c /^TYPE complex TGFN(cacosh)(TYPE complex z)$/;" f
call_once src/threads/call_once.c /^void call_once(once_flag *flag, void (*func)(void))$/;" f
calloc src/stdlib/calloc.c /^void * calloc(size_t nmemb, size_t size)$/;" f
can_change src/term/can_change.c 3;" d file:
can_change_color src/curses/can_change_color.c /^bool can_change_color(void)$/;" f
carg src/complex/carg.c /^TYPE TGFN(carg)(TYPE complex z)$/;" f
carriage_return src/term/carriage_return.c 3;" d file:
casin src/complex/casin.c /^TYPE complex TGFN(casin)(TYPE complex z)$/;" f
casinh src/complex/casinh.c /^TYPE complex TGFN(casinh)(TYPE complex z)$/;" f
catan src/complex/catan.c /^TYPE complex TGFN(catan)(TYPE complex z)$/;" f
catanh src/complex/catanh.c /^TYPE complex TGFN(catanh)(TYPE complex z)$/;" f
catclose src/nl_types/catclose.c /^int catclose(nl_catd catd)$/;" f
catgets src/nl_types/catgets.c /^char * catgets(nl_catd catd, int set_id, int msg_id, const char * s)$/;" f
catopen src/nl_types/catopen.c /^nl_catd catopen(const char* name, int oflag)$/;" f
cbreak src/curses/cbreak.c /^int cbreak(void)$/;" f
cbrt src/math/cbrt.c /^TYPE TGFN(cbrt)(TYPE x)$/;" f
cc_t src/termios/cc_t.c /^typedef int cc_t;$/;" t file:
cchar_t src/curses/cchar_t.c /^typedef wchar_t * cchar_t;$/;" t file:
ccos src/complex/ccos.c /^TYPE complex TGFN(ccos)(TYPE complex z)$/;" f
ccosh src/complex/ccosh.c /^TYPE complex TGFN(ccosh)(TYPE complex z)$/;" f
ceil src/math/ceil.c /^TYPE TGFN(ceil)(TYPE x)$/;" f
ceol_standout_glitch src/term/ceol_standout_glitch.c 3;" d file:
cexp src/complex/cexp.c /^TYPE complex TGFN(cexp)(TYPE complex z)$/;" f
cfgetispeed src/termios/cfgetispeed.c /^speed_t cfgetispeed(const struct termios *termios_p)$/;" f
cfgetospeed src/termios/cfgetospeed.c /^speed_t cfgetospeed(const struct termios *termios_p)$/;" f
cfsetispeed src/termios/cfsetispeed.c /^int cfsetispeed(struct termios *termios_p, speed_t speed)$/;" f
cfsetospeed src/termios/cfsetospeed.c /^int cfsetospeed(struct termios *termios_p, speed_t speed)$/;" f
cgid src/sys/ipc/struct_ipc_perm.c /^ uid_t cgid; \/* Creator's group ID *\/$/;" m struct:ipc_perm file:
change_char_pitch src/term/change_char_pitch.c 3;" d file:
change_line_pitch src/term/change_line_pitch.c 3;" d file:
change_res_horz src/term/change_res_horz.c 3;" d file:
change_res_vert src/term/change_res_vert.c 3;" d file:
change_scroll_region src/term/change_scroll_region.c 3;" d file:
char_padding src/term/char_padding.c 3;" d file:
char_set_names src/term/char_set_names.c 3;" d file:
chdir src/unistd/chdir.c /^int chdir(const char *path)$/;" f
chmod src/sys/stat/chmod.c /^int chmod(const char *path, mode_t mode)$/;" f
chown src/unistd/chown.c /^int chown(const char *path, uid_t owner, gid_t group)$/;" f
chroot src/unistd/chroot.c /^int chroot(const char *path)$/;" f
chtype src/curses/chtype.c /^typedef unsigned int chtype;$/;" t file:
cimag src/complex/cimag.c /^TYPE TGFN(cimag)(TYPE complex z)$/;" f
clear_all_tabs src/term/clear_all_tabs.c 3;" d file:
clear_margins src/term/clear_margins.c 3;" d file:
clear_screen src/term/clear_screen.c 3;" d file:
clearerr src/stdio/clearerr.c /^void clearerr(FILE * stream)$/;" f
clearok src/curses/clearok.c /^int clearok(WINDOW * win, bool bf)$/;" f
clock src/time/clock.c /^clock_t clock(void)$/;" f
clock_getres src/time/clock_getres.c /^int clock_getres(clockid_t clock_id, struct timespec *res)$/;" f
clock_gettime src/time/clock_gettime.c /^int clock_gettime(clockid_t clock_id, struct timespec *tp)$/;" f
clock_settime src/time/clock_settime.c /^int clock_settime(clockid_t clock_id, const struct timespec *tp)$/;" f
clock_t src/time/clock_t.c /^typedef long int clock_t;$/;" t file:
clockid_t src/sys/types/clockid_t.c /^typedef unsigned long int clockid_t;$/;" t file:
clog src/complex/clog.c /^TYPE complex TGFN(clog)(TYPE complex z)$/;" f
close src/stdio/fclose.c 9;" d file:
close src/unistd/close.c /^int close(int fildes)$/;" f
closedir src/dirent/closedir.c /^int closedir(DIR *dirp)$/;" f
closelog src/syslog/closelog.c /^void closelog(void)$/;" f
clr_bol src/term/clr_bol.c 3;" d file:
clr_eol src/term/clr_eol.c 3;" d file:
clr_eos src/term/clr_eos.c 3;" d file:
cnd_broadcast src/threads/cnd_broadcast.c /^int cnd_broadcast(cnd_t *cond)$/;" f
cnd_destroy src/threads/cnd_destroy.c /^void cnd_destroy(cnd_t *cond)$/;" f
cnd_init src/threads/cnd_init.c /^int cnd_init(cnd_t *cond)$/;" f
cnd_signal src/threads/cnd_signal.c /^int cnd_signal(cnd_t *cond)$/;" f
cnd_t src/threads/cnd_t.c /^typedef \/* same as pthread_cond_t *\/ cnd_t;$/;" t file:
cnd_timedwait src/threads/cnd_timedwait.c /^int cnd_timedwait(cnd_t *restrict cond, mtx_t *restrict mtx, const struct timespec *restrict ts)$/;" f
cnd_wait src/threads/cnd_wait.c /^int cnd_wait(cnd_t *cond, mtx_t *mtx)$/;" f
code_set_init src/term/code_set_init.c 3;" d file:
col_addr_glitch src/term/col_addr_glitch.c 3;" d file:
color_content src/curses/color_content.c /^int color_content(short color, short * red, short * green, short * blue)$/;" f
color_names src/term/color_names.c 3;" d file:
column_address src/term/column_address.c 3;" d file:
columns src/term/columns.c 3;" d file:
command_character src/term/command_character.c 3;" d file:
compile src/regexp/compile.c /^char *compile(char *instring, char *expbuf, const char *endbuf, int eof)$/;" f
compl src/iso646/compl.c 5;" d file:
complex src/complex/complex.c 2;" d file:
confstr src/unistd/confstr.c /^size_t confstr(int name, char *buf, size_t len)$/;" f
conj src/complex/conj.c /^TYPE complex TGFN(conj)(TYPE complex z)$/;" f
copysign src/math/atan2.c 11;" d file:
copysign src/math/copysign.c /^TYPE TGFN(copysign)(TYPE x, TYPE y)$/;" f
copysign src/math/modf.c 7;" d file:
copywin src/curses/copywin.c /^int copywin(const WINDOW * srcwin, WINDOW * dstwin, int sminrow, int smincol, int dminrow, int dmincol, int dmaxrow, int dmaxcol, int overlay)$/;" f
cos src/math/cos.c /^TYPE TGFN(cos)(TYPE x)$/;" f
cosh src/math/cosh.c /^TYPE TGFN(cosh)(TYPE x)$/;" f
cpi_change_res src/term/cpi_change_res.c 3;" d file:
cpow src/complex/cpow.c /^TYPE complex TGFN(cpow)(TYPE complex x, TYPE complex y)$/;" f
cproj src/complex/cproj.c /^TYPE complex TGFN(cproj)(TYPE complex z)$/;" f
cr_cancles_micro_mode src/term/cr_cancles_micro_mode.c 3;" d file:
creal src/complex/creal.c /^TYPE TGFN(creal)(TYPE complex z)$/;" f
creat src/fcntl/creat.c /^int creat(const char *path, mode_t mode)$/;" f
create_window src/term/create_window.c 3;" d file:
crypt src/unistd/crypt.c /^char * crypt( const char *key, const char *salt)$/;" f
csin src/complex/csin.c /^TYPE complex TGFN(csin)(TYPE complex z)$/;" f
csinh src/complex/csinh.c /^TYPE complex TGFN(csinh)(TYPE complex z)$/;" f
csqrt src/complex/csqrt.c /^TYPE complex TGFN(csqrt)(TYPE complex z)$/;" f
ctan src/complex/ctan.c /^TYPE complex TGFN(ctan)(TYPE complex z)$/;" f
ctanh src/complex/ctanh.c /^TYPE complex TGFN(ctanh)(TYPE complex z)$/;" f
ctermid src/unistd/ctermid.c /^char * ctermid(char * s)$/;" f
ctime src/time/ctime.c /^char * ctime(const time_t * timer)$/;" f
ctlbuf src/stropts/struct_strfdinsert.c /^ struct strbuf ctlbuf;$/;" m struct:strfdinsert typeref:struct:strfdinsert::strbuf file:
cuid src/sys/ipc/struct_ipc_perm.c /^ uid_t cuid; \/* Creator's user ID *\/$/;" m struct:ipc_perm file:
cur_term src/term/cur_term.c /^TERMINAL * cur_term;$/;" v
currency_symbol src/locale/struct_lconv.c /^ char *currency_symbol; \/* "" *\/$/;" m struct:lconv file:
curs_set src/curses/curs_set.c /^int curs_set(int visibility)$/;" f
curscr src/curses/curscr.c /^SCREEN *curscr;$/;" v
cursor_address src/term/cursor_address.c 3;" d file:
cursor_down src/term/cursor_down.c 3;" d file:
cursor_home src/term/cursor_home.c 3;" d file:
cursor_invisible src/term/cursor_invisible.c 3;" d file:
cursor_left src/term/cursor_left.c 3;" d file:
cursor_mem_address src/term/cursor_mem_address.c 3;" d file:
cursor_normal src/term/cursor_normal.c 3;" d file:
cursor_right src/term/cursor_right.c 3;" d file:
cursor_to_ll src/term/cursor_to_ll.c 3;" d file:
cursor_up src/term/cursor_up.c 3;" d file:
cursor_visible src/term/cursor_visible.c 3;" d file:
cuserid src/unistd/cuserid.c /^char *cuserid(char *s)$/;" f
d_ino src/dirent/struct_dirent.c /^ ino_t d_ino;$/;" m struct:dirent file:
d_name src/dirent/struct_dirent.c /^ char d_name[];$/;" m struct:dirent file:
data src/search/ENTRY.c /^ void * data;$/;" m struct:__anon3 file:
databuf src/stropts/struct_strfdinsert.c /^ struct strbuf databuf;$/;" m struct:strfdinsert typeref:struct:strfdinsert::strbuf file:
datum src/ndbm/datum.c /^} datum;$/;" t typeref:struct:__anon6 file:
daylight src/time/daylight.c /^int daylight;$/;" v
dbm_clearerr src/ndbm/dbm_clearerr.c /^int dbm_clearerr(DBM * db)$/;" f
dbm_close src/ndbm/dbm_close.c /^void dbm_close(DBM * db)$/;" f
dbm_delete src/ndbm/dbm_delete.c /^int dbm_delete(DBM * db, datum key)$/;" f
dbm_error src/ndbm/dbm_error.c /^int dbm_error(DBM * db)$/;" f
dbm_fetch src/ndbm/dbm_fetch.c /^datum dbm_fetch(DBM * db, datum key)$/;" f
dbm_firstkey src/ndbm/dbm_firstkey.c /^datum dbm_firstkey(DBM * db)$/;" f
dbm_nextkey src/ndbm/dbm_nextkey.c /^datum dbm_nextkey(DBM * db)$/;" f
dbm_open src/ndbm/dbm_open.c /^DBM *dbm_open(const char * file, int open_flags, mode_t file_mode)$/;" f
dbm_store src/ndbm/dbm_store.c /^int dbm_store(DBM * db, datum key, datum content, int store_mode)$/;" f
decimal_point src/locale/struct_lconv.c /^ char *decimal_point; \/* "." *\/$/;" m struct:lconv file:
def_prog_mode src/curses/def_prog_mode.c /^int def_prog_mode(void)$/;" f
def_shell_mode src/curses/def_shell_mode.c /^int def_shell_mode(void)$/;" f
define_bit_image_region src/term/define_bit_image_region.c 3;" d file:
define_char src/term/define_char.c 3;" d file:
del_curterm src/term/del_curterm.c /^int del_curterm(TERMINAL * oterm)$/;" f
delay_output src/curses/delay_output.c /^int delay_output(int ms)$/;" f
delete_character src/term/delete_character.c 3;" d file:
delete_line src/term/delete_line.c 3;" d file:
delscreen src/curses/delscreen.c /^void delscreen(SCREEN * sp)$/;" f
delwin src/curses/delwin.c /^void delwin(WINDOW * win)$/;" f
derwin src/curses/derwin.c /^WINDOW * derwin(WINDOW * orig, int nlines, int ncols, int begin_y, int begin_x)$/;" f
dest_tabs_magic_smso src/term/dest_tabs_magic_smso.c 3;" d file:
dev_t src/sys/types/dev_t.c /^ dev_t;$/;" t file:
device_type src/term/device_type.c 3;" d file:
dial_phone src/term/dial_phone.c 3;" d file:
difftime src/time/difftime.c /^double difftime(time_t time1, time_t time0)$/;" f
dirent src/dirent/struct_dirent.c /^struct dirent {$/;" s file:
dirname src/libgen/dirname.c /^char * dirname(char * path)$/;" f
dis_status_line src/term/dis_status_line.c 3;" d file:
display_clock src/term/display_clock.c 3;" d file:
display_pc_char src/term/display_pc_char.c 3;" d file:
div src/stdlib/div.c /^div_t div(int numer, int denom)$/;" f
div_t src/stdlib/div_t.c /^} div_t;$/;" t typeref:struct:__anon14 file:
dot_horz_spacing src/term/dot_horz_spacing.c 3;" d file:
dot_vert_spacing src/term/dot_vert_spacing.c 3;" d file:
double_t src/math/double_t.c /^typedef double double_t;$/;" t file:
double_t src/math/double_t.c /^typedef long double double_t;$/;" t file:
doupdate src/curses/doupdate.c /^int doupdate(void)$/;" f
down_half_line src/term/down_half_line.c 3;" d file:
dptr src/ndbm/datum.c /^ void * dptr;$/;" m struct:__anon6 file:
drand48 src/stdlib/drand48.c /^double drand48(void)$/;" f
dsize src/ndbm/datum.c /^ size_t dsize;$/;" m struct:__anon6 file:
dstflag src/sys/timeb/struct_timeb.c /^ short dstflag;$/;" m struct:timeb file:
dup src/unistd/dup.c /^int dup(int fildes)$/;" f
dup2 src/unistd/dup2.c /^int dup2(int fildes, int fildes2)$/;" f
dupwin src/curses/dupwin.c /^WINDOW * dupwin(WINDOW * win)$/;" f
eat_newline_glitch src/term/eat_newline_glitch.c 3;" d file:
echo src/curses/echo.c /^int echo(void)$/;" f
ecvt src/stdlib/ecvt.c /^char *ecvt(double value, int ndigit, int *decpt, int *sign)$/;" f
ena_acs src/term/ena_acs.c 3;" d file:
encrypt src/unistd/encrypt.c /^void encrypt(char block[64], int edflag)$/;" f
end_bit_image_region src/term/end_bit_image_region.c 3;" d file:
endgrent src/grp/endgrent.c /^void endgrent(void)$/;" f
endorder src/search/VISIT.c /^ endorder,$/;" e enum:__anon4 file:
endpwent src/pwd/endpwent.c /^void endpwent(void)$/;" f
endutxent src/utmpx/endutxent.c /^void endutxent(void)$/;" f
endwin src/curses/endwin.c /^int endwin(void)$/;" f
enter_alt_charset_mode src/term/enter_alt_charset_mode.c 3;" d file:
enter_am_mode src/term/enter_am_mode.c 3;" d file:
enter_blink_mode src/term/enter_blink_mode.c 3;" d file:
enter_bold_mode src/term/enter_bold_mode.c 3;" d file:
enter_ca_mode src/term/enter_ca_mode.c 3;" d file:
enter_delete_mode src/term/enter_delete_mode.c 3;" d file:
enter_dim_mode src/term/enter_dim_mode.c 3;" d file:
enter_doublewide_mode src/term/enter_doublewide_mode.c 3;" d file:
enter_draft_quality src/term/enter_draft_quality.c 3;" d file:
enter_horizontal_hl_mode src/term/enter_horizontal_hl_mode.c 3;" d file:
enter_insert_mode src/term/enter_insert_mode.c 3;" d file:
enter_italics_mode src/term/enter_italics_mode.c 3;" d file:
enter_left_hl_mode src/term/enter_left_hl_mode.c 3;" d file:
enter_leftward_mode src/term/enter_leftward_mode.c 3;" d file:
enter_low_hl_mode src/term/enter_low_hl_mode.c 3;" d file:
enter_micro_code src/term/enter_micro_code.c 3;" d file:
enter_near_letter_quality src/term/enter_near_letter_quality.c 3;" d file:
enter_normal_quality src/term/enter_normal_quality.c 3;" d file:
enter_pc_charset_mode src/term/enter_pc_charset_mode.c 3;" d file:
enter_protected_mode src/term/enter_protected_mode.c 3;" d file:
enter_reverse_mode src/term/enter_reverse_mode.c 3;" d file:
enter_right_hl_mode src/term/enter_right_hl_mode.c 3;" d file:
enter_scancode_mode src/term/enter_scancode_mode.c 3;" d file:
enter_secure_mode src/term/enter_secure_mode.c 3;" d file:
enter_shadow_mode src/term/enter_shadow_mode.c 3;" d file:
enter_standout_mode src/term/enter_standout_mode.c 3;" d file:
enter_subscript_mode src/term/enter_subscript_mode.c 3;" d file:
enter_superscript_mode src/term/enter_superscript_mode.c 3;" d file:
enter_top_hl_mode src/term/enter_top_hl_mode.c 3;" d file:
enter_underline_mode src/term/enter_underline_mode.c 3;" d file:
enter_upward_mode src/term/enter_upward_mode.c 3;" d file:
enter_vertical_hl_mode src/term/enter_vertical_hl_mode.c 3;" d file:
enter_xon_mode src/term/enter_xon_mode.c 3;" d file:
environ src/environ.c /^char **environ;$/;" v
erand48 src/stdlib/erand48.c /^double erand48(unsigned short xsubi[3])$/;" f
erase_chars src/term/erase_chars.c 3;" d file:
erase_overstrick src/term/erase_overstrick.c 3;" d file:
erasechar src/curses/erasechar.c /^char erasechar(void)$/;" f
erasewchar src/curses/erasewchar.c /^int erasewchar(wchar_t * ch)$/;" f
erf src/math/erf.c /^TYPE TGFN(erf)(TYPE x)$/;" f
erfc src/math/erfc.c /^TYPE TGFN(erfc)(TYPE x)$/;" f
errno src/errno/errno.c 2;" d file:
events src/poll/struct_pollfd.c /^ short events;$/;" m struct:pollfd file:
execl src/unistd/execl.c /^int execl(const char *path, const char *arg0, ... \/*, (char *)0 *\/)$/;" f
execle src/unistd/execle.c /^int execle(const char *path, const char *arg0, ... \/*, (char *)0, char *const envp[] *\/)$/;" f
execlp src/unistd/execlp.c /^int execlp(const char *file, const char *arg0, ... \/*, (char *0) *\/)$/;" f
execv src/unistd/execv.c /^int execv(const char *path, char *const argv[])$/;" f
execve src/unistd/execve.c /^int execve(const char *path, char *const argv[], char *const envp[])$/;" f
execvp src/unistd/execvp.c /^int execvp(const char *file, char *const argv[])$/;" f
exit src/stdlib/exit.c /^_Noreturn void exit(int status)$/;" f
exit_alt_charset_mode src/term/exit_alt_charset_mode.c 3;" d file:
exit_am_mode src/term/exit_am_mode.c 3;" d file:
exit_attribute_mode src/term/exit_attribute_mode.c 3;" d file:
exit_ca_mode src/term/exit_ca_mode.c 3;" d file:
exit_delete_mode src/term/exit_delete_mode.c 3;" d file:
exit_doublewide_mode src/term/exit_doublewide_mode.c 3;" d file:
exit_insert_mode src/term/exit_insert_mode.c 3;" d file:
exit_italics_mode src/term/exit_italics_mode.c 3;" d file:
exit_leftword_mode src/term/exit_leftword_mode.c 3;" d file:
exit_micro_mode src/term/exit_micro_mode.c 3;" d file:
exit_pc_charset_mode src/term/exit_pc_charset_mode.c 3;" d file:
exit_scancode_mode src/term/exit_scancode_mode.c 3;" d file:
exit_shadow_mode src/term/exit_shadow_mode.c 3;" d file:
exit_standout_mode src/term/exit_standout_mode.c 3;" d file:
exit_subscript_mode src/term/exit_subscript_mode.c 3;" d file:
exit_superscript_mode src/term/exit_superscript_mode.c 3;" d file:
exit_underline_mode src/term/exit_underline_mode.c 3;" d file:
exit_upward_mode src/term/exit_upward_mode.c 3;" d file:
exit_xon_mode src/term/exit_xon_mode.c 3;" d file:
exp src/math/exp.c /^TYPE TGFN(exp)(TYPE x)$/;" f
exp2 src/math/exp2.c /^TYPE TGFN(exp2)(TYPE x)$/;" f
expm1 src/math/expm1.c /^TYPE TGFN(expm1)(TYPE x)$/;" f
f_bavail src/sys/statvfs/struct_statvfs.c /^ fsblkcnt_t f_bavail;$/;" m struct:statvfs file:
f_bfree src/sys/statvfs/struct_statvfs.c /^ fsblkcnt_t f_bfree;$/;" m struct:statvfs file:
f_blocks src/sys/statvfs/struct_statvfs.c /^ fsblkcnt_t f_blocks;$/;" m struct:statvfs file:
f_bsize src/sys/statvfs/struct_statvfs.c /^ unsigned long f_bsize;$/;" m struct:statvfs file:
f_favail src/sys/statvfs/struct_statvfs.c /^ fsfilcnt_t f_favail;$/;" m struct:statvfs file:
f_ffree src/sys/statvfs/struct_statvfs.c /^ fsfilcnt_t f_ffree;$/;" m struct:statvfs file:
f_files src/sys/statvfs/struct_statvfs.c /^ fsfilcnt_t f_files;$/;" m struct:statvfs file:
f_flag src/sys/statvfs/struct_statvfs.c /^ unsigned long f_flag;$/;" m struct:statvfs file:
f_frsize src/sys/statvfs/struct_statvfs.c /^ unsigned long f_frsize;$/;" m struct:statvfs file:
f_fsid src/sys/statvfs/struct_statvfs.c /^ unsigned long f_fsid;$/;" m struct:statvfs file:
f_namemax src/sys/statvfs/struct_statvfs.c /^ unsigned long f_namemax;$/;" m struct:statvfs file:
fabs src/math/fabs.c /^TYPE TGFN(fabs)(TYPE x)$/;" f
false src/stdbool/false.c 5;" d file:
fattach src/stropts/fattach.c /^int fattach(int fildes, const char * path )$/;" f
fchdir src/unistd/fchdir.c /^int fchdir(int fildes)$/;" f
fchmod src/sys/stat/fchmod.c /^int fchmod(int fildes, mode_t mode)$/;" f
fchown src/unistd/fchown.c /^int fchown(int fildes, uid_t owner, gid_t group)$/;" f
fclose src/stdio/fclose.c /^int fclose(FILE *stream)$/;" f
fcntl src/fcntl/fcntl.c /^int fcntl(int fildes, int cmd, ...)$/;" f
fcvt src/stdlib/fcvt.c /^char *fcvt(double value, int ndigit, int *decpt, int *sign)$/;" f
fd src/poll/struct_pollfd.c /^ int fd;$/;" m struct:pollfd file:
fd src/stropts/struct_strrecvfd.c /^ int fd;$/;" m struct:strrecvfd file:
fd_set src/sys/time/fd_set.c /^} fd_set;$/;" t typeref:struct:__anon1 file:
fdatasync src/unistd/fdatasync.c /^int fdatasync(int fildes)$/;" f
fdetach src/stropts/fdetach.c /^int fdetach(const char * path )$/;" f
fdim src/math/fdim.c /^TYPE TGFN(fdim)(TYPE x, TYPE y)$/;" f
fdopen src/stdio/fdopen.c /^FILE * fdopen(int fildes, const char * mode)$/;" f
fds_bits src/sys/time/fd_set.c /^ long fds_bits[];$/;" m struct:__anon1 file:
feclearexcept src/fenv/feclearexcept.c /^int feclearexcept(int excepts)$/;" f
fegetenv src/fenv/fegetenv.c /^int fegetenv(fenv_t *envp)$/;" f
fegetexceptflag src/fenv/fegetexceptflag.c /^int fegetexceptflag(fexcept_t *flagp, int excepts)$/;" f
fegetround src/fenv/fegetround.c /^int fegetround(void)$/;" f
feholdexcept src/fenv/feholdexcept.c /^int feholdexcept(fenv_t *envp)$/;" f
fenv_t src/fenv/fenv_t.c /^typedef unsigned long long int fenv_t;$/;" t file:
feof src/stdio/feof.c /^int feof(FILE *stream)$/;" f
feraiseexcept src/fenv/feraiseexcept.c /^int feraiseexcept(int excepts)$/;" f
ferror src/stdio/ferror.c /^int ferror(FILE *stream)$/;" f
fesetenv src/fenv/fesetenv.c /^int fesetenv(const fenv_t *envp)$/;" f
fesetexceptflag src/fenv/fesetexceptflag.c /^int fesetexceptflag(const fexcept_t *flagp, int excepts)$/;" f
fesetround src/fenv/fesetround.c /^int fesetround(int round)$/;" f
fetestexcept src/fenv/fetestexcept.c /^int fetestexcept(int excepts)$/;" f
feupdateenv src/fenv/feupdateenv.c /^int feupdateenv(const fenv_t *envp)$/;" f
fexcept_t src/fenv/fexcept_t.c /^typedef unsigned long long int fexcept_t;$/;" t file:
fflush src/stdio/fflush.c /^int fflush(FILE *stream)$/;" f
ffs src/strings/ffs.c /^int ffs(int i)$/;" f
fgetc src/stdio/fgetc.c /^int fgetc(FILE *stream)$/;" f
fgetpos src/stdio/fgetpos.c /^int fgetpos(FILE * restrict stream, fpos_t * restrict pos)$/;" f
fgets src/stdio/fgets.c /^char * fgets(char * restrict s, int n, FILE * restrict stream)$/;" f
fgetwc src/wchar/fgetwc.c /^wint_t fgetwc(FILE * stream)$/;" f
fgetws src/wchar/fgetws.c /^wchar_t * fgetws(wchar_t * restrict s, int n, FILE * restrict stream)$/;" f
fildes src/stropts/struct_strfdinsert.c /^ int fildes;$/;" m struct:strfdinsert file:
fileno src/stdio/fileno.c /^int fileno(FILE * stream)$/;" f
filter src/curses/filter.c /^void filter(void)$/;" f
fixed_pause src/term/fixed_pause.c 3;" d file:
flags src/stropts/struct_strfdinsert.c /^ long flags;$/;" m struct:strfdinsert file:
flash src/curses/flash.c /^int flash(void)$/;" f
flash_hook src/term/flash_hook.c 3;" d file:
flash_screen src/term/flash_screen.c 3;" d file:
float_t src/math/float_t.c /^typedef double float_t;$/;" t file:
float_t src/math/float_t.c /^typedef float float_t;$/;" t file:
float_t src/math/float_t.c /^typedef long double float_t;$/;" t file:
flock src/fcntl/struct_flock.c /^struct flock {$/;" s file:
flockfile src/stdio/flockfile.c /^void flockfile(FILE * file)$/;" f
floor src/math/floor.c /^TYPE TGFN(floor)(TYPE x)$/;" f
flushinp src/curses/flushinp.c /^int flushinp(void)$/;" f
fma src/math/fma.c /^TYPE TGFN(fma)(TYPE x, TYPE y, TYPE z)$/;" f
fmax src/math/fmax.c /^TYPE TGFN(fmax)(TYPE x, TYPE y)$/;" f
fmin src/math/fmin.c /^TYPE TGFN(fmin)(TYPE x, TYPE y)$/;" f
fmod src/math/fmod.c /^TYPE TGFN(fmod)(TYPE x, TYPE y)$/;" f
fmtmsg src/fmtmsg/fmtmsg.c /^int fmtmsg(long classification, const char * label, int severity, const char * text, const char * action, const char * tag)$/;" f
fnmatch src/fnmatch/fnmatch.c /^int fnmatch(const char * pattern, const char * string, int flags)$/;" f
fopen src/stdio/fopen.c /^FILE * fopen(const char * restrict filename, const char * restrict mode)$/;" f
fork src/unistd/fork.c /^pid_t fork(void)$/;" f
form_feed src/term/form_feed.c 3;" d file:
fpathconf src/unistd/fpathconf.c /^long fpathconf(int fildes, int name)$/;" f
fpclassify src/math/fpclassify.c 3;" d file:
fpos_t src/stdio/fpos_t.c /^typedef struct __fpos_t * fpos_t;$/;" t typeref:struct:__fpos_t file:
fprintf src/stdio/fprintf.c /^int fprintf(FILE * restrict stream, const char * restrict format, ...)$/;" f
fputc src/stdio/fputc.c /^int fputc(int c, FILE *stream)$/;" f
fputs src/stdio/fputs.c /^int fputs(const char * restrict s, FILE * restrict stream)$/;" f
fputwc src/wchar/fputwc.c /^wint_t fputwc(wchar_t c, FILE * stream)$/;" f
fputws src/wchar/fputws.c /^int fputws(const wchar_t * restrict s, FILE * restrict stream)$/;" f
frac_digits src/locale/struct_lconv.c /^ char frac_digits; \/* CHAR_MAX *\/$/;" m struct:lconv file:
fread src/stdio/fread.c /^size_t fread(void * restrict ptr, size_t size, size_t nmemb, FILE * restrict stream)$/;" f
free src/stdlib/free.c /^void free(void * ptr)$/;" f
freopen src/stdio/freopen.c /^FILE * freopen(const char * restrict filename, const char * restrict mode, FILE * restrict stream)$/;" f
frexp src/math/frexp.c /^TYPE TGFN(frexp)(TYPE value, int *exp)$/;" f
from_status_line src/term/from_status_line.c 3;" d file:
fsblkcnt_t src/sys/statvfs/fstatvfs.c /^typedef int fsblkcnt_t;$/;" t file:
fsblkcnt_t src/sys/statvfs/statvfs.c /^typedef int fsblkcnt_t;$/;" t file:
fscanf src/stdio/fscanf.c /^int fscanf(FILE * restrict stream, const char * restrict format, ...)$/;" f
fseek src/stdio/fseek.c /^int fseek(FILE *stream, long int offset, int whence)$/;" f
fsetpos src/stdio/fsetpos.c /^int fsetpos(FILE *stream, const fpos_t *pos)$/;" f
fsfilcnt_t src/sys/statvfs/fstatvfs.c /^typedef int fsfilcnt_t;$/;" t file:
fsfilcnt_t src/sys/statvfs/statvfs.c /^typedef int fsfilcnt_t;$/;" t file:
fstat src/sys/stat/fstat.c /^int fstat(int fildes, struct stat *buf)$/;" f
fstatvfs src/sys/statvfs/fstatvfs.c /^int fstatvfs(int fildes, struct statvfs *buf)$/;" f
fsync src/unistd/fsync.c /^int fsync(int fildes)$/;" f
ftell src/stdio/ftell.c /^long int ftell(FILE *stream)$/;" f
ftime src/sys/timeb/ftime.c /^int ftime(struct timeb *tp)$/;" f
ftok src/sys/ipc/ftok.c /^key_t ftok(const char *path, int id)$/;" f
ftruncate src/unistd/ftruncate.c /^int ftruncate(int fildes, off_t length)$/;" f
ftw src/ftw/ftw.c /^int ftw(const char * path, int (*fn) (const char *, const struct stat * ptr, int flag), int ndirs)$/;" f
funlockfile src/stdio/funlockfile.c /^void funlockfile(FILE * file)$/;" f
fwide src/wchar/fwide.c /^int fwide(FILE * stream, int mode)$/;" f
fwprintf src/wchar/fwprintf.c /^int fwprintf(FILE * restrict stream, const wchar_t * restrict format, ...)$/;" f
fwrite src/stdio/fwrite.c /^size_t fwrite(const void * restrict ptr, size_t size, size_t nmemb, FILE * restrict stream)$/;" f
fwscanf src/wchar/fwscanf.c /^int fwscanf(FILE * restrict stream, const wchar_t * restrict format, ...)$/;" f
gamma src/math/gamma.c /^double gamma(double x)$/;" f
gcvt src/stdlib/gcvt.c /^char *gcvt(double value, int ndigit, char *buf)$/;" f
generic_type src/term/generic_type.c 3;" d file:
get_mouse src/term/get_mouse.c 3;" d file:
getbegyx src/curses/getbegyx.c 2;" d file:
getbkgd src/curses/getbkgd.c /^chtype getbkgd(WINDOW * win)$/;" f
getc src/stdio/getc.c /^int getc(FILE *stream)$/;" f
getc_unlocked src/stdio/fgetc.c 5;" d file:
getc_unlocked src/stdio/fgetc.c 6;" d file:
getc_unlocked src/stdio/getc_unlocked.c /^int getc_unlocked(FILE * stream)$/;" f
getcchar src/curses/getcchar.c /^int getcchar(const cchar_t * wcval, wchar_t * wch, attr_t * attrs, short * color_pair, void * opts)$/;" f
getchar src/stdio/getchar.c /^int getchar(void)$/;" f
getchar_unlocked src/stdio/getchar_unlocked.c /^int getchar_unlocked(void)$/;" f
getcontext src/ucontext/getcontext.c /^int getcontext(ucontext_t *ucp)$/;" f
getcwd src/unistd/getcwd.c /^char * getcwd(char *buf, size_t size)$/;" f
getdate src/time/getdate.c /^struct tm *getdate(const char *string)$/;" f
getdate_err src/time/getdate_err.c /^int getdate_err;$/;" v
getdtablesize src/unistd/getdtablesize.c /^int getdtablesize(void)$/;" f
getegid src/unistd/getegid.c /^gid_t getegid(void)$/;" f
getenv src/stdlib/getenv.c /^char * getenv(const char * name)$/;" f
geteuid src/unistd/geteuid.c /^uid_t geteuid(void)$/;" f
getgid src/unistd/getgid.c /^gid_t getgid(void)$/;" f
getgrent src/grp/__grp.c 4;" d file:
getgrent src/grp/__grp.c 5;" d file:
getgrent src/grp/getgrent.c /^struct group * getgrent(void)$/;" f file:
getgrgid src/grp/getgrgid.c /^struct group * getgrgid(gid_t gid)$/;" f
getgrnam src/grp/getgrnam.c /^struct group * getgrnam(const char * name)$/;" f
getgroups src/unistd/getgroups.c /^int getgroups(int gidsetsize, gid_t grouplist[])$/;" f
gethostid src/unistd/gethostid.c /^long gethostid(void)$/;" f
getitimer src/sys/time/getitimer.c /^int getitimer(int which, struct itimerval *value)$/;" f
getlogin src/unistd/getlogin.c /^char * getlogin(void)$/;" f
getmaxyx src/curses/getmaxyx.c 2;" d file:
getmsg src/stropts/getmsg.c /^int getmsg(int fd , struct strbuf * ctlptr , struct strbuf * dataptr , int * flagsp )$/;" f
getopt src/unistd/getopt.c /^int getopt(int argc, char * const argv[], const char *optstring)$/;" f
getpagesize src/unistd/getpagesize.c /^int getpagesize(void)$/;" f
getparyx src/curses/getparyx.c 2;" d file:
getpass src/unistd/getpass.c /^char *getpass(const char *prompt)$/;" f
getpgid src/sys/wait/waitpid.c 14;" d file:
getpgid src/unistd/getpgid.c /^pid_t getpgid(pid_t pid)$/;" f
getpgrp src/unistd/getpgrp.c /^pid_t getpgrp(void)$/;" f
getpid src/signal/raise.c 7;" d file:
getpid src/unistd/getpid.c /^pid_t getpid(void)$/;" f
getpmsg src/stropts/getpmsg.c /^int getpmsg(int fd , struct strbuf * ctlptr , struct strbuf * dataptr , int * bandp , int * flagsp )$/;" f
getppid src/unistd/getppid.c /^pid_t getppid(void)$/;" f
getpriority src/sys/resource/getpriority.c /^int getpriority(int which, id_t who)$/;" f
getpwent src/pwd/__pwd.c 4;" d file:
getpwent src/pwd/__pwd.c 5;" d file:
getpwent src/pwd/getpwent.c /^struct passwd * getpwent(void)$/;" f file:
getpwnam src/pwd/getpwnam.c /^struct passwd * getpwnam(const char * name)$/;" f
getpwuid src/pwd/getpwuid.c /^struct passwd * getpwuid(uid_t uid)$/;" f
getrlimit src/sys/resource/getrlimit.c /^int getrlimit(int resource, struct rlimit *rlp)$/;" f
getrusage src/sys/resource/getrusage.c /^int getrusage(int who, struct rusage *r_usage)$/;" f
gets src/stdio/gets.c /^char * gets(char *s)$/;" f
getsid src/unistd/getsid.c /^pid_t getsid(pid_t pid)$/;" f
getsubopt src/stdlib/getsubopt.c /^int getsubopt(char ** optionp, char * const * keylistp, char ** valuep)$/;" f
gettimeofday src/sys/time/gettimeofday.c /^int gettimeofday(struct timeval *restrict tp, void *restrict tzp)$/;" f
getuid src/unistd/getuid.c /^uid_t getuid(void)$/;" f
getutxent src/utmpx/getutxent.c /^struct utmpx * getutxent(void)$/;" f
getutxid src/utmpx/getutxid.c /^struct utmpx * getutxid(const struct utmpx *id)$/;" f
getutxline src/utmpx/getutxline.c /^struct utmpx * getutxline(const struct utmpx *line)$/;" f
getw src/stdio/getw.c /^int getw(FILE *stream)$/;" f
getwc src/wchar/getwc.c /^wint_t getwc(FILE * stream)$/;" f
getwchar src/wchar/getwchar.c /^wint_t getwchar(void)$/;" f
getwd src/unistd/getwd.c /^char *getwd(char *path_name)$/;" f
getwin src/curses/getwin.c /^WINDOW * getwin(FILE * filep)$/;" f
getyx src/curses/getyx.c 2;" d file:
gid src/stropts/struct_strrecvfd.c /^ gid_t gid;$/;" m struct:strrecvfd file:
gid src/sys/ipc/struct_ipc_perm.c /^ gid_t gid; \/* Owner's group ID *\/$/;" m struct:ipc_perm file:
gid_t src/sys/types/gid_t.c /^ gid_t;$/;" t file:
gl_offs src/glob/glob_t.c /^ size_t gl_offs;$/;" m struct:__anon11 file:
gl_pathc src/glob/glob_t.c /^ size_t gl_pathc;$/;" m struct:__anon11 file:
gl_pathv src/glob/glob_t.c /^ char ** gl_pathv;$/;" m struct:__anon11 file:
glob src/glob/glob.c /^int glob(const char * restrict pattern, int flags, int (*errfunc) (const char * epath, int eerrno), glob_t * restrict pglob)$/;" f
glob_t src/glob/glob_t.c /^} glob_t;$/;" t typeref:struct:__anon11 file:
globfree src/glob/globfree.c /^void globfree(glob_t * pglob)$/;" f
gmtime src/time/gmtime.c /^struct tm * gmtime(const time_t * timer)$/;" f
goto_window src/term/goto_window.c 3;" d file:
gr_gid src/grp/struct_group.c /^ gid_t gr_gid;$/;" m struct:group file:
gr_mem src/grp/struct_group.c /^ char ** gr_mem;$/;" m struct:group file:
gr_name src/grp/struct_group.c /^ char * gr_name;$/;" m struct:group file:
grantpt src/stdlib/grantpt.c /^int grantpt(int fildes)$/;" f
group src/grp/struct_group.c /^struct group {$/;" s file:
grouping src/locale/struct_lconv.c /^ char *grouping; \/* "" *\/$/;" m struct:lconv file:
halfdelay src/curses/halfdelay.c /^int halfdelay(int tenths)$/;" f
hangup src/term/hangup.c 3;" d file:
hard_copy src/term/hard_copy.c 3;" d file:
hard_cursor src/term/hard_cursor.c 3;" d file:
has_colors src/curses/has_colors.c /^bool has_colors(void)$/;" f
has_ic src/curses/has_ic.c /^bool has_ic(void)$/;" f
has_il src/curses/has_il.c /^bool has_il(void)$/;" f
has_meta_key src/term/has_meta_key.c 3;" d file:
has_print_wheel src/term/has_print_wheel.c 3;" d file:
has_status_line src/term/has_status_line.c 3;" d file:
hcreate src/search/hcreate.c /^int hcreate(size_t nel)$/;" f
hdestroy src/search/hdestroy.c /^void hdestroy(void)$/;" f
hsearch src/search/hsearch.c /^ENTRY * hsearch(ENTRY item, ACTION action)$/;" f
hue_lightness_saturation src/term/hue_lightness_saturation.c 3;" d file:
hypot src/math/hypot.c /^TYPE TGFN(hypot)(TYPE x, TYPE y)$/;" f
ic_cmd src/stropts/struct_strioctl.c /^ int ic_cmd;$/;" m struct:strioctl file:
ic_dp src/stropts/struct_strioctl.c /^ char *ic_dp;$/;" m struct:strioctl file:
ic_len src/stropts/struct_strioctl.c /^ int ic_len;$/;" m struct:strioctl file:
ic_timeout src/stropts/struct_strioctl.c /^ int ic_timeout;$/;" m struct:strioctl file:
iconv src/iconv/iconv.c /^size_t iconv(iconv_t cd, char ** restrict inbuf, size_t * restrict inbytesleft, char ** restrict outbuf, size_t * restrict outbytesleft)$/;" f
iconv_close src/iconv/iconv_close.c /^int iconv_close(iconv_t cd)$/;" f
iconv_open src/iconv/iconv_open.c /^iconv_t iconv_open(const char * tocode, const char * fromcode)$/;" f
iconv_t src/iconv/iconv_t.c /^typedef unsigned long int iconv_t;$/;" t file:
id_t src/sys/types/id_t.c /^typedef unsigned long long int id_t;$/;" t file:
idcok src/curses/idcok.c /^void idcok(WINDOW * win, bool bf)$/;" f
idlok src/curses/idlok.c /^int idlok(WINDOW * win, bool bf)$/;" f
idtype_t src/sys/wait/idtype_t.c /^} idtype_t;$/;" t typeref:enum:__anon2 file:
ilogb src/math/ilogb.c /^int TGFN(ilogb)(TYPE x)$/;" f
imaginary src/complex/imaginary.c 4;" d file:
imaxabs src/inttypes/imaxabs.c /^intmax_t imaxabs(intmax_t j)$/;" f
imaxdiv src/inttypes/imaxdiv.c /^imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom)$/;" f
imaxdiv_t src/inttypes/imaxdiv_t.c /^} imaxdiv_t;$/;" t typeref:struct:__anon10 file:
immedok src/curses/immedok.c /^void immedok(WINDOW * win, bool bf)$/;" f
index src/strings/index.c /^char *index(const char *s, int c)$/;" f
init_1string src/term/init_1string.c 3;" d file:
init_2string src/term/init_2string.c 3;" d file:
init_3string src/term/init_3string.c 3;" d file:
init_color src/curses/init_color.c /^int init_color(short color, short red, short green, short blue)$/;" f
init_file src/term/init_file.c 3;" d file:
init_pair src/curses/init_pair.c /^int init_pair(short pai, short f, short b)$/;" f
init_prog src/term/init_prog.c 3;" d file:
init_tabs src/term/init_tabs.c 3;" d file:
initialize_color src/term/initialize_color.c 3;" d file:
initialize_pair src/term/initialize_pair.c 3;" d file:
initscr src/curses/initscr.c /^WINDOW * initscr(void)$/;" f
initstate src/stdlib/initstate.c /^char * initstate(unsigned seed, char * state, size_t size)$/;" f
ino_t src/sys/types/ino_t.c /^ ino_t;$/;" t file:
ins_nwstr src/curses/ins_nwstr.c /^int ins_nwstr(WINDOW * win, const wchar_t * wstr, int n)$/;" f
ins_wch src/curses/ins_wch.c /^int ins_wch(WINDOW * win, const cchar_t * wch)$/;" f
ins_wstr src/curses/ins_wstr.c /^int ins_wstr(WINDOW * win, const wchar_t * wstr)$/;" f
insert_character src/term/insert_character.c 3;" d file:
insert_line src/term/insert_line.c 3;" d file:
insert_null_glitch src/term/insert_null_glitch.c 3;" d file:
insert_padding src/term/insert_padding.c 3;" d file:
insque src/search/insque.c /^void insque(void * element, void * pred)$/;" f
int16_t src/stdint/int16_t.c /^typedef short int int16_t;$/;" t file:
int32_t src/stdint/int32_t.c /^typedef int int32_t;$/;" t file:
int64_t src/stdint/int64_t.c /^typedef long long int int64_t;$/;" t file:
int8_t src/stdint/int8_t.c /^typedef signed char int8_t;$/;" t file:
int_curr_symbol src/locale/struct_lconv.c /^ char *int_curr_symbol; \/* "" *\/$/;" m struct:lconv file:
int_fast16_t src/stdint/int_fast16_t.c /^typedef short int int_fast16_t;$/;" t file:
int_fast32_t src/stdint/int_fast32_t.c /^typedef long int int_fast32_t;$/;" t file:
int_fast64_t src/stdint/int_fast64_t.c /^typedef long long int int_fast64_t;$/;" t file:
int_fast8_t src/stdint/int_fast8_t.c /^typedef signed char int_fast8_t;$/;" t file:
int_frac_digits src/locale/struct_lconv.c /^ char int_frac_digits; \/* CHAR_MAX *\/$/;" m struct:lconv file:
int_least16_t src/stdint/int_least16_t.c /^typedef short int int_least16_t;$/;" t file:
int_least32_t src/stdint/int_least32_t.c /^typedef long int int_least32_t;$/;" t file:
int_least64_t src/stdint/int_least64_t.c /^typedef long long int int_least64_t;$/;" t file:
int_least8_t src/stdint/int_least8_t.c /^typedef signed char int_least8_t;$/;" t file:
int_n_cs_precedes src/locale/struct_lconv.c /^ char int_n_cs_precedes; \/* CHAR_MAX *\/$/;" m struct:lconv file:
int_n_sep_by_space src/locale/struct_lconv.c /^ char int_n_sep_by_space; \/* CHAR_MAX *\/$/;" m struct:lconv file:
int_n_sign_posn src/locale/struct_lconv.c /^ char int_n_sign_posn; \/* CHAR_MAX *\/$/;" m struct:lconv file:
int_p_cs_precedes src/locale/struct_lconv.c /^ char int_p_cs_precedes; \/* CHAR_MAX *\/$/;" m struct:lconv file:
int_p_sep_by_space src/locale/struct_lconv.c /^ char int_p_sep_by_space; \/* CHAR_MAX *\/$/;" m struct:lconv file:
int_p_sign_posn src/locale/struct_lconv.c /^ char int_p_sign_posn; \/* CHAR_MAX *\/$/;" m struct:lconv file:
intmax_t src/inttypes/intmax_t.c /^typedef long long int intmax_t;$/;" t file:
intmax_t src/stdint/intmax_t.c /^typedef long long int intmax_t;$/;" t file:
intptr_t src/stdint/intptr_t.c /^typedef unsigned long int intptr_t;$/;" t file:
intrflush src/curses/intrflush.c /^int intrflush(WINDOW * win, bool bf)$/;" f
ioctl src/stropts/ioctl.c /^int ioctl(int fildes , int request , ... )$/;" f
iov_base src/sys/uio/struct_iovec.c /^ void * iov_base;$/;" m struct:iovec file:
iov_len src/sys/uio/struct_iovec.c /^ size_t iov_len;$/;" m struct:iovec file:
iovec src/sys/uio/struct_iovec.c /^struct iovec {$/;" s file:
ipc_perm src/sys/ipc/struct_ipc_perm.c /^struct ipc_perm {$/;" s file:
is_linetouched src/curses/is_linetouched.c /^bool is_linetouched(WINDOW * win, int line)$/;" f
is_wintouched src/curses/is_wintouched.c /^bool is_wintouched(WINDOW * win)$/;" f
isalnum src/ctype/isalnum.c /^int isalnum(int c)$/;" f
isalpha src/ctype/isalpha.c /^int isalpha(int c)$/;" f
isascii src/ctype/isascii.c /^int isascii(int c)$/;" f
isastream src/stropts/isastream.c /^int isastream(int fildes )$/;" f
isatty src/__main.c 18;" d file:
isatty src/unistd/isatty.c /^int isatty(int fildes)$/;" f
isblank src/ctype/isblank.c /^int isblank(int c)$/;" f
iscntrl src/ctype/iscntrl.c /^int iscntrl(int c)$/;" f
isdigit src/ctype/isdigit.c /^int isdigit(int c)$/;" f
isendwin src/curses/isendwin.c /^bool isendwin(void)$/;" f
isfinite src/math/isfinite.c 3;" d file:
isgraph src/ctype/isgraph.c /^int isgraph(int c)$/;" f
isgreater src/math/isgreater.c 3;" d file:
isgreaterequal src/math/isgreaterequal.c 3;" d file:
isinf src/math/isinf.c 3;" d file:
isless src/math/isless.c 3;" d file:
islessequal src/math/islessequal.c 3;" d file:
islessgreater src/math/islessgreater.c 3;" d file:
islower src/ctype/islower.c /^int islower(int c)$/;" f
isnan src/math/isnan.c 3;" d file:
isnormal src/math/isnormal.c 3;" d file:
isprint src/ctype/isprint.c /^int isprint(int c)$/;" f
ispunct src/ctype/ispunct.c /^int ispunct(int c)$/;" f
isspace src/ctype/isspace.c /^int isspace(int c)$/;" f
isspace src/inttypes/wcstoimax.c 6;" d file:
isspace src/inttypes/wcstoumax.c 6;" d file:
isspace src/wchar/wcstol.c 6;" d file:
isspace src/wchar/wcstoll.c 6;" d file:
isspace src/wchar/wcstoul.c 6;" d file:
isspace src/wchar/wcstoull.c 6;" d file:
isunordered src/math/isunordered.c 3;" d file:
isupper src/ctype/isupper.c /^int isupper(int c)$/;" f
iswalnum src/wctype/iswalnum.c /^int iswalnum(wint_t wc)$/;" f
iswalpha src/wctype/iswalpha.c /^int iswalpha(wint_t wc)$/;" f
iswblank src/wctype/iswblank.c /^int iswblank(wint_t wc)$/;" f
iswcntrl src/wctype/iswcntrl.c /^int iswcntrl(wint_t wc)$/;" f
iswctype src/wctype/iswctype.c /^int iswctype(wint_t wc, wctype_t desc)$/;" f
iswdigit src/wctype/iswdigit.c /^int iswdigit(wint_t wc)$/;" f
iswgraph src/wctype/iswgraph.c /^int iswgraph(wint_t wc)$/;" f
iswlower src/wctype/iswlower.c /^int iswlower(wint_t wc)$/;" f
iswprint src/wctype/iswprint.c /^int iswprint(wint_t wc)$/;" f
iswpunct src/wctype/iswpunct.c /^int iswpunct(wint_t wc)$/;" f
iswspace src/wctype/iswspace.c /^int iswspace(wint_t wc)$/;" f
iswupper src/wctype/iswupper.c /^int iswupper(wint_t wc)$/;" f
iswxdigit src/wctype/iswxdigit.c /^int iswxdigit(wint_t wc)$/;" f
isxdigit src/ctype/isxdigit.c /^int isxdigit(int c)$/;" f
it_interval src/sys/time/struct_itimerval.c /^ struct timeval it_interval;$/;" m struct:itimerval typeref:struct:itimerval::timeval file:
it_interval src/time/struct_itimerspec.c /^ struct timespec it_interval;$/;" m struct:itimerspec typeref:struct:itimerspec::timespec file:
it_value src/sys/time/struct_itimerval.c /^ struct timeval it_value;$/;" m struct:itimerval typeref:struct:itimerval::timeval file:
it_value src/time/struct_itimerspec.c /^ struct timespec it_value;$/;" m struct:itimerspec typeref:struct:itimerspec::timespec file:
itimerspec src/time/struct_itimerspec.c /^struct itimerspec {$/;" s file:
itimerval src/sys/time/struct_itimerval.c /^struct itimerval {$/;" s file:
j0 src/math/j0.c /^double j0(double x)$/;" f
j1 src/math/j1.c /^double j1(double x)$/;" f
jmp_buf src/setjmp/jmp_buf.c /^typedef unsigned long int jmp_buf[32];$/;" t file:
jn src/math/jn.c /^double jn(int n, double x)$/;" f
jrand48 src/stdlib/jrand48.c /^long jrand48(unsigned short xsub[3])$/;" f
key src/search/ENTRY.c /^ char * key;$/;" m struct:__anon3 file:
key_a1 src/term/key_a1.c 3;" d file:
key_a3 src/term/key_a3.c 3;" d file:
key_b2 src/term/key_b2.c 3;" d file:
key_backspace src/term/key_backspace.c 3;" d file:
key_beg src/term/key_beg.c 3;" d file:
key_btab src/term/key_btab.c 3;" d file:
key_c1 src/term/key_c1.c 3;" d file:
key_c3 src/term/key_c3.c 3;" d file:
key_cancel src/term/key_cancel.c 3;" d file:
key_catab src/term/key_catab.c 3;" d file:
key_clear src/term/key_clear.c 3;" d file:
key_close src/term/key_close.c 3;" d file:
key_command src/term/key_command.c 3;" d file:
key_copy src/term/key_copy.c 3;" d file:
key_create src/term/key_create.c 3;" d file:
key_ctab src/term/key_ctab.c 3;" d file:
key_dc src/term/key_dc.c 3;" d file:
key_dl src/term/key_dl.c 3;" d file:
key_down src/term/key_down.c 3;" d file:
key_eic src/term/key_eic.c 3;" d file:
key_end src/term/key_end.c 3;" d file:
key_enter src/term/key_enter.c 3;" d file:
key_eol src/term/key_eol.c 3;" d file:
key_eos src/term/key_eos.c 3;" d file:
key_exit src/term/key_exit.c 3;" d file:
key_f0 src/term/key_f0.c 3;" d file:
key_f1 src/term/key_f1.c 3;" d file:
key_f10 src/term/key_f10.c 3;" d file:
key_f11 src/term/key_f11.c 3;" d file:
key_f12 src/term/key_f12.c 3;" d file:
key_f13 src/term/key_f13.c 3;" d file:
key_f14 src/term/key_f14.c 3;" d file:
key_f15 src/term/key_f15.c 3;" d file:
key_f16 src/term/key_f16.c 3;" d file:
key_f17 src/term/key_f17.c 3;" d file:
key_f18 src/term/key_f18.c 3;" d file:
key_f19 src/term/key_f19.c 3;" d file:
key_f2 src/term/key_f2.c 3;" d file:
key_f20 src/term/key_f20.c 3;" d file:
key_f21 src/term/key_f21.c 3;" d file:
key_f22 src/term/key_f22.c 3;" d file:
key_f23 src/term/key_f23.c 3;" d file:
key_f24 src/term/key_f24.c 3;" d file:
key_f25 src/term/key_f25.c 3;" d file:
key_f26 src/term/key_f26.c 3;" d file:
key_f27 src/term/key_f27.c 3;" d file:
key_f28 src/term/key_f28.c 3;" d file:
key_f29 src/term/key_f29.c 3;" d file:
key_f3 src/term/key_f3.c 3;" d file:
key_f30 src/term/key_f30.c 3;" d file:
key_f31 src/term/key_f31.c 3;" d file:
key_f32 src/term/key_f32.c 3;" d file:
key_f33 src/term/key_f33.c 3;" d file:
key_f34 src/term/key_f34.c 3;" d file:
key_f35 src/term/key_f35.c 3;" d file:
key_f36 src/term/key_f36.c 3;" d file:
key_f37 src/term/key_f37.c 3;" d file:
key_f38 src/term/key_f38.c 3;" d file:
key_f39 src/term/key_f39.c 3;" d file:
key_f4 src/term/key_f4.c 3;" d file:
key_f40 src/term/key_f40.c 3;" d file:
key_f41 src/term/key_f41.c 3;" d file:
key_f42 src/term/key_f42.c 3;" d file:
key_f43 src/term/key_f43.c 3;" d file:
key_f44 src/term/key_f44.c 3;" d file:
key_f45 src/term/key_f45.c 3;" d file:
key_f46 src/term/key_f46.c 3;" d file:
key_f47 src/term/key_f47.c 3;" d file:
key_f48 src/term/key_f48.c 3;" d file:
key_f49 src/term/key_f49.c 3;" d file:
key_f5 src/term/key_f5.c 3;" d file:
key_f50 src/term/key_f50.c 3;" d file:
key_f51 src/term/key_f51.c 3;" d file:
key_f52 src/term/key_f52.c 3;" d file:
key_f53 src/term/key_f53.c 3;" d file:
key_f54 src/term/key_f54.c 3;" d file:
key_f55 src/term/key_f55.c 3;" d file:
key_f56 src/term/key_f56.c 3;" d file:
key_f57 src/term/key_f57.c 3;" d file:
key_f58 src/term/key_f58.c 3;" d file:
key_f59 src/term/key_f59.c 3;" d file:
key_f6 src/term/key_f6.c 3;" d file:
key_f60 src/term/key_f60.c 3;" d file:
key_f61 src/term/key_f61.c 3;" d file:
key_f62 src/term/key_f62.c 3;" d file:
key_f63 src/term/key_f63.c 3;" d file:
key_f7 src/term/key_f7.c 3;" d file:
key_f8 src/term/key_f8.c 3;" d file:
key_f9 src/term/key_f9.c 3;" d file:
key_find src/term/key_find.c 3;" d file:
key_help src/term/key_help.c 3;" d file:
key_home src/term/key_home.c 3;" d file:
key_ic src/term/key_ic.c 3;" d file:
key_il src/term/key_il.c 3;" d file:
key_left src/term/key_left.c 3;" d file:
key_ll src/term/key_ll.c 3;" d file:
key_mark src/term/key_mark.c 3;" d file:
key_message src/term/key_message.c 3;" d file:
key_mouse src/term/key_mouse.c 3;" d file:
key_move src/term/key_move.c 3;" d file:
key_name src/curses/key_name.c /^char * key_name(wchar_t c)$/;" f
key_next src/term/key_next.c 3;" d file:
key_npage src/term/key_npage.c 3;" d file:
key_open src/term/key_open.c 3;" d file:
key_options src/term/key_options.c 3;" d file:
key_ppage src/term/key_ppage.c 3;" d file:
key_previous src/term/key_previous.c 3;" d file:
key_print src/term/key_print.c 3;" d file:
key_redo src/term/key_redo.c 3;" d file:
key_reference src/term/key_reference.c 3;" d file:
key_refresh src/term/key_refresh.c 3;" d file:
key_replace src/term/key_replace.c 3;" d file:
key_restart src/term/key_restart.c 3;" d file:
key_resume src/term/key_resume.c 3;" d file:
key_right src/term/key_right.c 3;" d file:
key_save src/term/key_save.c 3;" d file:
key_sbeg src/term/key_sbeg.c 3;" d file:
key_scancel src/term/key_scancel.c 3;" d file:
key_scommand src/term/key_scommand.c 3;" d file:
key_scopy src/term/key_scopy.c 3;" d file:
key_screate src/term/key_screate.c 3;" d file:
key_sdc src/term/key_sdc.c 3;" d file:
key_sdl src/term/key_sdl.c 3;" d file:
key_select src/term/key_select.c 3;" d file:
key_send src/term/key_send.c 3;" d file:
key_seol src/term/key_seol.c 3;" d file:
key_sexit src/term/key_sexit.c 3;" d file:
key_sf src/term/key_sf.c 3;" d file:
key_sfind src/term/key_sfind.c 3;" d file:
key_shelp src/term/key_shelp.c 3;" d file:
key_shome src/term/key_shome.c 3;" d file:
key_sic src/term/key_sic.c 3;" d file:
key_sleft src/term/key_sleft.c 3;" d file:
key_smessage src/term/key_smessage.c 3;" d file:
key_smove src/term/key_smove.c 3;" d file:
key_snext src/term/key_snext.c 3;" d file:
key_soptions src/term/key_soptions.c 3;" d file:
key_sprevious src/term/key_sprevious.c 3;" d file:
key_sprint src/term/key_sprint.c 3;" d file:
key_sr src/term/key_sr.c 3;" d file:
key_sredo src/term/key_sredo.c 3;" d file:
key_sreplace src/term/key_sreplace.c 3;" d file:
key_sright src/term/key_sright.c 3;" d file:
key_srsume src/term/key_srsume.c 3;" d file:
key_ssave src/term/key_ssave.c 3;" d file:
key_ssuspend src/term/key_ssuspend.c 3;" d file:
key_stab src/term/key_stab.c 3;" d file:
key_sundo src/term/key_sundo.c 3;" d file:
key_suspend src/term/key_suspend.c 3;" d file:
key_t src/sys/types/key_t.c /^typedef unsigned long long int key_t;$/;" t file:
key_undo src/term/key_undo.c 3;" d file:
key_up src/term/key_up.c 3;" d file:
keyname src/curses/keyname.c /^char * keyname(int c)$/;" f
keypad src/curses/keypad.c /^int keypad(WINDOW * win, bool bf)$/;" f
keypad_local src/term/keypad_local.c 3;" d file:
keypad_xmit src/term/keypad_xmit.c 3;" d file:
kill src/signal/kill.c /^int kill(pid_t pid, int sig)$/;" f
kill src/signal/raise.c 6;" d file:
killchar src/curses/killchar.c /^char killchar(void)$/;" f
killpg src/signal/killpg.c /^int killpg(pid_t pgrp, int sig)$/;" f
killwchar src/curses/killwchar.c /^int killwchar(wchar_t * ch)$/;" f
l64a src/stdlib/l64a.c /^char * l64a(long value)$/;" f
l_len src/fcntl/struct_flock.c /^ off_t l_len;$/;" m struct:flock file:
l_name src/stropts/struct_str_mlist.c /^ char l_name[FMNAMESZ+1];$/;" m struct:str_mlist file:
l_pid src/fcntl/struct_flock.c /^ pid_t l_pid;$/;" m struct:flock file:
l_start src/fcntl/struct_flock.c /^ off_t l_start;$/;" m struct:flock file:
l_type src/fcntl/struct_flock.c /^ short l_type;$/;" m struct:flock file:
l_whence src/fcntl/struct_flock.c /^ short l_whence;$/;" m struct:flock file:
lab_f0 src/term/lab_f0.c 3;" d file:
lab_f1 src/term/lab_f1.c 3;" d file:
lab_f10 src/term/lab_f10.c 3;" d file:
lab_f2 src/term/lab_f2.c 3;" d file:
lab_f3 src/term/lab_f3.c 3;" d file:
lab_f4 src/term/lab_f4.c 3;" d file:
lab_f5 src/term/lab_f5.c 3;" d file:
lab_f6 src/term/lab_f6.c 3;" d file:
lab_f7 src/term/lab_f7.c 3;" d file:
lab_f8 src/term/lab_f8.c 3;" d file:
lab_f9 src/term/lab_f9.c 3;" d file:
label_format src/term/label_format.c 3;" d file:
label_height src/term/label_height.c 3;" d file:
label_off src/term/label_off.c 3;" d file:
label_on src/term/label_on.c 3;" d file:
label_width src/term/label_width.c 3;" d file:
labs src/stdlib/labs.c /^long int labs(long int j)$/;" f
lchown src/unistd/lchown.c /^int lchown(const char *path, uid_t owner, gid_t group)$/;" f
lcong48 src/stdlib/lcong48.c /^void lcong48(unsigned short param[7])$/;" f
lconv src/locale/struct_lconv.c /^struct lconv {$/;" s file:
ldexp src/math/ldexp.c /^TYPE TGFN(ldexp)(TYPE x, int exp)$/;" f
ldiv src/stdlib/ldiv.c /^ldiv_t ldiv(long int numer, long int denom)$/;" f
ldiv_t src/stdlib/ldiv_t.c /^} ldiv_t;$/;" t typeref:struct:__anon16 file:
leaf src/search/VISIT.c /^ leaf$/;" e enum:__anon4 file:
leaveok src/curses/leaveok.c /^int leaveok(WINDOW * win, bool bf)$/;" f
len src/stropts/struct_strbuf.c /^ int len;$/;" m struct:strbuf file:
len src/stropts/struct_strpeek.c /^ int len;$/;" m struct:strpeek file:
level src/ftw/struct_FTW.c /^ int level;$/;" m struct:FTW file:
lfind src/search/lfind.c /^void * lfind(const void * key, const void * base, size_t * nelp, size_t width, int (*compar) (const void *, const void *))$/;" f
lgamma src/math/lgamma.c /^TYPE TGFN(lgamma)(TYPE x)$/;" f
lines src/term/lines.c 3;" d file:
lines_of_memory src/term/lines_of_memory.c 3;" d file:
link src/unistd/link.c /^int link(const char *path1, const char *path2)$/;" f
lio_listio src/aio/lio_listio.c /^int lio_listio(int mode, struct aiocb * const list[restrict], int nent, struct sigevent * restrict sig)$/;" f
llabs src/stdlib/llabs.c /^long long int llabs(long long int j)$/;" f
lldiv src/stdlib/lldiv.c /^lldiv_t lldiv(long long int numer, long long int denom)$/;" f
lldiv_t src/stdlib/lldiv_t.c /^} lldiv_t;$/;" t typeref:struct:__anon15 file:
llrint src/math/llrint.c /^long long int TGFN(llrint)(TYPE x)$/;" f
llround src/math/llround.c /^long long int TGFN(llround)(TYPE x)$/;" f
loc1 src/regexp/loc1.c /^char *loc1;$/;" v
loc2 src/regexp/loc2.c /^char *loc2;$/;" v
localeconv src/locale/localeconv.c /^struct lconv * localeconv(void)$/;" f
localtime src/time/localtime.c /^struct tm * localtime(const time_t * timer)$/;" f
lockf src/unistd/lockf.c /^int lockf(int fildes, int function, off_t size)$/;" f
locs src/regexp/locs.c /^char *locs;$/;" v
log src/math/log.c /^TYPE TGFN(log)(TYPE x)$/;" f
log10 src/math/log10.c /^TYPE TGFN(log10)(TYPE x)$/;" f
log1p src/math/log1p.c /^TYPE TGFN(log1p)(TYPE x)$/;" f
log2 src/math/log2.c /^TYPE TGFN(log2)(TYPE x)$/;" f
logb src/math/logb.c /^TYPE TGFN(logb)(TYPE x)$/;" f
longjmp src/setjmp/longjmp.c /^_Noreturn void longjmp(jmp_buf env, int val)$/;" f
longname src/curses/longname.c /^char * longname(void)$/;" f
lpi_changes_res src/term/lpi_changes_res.c 3;" d file:
lrand48 src/stdlib/lrand48.c /^long lrand48(void)$/;" f
lrint src/math/lrint.c /^long int TGFN(lrint)(TYPE x)$/;" f
lround src/math/lround.c /^long int TGFN(lround)(TYPE x)$/;" f
lsearch src/search/lsearch.c /^void * lsearch(const void * key, void * base, size_t * nelp, size_t width, int (*compar) (const void *, const void *))$/;" f
lseek src/unistd/lseek.c /^off_t lseek(int fildes, off_t offset, int whence)$/;" f
lstat src/sys/stat/lstat.c /^int lstat(const char * restrict path, struct stat * restrict buf)$/;" f
machine src/sys/utsname/struct_utsname.c /^ char machine[100];$/;" m struct:utsname file:
magic_cookie_glitch src/term/magic_cookie_glitch.c 3;" d file:
makecontext src/ucontext/makecontext.c /^void makecontext(ucontext_t *ucp, void (*func)(), int argc, ...)$/;" f
malloc src/stdlib/malloc.c /^void * malloc(size_t size)$/;" f
math_errhandling src/math/math_errhandling.c 2;" d file:
max_attributes src/term/max_attributes.c 3;" d file:
max_colors src/term/max_colors.c 3;" d file:
max_micro_address src/term/max_micro_address.c 3;" d file:
max_micro_jump src/term/max_micro_jump.c 3;" d file:
max_pairs src/term/max_pairs.c 3;" d file:
maximum_windows src/term/maximum_windows.c 3;" d file:
maxlen src/stropts/struct_strbuf.c /^ int maxlen;$/;" m struct:strbuf file:
maxlen src/stropts/struct_strpeek.c /^ int maxlen;$/;" m struct:strpeek file:
mblen src/stdlib/mblen.c /^int mblen(const char * s, size_t n)$/;" f
mbrlen src/wchar/mbrlen.c /^size_t mbrlen(const char * restrict s, size_t n, mbstate_t * restrict ps)$/;" f
mbrtowc src/wchar/mbrtowc.c /^size_t mbrtowc(wchar_t * restrict pwc, const char * restrict s, size_t n, mbstate_t * restrict ps)$/;" f
mbsinit src/wchar/mbsinit.c /^int mbsinit(const mbstate_t * ps)$/;" f
mbsrtowcs src/wchar/mbsrtowcs.c /^size_t mbsrtowcs(wchar_t * restrict dst, const char * restrict src, size_t len, mbstate_t * restrict ps)$/;" f
mbstate_t src/wchar/mbstate_t.c /^typedef int mbstate_t;$/;" t file:
mbstowcs src/stdlib/mbstowcs.c /^size_t mbstowcs(wchar_t * restrict pwcs, const char * restrict s, size_t n)$/;" f
mbtowc src/stdlib/mbtowc.c /^int mbtowc(wchar_t * restrict pwc, const char * restrict s, size_t n)$/;" f
mcontext_t src/ucontext/mcontext_t.c /^typedef unsigned long mcontext_t;$/;" t file:
memccpy src/string/memccpy.c /^void *memccpy(void * restrict s1, const void * restrict s2, int c, size_t n)$/;" f
memchr src/string/memchr.c /^void * memchr(const void *s, int c, size_t n)$/;" f
memcmp src/string/memcmp.c /^int memcmp(const void *s1, const void *s2, size_t n)$/;" f
memcpy src/string/memcpy.c /^void * memcpy(void * restrict s1, const void * restrict s2, size_t n)$/;" f
memmove src/string/memmove.c /^void * memmove(void *s1, const void *s2, size_t n)$/;" f
memory_above src/term/memory_above.c 3;" d file:
memory_below src/term/memory_below.c 3;" d file:
memset src/string/memset.c /^void * memset(void *s, int c, size_t n)$/;" f
meta src/curses/meta.c /^int meta(WINDOW * win, bool bf)$/;" f
meta_off src/term/meta_off.c 3;" d file:
meta_on src/term/meta_on.c 3;" d file:
micro_col_size src/term/micro_col_size.c 3;" d file:
micro_colum_address src/term/micro_colum_address.c 3;" d file:
micro_down src/term/micro_down.c 3;" d file:
micro_left src/term/micro_left.c 3;" d file:
micro_line_size src/term/micro_line_size.c 3;" d file:
micro_right src/term/micro_right.c 3;" d file:
micro_row_address src/term/micro_row_address.c 3;" d file:
micro_up src/term/micro_up.c 3;" d file:
millitm src/sys/timeb/struct_timeb.c /^ unsigned short millitm;$/;" m struct:timeb file:
mkdir src/sys/stat/mkdir.c /^int mkdir(const char *path, mode_t mode)$/;" f
mkfifo src/sys/stat/mkfifo.c /^int mkfifo(const char *path, mode_t mode)$/;" f
mknod src/sys/stat/mknod.c /^int mknod(const char *path, mode_t mode, dev_t dev)$/;" f
mkstemp src/stdlib/mkstemp.c /^int mkstemp(char * template)$/;" f
mktemp src/stdlib/mktemp.c /^char *mktemp(char *template)$/;" f
mktime src/time/mktime.c /^time_t mktime(struct tm * timeptr)$/;" f
mlock src/sys/mman/mlock.c /^int mlock(const void *addr, size_t len)$/;" f
mlockall src/sys/mman/mlockall.c /^int mlockall(int flags)$/;" f
mmap src/sys/mman/mmap.c /^void *mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off)$/;" f
mode src/sys/ipc/struct_ipc_perm.c /^ mode_t mode; \/* Read\/write permission *\/$/;" m struct:ipc_perm file:
mode_t src/sys/types/mode_t.c /^typedef unsigned long int mode_t;$/;" t file:
modf src/math/modf.c /^TYPE TGFN(modf)(TYPE value, TYPE *iptr)$/;" f
modtime src/utime/struct_utimbuf.c /^ time_t modtime;$/;" m struct:utimbuf file:
mon_decimal_point src/locale/struct_lconv.c /^ char *mon_decimal_point; \/* "" *\/$/;" m struct:lconv file:
mon_grouping src/locale/struct_lconv.c /^ char *mon_grouping; \/* "" *\/$/;" m struct:lconv file:
mon_thousands_sep src/locale/struct_lconv.c /^ char *mon_thousands_sep; \/* "" *\/$/;" m struct:lconv file:
mouse_info src/term/mouse_info.c 3;" d file:
move_insert_mode src/term/move_insert_mode.c 3;" d file:
move_standout_mode src/term/move_standout_mode.c 3;" d file:
mprotect src/sys/mman/mprotect.c /^int mprotect(void *addr, size_t len, int prot)$/;" f
mq_attr src/mqueue/struct_mq_attr.c /^struct mq_attr {$/;" s file:
mq_close src/mqueue/mq_close.c /^int mq_close(mqd_t mqdes)$/;" f
mq_curmsgs src/mqueue/struct_mq_attr.c /^ long mq_curmsgs;$/;" m struct:mq_attr file:
mq_flags src/mqueue/struct_mq_attr.c /^ long mq_flags;$/;" m struct:mq_attr file:
mq_getattr src/mqueue/mq_getattr.c /^int mq_getattr(mqd_t mqdes, struct mq_attr * mqstat)$/;" f
mq_maxmsg src/mqueue/struct_mq_attr.c /^ long mq_maxmsg;$/;" m struct:mq_attr file:
mq_msgsize src/mqueue/struct_mq_attr.c /^ long mq_msgsize;$/;" m struct:mq_attr file:
mq_notify src/mqueue/mq_notify.c /^int mq_notify(mqd_t mqdes, const struct sigevent * notification)$/;" f
mq_open src/mqueue/mq_open.c /^mqd_t mq_open(const char * name, int oflag, ...)$/;" f
mq_receive src/mqueue/mq_receive.c /^ssize_t mq_receive(mqd_t mqdes, char * msg_ptr, size_t msg_len, unsigned * msg_prio)$/;" f
mq_send src/mqueue/mq_send.c /^int mq_send(mqd_t mqdes, const char * msg_ptr, size_t msg_len, unsigned msg_prio)$/;" f
mq_setattr src/mqueue/mq_setattr.c /^int mq_setattr(mqd_t mqdes, const struct mq_attr * restrict mqstat, struct mq_attr * restrict omqstat)$/;" f
mq_unlink src/mqueue/mq_unlink.c /^int mq_unlink(const char * name)$/;" f
mqd_t src/mqueue/mqd_t.c /^typedef unsigned long int mqd_t;$/;" t file:
mrand48 src/stdlib/mrand48.c /^long mrand48(void)$/;" f
msg_ctime src/sys/msg/struct_msqid_ds.c /^ time_t msg_ctime; \/* time of last change *\/$/;" m struct:msqid_ds file:
msg_lrpid src/sys/msg/struct_msqid_ds.c /^ pid_t msg_lrpid; \/* PID of last msgrcg() *\/$/;" m struct:msqid_ds file:
msg_lspid src/sys/msg/struct_msqid_ds.c /^ pid_t msg_lspid; \/* PID of last msgsnd() *\/$/;" m struct:msqid_ds file:
msg_perm src/sys/msg/struct_msqid_ds.c /^ struct ipc_perm msg_perm; \/* operation permissions *\/$/;" m struct:msqid_ds typeref:struct:msqid_ds::ipc_perm file:
msg_qbytes src/sys/msg/struct_msqid_ds.c /^ msglen_t msg_qbytes; \/* Max # bytes allowed on queue *\/$/;" m struct:msqid_ds file:
msg_qnum src/sys/msg/struct_msqid_ds.c /^ msgqnum_t msg_qnum; \/* # messages on queue *\/$/;" m struct:msqid_ds file:
msg_rtime src/sys/msg/struct_msqid_ds.c /^ time_t msg_rtime; \/* time of last msgrcv() *\/$/;" m struct:msqid_ds file:
msg_stime src/sys/msg/struct_msqid_ds.c /^ time_t msg_stime; \/* time of last msgsnd() *\/$/;" m struct:msqid_ds file:
msgctl src/sys/msg/msgctl.c /^int msgctl(int msqid, int cmd, struct msqid_ds *buf)$/;" f
msgget src/sys/msg/msgget.c /^int msgget(key_t key, int msgflg)$/;" f
msglen_t src/sys/msg/msglen_t.c /^typedef unsigned short msglen_t;$/;" t file:
msgqnum_t src/sys/msg/msgqnum_t.c /^typedef unsigned short msgqnum_t;$/;" t file:
msgrcv src/sys/msg/msgrcv.c /^ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg)$/;" f
msgsnd src/sys/msg/msgsnd.c /^int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg)$/;" f
msqid_ds src/sys/msg/struct_msqid_ds.c /^struct msqid_ds {$/;" s file:
msync src/sys/mman/msync.c /^int msync(void * addr , size_t len , int flags )$/;" f
mtx_destroy src/threads/mtx_destroy.c /^void mtx_destroy(mtx_t *mtx)$/;" f
mtx_init src/threads/mtx_init.c /^int mtx_init(mtx_t *mtx, int type)$/;" f
mtx_lock src/threads/mtx_lock.c /^int mtx_lock(mtx_t *mtx)$/;" f
mtx_plain src/threads/_enums.c /^ mtx_plain = 1 << 0,$/;" e enum:__anon12 file:
mtx_recursive src/threads/_enums.c /^ mtx_recursive = 1 << 1,$/;" e enum:__anon12 file:
mtx_t src/threads/mtx_t.c /^typedef \/* same as pthread_mutex_t *\/ mtx_t;$/;" t file:
mtx_timed src/threads/_enums.c /^ mtx_timed = 1 << 2,$/;" e enum:__anon12 file:
mtx_timedlock src/threads/mtx_timedlock.c /^int mtx_timedlock(mtx_t *restrict mtx, const struct timespec *restrict ts)$/;" f
mtx_trylock src/threads/mtx_trylock.c /^int mtx_trylock(mtx_t *mtx)$/;" f
mtx_unlock src/threads/mtx_unlock.c /^int mtx_unlock(mtx_t *mtx)$/;" f
munlock src/sys/mman/munlock.c /^int munlock(const void *addr, size_t len)$/;" f
munlockall src/sys/mman/munlockall.c /^int munlockall(void)$/;" f
munmap src/sys/mman/munmap.c /^int munmap(void*addr, size_t len)$/;" f
mvcur src/curses/mvcur.c /^int mvcur(int oldrow, int oldcol, int newrow, int newcol)$/;" f
mvderwin src/curses/mvderwin.c /^WINDOW * mvderwin(WINDOW * orig, int par_y, int par_x)$/;" f
mvprintw src/curses/mvprintw.c /^int mvprintw(int y, int x, const char * fmt, ...)$/;" f
mvscanw src/curses/mvscanw.c /^int mvscanw(int y, int x, const char * fmt, ...)$/;" f
mvwin src/curses/mvwin.c /^int mvwin(WINDOW * win, int y, int x)$/;" f
mvwprintw src/curses/mvwprintw.c /^int mvwprintw(WINDOW * win, int y, int x, const char * fmt, ...)$/;" f
mvwscanw src/curses/mvwscanw.c /^int mvwscanw(WINDOW * win, int y, int x, const char * fmt, ...)$/;" f
n_cs_precedes src/locale/struct_lconv.c /^ char n_cs_precedes; \/* CHAR_MAX *\/$/;" m struct:lconv file:
n_sep_by_space src/locale/struct_lconv.c /^ char n_sep_by_space; \/* CHAR_MAX *\/$/;" m struct:lconv file:
n_sign_posn src/locale/struct_lconv.c /^ char n_sign_posn; \/* CHAR_MAX *\/$/;" m struct:lconv file:
nan src/math/nan.c /^TYPE TGFN(nan)(const char *tagp)$/;" f
nanosleep src/time/nanosleep.c /^int nanosleep(const struct timespec *rqtp, struct timespec *rmtp)$/;" f
nanosleep src/unistd/sleep.c 7;" d file:
napms src/curses/napms.c /^int napms(int ms)$/;" f
nearbyint src/math/nearbyint.c /^TYPE TGFN(nearbyint)(TYPE x)$/;" f
needs_xon_xoff src/term/needs_xon_xoff.c 3;" d file:
negative_sign src/locale/struct_lconv.c /^ char *negative_sign; \/* "" *\/$/;" m struct:lconv file:
newline src/term/newline.c 3;" d file:
newpad src/curses/newpad.c /^WINDOW * newpad(int nlines, int ncols)$/;" f
newterm src/curses/newterm.c /^SCREEN * newterm(const char * type, FILE * outfile, FILE * infile)$/;" f
newwin src/curses/newwin.c /^WINDOW * newwin(int nlines, int ncols, int begin_y, int begin_x)$/;" f
nextafter src/math/nextafter.c /^TYPE TGFN(nextafter)(TYPE x, TYPE y)$/;" f
nexttoward src/math/nexttoward.c /^TYPE TGFN(nexttoward)(TYPE x, TYPE y)$/;" f
nfds_t src/poll/nfds_t.c /^typedef unsigned int nfds_t;$/;" t file:
nftw src/ftw/nftw.c /^int nftw(const char * path, int (*fn) (const char *, const struct stat *, int, struct FTW *), int fd_limit, int flags)$/;" f
nice src/unistd/nice.c /^int nice(int incr)$/;" f
nl src/curses/nl.c /^int nl(void)$/;" f
nl_catd src/nl_types/nl_catd.c /^typedef unsigned long int nl_catd;$/;" t file:
nl_item src/nl_types/nl_item.c /^typedef int nl_item;$/;" t file:
nl_langinfo src/langinfo/nl_langinfo.c /^char * nl_langinfo(nl_item item)$/;" f
nlink_t src/sys/types/nlink_t.c /^ nlink_t;$/;" t file:
no_color_video src/term/no_color_video.c 3;" d file:
no_esc_ctlc src/term/no_esc_ctlc.c 3;" d file:
no_pad_char src/term/no_pad_char.c 3;" d file:
nocbreak src/curses/nocbreak.c /^int nocbreak(void)$/;" f
nodelay src/curses/nodelay.c /^int nodelay(WINDOW * win, bool bf)$/;" f
nodename src/sys/utsname/struct_utsname.c /^ char nodename[100];$/;" m struct:utsname file:
noecho src/curses/noecho.c /^int noecho(void)$/;" f
non_dest_scroll_region src/term/non_dest_scroll_region.c 3;" d file:
non_rev_rmcup src/term/non_rev_rmcup.c 3;" d file:
nonl src/curses/nonl.c /^int nonl(void)$/;" f
noqiflush src/curses/noqiflush.c /^void noqiflush(void)$/;" f
noraw src/curses/noraw.c /^int noraw(void)$/;" f
not src/iso646/not.c 5;" d file:
not_eq src/iso646/not_eq.c 5;" d file:
notimeout src/curses/notimeout.c /^int notimeout(WINDOW * win, bool bf)$/;" f
nrand48 src/stdlib/nrand48.c /^long nrand48(unsigned short xsubi[3])$/;" f
num_labels src/term/num_labels.c 3;" d file:
number_of_pins src/term/number_of_pins.c 3;" d file:
off_t src/sys/types/off_t.c /^ off_t;$/;" t file:
offset src/stropts/struct_strfdinsert.c /^ int offset;$/;" m struct:strfdinsert file:
offsetof src/stddef/offsetof.c 2;" d file:
once_flag src/threads/once_flag.c /^typedef \/* same as pthread_once_t *\/ once_flag;$/;" t file:
open src/fcntl/open.c /^int open(const char *path, int oflag, ...)$/;" f
open src/stdio/freopen.c 10;" d file:
opendir src/dirent/opendir.c /^DIR * opendir(const char * dirname)$/;" f
openlog src/syslog/openlog.c /^void openlog(const char * ident, int logopt, int facility)$/;" f
optarg src/unistd/optarg.c /^char * optarg;$/;" v
opterr src/unistd/opterr.c /^int opterr;$/;" v
optind src/unistd/optind.c /^int optind;$/;" v
optopt src/unistd/optopt.c /^int optopt;$/;" v
or src/iso646/or.c 5;" d file:
or_eq src/iso646/or_eq.c 5;" d file:
order_of_pins src/term/order_of_pins.c 3;" d file:
orig_colors src/term/orig_colors.c 3;" d file:
orig_pair src/term/orig_pair.c 3;" d file:
output_res_char src/term/output_res_char.c 3;" d file:
output_res_horz_inch src/term/output_res_horz_inch.c 3;" d file:
output_res_line src/term/output_res_line.c 3;" d file:
output_res_vert_inch src/term/output_res_vert_inch.c 3;" d file:
over_strike src/term/over_strike.c 3;" d file:
overlay src/curses/overlay.c /^int overlay(const WINDOW * srcwin, WINDOW * dstwin)$/;" f
overwrite src/curses/overwrite.c /^int overwrite(const WINDOW * srcwin, WINDOW * dstwin)$/;" f
p_cs_precedes src/locale/struct_lconv.c /^ char p_cs_precedes; \/* CHAR_MAX *\/$/;" m struct:lconv file:
p_sep_by_space src/locale/struct_lconv.c /^ char p_sep_by_space; \/* CHAR_MAX *\/$/;" m struct:lconv file:
p_sign_posn src/locale/struct_lconv.c /^ char p_sign_posn; \/* CHAR_MAX *\/$/;" m struct:lconv file:
pad_char src/term/pad_char.c 3;" d file:
padding_baud_rate src/term/padding_baud_rate.c 3;" d file:
pair_content src/curses/pair_content.c /^int pair_content(short pair, short * f, short * b)$/;" f
parm_dch src/term/parm_dch.c 3;" d file:
parm_delete_line src/term/parm_delete_line.c 3;" d file:
parm_down_cursor src/term/parm_down_cursor.c 3;" d file:
parm_down_micro src/term/parm_down_micro.c 3;" d file:
parm_ich src/term/parm_ich.c 3;" d file:
parm_index src/term/parm_index.c 3;" d file:
parm_insert_line src/term/parm_insert_line.c 3;" d file:
parm_left_cursor src/term/parm_left_cursor.c 3;" d file:
parm_left_micro src/term/parm_left_micro.c 3;" d file:
parm_right_cursor src/term/parm_right_cursor.c 3;" d file:
parm_right_micro src/term/parm_right_micro.c 3;" d file:
parm_rindex src/term/parm_rindex.c 3;" d file:
parm_up_cursor src/term/parm_up_cursor.c 3;" d file:
parm_up_micro src/term/parm_up_micro.c 3;" d file:
passwd src/pwd/struct_passwd.c /^struct passwd {$/;" s file:
pathconf src/unistd/pathconf.c /^long pathconf(const char *path, int name)$/;" f
pause src/unistd/pause.c /^int pause(void)$/;" f
pc_term_options src/term/pc_term_options.c 3;" d file:
pclose src/stdio/pclose.c /^int pclose(FILE * stream)$/;" f
pecho_wchar src/curses/pecho_wchar.c /^int pecho_wchar(WINDOW * pad, const cchar_t * wch)$/;" f
pechochar src/curses/pechochar.c /^int pechochar(WINDOW * pad, chtype ch)$/;" f
perror src/stdio/perror.c /^void perror(const char *s)$/;" f
pid_t src/sys/types/pid_t.c /^typedef long int pid_t;$/;" t file:
pipe src/unistd/pipe.c /^int pipe(int fildes[2])$/;" f
pkey_key src/term/pkey_key.c 3;" d file:
pkey_local src/term/pkey_local.c 3;" d file:
pkey_plab src/term/pkey_plab.c 3;" d file:
pkey_xmit src/term/pkey_xmit.c 3;" d file:
plab_norm src/term/plab_norm.c 3;" d file:
pnoutrefresh src/curses/pnoutrefresh.c /^int pnoutrefresh(WINDOW * pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)$/;" f
poll src/poll/poll.c /^int poll(struct pollfd fds[], nfds_t nfds, int timeout)$/;" f
pollfd src/poll/struct_pollfd.c /^struct pollfd {$/;" s file:
popen src/stdio/popen.c /^FILE * popen(const char * command, const char * mode)$/;" f
positive_sign src/locale/struct_lconv.c /^ char *positive_sign; \/* "" *\/$/;" m struct:lconv file:
postorder src/search/VISIT.c /^ postorder,$/;" e enum:__anon4 file:
pow src/math/pow.c /^TYPE TGFN(pow)(TYPE x, TYPE y)$/;" f
prefresh src/curses/prefresh.c /^int prefresh(WINDOW * pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)$/;" f
preorder src/search/VISIT.c /^ preorder,$/;" e enum:__anon4 file:
print_rate src/term/print_rate.c 3;" d file:
print_screen src/term/print_screen.c 3;" d file:
printf src/stdio/printf.c /^int printf(const char *format, ...)$/;" f
printw src/curses/printw.c /^int printw(const char * fmt, ...)$/;" f
prtr_non src/term/prtr_non.c 3;" d file:
prtr_off src/term/prtr_off.c 3;" d file:
prtr_on src/term/prtr_on.c 3;" d file:
prtr_silent src/term/prtr_silent.c 3;" d file:
ptrdiff_t src/stddef/ptrdiff_t.c /^typedef __int64 ptrdiff_t;$/;" t file:
ptrdiff_t src/stddef/ptrdiff_t.c /^typedef long int ptrdiff_t;$/;" t file:
ptrdiff_t src/stddef/ptrdiff_t.c /^typedef long long int ptrdiff_t;$/;" t file:
ptsname src/stdlib/ptsname.c /^char * ptsname(int fildes)$/;" f
pulse src/term/pulse.c 3;" d file:
putc src/stdio/putc.c /^int putc(int c, FILE *stream)$/;" f
putc_unlocked src/stdio/fputc.c 5;" d file:
putc_unlocked src/stdio/fputc.c 6;" d file:
putc_unlocked src/stdio/putc_unlocked.c /^int putc_unlocked(int c, FILE *stream)$/;" f
putchar src/stdio/putchar.c /^int putchar(int c)$/;" f
putchar_unlocked src/stdio/putchar_unlocked.c /^int putchar_unlocked(int c)$/;" f
putenv src/stdlib/putenv.c /^int putenv(char * string)$/;" f
putmsg src/stropts/putmsg.c /^int putmsg(int fd , const struct strbuf * ctlptr , const struct strbuf * dataptr , int flags )$/;" f
putp src/term/putp.c /^int putp(const char * str)$/;" f
putpmsg src/stropts/putpmsg.c /^int putpmsg(int fd , const struct strbuf * ctlptr , const struct strbuf * dataptr , int band , int flags )$/;" f
puts src/stdio/puts.c /^int puts(const char *s)$/;" f
pututxline src/utmpx/pututxline.c /^struct utmpx * pututxline(const struct utmpx *utmpx)$/;" f
putw src/stdio/putw.c /^int putw(int w, FILE *stream)$/;" f
putwc src/wchar/putwc.c /^wint_t putwc(wchar_t c, FILE * stream)$/;" f
putwchar src/wchar/putwchar.c /^wint_t putwchar(wchar_t c)$/;" f
putwin src/curses/putwin.c /^int putwin(WINDOW * win, FILE * filep)$/;" f
pw_dir src/pwd/struct_passwd.c /^ char * pw_dir;$/;" m struct:passwd file:
pw_gid src/pwd/struct_passwd.c /^ gid_t pw_gid;$/;" m struct:passwd file:
pw_name src/pwd/struct_passwd.c /^ char * pw_name;$/;" m struct:passwd file:
pw_shell src/pwd/struct_passwd.c /^ char * pw_shell;$/;" m struct:passwd file:
pw_uid src/pwd/struct_passwd.c /^ uid_t pw_uid;$/;" m struct:passwd file:
qiflush src/curses/qiflush.c /^void qiflush(void)$/;" f
qsort src/stdlib/qsort.c /^void qsort(void * base, size_t nmemb, size_t size, int (*compar)(const void *, const void *))$/;" f
quick_dial src/term/quick_dial.c 3;" d file:
quot src/inttypes/imaxdiv_t.c /^ intmax_t quot;$/;" m struct:__anon10 file:
quot src/stdlib/div_t.c /^ int quot;$/;" m struct:__anon14 file:
quot src/stdlib/ldiv_t.c /^ long int quot;$/;" m struct:__anon16 file:
quot src/stdlib/lldiv_t.c /^ long long int quot;$/;" m struct:__anon15 file:
raise src/signal/raise.c /^int raise(int sig)$/;" f
rand src/stdlib/rand.c /^int rand(void)$/;" f
random src/stdlib/random.c /^long random(void)$/;" f
raw src/curses/raw.c /^int raw(void)$/;" f
re_comp src/re_comp/re_comp.c /^char *re_comp(const char *string)$/;" f
re_exec src/re_comp/re_exec.c /^int re_exec(const char *string)$/;" f
re_nsub src/regex/regex_t.c /^ size_t re_nsub;$/;" m struct:__anon7 file:
read src/stdio/getc_unlocked.c 9;" d file:
read src/unistd/read.c /^ssize_t read(int fildes, void *buf, size_t nbyte)$/;" f
readdir src/dirent/readdir.c /^struct dirent * readdir(DIR * dirp)$/;" f
readlink src/unistd/readlink.c /^ssize_t readlink(const char * restrict path, char * restrict buf, size_t bufsize)$/;" f
readlink src/unistd/ttyname.c 14;" d file:
readv src/sys/uio/readv.c /^ssize_t readv(int fildes, const struct iovec * iov, int iovcnt)$/;" f
realloc src/stdlib/realloc.c /^void * realloc(void * ptr, size_t size)$/;" f
realpath src/stdlib/realpath.c /^char * realpath(const char * restrict file_name, char * restrict resolved_name)$/;" f
redrawwin src/curses/redrawwin.c /^int redrawwin(WINDOW * win)$/;" f
regcmp src/libgen/regcmp.c /^char *regcmp(const char *string1, ... \/*, (char*)0 *\/)$/;" f
regcomp src/regex/regcomp.c /^int regcomp(regex_t * restrict preg, const char * restrict pattern, int cflags)$/;" f
regerror src/regex/regerror.c /^size_t regerror(int errcode, const regex_t * restrict preg, char * restrict errbuf, size_t errbuf_size)$/;" f
regex src/libgen/regex.c /^char *regex(const char *re, const char *subject, ...)$/;" f
regex_t src/regex/regex_t.c /^} regex_t;$/;" t typeref:struct:__anon7 file:
regexec src/regex/regexec.c /^int regexec(const regex_t * restrict preg, const char * restrict string, size_t nmatch, regmatch_t pmatch[restrict], int eflags)$/;" f
regfree src/regex/regfree.c /^void regfree(regex_t * preg)$/;" f
regmatch_t src/regex/regmatch_t.c /^} regmatch_t;$/;" t typeref:struct:__anon8 file:
regoff_t src/regex/regoff_t.c /^typedef long long int regoff_t;$/;" t file:
release src/sys/utsname/struct_utsname.c /^ char release[100];$/;" m struct:utsname file:
rem src/inttypes/imaxdiv_t.c /^ intmax_t rem;$/;" m struct:__anon10 file:
rem src/stdlib/div_t.c /^ int rem;$/;" m struct:__anon14 file:
rem src/stdlib/ldiv_t.c /^ long int rem;$/;" m struct:__anon16 file:
rem src/stdlib/lldiv_t.c /^ long long int rem;$/;" m struct:__anon15 file:
remainder src/math/remainder.c /^TYPE TGFN(remainder)(TYPE x, TYPE y)$/;" f
remove src/stdio/remove.c /^int remove(const char *filename)$/;" f
remove_clock src/term/remove_clock.c 3;" d file:
remque src/search/remque.c /^void remque(void * element)$/;" f
remquo src/math/remquo.c /^TYPE TGFN(remquo)(TYPE x, TYPE y, int *quo)$/;" f
rename src/stdio/rename.c /^int rename(const char *old, const char *new)$/;" f
repeat_char src/term/repeat_char.c 3;" d file:
req_for_input src/term/req_for_input.c 3;" d file:
req_mouse_pos src/term/req_mouse_pos.c 3;" d file:
reset_1string src/term/reset_1string.c 3;" d file:
reset_2string src/term/reset_2string.c 3;" d file:
reset_3string src/term/reset_3string.c 3;" d file:
reset_file src/term/reset_file.c 3;" d file:
reset_prog_mode src/curses/reset_prog_mode.c /^int reset_prog_mode(void)$/;" f
reset_shell_mode src/curses/reset_shell_mode.c /^int reset_shell_mode(void)$/;" f
resetty src/curses/resetty.c /^int resetty(void)$/;" f
restartterm src/term/restartterm.c /^int restartterm(const char * term, int fildes, int * errret)$/;" f
restore_cursor src/term/restore_cursor.c 3;" d file:
revents src/poll/struct_pollfd.c /^ short revents;$/;" m struct:pollfd file:
rewind src/stdio/rewind.c /^void rewind(FILE *stream)$/;" f
rewinddir src/dirent/rewinddir.c /^void rewinddir(DIR * dirp)$/;" f
rindex src/strings/rindex.c /^char *rindex(const char *s, int c)$/;" f
rint src/math/rint.c /^TYPE TGFN(rint)(TYPE x)$/;" f
ripoffline src/curses/ripoffline.c /^int ripoffline(int line, int (*init)(WINDOW * win, int columns))$/;" f
rlim_cur src/sys/resource/struct_rlimit.c /^ rlim_t rlim_cur;$/;" m struct:rlimit file:
rlim_max src/sys/resource/struct_rlimit.c /^ rlim_t rlim_max;$/;" m struct:rlimit file:
rlim_t src/sys/resource/rlim_t.c /^typedef unsigned long long int rlim_t;$/;" t file:
rlimit src/sys/resource/struct_rlimit.c /^struct rlimit {$/;" s file:
rm_eo src/regex/regmatch_t.c /^ regoff_t rm_eo;$/;" m struct:__anon8 file:
rm_so src/regex/regmatch_t.c /^ regoff_t rm_so;$/;" m struct:__anon8 file:
rmdir src/stdio/remove.c 11;" d file:
rmdir src/unistd/rmdir.c /^int rmdir(const char *path)$/;" f
round src/math/round.c /^TYPE TGFN(round)(TYPE x)$/;" f
row_addr_glitch src/term/row_addr_glitch.c 3;" d file:
row_address src/term/row_address.c 3;" d file:
ru_stime src/sys/resource/struct_rusage.c /^ struct timeval ru_stime;$/;" m struct:rusage typeref:struct:rusage::timeval file:
ru_utime src/sys/resource/struct_rusage.c /^ struct timeval ru_utime;$/;" m struct:rusage typeref:struct:rusage::timeval file:
rusage src/sys/resource/struct_rusage.c /^struct rusage {$/;" s file:
sa_flags src/signal/struct_sigaction.c /^ int sa_flags;$/;" m struct:sigaction file:
sa_handler src/signal/struct_sigaction.c /^ void (*sa_handler)(int);$/;" m struct:sigaction file:
sa_mask src/signal/struct_sigaction.c /^ sigset_t sa_mask;$/;" m struct:sigaction file:
sa_sigaction src/signal/struct_sigaction.c /^ void (*sa_sigaction)(int, siginfo_t *, void *); $/;" m struct:sigaction file:
save_cursor src/term/save_cursor.c 3;" d file:
savetty src/curses/savetty.c /^int savetty(void)$/;" f
sbrk src/unistd/sbrk.c /^void *sbrk(int incr)$/;" f
scalb src/math/scalb.c /^double scalb(double x, double n)$/;" f
scalbln src/math/scalbln.c /^TYPE TGFN(scalbln)(TYPE x, long int n)$/;" f
scalbn src/math/scalbn.c /^TYPE TGFN(scalbn)(TYPE x, int n)$/;" f
scancode_escape src/term/scancode_escape.c 3;" d file:
scanf src/stdio/scanf.c /^int scanf(const char * restrict format, ...)$/;" f
scanw src/curses/scanw.c /^int scanw(const char * fmt, ...)$/;" f
sched_get_priority_max src/sched/sched_get_priority_max.c /^int sched_get_priority_max(int policy)$/;" f
sched_get_priority_min src/sched/sched_get_priority_min.c /^int sched_get_priority_min(int policy)$/;" f
sched_getparam src/sched/sched_getparam.c /^int sched_getparam(pid_t pid, struct sched_param * param)$/;" f
sched_getscheduler src/sched/sched_getscheduler.c /^int sched_getscheduler(pid_t pid)$/;" f
sched_param src/sched/struct_sched_param.c /^struct sched_param {$/;" s file:
sched_priority src/sched/struct_sched_param.c /^ int sched_priority;$/;" m struct:sched_param file:
sched_rr_get_interval src/sched/sched_rr_get_interval.c /^int sched_rr_get_interval(pid_t pid, struct timespec * interval)$/;" f
sched_setparam src/sched/sched_setparam.c /^int sched_setparam(pid_t pid, const struct sched_param * param)$/;" f
sched_setscheduler src/sched/sched_setscheduler.c /^int sched_setscheduler(pid_t pid, int policy, const struct sched_param * param)$/;" f
sched_ss_init_budget src/sched/struct_sched_param.c /^ struct timespec sched_ss_init_budget;$/;" m struct:sched_param typeref:struct:sched_param::timespec file:
sched_ss_low_priority src/sched/struct_sched_param.c /^ int sched_ss_low_priority;$/;" m struct:sched_param file:
sched_ss_max_repl src/sched/struct_sched_param.c /^ int sched_ss_max_repl;$/;" m struct:sched_param file:
sched_ss_repl_period src/sched/struct_sched_param.c /^ struct timespec sched_ss_repl_period;$/;" m struct:sched_param typeref:struct:sched_param::timespec file:
sched_yield src/sched/sched_yield.c /^int sched_yield(void)$/;" f
scr_dump src/curses/scr_dump.c /^int scr_dump(const char * filename)$/;" f
scr_init src/curses/scr_init.c /^int scr_init(const char * filename)$/;" f
scr_restore src/curses/scr_restore.c /^int scr_restore(const char * filename)$/;" f
scr_set src/curses/scr_set.c /^int scr_set(const char * filename)$/;" f
scroll_forward src/term/scroll_forward.c 3;" d file:
scroll_reverse src/term/scroll_reverse.c 3;" d file:
scrollok src/curses/scrollok.c /^int scrollok(WINDOW * win, bool bf)$/;" f
seT_top_margin src/term/seT_top_margin.c 3;" d file:
seed48 src/stdlib/seed48.c /^unsigned short * seed48(unsigned short seed16v[3])$/;" f
seekdir src/dirent/seekdir.c /^void seekdir(DIR * dirp, long loc)$/;" f
select src/sys/time/select.c /^int select(int nfds , fd_set * readfds , fd_set * writefds , fd_set * errorfds , struct timeval * timeout )$/;" f
select_char_set src/term/select_char_set.c 3;" d file:
sem_close src/semaphore/sem_close.c /^int sem_close(sem_t *sem)$/;" f
sem_ctime src/sys/sem/struct_semid_ds.c /^ time_t sem_ctime;$/;" m struct:semid_ds file:
sem_destroy src/semaphore/sem_destroy.c /^int sem_destroy(sem_t * sem)$/;" f
sem_flg src/sys/sem/struct_sembuf.c /^ short sem_flg;$/;" m struct:sembuf file:
sem_getvalue src/semaphore/sem_getvalue.c /^int sem_getvalue(sem_t * restrict sem, int * restrict sval)$/;" f
sem_init src/semaphore/sem_init.c /^int sem_init(sem_t * sem, int pshared, unsigned value)$/;" f
sem_nsems src/sys/sem/struct_semid_ds.c /^ unsigned short sem_nsems;$/;" m struct:semid_ds file:
sem_num src/sys/sem/struct_sembuf.c /^ unsigned short sem_num;$/;" m struct:sembuf file:
sem_op src/sys/sem/struct_sembuf.c /^ short sem_op;$/;" m struct:sembuf file:
sem_open src/semaphore/sem_open.c /^sem_t * sem_open(const char * name, int oflag, ...)$/;" f
sem_otime src/sys/sem/struct_semid_ds.c /^ time_t sem_otime;$/;" m struct:semid_ds file:
sem_perm src/sys/sem/struct_semid_ds.c /^ struct ipc_perm sem_perm;$/;" m struct:semid_ds typeref:struct:semid_ds::ipc_perm file:
sem_post src/semaphore/sem_post.c /^int sem_post(sem_t * sem)$/;" f
sem_t src/semaphore/sem_t.c /^typedef struct __sem_t sem_t;$/;" t typeref:struct:__sem_t file:
sem_trywait src/semaphore/sem_trywait.c /^int sem_trywait(sem_t * sem)$/;" f
sem_unlink src/semaphore/sem_unlink.c /^int sem_unlink(const char * name)$/;" f
sem_wait src/semaphore/sem_wait.c /^int sem_wait(sem_t * sem)$/;" f
sembuf src/sys/sem/struct_sembuf.c /^struct sembuf {$/;" s file:
semctl src/sys/sem/semctl.c /^int semctl(int semid, int semnum, int cmd, ...)$/;" f
semget src/sys/sem/semget.c /^int semget(key_t key, int nsems, int semflg)$/;" f
semi_auto_right_margin src/term/semi_auto_right_margin.c 3;" d file:
semid_ds src/sys/sem/struct_semid_ds.c /^struct semid_ds {$/;" s file:
semncnt src/sys/sem/struct_sem_anonymous.c /^ unsigned short semncnt;$/;" m struct:__sem_anonymous file:
semop src/sys/sem/semop.c /^int semop(int semid, struct sembuf *sops, size_t nsops)$/;" f
sempid src/sys/sem/struct_sem_anonymous.c /^ pid_t sempid;$/;" m struct:__sem_anonymous file:
semval src/sys/sem/struct_sem_anonymous.c /^ unsigned short semval;$/;" m struct:__sem_anonymous file:
semzcnt src/sys/sem/struct_sem_anonymous.c /^ unsigned short semzcnt;$/;" m struct:__sem_anonymous file:
set0_des_seq src/term/set0_des_seq.c 3;" d file:
set1_des_seq src/term/set1_des_seq.c 3;" d file:
set2_des_seq src/term/set2_des_seq.c 3;" d file:
set3_des_seq src/term/set3_des_seq.c 3;" d file:
set_a_attributes src/term/set_a_attributes.c 3;" d file:
set_a_background src/term/set_a_background.c 3;" d file:
set_a_foreground src/term/set_a_foreground.c 3;" d file:
set_attributes src/term/set_attributes.c 3;" d file:
set_background src/term/set_background.c 3;" d file:
set_bottom_margin src/term/set_bottom_margin.c 3;" d file:
set_bottom_margin_parm src/term/set_bottom_margin_parm.c 3;" d file:
set_clock src/term/set_clock.c 3;" d file:
set_color_band src/term/set_color_band.c 3;" d file:
set_color_pair src/term/set_color_pair.c 3;" d file:
set_curterm src/term/set_curterm.c /^TERMINAL * set_curterm(TERMINAL * nterm)$/;" f
set_foreground src/term/set_foreground.c 3;" d file:
set_left_margin src/term/set_left_margin.c 3;" d file:
set_left_margin_parm src/term/set_left_margin_parm.c 3;" d file:
set_lr_margin src/term/set_lr_margin.c 3;" d file:
set_page_length src/term/set_page_length.c 3;" d file:
set_pglen_inch src/term/set_pglen_inch.c 3;" d file:
set_right_margin src/term/set_right_margin.c 3;" d file:
set_right_margin_parm src/term/set_right_margin_parm.c 3;" d file:
set_tab src/term/set_tab.c 3;" d file:
set_tb_margin src/term/set_tb_margin.c 3;" d file:
set_term src/curses/set_term.c /^SCREEN * set_term(SCREEN * new)$/;" f
set_top_margin_parm src/term/set_top_margin_parm.c 3;" d file:
set_window src/term/set_window.c 3;" d file:
setall src/locale/__load_locale.c 17;" d file:
setbuf src/stdio/setbuf.c /^void setbuf(FILE * restrict stream, char * restrict buf)$/;" f
setcchar src/curses/setcchar.c /^int setcchar(cchar_t * wcval, const wchar_t * wch, const attr_t attrs, short color_pair, const void * opts)$/;" f
setcontext src/ucontext/setcontext.c /^int setcontext(const ucontext_t *ucp)$/;" f
setgid src/unistd/setgid.c /^int setgid(gid_t gid)$/;" f
setgrent src/grp/setgrent.c /^void setgrent(void)$/;" f
setitimer src/sys/time/setitimer.c /^int setitimer(int which, const struct itimerval *restrict value, struct itimerval *restrict ovalue)$/;" f
setjmp src/setjmp/setjmp.c /^int setjmp(jmp_buf env)$/;" f
setkey src/stdlib/setkey.c /^void setkey(const char * key)$/;" f
setlocale src/locale/setlocale.c /^char * setlocale(int category, const char *locale)$/;" f
setlogmask src/syslog/setlogmask.c /^int setlogmask(int maskpri)$/;" f
setpgid src/unistd/setpgid.c /^int setpgid(pid_t pid, pid_t pgid)$/;" f
setpgrp src/unistd/setpgrp.c /^pid_t setpgrp(void)$/;" f
setpriority src/sys/resource/setpriority.c /^int setpriority(int which, id_t who, int value)$/;" f
setpwent src/pwd/setpwent.c /^void setpwent(void)$/;" f
setregid src/unistd/setregid.c /^int setregid(gid_t rgid, gid_t egid)$/;" f
setreuid src/unistd/setreuid.c /^int setreuid(uid_t ruid, uid_t euid)$/;" f
setrlimit src/sys/resource/setrlimit.c /^int setrlimit(int resource, const struct rlimit *rlp)$/;" f
setsid src/unistd/setsid.c /^pid_t setsid(void)$/;" f
setstate src/stdlib/setstate.c /^char * setstate(char * state)$/;" f
setuid src/unistd/setuid.c /^int setuid(uid_t uid)$/;" f
setupterm src/term/setupterm.c /^int setupterm(char * term, int fildes, int * erret)$/;" f
setutxent src/utmpx/setutxent.c /^void setutxent(void)$/;" f
setvbuf src/stdio/setvbuf.c /^int setvbuf(FILE *stream, char *buf, int mode, size_t size)$/;" f
shm_atime src/sys/shm/struct_shmid_ds.c /^ time_t shm_atime;$/;" m struct:shmid_ds file:
shm_cpid src/sys/shm/struct_shmid_ds.c /^ pid_t shm_cpid;$/;" m struct:shmid_ds file:
shm_ctime src/sys/shm/struct_shmid_ds.c /^ time_t shm_ctime;$/;" m struct:shmid_ds file:
shm_dtime src/sys/shm/struct_shmid_ds.c /^ time_t shm_dtime;$/;" m struct:shmid_ds file:
shm_lpid src/sys/shm/struct_shmid_ds.c /^ pid_t shm_lpid;$/;" m struct:shmid_ds file:
shm_nattach src/sys/shm/struct_shmid_ds.c /^ shmatt_t shm_nattach;$/;" m struct:shmid_ds file:
shm_open src/sys/mman/shm_open.c /^int shm_open(const char *name, int oflag, mode_t mode)$/;" f
shm_perm src/sys/shm/struct_shmid_ds.c /^ struct ipc_perm shm_perm;$/;" m struct:shmid_ds typeref:struct:shmid_ds::ipc_perm file:
shm_segsz src/sys/shm/struct_shmid_ds.c /^ size_t shm_segsz;$/;" m struct:shmid_ds file:
shm_unlink src/sys/mman/shm_unlink.c /^int shm_unlink(const char *name)$/;" f
shmat src/sys/shm/shmat.c /^void * shmat(int shmid, const void *shmaddr, int shmflg)$/;" f
shmatt_t src/sys/shm/shmatt_t.c /^typedef unsigned short shmatt_t;$/;" t file:
shmctl src/sys/shm/shmctl.c /^int shmctl(int shmid, int cmd, struct shmid_ds *buf)$/;" f
shmdt src/sys/shm/shmdt.c /^int shmdt(const void *shmaddr)$/;" f
shmget src/sys/shm/shmget.c /^int shmget(key_t key, size_t size, int shmflg)$/;" f
shmid_ds src/sys/shm/struct_shmid_ds.c /^struct shmid_ds {$/;" s file:
si_addr src/signal/siginfo_t.c /^ void *si_addr;$/;" m struct:__anon18 file:
si_band src/signal/siginfo_t.c /^ long si_band;$/;" m struct:__anon18 file:
si_code src/signal/siginfo_t.c /^ int si_code;$/;" m struct:__anon18 file:
si_errno src/signal/siginfo_t.c /^ int si_errno;$/;" m struct:__anon18 file:
si_pid src/signal/siginfo_t.c /^ pid_t si_pid;$/;" m struct:__anon18 file:
si_signo src/signal/siginfo_t.c /^ int si_signo;$/;" m struct:__anon18 file:
si_status src/signal/siginfo_t.c /^ int si_status;$/;" m struct:__anon18 file:
si_uid src/signal/siginfo_t.c /^ uid_t si_uid;$/;" m struct:__anon18 file:
si_value src/signal/siginfo_t.c /^ union sigval si_value;$/;" m struct:__anon18 typeref:union:__anon18::sigval file:
siegev_notify_attributes src/signal/struct_sigevent.c /^ pthread_attr_t *siegev_notify_attributes;$/;" m struct:sigevent file:
sig_atomic_t src/signal/sig_atomic_t.c /^typedef volatile int sig_atomic_t;$/;" t file:
sigaction src/signal/sigaction.c /^int sigaction(int sig, const struct sigaction * restrict act, struct sigaction * restrict oact)$/;" f
sigaction src/signal/struct_sigaction.c /^struct sigaction {$/;" s file:
sigaddset src/signal/sigaddset.c /^int sigaddset(sigset_t * set, int signo)$/;" f
sigaltstack src/signal/sigaltstack.c /^int sigaltstack(const stack_t * restrict ss, stack_t * restrict oss)$/;" f
sigdelset src/signal/sigdelset.c /^int sigdelset(sigset_t * set, int signo)$/;" f
sigemptyset src/signal/sigemptyset.c /^int sigemptyset(sigset_t * set)$/;" f
sigev_notify src/signal/struct_sigevent.c /^ int sigev_notify;$/;" m struct:sigevent file:
sigev_notify_function src/signal/struct_sigevent.c /^ void (*sigev_notify_function)(union sigval);$/;" m struct:sigevent file:
sigev_signo src/signal/struct_sigevent.c /^ int sigev_signo;$/;" m struct:sigevent file:
sigev_value src/signal/struct_sigevent.c /^ union sigval sigev_value;$/;" m struct:sigevent typeref:union:sigevent::sigval file:
sigevent src/signal/struct_sigevent.c /^struct sigevent {$/;" s file:
sigfillset src/signal/sigfillset.c /^int sigfillset(sigset_t * set)$/;" f
sighold src/signal/sighold.c /^int sighold(int sig)$/;" f
sigignore src/signal/sigignore.c /^int sigignore(int sig)$/;" f
siginfo_t src/signal/siginfo_t.c /^} siginfo_t;$/;" t typeref:struct:__anon18 file:
siginfo_t src/sys/wait/waitid.c /^typedef struct siginfo siginfo_t;$/;" t typeref:struct:siginfo file:
siginterrupt src/signal/siginterrupt.c /^int siginterrupt(int sig, int flag)$/;" f
sigismember src/signal/sigismember.c /^int sigismember(const sigset_t * set, int signo)$/;" f
sigjmp_buf src/setjmp/sigjmp_buf.c /^typedef jmp_buf sigjmp_buf;$/;" t file:
siglongjmp src/setjmp/siglongjmp.c /^void siglongjmp(sigjmp_buf env, int val)$/;" f
sigmask src/signal/sigmask.c /^int sigmask(int signum)$/;" f
signal src/signal/signal.c /^void (*signal(int sig, void (*func)(int)))(int)$/;" f
signbit src/math/signbit.c 3;" d file:
signgam src/math/signgam.c /^int signgam;$/;" v
sigpause src/signal/sigpause.c /^int sigpause(int sig)$/;" f
sigpending src/signal/sigpending.c /^int sigpending(sigset_t * set)$/;" f
sigprocmask src/signal/sigprocmask.c /^int sigprocmask(int how, const sigset_t * restrict set, sigset_t * restrict oset)$/;" f
sigqueue src/signal/sigqueue.c /^int sigqueue(pid_t pid, int signo, const union sigval value)$/;" f
sigrelse src/signal/sigrelse.c /^int sigrelse(int sig)$/;" f
sigset src/signal/sigset.c /^void (*sigset(int sig, void (*disp)(int)))(int)$/;" f
sigset_t src/signal/sigset_t.c /^ sigset_t;$/;" t typeref:struct:__anon17 file:
sigsetjmp src/setjmp/sigsetjmp.c /^int sigsetjmp(sigjmp_buf env, int savemask)$/;" f
sigstack src/signal/sigstack.c /^int sigstack(struct sigstack *ss, struct sigstack *oss)$/;" f
sigstack src/signal/struct_sigstack.c /^struct sigstack {$/;" s file:
sigsuspend src/signal/sigsuspend.c /^int sigsuspend(const sigset_t * sigmask)$/;" f
sigtimedwait src/signal/sigtimedwait.c /^int sigtimedwait(const sigset_t * restrict set, siginfo_t * restrict info, const struct timespec * restrict timeout)$/;" f
sigval src/signal/union_sigval.c /^union sigval {$/;" u file:
sigwaitinfo src/signal/sigwaitinfo.c /^int sigwaitinfo(const sigset_t * restrict set, siginfo_t * restrict info)$/;" f
sin src/math/sin.c /^TYPE TGFN(sin)(TYPE x)$/;" f
sinh src/math/sinh.c /^TYPE TGFN(sinh)(TYPE x)$/;" f
sival_int src/signal/union_sigval.c /^ int sival_int;$/;" m union:sigval file:
sival_ptr src/signal/union_sigval.c /^ void *sival_ptr;$/;" m union:sigval file:
size_t src/stddef/size_t.c /^typedef unsigned __int64 size_t;$/;" t file:
size_t src/stddef/size_t.c /^typedef unsigned long int size_t;$/;" t file:
size_t src/stddef/size_t.c /^typedef unsigned long long int size_t;$/;" t file:
sl_modlist src/stropts/struct_str_list.c /^ struct str_mlist *sl_modlist;$/;" m struct:str_list typeref:struct:str_list::str_mlist file:
sl_nmods src/stropts/struct_str_list.c /^ int sl_nmods;$/;" m struct:str_list file:
sleep src/unistd/sleep.c /^unsigned sleep(unsigned seconds)$/;" f
slk_attr_off src/curses/slk_attr_off.c /^int slk_attr_off(const chtype attrs, void * opts)$/;" f
slk_attr_on src/curses/slk_attr_on.c /^int slk_attr_on(const chtype attrs, void * opts)$/;" f
slk_attr_set src/curses/slk_attr_set.c /^int slk_attr_set(const chtype attrs, short color_pair_number, void * opts)$/;" f
slk_attroff src/curses/slk_attroff.c /^int slk_attroff(const chtype attrs)$/;" f
slk_attron src/curses/slk_attron.c /^int slk_attron(const chtype attrs)$/;" f
slk_attrset src/curses/slk_attrset.c /^int slk_attrset(const chtype attrs)$/;" f
slk_clear src/curses/slk_clear.c /^int slk_clear(void)$/;" f
slk_color src/curses/slk_color.c /^int slk_color(short color_pair_number)$/;" f
slk_init src/curses/slk_init.c /^int slk_init(int fmt)$/;" f
slk_label src/curses/slk_label.c /^char * slk_label(int labnum)$/;" f
slk_noutrefresh src/curses/slk_noutrefresh.c /^int slk_noutrefresh(void)$/;" f
slk_refresh src/curses/slk_refresh.c /^int slk_refresh(void)$/;" f
slk_restore src/curses/slk_restore.c /^int slk_restore(void)$/;" f
slk_set src/curses/slk_set.c /^int slk_set(int labnum, const char * label, int justify)$/;" f
slk_touch src/curses/slk_touch.c /^int slk_touch(void)$/;" f
slk_wset src/curses/slk_wset.c /^int slk_wset(int labnum, const wchar_t * label, int justify)$/;" f
snprintf src/stdio/snprintf.c /^int snprintf(char * restrict s, size_t n, const char * restrict format, ...)$/;" f
speed_t src/termios/speed_t.c /^typedef int speed_t;$/;" t file:
sprintf src/stdio/sprintf.c /^int sprintf(char * restrict s, const char * restrict format, ...)$/;" f
sqrt src/math/sqrt.c /^TYPE TGFN(sqrt)(TYPE x)$/;" f
srand src/stdlib/srand.c /^void srand(unsigned int seed)$/;" f
srand48 src/stdlib/srand48.c /^void srand48(long seedval)$/;" f
srandom src/stdlib/srandom.c /^void srandom(unsigned seed)$/;" f
ss_flags src/signal/stack_t.c /^ int ss_flags; \/* Flags *\/$/;" m struct:__anon19 file:
ss_onstack src/signal/struct_sigstack.c /^ int ss_onstack;$/;" m struct:sigstack file:
ss_size src/signal/stack_t.c /^ size_t ss_size; \/* Stack size *\/$/;" m struct:__anon19 file:
ss_sp src/signal/stack_t.c /^ void *ss_sp; \/* Stack base or pointer *\/$/;" m struct:__anon19 file:
ss_sp src/signal/struct_sigstack.c /^ void *ss_sp;$/;" m struct:sigstack file:
sscanf src/stdio/sscanf.c /^int sscanf(const char * restrict s, const char * restrict format, ...)$/;" f
ssize_t src/sys/types/ssize_t.c /^typedef long int ssize_t;$/;" t file:
st_dev src/sys/stat/struct_stat.c /^ dev_t st_dev;$/;" m struct:stat file:
st_gid src/sys/stat/struct_stat.c /^ gid_t st_gid;$/;" m struct:stat file:
st_ino src/sys/stat/struct_stat.c /^ ino_t st_ino;$/;" m struct:stat file:
st_mode src/stdio/remove.c /^ struct stat { int st_mode; };$/;" m struct:stat file:
st_mode src/sys/stat/struct_stat.c /^ mode_t st_mode;$/;" m struct:stat file:
st_nlink src/sys/stat/struct_stat.c /^ nlink_t st_nlink;$/;" m struct:stat file:
st_rdev src/sys/stat/struct_stat.c /^ dev_t st_rdev;$/;" m struct:stat file:
st_size src/sys/stat/struct_stat.c /^ off_t st_size;$/;" m struct:stat file:
st_uid src/sys/stat/struct_stat.c /^ uid_t st_uid;$/;" m struct:stat file:
stack_t src/signal/stack_t.c /^} stack_t;$/;" t typeref:struct:__anon19 file:
start_bit_image src/term/start_bit_image.c 3;" d file:
start_char_set_def src/term/start_char_set_def.c 3;" d file:
start_color src/curses/start_color.c /^int start_color(void)$/;" f
stat src/stdio/remove.c /^ struct stat { int st_mode; };$/;" s file:
stat src/stdio/remove.c 9;" d file:
stat src/sys/stat/stat.c /^int stat(const char * restrict path, struct stat * restrict buf)$/;" f
stat src/sys/stat/struct_stat.c /^struct stat {$/;" s file:
status_line_esc_ok src/term/status_line_esc_ok.c 3;" d file:
statvfs src/sys/statvfs/statvfs.c /^int statvfs(const char * restrict path, struct statvfs * restrict buf)$/;" f
statvfs src/sys/statvfs/struct_statvfs.c /^struct statvfs {$/;" s file:
stderr src/stdio/stderr.c 2;" d file:
stdin src/stdio/stdin.c 2;" d file:
stdout src/stdio/stdout.c 2;" d file:
stdscr src/curses/stdscr.c /^WINDOW *stdscr;$/;" v
step src/regexp/step.c /^int step(const char *string, const char *expbuf)$/;" f
stop_bit_image src/term/stop_bit_image.c 3;" d file:
stop_char_set_def src/term/stop_char_set_def.c 3;" d file:
str_list src/stropts/struct_str_list.c /^struct str_list {$/;" s file:
str_mlist src/stropts/struct_str_mlist.c /^struct str_mlist {$/;" s file:
strbuf src/stropts/struct_strbuf.c /^struct strbuf {$/;" s file:
strcasecmp src/strings/strcasecmp.c /^int strcasecmp(const char *s1, const char *s2)$/;" f
strcat src/string/strcat.c /^char * strcat(char * restrict s1, const char * restrict s2)$/;" f
strchr src/string/strchr.c /^char * strchr(const char *s, int c)$/;" f
strcmp src/string/strcmp.c /^int strcmp(const char *s1, const char *s2)$/;" f
strcoll src/string/strcoll.c /^int strcoll(const char *s1, const char *s2)$/;" f
strcpy src/string/strcpy.c /^char * strcpy(char * restrict s1, const char * restrict s2)$/;" f
strcspn src/string/strcspn.c /^size_t strcspn(const char *s1, const char *s2)$/;" f
strdup src/string/strdup.c /^char * strdup(const char *s)$/;" f
strerror src/string/strerror.c /^char * strerror(int errnum)$/;" f
strfdinsert src/stropts/struct_strfdinsert.c /^struct strfdinsert {$/;" s file:
strfmon src/monetary/strfmon.c /^ssize_t strfmon(char * restrict s, size_t maxsize, const char * restrict format, ...)$/;" f
strftime src/time/strftime.c /^size_t strftime(char * restrict s, size_t maxsize, const char * restrict format, const struct tm * restrict timeptr)$/;" f
strioctl src/stropts/struct_strioctl.c /^struct strioctl {$/;" s file:
strlen src/string/strlen.c /^size_t strlen(const char *s)$/;" f
strncasecmp src/strings/strncasecmp.c /^int strncasecmp(const char *s1, const char *s2, size_t n)$/;" f
strncat src/string/strncat.c /^char * strncat(char * restrict s1, const char * restrict s2, size_t n)$/;" f
strncmp src/string/strncmp.c /^int strncmp(const char *s1, const char *s2, size_t n)$/;" f
strncpy src/string/strncpy.c /^char * strncpy(char * restrict s1, const char * restrict s2, size_t n)$/;" f
strpbrk src/string/strpbrk.c /^char * strpbrk(const char *s1, const char *s2)$/;" f
strpeek src/stropts/struct_strpeek.c /^struct strpeek {$/;" s file:
strptime src/time/strptime.c /^char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm)$/;" f
strrchr src/string/strrchr.c /^char * strrchr(const char *s, int c)$/;" f
strrecvfd src/stropts/struct_strrecvfd.c /^struct strrecvfd {$/;" s file:
strspn src/string/strspn.c /^size_t strspn(const char *s1, const char *s2)$/;" f
strstr src/string/strstr.c /^char * strstr(const char *s1, const char *s2)$/;" f
strtod src/stdlib/strtod.c /^double strtod(const char * restrict nptr, char ** restrict endptr)$/;" f
strtodf src/math/nan.c 7;" d file:
strtodl src/math/nan.c 8;" d file:
strtof src/stdlib/strtof.c /^float strtof(const char * restrict nptr, char ** restrict endptr)$/;" f
strtoimax src/inttypes/strtoimax.c /^intmax_t strtoimax(const char * restrict nptr, char ** restrict endptr, int base)$/;" f
strtok src/string/strtok.c /^char * strtok(char * restrict s1, const char * restrict s2)$/;" f
strtol src/stdlib/strtol.c /^long int strtol(const char * restrict nptr, char ** restrict endptr, int base)$/;" f
strtold src/stdlib/strtold.c /^long double strtold(const char * restrict nptr, char ** restrict endptr)$/;" f
strtoll src/stdlib/strtoll.c /^long long int strtoll(const char * restrict nptr, char ** restrict endptr, int base)$/;" f
strtoul src/stdlib/strtoul.c /^unsigned long int strtoul(const char * nptr, char ** endptr, int base)$/;" f
strtoull src/stdlib/strtoull.c /^unsigned long long int strtoull(const char * restrict nptr, char ** restrict endptr, int base)$/;" f
strtoumax src/inttypes/strtoumax.c /^uintmax_t strtoumax(const char *restrict nptr, char ** restrict endptr, int base)$/;" f
strtoumax src/stdio/__printf.c 15;" d file:
strxfrm src/string/strxfrm.c /^size_t strxfrm(char * restrict s1, const char * restrict s2, size_t n)$/;" f
subpad src/curses/subpad.c /^WINDOW * subpad(WINDOW * orig, int nlines, int ncols, int begin_y, int begin_x)$/;" f
subscript_characters src/term/subscript_characters.c 3;" d file:
subwin src/curses/subwin.c /^WINDOW * subwin(WINDOW * orig, int nlines, int ncols, int begin_y, int begin_x)$/;" f
superscript_characters src/term/superscript_characters.c 3;" d file:
swab src/unistd/swab.c /^void swab(const void * restrict src, void * restrict dest, ssize_t nbytes)$/;" f
swapcontext src/ucontext/swapcontext.c /^void swapcontext(ucontext_t *oucp, const ucontext_t *ucp)$/;" f
swprintf src/wchar/swprintf.c /^int swprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, ...)$/;" f
swscanf src/wchar/swscanf.c /^int swscanf(const wchar_t * restrict s, const wchar_t * restrict format, ...)$/;" f
symlink src/unistd/symlink.c /^int symlink(const char*path1, const char *path2)$/;" f
sync src/unistd/sync.c /^void sync(void)$/;" f
syncok src/curses/syncok.c /^int syncok(WINDOW * win, bool bf)$/;" f
sysconf src/unistd/sysconf.c /^long sysconf(int name)$/;" f
syslog src/syslog/syslog.c /^void syslog(int priority, const char * message, ...)$/;" f
sysname src/sys/utsname/struct_utsname.c /^ char sysname[100];$/;" m struct:utsname file:
system src/stdlib/system.c /^int system(const char * string)$/;" f
tab src/term/tab.c 3;" d file:
tan src/math/tan.c /^TYPE TGFN(tan)(TYPE x)$/;" f
tanh src/math/tanh.c /^TYPE TGFN(tanh)(TYPE x)$/;" f
tcdrain src/termios/tcdrain.c /^int tcdrain(int fildes)$/;" f
tcflag_t src/termios/tcflag_t.c /^typedef unsigned int tcflag_t;$/;" t file:
tcflow src/termios/tcflow.c /^int tcflow(int fildes, int action)$/;" f
tcflush src/termios/tcflush.c /^int tcflush(int fildes, int queue_selector)$/;" f
tcgetattr src/termios/tcgetattr.c /^int tcgetattr(int fildes, struct termios *termios_p)$/;" f
tcgetpgrp src/unistd/tcgetpgrp.c /^pid_t tcgetpgrp(int fildes)$/;" f
tcgetsid src/termios/tcgetsid.c /^pid_t tcgetsid(int fildes)$/;" f
tcsendbreak src/termios/tcsendbreak.c /^int tcsendbreak(int fildes, int duration)$/;" f
tcsetattr src/termios/tcsetattr.c /^int tcsetattr(int fildes, int optional_actions, struct termios *termios_p)$/;" f
tcsetpgrp src/unistd/tcsetpgrp.c /^int tcsetpgrp(int fildes, pid_t pgid_id)$/;" f
tdelete src/search/tdelete.c /^void *tdelete(const void * restrict key, void ** restrict rootp, int (*compar) (const void *, const void *))$/;" f
telldir src/dirent/telldir.c /^long telldir(DIR * dirp)$/;" f
tempnam src/stdio/tempnam.c /^char * tempnam(const char * dir, const char * pfx)$/;" f
terma_ttrs src/curses/term_attrs.c /^attr_t terma_ttrs(void)$/;" f
termattrs src/curses/termattrs.c /^chtype termattrs(void)$/;" f
termios src/termios/struct_termios.c /^struct termios {$/;" s file:
termname src/curses/termname.c /^char * termname(void)$/;" f
tfind src/search/tfind.c /^void *tfind(const void * key, void * const * rootp, int (*compar) (const void *, const void *))$/;" f
tgamma src/math/tgamma.c /^TYPE TGFN(tgamma)(TYPE x)$/;" f
tgetent src/term/tgetent.c /^int tgetent(char * bp, const char * name)$/;" f
tgetflag src/term/tgetflag.c /^int tgetflag(char id[2])$/;" f
tgetnum src/term/tgetnum.c /^int tgetnum(char id[2])$/;" f
tgetstr src/term/tgetstr.c /^char * tgetstr(char id[2], char ** area)$/;" f
tgoto src/term/tgoto.c /^char * tgoto(char * cap, int col, int row)$/;" f
these_cause_cr src/term/these_cause_cr.c 3;" d file:
thousands_sep src/locale/struct_lconv.c /^ char *thousands_sep; \/* "" *\/$/;" m struct:lconv file:
thrd_busy src/threads/_enums.c /^ thrd_busy = 1,$/;" e enum:__anon13 file:
thrd_create src/threads/thrd_create.c /^int thrd_create(thrd_t *thr, thrd_start_t func, void *arg)$/;" f
thrd_current src/threads/thrd_current.c /^thrd_t thrd_current(void)$/;" f
thrd_detach src/threads/thrd_detach.c /^int thrd_detach(thrd_t thr)$/;" f
thrd_equal src/threads/thrd_equal.c /^int thrd_equal(thrd_t thr0, thrd_t thr1)$/;" f
thrd_error src/threads/_enums.c /^ thrd_error = 2,$/;" e enum:__anon13 file:
thrd_exit src/threads/thrd_exit.c /^_Noreturn void thrd_exit(int res)$/;" f
thrd_join src/threads/thrd_join.c /^int thrd_join(thrd_t thr, int *res)$/;" f
thrd_nomem src/threads/_enums.c /^ thrd_nomem = 3,$/;" e enum:__anon13 file:
thrd_sleep src/threads/thrd_sleep.c /^int thrd_sleep(const struct timespec *duration, struct timespec *remaining)$/;" f
thrd_start_t src/threads/thrd_start_t.c /^typedef int (*thrd_start_t)(void *);$/;" t file:
thrd_success src/threads/_enums.c /^ thrd_success = 0,$/;" e enum:__anon13 file:
thrd_t src/threads/thrd_t.c /^typedef \/* same as pthread_t *\/ thrd_t;$/;" t file:
thrd_timedout src/threads/_enums.c /^ thrd_timedout = 4,$/;" e enum:__anon13 file:
thrd_yield src/threads/thrd_yield.c /^void thrd_yield(void)$/;" f
thread_local src/threads/thread_local.c 1;" d file:
tigetflag src/term/tigetflag.c /^int tigetflag(const char * capname)$/;" f
tigetnum src/term/tigetnum.c /^int tigetnum(const char * capname)$/;" f
tigetstr src/term/tigetstr.c /^char * tigetstr(const char * capname)$/;" f
tilde_glitch src/term/tilde_glitch.c 3;" d file:
time src/sys/timeb/struct_timeb.c /^ time_t time;$/;" m struct:timeb file:
time src/time/time.c /^time_t time(time_t * timer)$/;" f
time_t src/time/time_t.c /^typedef long int time_t;$/;" t file:
timeb src/sys/timeb/struct_timeb.c /^struct timeb {$/;" s file:
timer_create src/time/timer_create.c /^int timer_create(clockid_t clockid, struct sigevent *restrict evp, timer_t *restrict timerid)$/;" f
timer_delete src/time/timer_delete.c /^int timer_delete(timer_t timerid)$/;" f
timer_getoverrun src/time/timer_getoverrun.c /^int timer_getoverrun(timer_t timerid)$/;" f
timer_gettime src/time/timer_gettime.c /^int timer_gettime(timer_t timerid, struct itimerspec *value)$/;" f
timer_settime src/time/timer_settime.c /^int timer_settime(timer_t timerid, int flags, const struct itimerspec * restrict value, struct itimerspec * restrict ovalue)$/;" f
timer_t src/sys/types/timer_t.c /^typedef unsigned long int timer_t;$/;" t file:
times src/sys/times/times.c /^clock_t times(struct tms *buffer)$/;" f
timespec src/time/struct_timespec.c /^struct timespec {$/;" s file:
timeval src/sys/time/struct_timeval.c /^struct timeval {$/;" s file:
timezone src/sys/timeb/struct_timeb.c /^ short timezone;$/;" m struct:timeb file:
timezone src/time/timezone.c /^long timezone;$/;" v
tiparm src/term/tiparm.c /^char * tiparm(const char * cap, ...)$/;" f
tm src/time/struct_tm.c /^struct tm {$/;" s file:
tm_hour src/time/struct_tm.c /^ int tm_hour; \/* Hour [0,23] *\/$/;" m struct:tm file:
tm_isdst src/time/struct_tm.c /^ int tm_isdst; \/* Daylight Saving Time flag *\/$/;" m struct:tm file:
tm_mday src/time/struct_tm.c /^ int tm_mday; \/* Day of the month [1,31] *\/$/;" m struct:tm file:
tm_min src/time/struct_tm.c /^ int tm_min; \/* Minutes [0, 59] *\/$/;" m struct:tm file:
tm_mon src/time/struct_tm.c /^ int tm_mon; \/* Month of the year [0,11] *\/$/;" m struct:tm file:
tm_sec src/time/struct_tm.c /^ int tm_sec; \/* Seconds [0,60] *\/$/;" m struct:tm file:
tm_wday src/time/struct_tm.c /^ int tm_wday; \/* Day of the week [0,6] (Sunday = 0) *\/$/;" m struct:tm file:
tm_yday src/time/struct_tm.c /^ int tm_yday; \/* Day of the year [0,365] *\/$/;" m struct:tm file:
tm_year src/time/struct_tm.c /^ int tm_year; \/* Years since 1900 *\/$/;" m struct:tm file:
tmpfile src/stdio/tmpfile.c /^FILE * tmpfile(void)$/;" f
tmpnam src/stdio/tmpnam.c /^char * tmpnam(char *s)$/;" f
tms src/sys/times/struct_tms.c /^struct tms {$/;" s file:
tms_cstime src/sys/times/struct_tms.c /^ clock_t tms_cstime;$/;" m struct:tms file:
tms_cutime src/sys/times/struct_tms.c /^ clock_t tms_cutime;$/;" m struct:tms file:
tms_stime src/sys/times/struct_tms.c /^ clock_t tms_stime;$/;" m struct:tms file:
tms_utime src/sys/times/struct_tms.c /^ clock_t tms_utime;$/;" m struct:tms file:
to_status_line src/term/to_status_line.c 3;" d file:
toascii src/ctype/toascii.c /^int toascii(int c)$/;" f
tolower src/ctype/tolower.c /^int tolower(int c)$/;" f
tone src/term/tone.c 3;" d file:
touchline src/curses/touchline.c /^int touchline(WINDOW * win, int start, int count)$/;" f
touchwin src/curses/touchwin.c /^int touchwin(WINDOW * win)$/;" f
toupper src/ctype/toupper.c /^int toupper(int c)$/;" f
towctrans src/wctype/towctrans.c /^wint_t towctrans(wint_t wc, wctrans_t desc)$/;" f
towlower src/wctype/towlower.c /^wint_t towlower(wint_t wc)$/;" f
towupper src/wctype/towupper.c /^wint_t towupper(wint_t wc)$/;" f
tparm src/term/tparm.c /^char * tparm(const char * cap, long p1, long p2, long p3, long p4, long p5, long p6, long p7, long p8, long p9)$/;" f
tputs src/term/tputs.c /^int tputs(const char * str, int affcnt, int (*putfunc)(int))$/;" f
transparent_underline src/term/transparent_underline.c 3;" d file:
true src/stdbool/true.c 5;" d file:
trunc src/math/trunc.c /^TYPE TGFN(trunc)(TYPE x)$/;" f
truncate src/unistd/truncate.c /^int truncate(const char *path, off_t length)$/;" f
tsearch src/search/tsearch.c /^void *tsearch(const void * key, void ** rootp, int (*compar) (const void *, const void *))$/;" f
tss_create src/threads/tss_create.c /^int tss_create(tss_t *key, tss_dtor_t dtor)$/;" f
tss_delete src/threads/tss_delete.c /^void tss_delete(tss_t key)$/;" f
tss_dtor_t src/threads/tss_dtor_t.c /^typedef void (*tss_dtor_t)(void*);$/;" t file:
tss_get src/threads/tss_get.c /^void *tss_get(tss_t key)$/;" f
tss_set src/threads/tss_set.c /^int tss_set(tss_t key, void *val)$/;" f
tss_t src/threads/tss_t.c /^typedef \/* same as pthread_key_t *\/ tss_t;$/;" t file:
ttyname src/unistd/ttyname.c /^char *ttyname(int fildes)$/;" f
ttyslot src/stdlib/ttyslot.c /^int ttyslot(void)$/;" f
tv_nsec src/time/struct_timespec.c /^ long tv_nsec; \/* Nanoseonds *\/$/;" m struct:timespec file:
tv_sec src/sys/time/struct_timeval.c /^ time_t tv_sec;$/;" m struct:timeval file:
tv_sec src/time/struct_timespec.c /^ time_t tv_sec; \/* Seconds *\/$/;" m struct:timespec file:
tv_usec src/sys/time/struct_timeval.c /^ suseconds_t tv_usec;$/;" m struct:timeval file:
twalk src/search/twalk.c /^void twalk(const void * root, void (*action) (const void *, VISIT, int))$/;" f
typeahead src/curses/typeahead.c /^int typeahead(int fildes)$/;" f
tzname src/time/tzname.c /^char * tzname[2];$/;" v
tzset src/time/tzset.c /^void tzset(void)$/;" f
ualarm src/unistd/ualarm.c /^useconds_t ualarm(useconds_t useconds, useconds_t interval)$/;" f
uc_link src/ucontext/ucontext_t.c /^ struct ucontext_t * uc_link;$/;" m struct:ucontext_t typeref:struct:ucontext_t::ucontext_t file:
uc_mcontext src/ucontext/ucontext_t.c /^ mcontext_t uc_mcontext;$/;" m struct:ucontext_t file:
uc_sigmask src/ucontext/ucontext_t.c /^ sigset_t uc_sigmask;$/;" m struct:ucontext_t file:
uc_stack src/ucontext/ucontext_t.c /^ stack_t uc_stack;$/;" m struct:ucontext_t file:
ucontext_t src/ucontext/getcontext.c /^typedef struct ucontext_t ucontext_t;$/;" t typeref:struct:ucontext_t file:
ucontext_t src/ucontext/makecontext.c /^typedef struct ucontext_t ucontext_t;$/;" t typeref:struct:ucontext_t file:
ucontext_t src/ucontext/setcontext.c /^typedef struct ucontext_t ucontext_t;$/;" t typeref:struct:ucontext_t file:
ucontext_t src/ucontext/swapcontext.c /^typedef struct ucontext_t ucontext_t;$/;" t typeref:struct:ucontext_t file:
ucontext_t src/ucontext/ucontext_t.c /^typedef struct ucontext_t {$/;" s file:
ucontext_t src/ucontext/ucontext_t.c /^} ucontext_t;$/;" t typeref:struct:ucontext_t file:
uid src/stropts/struct_strrecvfd.c /^ uid_t uid;$/;" m struct:strrecvfd file:
uid src/sys/ipc/struct_ipc_perm.c /^ uid_t uid; \/* Owner's user ID *\/$/;" m struct:ipc_perm file:
uid_t src/sys/types/uid_t.c /^ uid_t;$/;" t file:
uint16_t src/stdint/uint16_t.c /^typedef unsigned short int uint16_t;$/;" t file:
uint32_t src/stdint/uint32_t.c /^typedef unsigned int uint32_t;$/;" t file:
uint64_t src/stdint/uint64_t.c /^typedef unsigned long long int uint64_t;$/;" t file:
uint8_t src/stdint/uint8_t.c /^typedef unsigned char uint8_t;$/;" t file:
uint_fast16_t src/stdint/uint_fast16_t.c /^typedef unsigned short int uint_fast16_t;$/;" t file:
uint_fast32_t src/stdint/uint_fast32_t.c /^typedef unsigned int uint_fast32_t;$/;" t file:
uint_fast64_t src/stdint/uint_fast64_t.c /^typedef unsigned long long int uint_fast64_t;$/;" t file:
uint_fast8_t src/stdint/uint_fast8_t.c /^typedef unsigned char uint_fast8_t;$/;" t file:
uint_least16_t src/stdint/uint_least16_t.c /^typedef unsigned short int uint_least16_t;$/;" t file:
uint_least32_t src/stdint/uint_least32_t.c /^typedef unsigned long int uint_least32_t;$/;" t file:
uint_least64_t src/stdint/uint_least64_t.c /^typedef unsigned long long int uint_least64_t;$/;" t file:
uint_least8_t src/stdint/uint_least8_t.c /^typedef unsigned char uint_least8_t;$/;" t file:
uintmax_t src/inttypes/uintmax_t.c /^typedef unsigned long long int uintmax_t;$/;" t file:
uintmax_t src/stdint/uintmax_t.c /^typedef unsigned long long int uintmax_t;$/;" t file:
uintptr_t src/stdint/uintptr_t.c /^typedef unsigned long long int uintptr_t;$/;" t file:
ulimit src/ulimit/ulimit.c /^long ulimit(int cmd, ...)$/;" f
umask src/sys/stat/umask.c /^mode_t umask(mode_t cmask)$/;" f
uname src/sys/utsname/uname.c /^int uname(struct utsname *name)$/;" f
unctrl src/unctrl/unctrl.c /^char * unctrl(chtype c)$/;" f
underline_char src/term/underline_char.c 3;" d file:
unget_wch src/curses/unget_wch.c /^int unget_wch(const wchar_t wch)$/;" f
ungetc src/stdio/ungetc.c /^int ungetc(int c, FILE *stream)$/;" f
ungetch src/curses/ungetch.c /^int ungetch(int ch)$/;" f
ungetwc src/wchar/ungetwc.c /^wint_t ungetwc(wint_t c, FILE * stream)$/;" f
unlink src/stdio/remove.c 12;" d file:
unlink src/unistd/unlink.c /^int unlink(const char *path)$/;" f
unlockpt src/stdlib/unlockpt.c /^int unlockpt(int fildes)$/;" f
untouchwin src/curses/untouchwin.c /^int untouchwin(WINDOW * win)$/;" f
up_half_line src/term/up_half_line.c 3;" d file:
use_env src/curses/use_env.c /^void use_env(bool boolval)$/;" f
useconds_t src/sys/time/getitimer.c /^typedef unsigned int useconds_t;$/;" t file:
useconds_t src/sys/time/gettimeofday.c /^typedef unsigned int useconds_t;$/;" t file:
useconds_t src/sys/time/select.c /^typedef unsigned int useconds_t;$/;" t file:
useconds_t src/sys/time/setitimer.c /^typedef unsigned int useconds_t;$/;" t file:
useconds_t src/sys/time/utimes.c /^typedef unsigned int useconds_t;$/;" t file:
useconds_t src/sys/types/useconds_t.c /^typedef unsigned int useconds_t;$/;" t file:
user0 src/term/user0.c 3;" d file:
user1 src/term/user1.c 3;" d file:
user2 src/term/user2.c 3;" d file:
user3 src/term/user3.c 3;" d file:
user4 src/term/user4.c 3;" d file:
user5 src/term/user5.c 3;" d file:
user6 src/term/user6.c 3;" d file:
user7 src/term/user7.c 3;" d file:
user8 src/term/user8.c 3;" d file:
user9 src/term/user9.c 3;" d file:
usleep src/unistd/usleep.c /^int usleep(useconds_t useconds)$/;" f
ut_id src/utmpx/struct_utmpx.c /^ char ut_id[];$/;" m struct:utmpx file:
ut_line src/utmpx/struct_utmpx.c /^ char ut_line[];$/;" m struct:utmpx file:
ut_pid src/utmpx/struct_utmpx.c /^ pid_t ut_pid;$/;" m struct:utmpx file:
ut_tv src/utmpx/struct_utmpx.c /^ struct timeval ut_tv;$/;" m struct:utmpx typeref:struct:utmpx::timeval file:
ut_type src/utmpx/struct_utmpx.c /^ short ut_type;$/;" m struct:utmpx file:
ut_user src/utmpx/struct_utmpx.c /^ char ut_user[];$/;" m struct:utmpx file:
utimbuf src/utime/struct_utimbuf.c /^struct utimbuf {$/;" s file:
utime src/utime/utime.c /^int utime(const char *path, const struct utimbuf *times)$/;" f
utimes src/sys/time/utimes.c /^int utimes(const char *path, const struct timeval times[2])$/;" f
utmpx src/utmpx/struct_utmpx.c /^struct utmpx {$/;" s file:
utsname src/sys/utsname/struct_utsname.c /^struct utsname {$/;" s file:
va_arg src/stdarg/va_arg.c 5;" d file:
va_copy src/stdarg/va_copy.c 5;" d file:
va_end src/stdarg/va_end.c 5;" d file:
va_list src/stdarg/va_list.c /^typedef __builtin_va_list va_list;$/;" t file:
va_start src/stdarg/va_start.c 5;" d file:
valloc src/stdlib/valloc.c /^void *valloc(size_t size)$/;" f
version src/sys/utsname/struct_utsname.c /^ char version[100];$/;" m struct:utsname file:
vfork src/unistd/vfork.c /^pid_t vfork(void)$/;" f
vfprintf src/stdio/vfprintf.c /^int vfprintf(FILE * restrict stream, const char * restrict format, va_list arg)$/;" f
vfscanf src/stdio/vfscanf.c /^int vfscanf(FILE * restrict stream, const char * restrict format, va_list arg)$/;" f
vfwprintf src/wchar/vfwprintf.c /^int vfwprintf(FILE * restrict stream, const wchar_t * restrict format, va_list arg)$/;" f
vfwscanf src/wchar/vfwscanf.c /^int vfwscanf(FILE * restrict stream, const wchar_t * restrict format, va_list arg)$/;" f
vid_puts src/curses/vid_puts.c /^int vid_puts(attr_t attr, short color_pair_number, void * opt, int (*putfunc)(int))$/;" f
vid_ttr src/curses/vid_attr.c /^int vid_ttr(attr_t attr, short color_pair_number, void * opt)$/;" f
vidattr src/curses/vidattr.c /^int vidattr(chtype attr)$/;" f
vidputs src/curses/vidputs.c /^int vidputs(chtype attr, int (*putfunc)(int))$/;" f
virtual_terminal src/term/virtual_terminal.c 3;" d file:
vprintf src/stdio/vprintf.c /^int vprintf(const char * restrict format, va_list arg)$/;" f
vscanf src/stdio/vscanf.c /^int vscanf(const char * restrict format, va_list arg)$/;" f
vsnprintf src/stdio/vsnprintf.c /^int vsnprintf(char * restrict s, size_t n, const char *format, va_list arg)$/;" f
vsprintf src/stdio/vsprintf.c /^int vsprintf(char *s, const char *format, va_list arg)$/;" f
vsscanf src/stdio/vsscanf.c /^int vsscanf(const char * restrict s, const char * restrict format, va_list arg)$/;" f
vswprintf src/wchar/vswprintf.c /^int vswprintf(wchar_t * restrict s, size_t n, const wchar_t * restrict format, va_list arg)$/;" f
vswscanf src/wchar/vswscanf.c /^int vswscanf(const wchar_t * restrict s, const wchar_t * restrict format, va_list arg)$/;" f
vw_printw src/curses/vw_printw.c /^int vw_printw(WINDOW * win, const char * fmt, va_list varglist)$/;" f
vw_scanw src/curses/vw_scanw.c /^int vw_scanw(WINDOW * win, const char * fmt, va_list varglist)$/;" f
vwprintf src/wchar/vwprintf.c /^int vwprintf(const wchar_t * restrict format, va_list arg)$/;" f
vwscanf src/wchar/vwscanf.c /^int vwscanf(const wchar_t * restrict format, va_list arg)$/;" f
wadd_wch src/curses/add_wch.c /^int wadd_wch(WINDOW * win, const cchar_t * wch)$/;" f
wadd_wchnstr src/curses/add_wchnstr.c /^int wadd_wchnstr(WINDOW * win, const cchar_t * wchstr, int n)$/;" f
wadd_wchstr src/curses/add_wchstr.c /^int wadd_wchstr(WINDOW * win, const cchar_t * wchstr)$/;" f
waddch src/curses/addch.c /^int waddch(WINDOW * win, const chtype ch)$/;" f
waddchnstr src/curses/addchnstr.c /^int waddchnstr(WINDOW * win, const chtype * chstr, int n)$/;" f
waddchstr src/curses/addchstr.c /^int waddchstr(WINDOW * win, const chtype * chstr)$/;" f
waddnstr src/curses/addnstr.c /^int waddnstr(WINDOW * win, const char * str, int n)$/;" f
waddnwstr src/curses/addnwstr.c /^int waddnwstr(WINDOW * win, const wchar_t * wstr, int n)$/;" f
waddstr src/curses/addstr.c /^int waddstr(WINDOW *win, const char * str)$/;" f
waddwstr src/curses/addwstr.c /^int waddwstr(WINDOW * win, const wchar_t * wstr)$/;" f
wait src/sys/wait/wait.c /^pid_t wait(int *stat_loc)$/;" f
wait3 src/sys/wait/wait3.c /^pid_t wait3(int *stat_loc, int options, struct rusage *resource_usage)$/;" f
wait_tone src/term/wait_tone.c 3;" d file:
waitid src/sys/wait/waitid.c /^int waitid(idtype_t idtype, id_t id, siginfo_t *infop, int options)$/;" f
waitid src/sys/wait/waitpid.c 15;" d file:
waitpid src/sys/wait/waitpid.c /^pid_t waitpid(pid_t pid, int *stat_loc, int options)$/;" f
wattr_get src/curses/attr_get.c /^int wattr_get(WINDOW * win, attr_t * attrs, short * color_pair_number, void * opts)$/;" f
wattr_off src/curses/attr_off.c /^int wattr_off(WINDOW * win, attr_t attrs, void * opts)$/;" f
wattr_on src/curses/attr_on.c /^int wattr_on(WINDOW * win, attr_t attrs, void * opts)$/;" f
wattr_set src/curses/attr_set.c /^int wattr_set(WINDOW * win, attr_t attrs, short color_pair_number, void * opts)$/;" f
wattroff src/curses/attroff.c /^int wattroff(WINDOW * win, int attrs)$/;" f
wattron src/curses/attron.c /^int wattron(WINDOW * win, int attrs)$/;" f
wattrset src/curses/attrset.c /^int wattrset(WINDOW * win, int attrs)$/;" f
wbkgd src/curses/bkgd.c /^int wbkgd(WINDOW * win, chtype ch)$/;" f
wbkgdset src/curses/bkgdset.c /^void wbkgdset(WINDOW * win, chtype ch)$/;" f
wbkgrnd src/curses/bkgrnd.c /^int wbkgrnd(WINDOW * win, const cchar_t * wch)$/;" f
wbkgrndset src/curses/bkgrndset.c /^void wbkgrndset(WINDOW * win, const cchar_t * wch)$/;" f
wborder src/curses/border.c /^int wborder(WINDOW * win, chtype ls, chtype rs, chtype ts, chtype bs, chtype tl, chtype tr, chtype bl, chtype br)$/;" f
wborder_set src/curses/border_set.c /^int wborder_set(WINDOW * win, const cchar_t * ls, const cchar_t * rs, const cchar_t * ts, const cchar_t * bs, const cchar_t * tl, const cchar_t * tr, const cchar_t * bl, const cchar_t * br)$/;" f
wchgat src/curses/chgat.c /^int wchgat(WINDOW * win, int n, attr_t attr, short color, const void * opts)$/;" f
wclear src/curses/clear.c /^int wclear(WINDOW * win)$/;" f
wclrtobot src/curses/clrtobot.c /^int wclrtobot(WINDOW * win)$/;" f
wclrtoeol src/curses/clrtoeol.c /^int wclrtoeol(WINDOW * win)$/;" f
wcolor_set src/curses/color_set.c /^int wcolor_set(WINDOW * win, short color_pair_number, void * opts)$/;" f
wcrtomb src/wchar/wcrtomb.c /^size_t wcrtomb(char * restrict s, wchar_t wc, mbstate_t * restrict ps)$/;" f
wcscat src/wchar/wcscat.c /^wchar_t * wcscat(wchar_t * restrict s1, const wchar_t * restrict s2)$/;" f
wcschr src/wchar/wcschr.c /^wchar_t * wcschr(const wchar_t * s, wchar_t c)$/;" f
wcscmp src/wchar/wcscmp.c /^int wcscmp(const wchar_t * s1, const wchar_t * s2)$/;" f
wcscoll src/wchar/wcscoll.c /^int wcscoll(const wchar_t * s1, const wchar_t * s2)$/;" f
wcscpy src/wchar/wcscpy.c /^wchar_t * wcscpy(wchar_t * restrict s1, const wchar_t * restrict s2)$/;" f
wcscspn src/wchar/wcscspn.c /^size_t wcscspn(const wchar_t * s1, const wchar_t * s2)$/;" f
wcsftime src/wchar/wcsftime.c /^size_t wcsftime(wchar_t * restrict s, size_t maxsize, const wchar_t * restrict format, const struct tm * restrict timeptr)$/;" f
wcslen src/wchar/wcslen.c /^size_t wcslen(const wchar_t * s)$/;" f
wcsncat src/wchar/wcsncat.c /^wchar_t * wcsncat(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)$/;" f
wcsncmp src/wchar/wcsncmp.c /^int wcsncmp(const wchar_t * s1, const wchar_t * s2, size_t n)$/;" f
wcsncpy src/wchar/wcsncpy.c /^wchar_t * wcsncpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)$/;" f
wcspbrk src/wchar/wcspbrk.c /^wchar_t * wcspbrk(const wchar_t * s1, const wchar_t * s2)$/;" f
wcsrchr src/wchar/wcsrchr.c /^wchar_t * wcsrchr(const wchar_t * s, wchar_t c)$/;" f
wcsrtombs src/wchar/wcsrtombs.c /^size_t wcsrtombs(char * restrict dst, const wchar_t ** restrict src, size_t len, mbstate_t * restrict ps)$/;" f
wcsspn src/wchar/wcsspn.c /^size_t wcsspn(const wchar_t * s1, const wchar_t * s2)$/;" f
wcsstr src/wchar/wcsstr.c /^wchar_t * wcsstr(const wchar_t * s1, const wchar_t * s2)$/;" f
wcstod src/wchar/wcstod.c /^double wcstod(const wchar_t * restrict nptr, wchar_t ** restrict endptr)$/;" f
wcstof src/wchar/wcstof.c /^float wcstof(const wchar_t * restrict nptr, wchar_t ** restrict endptr)$/;" f
wcstoimax src/inttypes/wcstoimax.c /^intmax_t wcstoimax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;" f
wcstok src/wchar/wcstok.c /^wchar_t * wcstok(wchar_t * restrict s1, const wchar_t * restrict s2, wchar_t ** restrict ptr)$/;" f
wcstol src/wchar/wcstol.c /^long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;" f
wcstold src/wchar/wcstold.c /^long double wcstold(const wchar_t * restrict nptr, wchar_t ** restrict endptr)$/;" f
wcstoll src/wchar/wcstoll.c /^long long int wcstoll(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;" f
wcstombs src/stdlib/wcstombs.c /^size_t wcstombs(char * restrict s, const wchar_t * restrict pwcs, size_t n)$/;" f
wcstoul src/wchar/wcstoul.c /^unsigned long int wcstoul(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;" f
wcstoull src/wchar/wcstoull.c /^unsigned long long int wcstoull(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;" f
wcstoumax src/inttypes/wcstoumax.c /^uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)$/;" f
wcswcs src/wchar/wcswcs.c /^wchar_t * wcswcs(const wchar_t * s1, const wchar_t * s2)$/;" f
wcswidth src/wchar/wcswidth.c /^int wcswidth(const wchar_t * wcsptr, size_t n)$/;" f
wcsxfrm src/wchar/wcsxfrm.c /^size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)$/;" f
wctob src/wchar/wctob.c /^int wctob(wint_t c)$/;" f
wctomb src/stdlib/wctomb.c /^int wctomb(char * s, wchar_t wchar)$/;" f
wctrans src/wctype/wctrans.c /^wctrans_t wctrans(const char * property)$/;" f
wctrans_t src/wctype/wctrans_t.c /^typedef int wctrans_t;$/;" t file:
wctype src/wctype/wctype.c /^wctype_t wctype(const char * property)$/;" f
wctype_t src/wctype/wctype_t.c /^typedef int wctype_t;$/;" t file:
wcursyncup src/curses/wcursyncup.c /^void wcursyncup(WINDOW * win)$/;" f
wcwidth src/wchar/wcwidth.c /^int wcwidth(wchar_t wc)$/;" f
wdelch src/curses/delch.c /^int wdelch(WINDOW * win)$/;" f
wdeleteln src/curses/deleteln.c /^int wdeleteln(WINDOW * win)$/;" f
we_offs src/wordexp/wordexp_t.c /^ size_t we_offs;$/;" m struct:__anon9 file:
we_wordc src/wordexp/wordexp_t.c /^ size_t we_wordc;$/;" m struct:__anon9 file:
we_wordv src/wordexp/wordexp_t.c /^ char ** we_wordv;$/;" m struct:__anon9 file:
wecho_wchar src/curses/echo_wchar.c /^int wecho_wchar(WINDOW * win, const cchar_t * wch)$/;" f
wechochar src/curses/echochar.c /^int wechochar(WINDOW * win, const chtype wch)$/;" f
werase src/curses/erase.c /^int werase(WINDOW * win)$/;" f
wget_wch src/curses/get_wch.c /^int wget_wch(WINDOW * win, wint_t * ch)$/;" f
wget_wstr src/curses/get_wstr.c /^int wget_wstr(WINDOW * win, wint_t * wstr)$/;" f
wgetbkgrnd src/curses/getbkgrnd.c /^chtype wgetbkgrnd(WINDOW * win, cchar_t * wch)$/;" f
wgetch src/curses/getch.c /^int wgetch(WINDOW * win)$/;" f
wgetn_wstr src/curses/getn_wstr.c /^int wgetn_wstr(WINDOW * win, wint_t * wstr, int n)$/;" f
wgetnstr src/curses/getnstr.c /^int wgetnstr(WINDOW * win, char * str, int n)$/;" f
wgetstr src/curses/getstr.c /^int wgetstr(WINDOW * win, char * str)$/;" f
whline src/curses/hline.c /^int whline(WINDOW * win, chtype ch, int n)$/;" f
whline_set src/curses/hline_set.c /^int whline_set(WINDOW * win, const cchar_t * wch, int n)$/;" f
wide_char_size src/term/wide_char_size.c 3;" d file:
width_status_line src/term/width_status_line.c 3;" d file:
win_wch src/curses/in_wch.c /^int win_wch(WINDOW * win, cchar_t * wcval)$/;" f
win_wchnstr src/curses/in_wchnstr.c /^int win_wchnstr(WINDOW * win, cchar_t * wcstr, int n)$/;" f
win_wchstr src/curses/in_wchstr.c /^int win_wchstr(WINDOW * win, cchar_t * wcstr)$/;" f
winch src/curses/inch.c /^chtype winch(WINDOW * win)$/;" f
winchnstr src/curses/inchnstr.c /^int winchnstr(WINDOW * win, chtype * chstr, int n)$/;" f
winchstr src/curses/inchstr.c /^int winchstr(WINDOW * win, chtype * chstr)$/;" f
winnstr src/curses/innstr.c /^int winnstr(WINDOW * win, char * str, int n)$/;" f
winnwstr src/curses/innwstr.c /^int winnwstr(WINDOW * win, wchar_t * wstr, int n)$/;" f
winsch src/curses/insch.c /^int winsch(WINDOW * win, chtype ch)$/;" f
winsdelln src/curses/insdelln.c /^int winsdelln(WINDOW * win, int n)$/;" f
winsertln src/curses/insertln.c /^int winsertln(WINDOW * win)$/;" f
winsnstr src/curses/insnstr.c /^int winsnstr(WINDOW * win, const char * str, int n)$/;" f
winsstr src/curses/insstr.c /^int winsstr(WINDOW * win, const char * str)$/;" f
winstr src/curses/instr.c /^int winstr(WINDOW * win, char * str)$/;" f
wint_t src/wctype/wint_t.c /^typedef int wint_t;$/;" t file:
winwstr src/curses/inwstr.c /^int winwstr(WINDOW * win, wchar_t * wstr)$/;" f
wmemchr src/wchar/wmemchr.c /^wchar_t * wmemchr(const wchar_t * s, wchar_t c, size_t n)$/;" f
wmemcmp src/wchar/wmemcmp.c /^int wmemcmp(const wchar_t * s1, const wchar_t * s2, size_t n)$/;" f
wmemcpy src/wchar/wmemcpy.c /^wchar_t * wmemcpy(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)$/;" f
wmemmove src/wchar/wmemmove.c /^wchar_t * wmemmove(wchar_t * s1, const wchar_t * s2, size_t n)$/;" f
wmemset src/wchar/wmemset.c /^wchar_t * wmemset(wchar_t * s, wchar_t c, size_t n)$/;" f
wmove src/curses/move.c /^int wmove(WINDOW * win, int y, int x)$/;" f
wnoutrefresh src/curses/wnoutrefresh.c /^int wnoutrefresh(WINDOW * win)$/;" f
wordexp src/wordexp/wordexp.c /^int wordexp(const char *restrict words, wordexp_t *restrict pwordexp, int flags)$/;" f
wordexp_t src/wordexp/wordexp_t.c /^} wordexp_t;$/;" t typeref:struct:__anon9 file:
wordfree src/wordexp/wordfree.c /^void wordfree(wordexp_t *pwordexp)$/;" f
wprintf src/wchar/wprintf.c /^int wprintf(const wchar_t * restrict format, ...)$/;" f
wprintw src/curses/wprintw.c /^int wprintw(WINDOW * win, const char * fmt, ...)$/;" f
wredrawln src/curses/wredrawln.c /^int wredrawln(WINDOW * win, int beg_line, int num_lines)$/;" f
wrefresh src/curses/refresh.c /^int wrefresh(WINDOW * win)$/;" f
write src/stdio/putc_unlocked.c 9;" d file:
write src/unistd/write.c /^ssize_t write(int fildes, const void *buf, size_t nbyte)$/;" f
writev src/sys/uio/writev.c /^ssize_t writev(int fildes, const struct iovec * iov, int iovcnt)$/;" f
wscanf src/wchar/wscanf.c /^int wscanf(const wchar_t * restrict format, ...)$/;" f
wscanw src/curses/wscanw.c /^int wscanw(WINDOW * win, const char * fmt, ...)$/;" f
wscrl src/curses/scrl.c /^int wscrl(WINDOW * win, int n)$/;" f
wsetscrreg src/curses/setscrreg.c /^int wsetscrreg(WINDOW * win, int top, int bot)$/;" f
wstandend src/curses/standend.c /^int wstandend(WINDOW * win)$/;" f
wstandout src/curses/standout.c /^int wstandout(WINDOW * win)$/;" f
wsyncdown src/curses/wsyncdown.c /^void wsyncdown(WINDOW * win)$/;" f
wsyncup src/curses/wsyncup.c /^void wsyncup(WINDOW * win)$/;" f
wtimeout src/curses/timeout.c /^void wtimeout(int delay)$/;" f
wtouchln src/curses/wtouchln.c /^int wtouchln(WINDOW * win, int y, int x, int changed)$/;" f
wunctrl src/curses/wunctrl.c /^wchar_t * wunctrl(cchar_t * wc)$/;" f
wvline src/curses/vline.c /^int wvline(WINDOW * win, chtype ch, int n)$/;" f
wvline_set src/curses/vline_set.c /^int wvline_set(WINDOW * win, const cchar_t * wch, int n)$/;" f
xoff_character src/term/xoff_character.c 3;" d file:
xon_character src/term/xon_character.c 3;" d file:
xon_xoff src/term/xon_xoff.c 3;" d file:
xor src/iso646/xor.c 5;" d file:
xor_eq src/iso646/xor_eq.c 5;" d file:
y0 src/math/y0.c /^double y0(double x)$/;" f
y1 src/math/y1.c /^double y1(double x)$/;" f
yn src/math/yn.c /^double yn(int n, double x)$/;" f
zero_motion src/term/zero_motion.c 3;" d file:
|