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
|
apollo/netinet/in.h Apollo DomainOS port: C header file frontend
Artistic The "Artistic License"
AUTHORS Contact info for contributors
autodoc.pl Creates pod/perlintern.pod and pod/perlapi.pod
av.c Array value code
av.h Array value header
beos/beos.c BeOS port
beos/beosish.h BeOS port
beos/nm.c BeOS port
bytecode.pl Produces ext/ByteLoader/byterun.h, ext/ByteLoader/byterun.c and ext/B/Asmdata.pm
cc_runtime.h Macros need by runtime of compiler-generated code
cflags.SH A script that emits C compilation flags per file
Changes Differences from previous version
Changes5.000 Differences between 4.x and 5.000
Changes5.001 Differences between 5.000 and 5.001
Changes5.002 Differences between 5.001 and 5.002
Changes5.003 Differences between 5.002 and 5.003
Changes5.004 Differences between 5.003 and 5.004
Changes5.005 Differences between 5.004 and 5.005
Changes5.6 Differences between 5.005 and 5.6
Changes5.8 Differences between 5.6.0 and 5.8.0 (and maint-5.6)
Changes5.8.1 Differences between 5.8.0 and 5.8.1
Changes5.8.2 Differences between 5.8.1 and 5.8.2
config_h.SH Produces config.h
configpm Produces lib/Config.pm
Configure Portability tool
configure.com Configure-equivalent for VMS
configure.gnu Crude emulation of GNU configure
cop.h Control operator header
Copying The GNU General Public License
Cross/config Cross-compilation
Cross/config.sh-arm-linux Cross-compilation
Cross/generate_config_sh Cross-compilation
Cross/installperl.patch Cross-compilation
Cross/Makefile Cross-compilation
Cross/Makefile.SH.patch Cross-compilation
Cross/README Cross-compilation
Cross/TODO Cross-compilation
Cross/warp Cross-compilation
cv.h Code value header
cygwin/cygwin.c Additional code for Cygwin port
cygwin/ld2.in ld wrapper template for Cygwin port
cygwin/Makefile.SHs Shared library generation for Cygwin port
cygwin/perlld.in dll generator template for Cygwin port
deb.c Debugging routines
djgpp/config.over DOS/DJGPP port
djgpp/configure.bat DOS/DJGPP port
djgpp/djgpp.c DOS/DJGPP port
djgpp/djgpp.h DOS/DJGPP port
djgpp/djgppsed.sh DOS/DJGPP port
djgpp/fixpmain DOS/DJGPP port
doio.c I/O operations
doop.c Support code for various operations
dosish.h Some defines for MS/DOSish machines
dump.c Debugging output
emacs/cperl-mode.el An alternate perl-mode
emacs/e2ctags.pl etags to ctags converter
emacs/ptags Creates smart TAGS file
embed.fnc Database used by embed.pl
embed.h Maps symbols to safer names
embed.pl Produces {embed,embedvar,proto}.h, global.sym
embedvar.h C namespace management
epoc/config.sh EPOC port config.sh template
epoc/createpkg.pl EPOC port generate PKG file
epoc/epoc.c EPOC port
epoc/epocish.c EPOC port
epoc/epocish.h EPOC port
epoc/epoc_stubs.c EPOC port
epoc/link.pl EPOC port link a exe
ext/attrs/attrs.pm attrs extension Perl module
ext/attrs/attrs.xs attrs extension external subroutines
ext/attrs/Makefile.PL attrs extension makefile writer
ext/attrs/t/attrs.t See if attrs works with C<sub : attrs>
ext/B/B/Asmdata.pm Compiler backend data for assembler
ext/B/B/assemble Assemble compiler bytecode
ext/B/B/Assembler.pm Compiler backend assembler support functions
ext/B/B/Bblock.pm Compiler basic block analysis support
ext/B/B/Bytecode.pm Compiler Bytecode backend
ext/B/B/cc_harness Simplistic wrapper for using -MO=CC compiler
ext/B/B/CC.pm Compiler CC backend
ext/B/B/Concise.pm Compiler Concise backend
ext/B/B/C.pm Compiler C backend
ext/B/B/Debug.pm Compiler Debug backend
ext/B/B/Deparse.pm Compiler Deparse backend
ext/B/B/disassemble Disassemble compiler bytecode output
ext/B/B/Disassembler.pm Compiler Disassembler backend
ext/B/B/Lint.pm Compiler Lint backend
ext/B/B/makeliblinks Make a simplistic XSUB .so symlink tree for compiler
ext/B/B.pm Compiler backend support functions and methods
ext/B/B/Showlex.pm Compiler Showlex backend
ext/B/B/Stackobj.pm Compiler stack objects support functions
ext/B/B/Stash.pm Compiler module to identify stashes
ext/B/B/Terse.pm Compiler Terse backend
ext/B/B/Xref.pm Compiler Xref backend
ext/B/B.xs Compiler backend external subroutines
ext/B/C/C.xs Compiler C backend external subroutines
ext/B/C/Makefile.PL Compiler C backend makefile writer
ext/B/defsubs_h.PL Generator for constant subroutines
ext/B/hints/darwin.pl Hints for named architecture
ext/B/hints/openbsd.pl Hints for named architecture
ext/B/Makefile.PL Compiler backend makefile writer
ext/B/NOTES Compiler backend notes
ext/B/O.pm Compiler front-end module (-MO=...)
ext/B/ramblings/cc.notes Compiler ramblings: notes on CC backend
ext/B/ramblings/curcop.runtime Compiler ramblings: notes on curcop use
ext/B/ramblings/flip-flop Compiler ramblings: notes on flip-flop
ext/B/ramblings/magic Compiler ramblings: notes on magic
ext/B/ramblings/reg.alloc Compiler ramblings: register allocation
ext/B/ramblings/runtime.porting Compiler ramblings: porting PP engine
ext/B/README Compiler backend README
ext/B/t/asmdata.t See if B::Asmdata works
ext/B/t/assembler.t See if B::Assembler, B::Disassembler comply
ext/B/t/bblock.t See if B::Bblock works
ext/B/t/b.t See if B works
ext/B/t/concise.t See whether B::Concise works
ext/B/t/debug.t See if B::Debug works
ext/B/t/deparse.t See if B::Deparse works
ext/B/TESTS Compiler backend test data
ext/B/t/lint.t See if B::Lint works
ext/B/Todo Compiler backend Todo list
ext/B/t/o.t See if O works
ext/B/t/showlex.t See if B::ShowLex works
ext/B/t/stash.t See if B::Stash works
ext/B/t/terse.t See if B::Terse works
ext/B/t/xref.t See if B::Xref works
ext/B/typemap Compiler backend interface types
ext/ByteLoader/bytecode.h Bytecode header for bytecode loader
ext/ByteLoader/ByteLoader.pm Bytecode loader Perl module
ext/ByteLoader/ByteLoader.xs Bytecode loader external subroutines
ext/ByteLoader/byterun.c Runtime support for bytecode loader
ext/ByteLoader/byterun.h Header for byterun.c
ext/ByteLoader/hints/sunos.pl Hints for named architecture
ext/ByteLoader/Makefile.PL Bytecode loader makefile writer
ext/Cwd/Cwd.xs Cwd extension external subroutines
ext/Cwd/Makefile.PL Cwd extension makefile maker
ext/Cwd/t/cwd.t See if Cwd works
ext/Cwd/t/taint.t See if Cwd works with taint
ext/Data/Dumper/Changes Data pretty printer, changelog
ext/Data/Dumper/Dumper.pm Data pretty printer, module
ext/Data/Dumper/Dumper.xs Data pretty printer, externals
ext/Data/Dumper/Makefile.PL Data pretty printer, makefile writer
ext/Data/Dumper/t/dumper.t See if Data::Dumper works
ext/Data/Dumper/Todo Data pretty printer, futures
ext/Data/Dumper/t/overload.t See if Data::Dumper works for overloaded data
ext/Data/Dumper/t/pair.t See if Data::Dumper pair separator works
ext/DB_File/Changes Berkeley DB extension change log
ext/DB_File/DB_File_BS Berkeley DB extension mkbootstrap fodder
ext/DB_File/DB_File.pm Berkeley DB extension Perl module
ext/DB_File/DB_File.xs Berkeley DB extension external subroutines
ext/DB_File/dbinfo Berkeley DB database version checker
ext/DB_File/hints/dynixptx.pl Hint for DB_File for named architecture
ext/DB_File/hints/sco.pl Hint for DB_File for named architecture
ext/DB_File/Makefile.PL Berkeley DB extension makefile writer
ext/DB_File/t/db-btree.t See if DB_File works
ext/DB_File/t/db-hash.t See if DB_File works
ext/DB_File/t/db-recno.t See if DB_File works
ext/DB_File/typemap Berkeley DB extension interface types
ext/DB_File/version.c Berkeley DB extension interface version check
ext/Devel/DProf/Changes Perl code profiler changelog
ext/Devel/DProf/DProf.pm Perl code profiler
ext/Devel/DProf/DProf.xs Perl code profiler
ext/Devel/DProf/Makefile.PL Perl code profiler makefile writer
ext/Devel/DProf/t/DProf.t Perl code profiler
ext/Devel/DProf/Todo Perl code profiler todo list
ext/Devel/Peek/Changes Data debugging tool, changelog
ext/Devel/Peek/Makefile.PL Data debugging tool, makefile writer
ext/Devel/Peek/Peek.pm Data debugging tool, module and pod
ext/Devel/Peek/Peek.xs Data debugging tool, externals
ext/Devel/Peek/t/Peek.t See if Devel::Peek works
ext/Devel/PPPort/Changes Devel::PPPort changes
ext/Devel/PPPort/Makefile.PL Devel::PPPort makefile writer
ext/Devel/PPPort/MANIFEST Devel::PPPort Manifest
ext/Devel/PPPort/module2.c Devel::PPPort test file
ext/Devel/PPPort/module3.c Devel::PPPort test file
ext/Devel/PPPort/ppport_h.PL Devel::PPPort
ext/Devel/PPPort/PPPort.pm Devel::PPPort
ext/Devel/PPPort/PPPort.xs Devel::PPPort
ext/Devel/PPPort/README Devel::PPPort Readme
ext/Devel/PPPort/soak Test Harness to run Devel::PPPort other Perls
ext/Devel/PPPort/TODO Devel::PPPort Todo
ext/Devel/PPPort/t/test.t See if Devel::PPPort works
ext/Digest/MD5/Changes Digest::MD5 extension changes
ext/Digest/MD5/hints/dec_osf.pl Hints for named architecture
ext/Digest/MD5/hints/irix_6.pl Hints for named architecture
ext/Digest/MD5/hints/MacOS.pl Hints for named architecture
ext/Digest/MD5/Makefile.PL Digest::MD5 extension makefile writer
ext/Digest/MD5/MD5.pm Digest::MD5 extension
ext/Digest/MD5/MD5.xs Digest::MD5 extension
ext/Digest/MD5/README Digest::MD5 extension Readme
ext/Digest/MD5/t/align.t See if Digest::MD5 extension works
ext/Digest/MD5/t/badfile.t See if Digest::MD5 extension works
ext/Digest/MD5/t/clone.t See if Digest::MD5 extension works
ext/Digest/MD5/t/files.t See if Digest::MD5 extension works
ext/Digest/MD5/t/md5-aaa.t See if Digest::MD5 extension works
ext/Digest/MD5/t/utf8.t See if Digest::MD5 extension works
ext/Digest/MD5/typemap Digest::MD5 extension
ext/DynaLoader/dl_aix.xs AIX implementation
ext/DynaLoader/dl_beos.xs BeOS implementation
ext/DynaLoader/dl_dld.xs GNU dld style implementation
ext/DynaLoader/dl_dllload.xs S/390 dllload() style implementation
ext/DynaLoader/dl_dlopen.xs BSD/SunOS4&5 dlopen() style implementation
ext/DynaLoader/dl_dyld.xs NeXT/Apple dyld implementation
ext/DynaLoader/dl_hpux.xs HP-UX implementation
ext/DynaLoader/dl_mac.xs MacOS implementation
ext/DynaLoader/dl_mpeix.xs MPE/iX implementation
ext/DynaLoader/dl_next.xs NeXT implementation
ext/DynaLoader/dl_none.xs Stub implementation
ext/DynaLoader/dlutils.c Dynamic loader utilities for dl_*.xs files
ext/DynaLoader/dl_vmesa.xs VM/ESA implementation
ext/DynaLoader/dl_vms.xs VMS implementation
ext/DynaLoader/DynaLoader_pm.PL Dynamic Loader perl module
ext/DynaLoader/hints/aix.pl Hint for DynaLoader for named architecture
ext/DynaLoader/hints/linux.pl Hint for DynaLoader for named architecture
ext/DynaLoader/hints/netbsd.pl Hint for DynaLoader for named architecture
ext/DynaLoader/hints/openbsd.pl Hint for DynaLoader for named architecture
ext/DynaLoader/Makefile.PL Dynamic Loader makefile writer
ext/DynaLoader/README Dynamic Loader notes and intro
ext/DynaLoader/t/XSLoader.t See if XSLoader works
ext/DynaLoader/XSLoader_pm.PL Simple XS Loader perl module
ext/Encode/AUTHORS List of authors
ext/Encode/bin/enc2xs Encode module generator
ext/Encode/bin/piconv iconv by perl
ext/Encode/bin/ucm2table Table Generator for testing
ext/Encode/bin/ucmlint A UCM Lint utility
ext/Encode/bin/ucmsort A UCM sort utility
ext/Encode/bin/unidump Unicode Dump like hexdump(1)
ext/Encode/Byte/Byte.pm Encode extension
ext/Encode/Byte/Makefile.PL Encode extension
ext/Encode/Changes Change Log
ext/Encode/CN/CN.pm Encode extension
ext/Encode/CN/Makefile.PL Encode extension
ext/Encode/EBCDIC/EBCDIC.pm Encode extension
ext/Encode/EBCDIC/Makefile.PL Encode extension
ext/Encode/encengine.c Encode extension
ext/Encode/Encode/Changes.e2x Skeleton file for enc2xs
ext/Encode/Encode/ConfigLocal_PM.e2x Skeleton file for enc2xs
ext/Encode/Encode/encode.h Encode extension header file
ext/Encode/Encode/Makefile_PL.e2x Skeleton file for enc2xs
ext/Encode/Encode.pm Mother of all Encode extensions
ext/Encode/Encode/_PM.e2x Skeleton file for enc2xs
ext/Encode/Encode/README.e2x Skeleton file for enc2xs
ext/Encode/Encode/_T.e2x Skeleton file for enc2xs
ext/Encode/Encode.xs Encode extension
ext/Encode/encoding.pm Perl Pragmatic Module
ext/Encode/JP/JP.pm Encode extension
ext/Encode/JP/Makefile.PL Encode extension
ext/Encode/KR/KR.pm Encode extension
ext/Encode/KR/Makefile.PL Encode extension
ext/Encode/lib/Encode/Alias.pm Encode extension
ext/Encode/lib/Encode/CJKConstants.pm Encode extension
ext/Encode/lib/Encode/CN/HZ.pm Encode extension
ext/Encode/lib/Encode/Config.pm Encode configuration module
ext/Encode/lib/Encode/Encoder.pm OO Encoder
ext/Encode/lib/Encode/Encoding.pm Encode extension
ext/Encode/lib/Encode/Guess.pm Encode Extension
ext/Encode/lib/Encode/JP/H2Z.pm Encode extension
ext/Encode/lib/Encode/JP/JIS7.pm Encode extension
ext/Encode/lib/Encode/KR/2022_KR.pm Encode extension
ext/Encode/lib/Encode/MIME/Header.pm Encode extension
ext/Encode/lib/Encode/PerlIO.pod Documents for Encode & PerlIO
ext/Encode/lib/Encode/Supported.pod Documents for supported encodings
ext/Encode/lib/Encode/Unicode/UTF7.pm Encode extension
ext/Encode/Makefile.PL Encode extension makefile writer
ext/Encode/MANIFEST Encode extension
ext/Encode/META.yml Module meta-data in YAML
ext/Encode/README Encode extension
ext/Encode/Symbol/Makefile.PL Encode extension
ext/Encode/Symbol/Symbol.pm Encode extension
ext/Encode/t/Aliases.t test script
ext/Encode/t/at-cn.t test script
ext/Encode/t/at-tw.t test script
ext/Encode/t/big5-eten.enc test data
ext/Encode/t/big5-eten.utf test data
ext/Encode/t/big5-hkscs.enc test data
ext/Encode/t/big5-hkscs.utf test data
ext/Encode/t/CJKT.t test script
ext/Encode/t/enc_data.t test script for utf8 DATA
ext/Encode/t/enc_eucjp.t test script
ext/Encode/t/enc_module.enc test data for t/enc_module.t
ext/Encode/t/enc_module.t test script
ext/Encode/t/Encoder.t test script
ext/Encode/t/Encode.t test script
ext/Encode/t/encoding.t test script
ext/Encode/t/enc_utf8.t test script
ext/Encode/t/fallback.t test script
ext/Encode/t/gb2312.enc test data
ext/Encode/t/gb2312.utf test data
ext/Encode/t/grow.t test script
ext/Encode/t/gsm0338.t test script
ext/Encode/t/guess.t test script
ext/Encode/t/jisx0201.enc test data
ext/Encode/t/jisx0201.utf test data
ext/Encode/t/jisx0208.enc test data
ext/Encode/t/jisx0208.utf test data
ext/Encode/t/jisx0212.enc test data
ext/Encode/t/jisx0212.utf test data
ext/Encode/t/jperl.t test script
ext/Encode/t/ksc5601.enc test data
ext/Encode/t/ksc5601.utf test data
ext/Encode/t/mime-header.t test script
ext/Encode/t/Mod_EUCJP.pm module that t/enc_module.enc uses
ext/Encode/t/perlio.t test script
ext/Encode/t/rt.pl test script
ext/Encode/t/unibench.pl benchmark script
ext/Encode/t/Unicode.t test script
ext/Encode/TW/Makefile.PL Encode extension
ext/Encode/TW/TW.pm Encode extension
ext/Encode/ucm/8859-10.ucm Unicode Character Map
ext/Encode/ucm/8859-11.ucm Unicode Character Map
ext/Encode/ucm/8859-13.ucm Unicode Character Map
ext/Encode/ucm/8859-14.ucm Unicode Character Map
ext/Encode/ucm/8859-15.ucm Unicode Character Map
ext/Encode/ucm/8859-16.ucm Unicode Character Map
ext/Encode/ucm/8859-1.ucm Unicode Character Map
ext/Encode/ucm/8859-2.ucm Unicode Character Map
ext/Encode/ucm/8859-3.ucm Unicode Character Map
ext/Encode/ucm/8859-4.ucm Unicode Character Map
ext/Encode/ucm/8859-5.ucm Unicode Character Map
ext/Encode/ucm/8859-6.ucm Unicode Character Map
ext/Encode/ucm/8859-7.ucm Unicode Character Map
ext/Encode/ucm/8859-8.ucm Unicode Character Map
ext/Encode/ucm/8859-9.ucm Unicode Character Map
ext/Encode/ucm/adobeStdenc.ucm Unicode Character Map
ext/Encode/ucm/adobeSymbol.ucm Unicode Character Map
ext/Encode/ucm/adobeZdingbat.ucm Unicode Character Map
ext/Encode/ucm/ascii.ucm Unicode Character Map
ext/Encode/ucm/big5-eten.ucm Unicode Character Map
ext/Encode/ucm/big5-hkscs.ucm Unicode Character Map
ext/Encode/ucm/cp037.ucm Unicode Character Map
ext/Encode/ucm/cp1006.ucm Unicode Character Map
ext/Encode/ucm/cp1026.ucm Unicode Character Map
ext/Encode/ucm/cp1047.ucm Unicode Character Map
ext/Encode/ucm/cp1250.ucm Unicode Character Map
ext/Encode/ucm/cp1251.ucm Unicode Character Map
ext/Encode/ucm/cp1252.ucm Unicode Character Map
ext/Encode/ucm/cp1253.ucm Unicode Character Map
ext/Encode/ucm/cp1254.ucm Unicode Character Map
ext/Encode/ucm/cp1255.ucm Unicode Character Map
ext/Encode/ucm/cp1256.ucm Unicode Character Map
ext/Encode/ucm/cp1257.ucm Unicode Character Map
ext/Encode/ucm/cp1258.ucm Unicode Character Map
ext/Encode/ucm/cp424.ucm Unicode Character Map
ext/Encode/ucm/cp437.ucm Unicode Character Map
ext/Encode/ucm/cp500.ucm Unicode Character Map
ext/Encode/ucm/cp737.ucm Unicode Character Map
ext/Encode/ucm/cp775.ucm Unicode Character Map
ext/Encode/ucm/cp850.ucm Unicode Character Map
ext/Encode/ucm/cp852.ucm Unicode Character Map
ext/Encode/ucm/cp855.ucm Unicode Character Map
ext/Encode/ucm/cp856.ucm Unicode Character Map
ext/Encode/ucm/cp857.ucm Unicode Character Map
ext/Encode/ucm/cp860.ucm Unicode Character Map
ext/Encode/ucm/cp861.ucm Unicode Character Map
ext/Encode/ucm/cp862.ucm Unicode Character Map
ext/Encode/ucm/cp863.ucm Unicode Character Map
ext/Encode/ucm/cp864.ucm Unicode Character Map
ext/Encode/ucm/cp865.ucm Unicode Character Map
ext/Encode/ucm/cp866.ucm Unicode Character Map
ext/Encode/ucm/cp869.ucm Unicode Character Map
ext/Encode/ucm/cp874.ucm Unicode Character Map
ext/Encode/ucm/cp875.ucm Unicode Character Map
ext/Encode/ucm/cp932.ucm Unicode Character Map
ext/Encode/ucm/cp936.ucm Unicode Character Map
ext/Encode/ucm/cp949.ucm Unicode Character Map
ext/Encode/ucm/cp950.ucm Unicode Character Map
ext/Encode/ucm/ctrl.ucm Unicode Character Map
ext/Encode/ucm/dingbats.ucm Unicode Character Map
ext/Encode/ucm/euc-cn.ucm Unicode Character Map
ext/Encode/ucm/euc-jp.ucm Unicode Character Map
ext/Encode/ucm/euc-kr.ucm Unicode Character Map
ext/Encode/ucm/gb12345.ucm Unicode Character Map
ext/Encode/ucm/gb2312.ucm Unicode Character Map
ext/Encode/ucm/gsm0338.ucm Unicode Character Map
ext/Encode/ucm/hp-roman8.ucm Unicode Character Map
ext/Encode/ucm/ir-165.ucm Unicode Character Map
ext/Encode/ucm/jis0201.ucm Unicode Character Map
ext/Encode/ucm/jis0208.ucm Unicode Character Map
ext/Encode/ucm/jis0212.ucm Unicode Character Map
ext/Encode/ucm/johab.ucm Unicode Character Map
ext/Encode/ucm/koi8-f.ucm Unicode Character Map
ext/Encode/ucm/koi8-r.ucm Unicode Character Map
ext/Encode/ucm/koi8-u.ucm Unicode Character Map
ext/Encode/ucm/ksc5601.ucm Unicode Character Map
ext/Encode/ucm/macArabic.ucm Unicode Character Map
ext/Encode/ucm/macCentEuro.ucm Unicode Character Map
ext/Encode/ucm/macChinsimp.ucm Unicode Character Map
ext/Encode/ucm/macChintrad.ucm Unicode Character Map
ext/Encode/ucm/macCroatian.ucm Unicode Character Map
ext/Encode/ucm/macCyrillic.ucm Unicode Character Map
ext/Encode/ucm/macDingbats.ucm Unicode Character Map
ext/Encode/ucm/macFarsi.ucm Unicode Character Map
ext/Encode/ucm/macGreek.ucm Unicode Character Map
ext/Encode/ucm/macHebrew.ucm Unicode Character Map
ext/Encode/ucm/macIceland.ucm Unicode Character Map
ext/Encode/ucm/macJapanese.ucm Unicode Character Map
ext/Encode/ucm/macKorean.ucm Unicode Character Map
ext/Encode/ucm/macRoman.ucm Unicode Character Map
ext/Encode/ucm/macROMnn.ucm Unicode Character Map
ext/Encode/ucm/macRUMnn.ucm Unicode Character Map
ext/Encode/ucm/macSami.ucm Unicode Character Map
ext/Encode/ucm/macSymbol.ucm Unicode Character Map
ext/Encode/ucm/macThai.ucm Unicode Character Map
ext/Encode/ucm/macTurkish.ucm Unicode Character Map
ext/Encode/ucm/macUkraine.ucm Unicode Character Map
ext/Encode/ucm/nextstep.ucm Unicode Character Map
ext/Encode/ucm/null.ucm Unicode Character Map
ext/Encode/ucm/posix-bc.ucm Unicode Character Map
ext/Encode/ucm/shiftjis.ucm Unicode Character Map
ext/Encode/ucm/symbol.ucm Unicode Character Map
ext/Encode/ucm/viscii.ucm Unicode Character Map
ext/Encode/Unicode/Makefile.PL Encode extension
ext/Encode/Unicode/Unicode.pm Encode extension
ext/Encode/Unicode/Unicode.xs Encode extension
EXTERN.h Included before foreign .h files
ext/Errno/ChangeLog Errno changes
ext/Errno/Errno_pm.PL Errno perl module create script
ext/Errno/Makefile.PL Errno extension makefile writer
ext/Errno/t/Errno.t See if Errno works
ext/Fcntl/Fcntl.pm Fcntl extension Perl module
ext/Fcntl/Fcntl.xs Fcntl extension external subroutines
ext/Fcntl/Makefile.PL Fcntl extension makefile writer
ext/Fcntl/t/fcntl.t See if Fcntl works
ext/Fcntl/t/syslfs.t See if large files work for sysio
ext/File/Glob/bsd_glob.c File::Glob extension run time code
ext/File/Glob/bsd_glob.h File::Glob extension header file
ext/File/Glob/Changes File::Glob extension changelog
ext/File/Glob/Glob.pm File::Glob extension module
ext/File/Glob/Glob.xs File::Glob extension external subroutines
ext/File/Glob/Makefile.PL File::Glob extension makefile writer
ext/File/Glob/t/basic.t See if File::Glob works
ext/File/Glob/t/case.t See if File::Glob works
ext/File/Glob/t/global.t See if File::Glob works
ext/File/Glob/TODO File::Glob extension todo list
ext/File/Glob/t/taint.t See if File::Glob works
ext/Filter/t/call.t See if Filter::Util::Call works
ext/Filter/Util/Call/Call.pm Filter::Util::Call extension module
ext/Filter/Util/Call/Call.xs Filter::Util::Call extension external subroutines
ext/Filter/Util/Call/Makefile.PL Filter::Util::Call extension makefile writer
ext/GDBM_File/GDBM_File.pm GDBM extension Perl module
ext/GDBM_File/GDBM_File.xs GDBM extension external subroutines
ext/GDBM_File/hints/sco.pl Hint for GDBM_File for named architecture
ext/GDBM_File/Makefile.PL GDBM extension makefile writer
ext/GDBM_File/t/gdbm.t See if GDBM_File works
ext/GDBM_File/typemap GDBM extension interface types
ext/I18N/Langinfo/fallback/const-c.inc I18N::Langinfo
ext/I18N/Langinfo/fallback/const-xs.inc I18N::Langinfo
ext/I18N/Langinfo/Langinfo.pm I18N::Langinfo
ext/I18N/Langinfo/Langinfo.xs I18N::Langinfo
ext/I18N/Langinfo/Makefile.PL I18N::Langinfo
ext/I18N/Langinfo/t/Langinfo.t See whether I18N::Langinfo works
ext/IO/ChangeLog IO perl module change log
ext/IO/hints/sco.pl Hint for IO for named architecture
ext/IO/IO.pm Top-level interface to IO::* classes
ext/IO/IO.xs IO extension external subroutines
ext/IO/lib/IO/Dir.pm IO directory reading package
ext/IO/lib/IO/File.pm IO file handle package
ext/IO/lib/IO/Handle.pm IO base handle package
ext/IO/lib/IO/Pipe.pm IO pipe package
ext/IO/lib/IO/Poll.pm IO system poll() interface
ext/IO/lib/IO/Seekable.pm IO methods for seekable handles
ext/IO/lib/IO/Select.pm IO system select() interface
ext/IO/lib/IO/Socket/INET.pm IO INET specific socket methods
ext/IO/lib/IO/Socket.pm IO socket handle package
ext/IO/lib/IO/Socket/UNIX.pm IO UNIX specific socket methods
ext/IO/Makefile.PL IO extension makefile writer
ext/IO/poll.c IO poll() emulation using select()
ext/IO/poll.h IO poll() emulation using select()
ext/IO/README IO extension maintenance notice
ext/IO/t/io_const.t See if constants from IO work
ext/IO/t/io_dir.t See if directory-related methods from IO work
ext/IO/t/io_dup.t See if dup()-related methods from IO work
ext/IO/t/io_linenum.t See if I/O line numbers are tracked correctly
ext/IO/t/io_multihomed.t See if INET sockets work with multi-homed hosts
ext/IO/t/io_pipe.t See if pipe()-related methods from IO work
ext/IO/t/io_poll.t See if poll()-related methods from IO work
ext/IO/t/io_sel.t See if select()-related methods from IO work
ext/IO/t/io_sock.t See if INET socket-related methods from IO work
ext/IO/t/IO.t See if IO works
ext/IO/t/io_taint.t See if the untaint method from IO works
ext/IO/t/io_tell.t See if seek()/tell()-related methods from IO work
ext/IO/t/io_udp.t See if UDP socket-related methods from IO work
ext/IO/t/io_unix.t See if UNIX socket-related methods from IO work
ext/IO/t/io_utf8.t See if perlio opens work
ext/IO/t/io_xs.t See if XSUB methods from IO work
ext/IPC/SysV/ChangeLog IPC::SysV extension Perl module
ext/IPC/SysV/hints/cygwin.pl Hint for IPC::SysV for named architecture
ext/IPC/SysV/hints/next_3.pl Hint for IPC::SysV for named architecture
ext/IPC/SysV/Makefile.PL IPC::SysV extension Perl module
ext/IPC/SysV/MANIFEST IPC::SysV extension Perl module
ext/IPC/SysV/Msg.pm IPC::SysV extension Perl module
ext/IPC/SysV/README IPC::SysV extension Perl module
ext/IPC/SysV/Semaphore.pm IPC::SysV extension Perl module
ext/IPC/SysV/SysV.pm IPC::SysV extension Perl module
ext/IPC/SysV/SysV.xs IPC::SysV extension Perl module
ext/IPC/SysV/t/ipcsysv.t See if IPC::SysV works
ext/IPC/SysV/t/msg.t IPC::SysV extension Perl module
ext/IPC/SysV/t/sem.t IPC::SysV extension Perl module
ext/List/Util/ChangeLog Util extension
ext/List/Util/lib/List/Util.pm List::Util
ext/List/Util/lib/Scalar/Util.pm Scalar::Util
ext/List/Util/Makefile.PL Util extension
ext/List/Util/README Util extension
ext/List/Util/t/blessed.t Scalar::Util
ext/List/Util/t/dualvar.t Scalar::Util
ext/List/Util/t/first.t List::Util
ext/List/Util/t/isvstring.t Scalar::Util
ext/List/Util/t/lln.t Scalar::Util
ext/List/Util/t/maxstr.t List::Util
ext/List/Util/t/max.t List::Util
ext/List/Util/t/minstr.t List::Util
ext/List/Util/t/min.t List::Util
ext/List/Util/t/openhan.t Scalar::Util
ext/List/Util/t/proto.t Scalar::Util
ext/List/Util/t/readonly.t Scalar::Util
ext/List/Util/t/reduce.t List::Util
ext/List/Util/t/refaddr.t Scalar::Util
ext/List/Util/t/reftype.t Scalar::Util
ext/List/Util/t/shuffle.t List::Util
ext/List/Util/t/sum.t List::Util
ext/List/Util/t/tainted.t Scalar::Util
ext/List/Util/t/weak.t Scalar::Util
ext/List/Util/Util.xs Util extension
ext/MIME/Base64/Base64.pm MIME::Base64 extension
ext/MIME/Base64/Base64.xs MIME::Base64 extension
ext/MIME/Base64/Changes MIME::Base64 extension
ext/MIME/Base64/Makefile.PL MIME::Base64 extension
ext/MIME/Base64/QuotedPrint.pm MIME::Base64 extension
ext/MIME/Base64/t/base64.t See whether MIME::Base64 works
ext/MIME/Base64/t/quoted-print.t See whether MIME::QuotedPrint works
ext/MIME/Base64/t/unicode.t See whether MIME::Base64 works
ext/NDBM_File/hints/cygwin.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/dec_osf.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/dynixptx.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/linux.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/sco.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/solaris.pl Hint for NDBM_File for named architecture
ext/NDBM_File/hints/svr4.pl Hint for NDBM_File for named architecture
ext/NDBM_File/Makefile.PL NDBM extension makefile writer
ext/NDBM_File/NDBM_File.pm NDBM extension Perl module
ext/NDBM_File/NDBM_File.xs NDBM extension external subroutines
ext/NDBM_File/t/ndbm.t See if NDBM_File works
ext/NDBM_File/typemap NDBM extension interface types
ext/ODBM_File/hints/cygwin.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/dec_osf.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/hpux.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/linux.pl Hint for NDBM_File for named architecture
ext/ODBM_File/hints/sco.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/solaris.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/svr4.pl Hint for ODBM_File for named architecture
ext/ODBM_File/hints/ultrix.pl Hint for ODBM_File for named architecture
ext/ODBM_File/Makefile.PL ODBM extension makefile writer
ext/ODBM_File/ODBM_File.pm ODBM extension Perl module
ext/ODBM_File/ODBM_File.xs ODBM extension external subroutines
ext/ODBM_File/t/odbm.t See if ODBM_File works
ext/ODBM_File/typemap ODBM extension interface types
ext/Opcode/Makefile.PL Opcode extension makefile writer
ext/Opcode/Opcode.pm Opcode extension Perl module
ext/Opcode/Opcode.xs Opcode extension external subroutines
ext/Opcode/ops.pm "Pragma" form of Opcode extension Perl module
ext/Opcode/Safe.pm Safe extension Perl module
ext/Opcode/t/Opcode.t See if Opcode works
ext/Opcode/t/ops.t See if Opcode works
ext/PerlIO/encoding/encoding.pm PerlIO::encoding
ext/PerlIO/encoding/encoding.xs PerlIO::encoding
ext/PerlIO/encoding/Makefile.PL PerlIO::encoding makefile writer
ext/PerlIO/encoding/MANIFEST PerlIO::encoding list of files
ext/PerlIO/scalar/Makefile.PL PerlIO layer for scalars
ext/PerlIO/scalar/scalar.pm PerlIO layer for scalars
ext/PerlIO/scalar/scalar.xs PerlIO layer for scalars
ext/PerlIO/t/encoding.t See if PerlIO encoding conversion works
ext/PerlIO/t/fail.t See if bad layers fail
ext/PerlIO/t/fallback.t See if PerlIO fallbacks work
ext/PerlIO/t/open.t See if PerlIO certain special opens work
ext/PerlIO/t/PerlIO.t See if PerlIO works
ext/PerlIO/t/scalar.t See if PerlIO::scalar works
ext/PerlIO/t/via.t See if PerlIO::via works
ext/PerlIO/via/hints/aix.pl Hint for PerlIO::via for named architecture
ext/PerlIO/via/Makefile.PL PerlIO layer for layers in perl
ext/PerlIO/via/via.pm PerlIO layer for layers in perl
ext/PerlIO/via/via.xs PerlIO layer for layers in perl
ext/POSIX/hints/bsdos.pl Hint for POSIX for named architecture
ext/POSIX/hints/dynixptx.pl Hint for POSIX for named architecture
ext/POSIX/hints/freebsd.pl Hint for POSIX for named architecture
ext/POSIX/hints/linux.pl Hint for POSIX for named architecture
ext/POSIX/hints/mint.pl Hint for POSIX for named architecture
ext/POSIX/hints/netbsd.pl Hint for POSIX for named architecture
ext/POSIX/hints/next_3.pl Hint for POSIX for named architecture
ext/POSIX/hints/openbsd.pl Hint for POSIX for named architecture
ext/POSIX/hints/sunos_4.pl Hint for POSIX for named architecture
ext/POSIX/hints/svr4.pl Hint for POSIX for named architecture
ext/POSIX/hints/uts.pl Hint for POSIX for named architecture
ext/POSIX/Makefile.PL POSIX extension makefile writer
ext/POSIX/POSIX.pm POSIX extension Perl module
ext/POSIX/POSIX.pod POSIX extension documentation
ext/POSIX/POSIX.xs POSIX extension external subroutines
ext/POSIX/t/is.t See if POSIX isxxx() work
ext/POSIX/t/posix.t See if POSIX works
ext/POSIX/t/sigaction.t See if POSIX::sigaction works
ext/POSIX/t/taint.t See if POSIX works with taint
ext/POSIX/t/waitpid.t See if waitpid works
ext/POSIX/typemap POSIX extension interface types
ext/re/hints/mpeix.pl Hints for re for named architecture
ext/re/Makefile.PL re extension makefile writer
ext/re/re.pm re extension Perl module
ext/re/re.xs re extension external subroutines
ext/re/t/re.t see if re pragma works
ext/Safe/t/safe1.t See if Safe works
ext/Safe/t/safe2.t See if Safe works
ext/Safe/t/safe3.t See if Safe works
ext/SDBM_File/Makefile.PL SDBM extension makefile writer
ext/SDBM_File/sdbm/biblio SDBM kit
ext/SDBM_File/sdbm/CHANGES SDBM kit
ext/SDBM_File/sdbm/COMPARE SDBM kit
ext/SDBM_File/sdbm/dba.c SDBM kit
ext/SDBM_File/sdbm/dbd.c SDBM kit
ext/SDBM_File/sdbm/dbe.1 SDBM kit
ext/SDBM_File/sdbm/dbe.c SDBM kit
ext/SDBM_File/sdbm/dbu.c SDBM kit
ext/SDBM_File/SDBM_File.pm SDBM extension Perl module
ext/SDBM_File/SDBM_File.xs SDBM extension external subroutines
ext/SDBM_File/sdbm/grind SDBM kit
ext/SDBM_File/sdbm/hash.c SDBM kit
ext/SDBM_File/sdbm/linux.patches SDBM kit
ext/SDBM_File/sdbm/Makefile.PL SDBM kit
ext/SDBM_File/sdbm/makefile.sdbm SDBM kit
ext/SDBM_File/sdbm/pair.c SDBM kit
ext/SDBM_File/sdbm/pair.h SDBM kit
ext/SDBM_File/sdbm/README SDBM kit
ext/SDBM_File/sdbm/readme.ms SDBM kit
ext/SDBM_File/sdbm/README.too SDBM kit
ext/SDBM_File/sdbm/sdbm.3 SDBM kit
ext/SDBM_File/sdbm/sdbm.c SDBM kit
ext/SDBM_File/sdbm/sdbm.h SDBM kit
ext/SDBM_File/sdbm/tune.h SDBM kit
ext/SDBM_File/sdbm/util.c SDBM kit
ext/SDBM_File/t/sdbm.t See if SDBM_File works
ext/SDBM_File/typemap SDBM extension interface types
ext/Socket/Makefile.PL Socket extension makefile writer
ext/Socket/Socket.pm Socket extension Perl module
ext/Socket/Socket.xs Socket extension external subroutines
ext/Socket/t/socketpair.t See if socketpair works
ext/Socket/t/Socket.t See if Socket works
ext/Storable/ChangeLog Storable extension
ext/Storable/hints/linux.pl Hint for Storable for named architecture
ext/Storable/Makefile.PL Storable extension
ext/Storable/MANIFEST Storable extension
ext/Storable/README Storable extension
ext/Storable/Storable.pm Storable extension
ext/Storable/Storable.xs Storable extension
ext/Storable/t/blessed.t See if Storable works
ext/Storable/t/canonical.t See if Storable works
ext/Storable/t/code.t See if Storable works
ext/Storable/t/compat06.t See if Storable works
ext/Storable/t/croak.t See if Storable works
ext/Storable/t/dclone.t See if Storable works
ext/Storable/t/downgrade.t See if Storable works
ext/Storable/t/forgive.t See if Storable works
ext/Storable/t/freeze.t See if Storable works
ext/Storable/t/integer.t See if Storable works
ext/Storable/t/interwork56.t Test compatibility kludge for 64bit data under 5.6.x
ext/Storable/t/lock.t See if Storable works
ext/Storable/t/make_56_interwork.pl Make test data for interwork56.t
ext/Storable/t/make_downgrade.pl Make test data for downgrade.t
ext/Storable/t/malice.t See if Storable copes with corrupt files
ext/Storable/t/overload.t See if Storable works
ext/Storable/t/recurse.t See if Storable works
ext/Storable/t/restrict.t See if Storable works
ext/Storable/t/retrieve.t See if Storable works
ext/Storable/t/st-dump.pl See if Storable works
ext/Storable/t/store.t See if Storable works
ext/Storable/t/tied_hook.t See if Storable works
ext/Storable/t/tied_items.t See if Storable works
ext/Storable/t/tied.t See if Storable works
ext/Storable/t/utf8hash.t See if Storable works
ext/Storable/t/utf8.t See if Storable works
ext/Sys/Hostname/Hostname.pm Sys::Hostname extension Perl module
ext/Sys/Hostname/Hostname.xs Sys::Hostname extension external subroutines
ext/Sys/Hostname/Makefile.PL Sys::Hostname extension makefile writer
ext/Sys/Hostname/t/Hostname.t See if Sys::Hostname works
ext/Sys/Syslog/Makefile.PL Sys::Syslog extension makefile writer
ext/Sys/Syslog/Syslog.pm Sys::Syslog extension Perl module
ext/Sys/Syslog/Syslog.xs Sys::Syslog extension external subroutines
ext/Sys/Syslog/t/syslog.t See if Sys::Syslog works
ext/Thread/create.tx Test thread creation
ext/Thread/die2.tx Test thread die() differently
ext/Thread/die.tx Test thread die()
ext/Thread/io.tx Test threads doing simple I/O
ext/Thread/join2.tx Test thread joining differently
ext/Thread/join.tx Test thread joining
ext/Thread/list.tx Test getting list of all threads
ext/Thread/lock.tx Test lock primitive
ext/Thread/Makefile.PL Thread extension makefile writer
ext/Thread/Notes Thread notes
ext/Thread/Queue.pmx Threadsafe queue
ext/Thread/queue.tx Test Thread::Queue module
ext/Thread/README Thread README
ext/Thread/README.threads Notes about multithreading
ext/threads/Changes ithreads
ext/Thread/Semaphore.pmx Threadsafe semaphore
ext/threads/Makefile.PL ithreads
ext/Thread/specific.tx Test thread-specific user data
ext/threads/README ithreads
ext/threads/shared/Makefile.PL thread shared variables
ext/threads/shared/README thread shared variables
ext/threads/shared/shared.pm thread shared variables
ext/threads/shared/shared.xs thread shared variables
ext/threads/shared/t/0nothread.t Tests for basic shared array functionality.
ext/threads/shared/t/av_refs.t Tests for arrays containing references
ext/threads/shared/t/av_simple.t Tests for basic shared array functionality.
ext/threads/shared/t/cond.t Test condition variables
ext/threads/shared/t/disabled.t Test threads::shared when threads are disabled.
ext/threads/shared/t/hv_refs.t Test shared hashes containing references
ext/threads/shared/t/hv_simple.t Tests for basic shared hash functionality.
ext/threads/shared/t/no_share.t Tests for disabled share on variables.
ext/threads/shared/t/shared_attr.t Test :shared attribute
ext/threads/shared/t/sv_refs.t thread shared variables
ext/threads/shared/t/sv_simple.t thread shared variables
ext/threads/shared/typemap thread::shared types
ext/threads/t/basic.t ithreads
ext/threads/t/end.t Test end functions
ext/threads/threads.pm ithreads
ext/threads/threads.xs ithreads
ext/threads/t/join.t Testing the join function
ext/threads/t/libc.t testing libc functions for threadsafety
ext/threads/t/list.t Test threads->list()
ext/threads/t/problems.t Test various memory problems
ext/threads/t/stress_cv.t Test with multiple threads, coderef cv argument.
ext/threads/t/stress_re.t Test with multiple threads, string cv argument and regexes.
ext/threads/t/stress_string.t Test with multiple threads, string cv argument.
ext/threads/t/thread.t General ithread tests from thr5005
ext/threads/typemap ithreads
ext/Thread/sync2.tx Test thread synchronisation
ext/Thread/sync.tx Test thread synchronisation
ext/Thread/thr5005.t Test 5.005-style threading (skipped if no use5005threads)
ext/Thread/Thread/Signal.pm Start a thread to run signal handlers
ext/Thread/Thread/Specific.pm Thread specific data access
ext/Thread/Thread.xs Thread extension external subroutines
ext/Thread/typemap Thread extension interface types
ext/Thread/unsync2.tx Test thread implicit synchronisation
ext/Thread/unsync3.tx Test thread implicit synchronisation
ext/Thread/unsync4.tx Test thread implicit synchronisation
ext/Thread/unsync.tx Test thread implicit synchronisation
ext/Time/HiRes/Changes Time::HiRes extension
ext/Time/HiRes/fallback/const-c.inc Time::HiRes extension
ext/Time/HiRes/fallback/const-xs.inc Time::HiRes extension
ext/Time/HiRes/hints/dec_osf.pl Hint for Time::HiRes for named architecture
ext/Time/HiRes/hints/dynixptx.pl Hint for Time::HiRes for named architecture
ext/Time/HiRes/hints/irix.pl Hint for Time::HiRes for named architecture
ext/Time/HiRes/hints/sco.pl Hints for Time::HiRes for named architecture
ext/Time/HiRes/hints/svr4.pl Hints for Time::HiRes for named architecture
ext/Time/HiRes/HiRes.pm Time::HiRes extension
ext/Time/HiRes/HiRes.xs Time::HiRes extension
ext/Time/HiRes/Makefile.PL Time::HiRes extension
ext/Time/HiRes/t/HiRes.t Test for Time::HiRes
ext/Time/HiRes/typemap Time::HiRes extension
ext/Unicode/Normalize/Changes Unicode::Normalize
ext/Unicode/Normalize/Makefile.PL Unicode::Normalize
ext/Unicode/Normalize/mkheader Unicode::Normalize
ext/Unicode/Normalize/Normalize.pm Unicode::Normalize
ext/Unicode/Normalize/Normalize.xs Unicode::Normalize
ext/Unicode/Normalize/README Unicode::Normalize
ext/Unicode/Normalize/t/fcdc.t Unicode::Normalize
ext/Unicode/Normalize/t/form.t Unicode::Normalize
ext/Unicode/Normalize/t/func.t Unicode::Normalize
ext/Unicode/Normalize/t/norm.t Unicode::Normalize
ext/Unicode/Normalize/t/proto.t Unicode::Normalize
ext/Unicode/Normalize/t/split.t Unicode::Normalize
ext/Unicode/Normalize/t/test.t Unicode::Normalize
ext/util/make_ext Used by Makefile to execute extension Makefiles
ext/XS/APItest/APItest.pm XS::APItest extension
ext/XS/APItest/APItest.xs XS::APItest extension
ext/XS/APItest/Makefile.PL XS::APItest extension
ext/XS/APItest/MANIFEST XS::APItest extension
ext/XS/APItest/README XS::APItest extension
ext/XS/APItest/t/hash.t XS::APItest extension
ext/XS/APItest/t/printf.t XS::APItest extension
ext/XS/Typemap/Makefile.PL XS::Typemap extension
ext/XS/Typemap/README XS::Typemap extension
ext/XS/Typemap/stdio.c XS::Typemap extension
ext/XS/Typemap/t/Typemap.t test that typemaps work
ext/XS/Typemap/typemap XS::Typemap extension
ext/XS/Typemap/Typemap.pm XS::Typemap extension
ext/XS/Typemap/Typemap.xs XS::Typemap extension
fakesdio.h stdio in terms of PerlIO
fakethr.h Fake threads header
form.h Public declarations for formats
globals.c File to declare global symbols (for shared library)
global.sym Symbols that need hiding when embedded
globvar.sym Global variables that need hiding when embedded
gv.c Glob value code
gv.h Glob value header
h2pl/cbreak2.pl cbreak routines using .pl
h2pl/cbreak.pl cbreak routines using .ph
h2pl/eg/sizeof.ph Sample sizeof array initialization
h2pl/eg/sys/errno.pl Sample translated errno.pl
h2pl/eg/sysexits.pl Sample translated sysexits.pl
h2pl/eg/sys/ioctl.pl Sample translated ioctl.pl
h2pl/getioctlsizes Program to extract types from ioctl.h
h2pl/mksizes Program to make %sizeof array
h2pl/mkvars Program to make .pl from .ph files
h2pl/README How to turn .ph files into .pl files
h2pl/tcbreak cbreak test routine using .ph
h2pl/tcbreak2 cbreak test routine using .pl
handy.h Handy definitions
hints/3b1cc Hints for named architecture
hints/3b1.sh Hints for named architecture
hints/aix.sh Hints for named architecture
hints/altos486.sh Hints for named architecture
hints/amigaos.sh Hints for named architecture
hints/apollo.sh Hints for named architecture
hints/atheos.sh Hints for named architecture
hints/aux_3.sh Hints for named architecture
hints/beos.sh Hints for named architecture
hints/broken-db.msg Warning message for systems with broken DB library
hints/bsdos.sh Hints for named architecture
hints/convexos.sh Hints for named architecture
hints/cxux.sh Hints for named architecture
hints/cygwin.sh Hints for named architecture
hints/darwin.sh Hints for named architecture
hints/dcosx.sh Hints for named architecture
hints/dec_osf.sh Hints for named architecture
hints/dgux.sh Hints for named architecture
hints/dos_djgpp.sh Hints for named architecture
hints/dynixptx.sh Hints for named architecture
hints/dynix.sh Hints for named architecture
hints/epix.sh Hints for named architecture
hints/esix4.sh Hints for named architecture
hints/fps.sh Hints for named architecture
hints/freebsd.sh Hints for named architecture
hints/genix.sh Hints for named architecture
hints/gnu.sh Hints for named architecture
hints/greenhills.sh Hints for named architecture
hints/hpux.sh Hints for named architecture
hints/i386.sh Hints for named architecture
hints/irix_4.sh Hints for named architecture
hints/irix_5.sh Hints for named architecture
hints/irix_6_0.sh Hints for named architecture
hints/irix_6_1.sh Hints for named architecture
hints/irix_6.sh Hints for named architecture
hints/isc_2.sh Hints for named architecture
hints/isc.sh Hints for named architecture
hints/linux.sh Hints for named architecture
hints/lynxos.sh Hints for named architecture
hints/machten_2.sh Hints for named architecture
hints/machten.sh Hints for named architecture
hints/mint.sh Hints for named architecture
hints/mips.sh Hints for named architecture
hints/mpc.sh Hints for named architecture
hints/mpeix.sh Hints for named architecture
hints/ncr_tower.sh Hints for named architecture
hints/netbsd.sh Hints for named architecture
hints/newsos4.sh Hints for named architecture
hints/next_3_0.sh Hints for named architecture
hints/next_3.sh Hints for named architecture
hints/next_4.sh Hints for named architecture
hints/nonstopux.sh Hints for named architecture
hints/openbsd.sh Hints for named architecture
hints/opus.sh Hints for named architecture
hints/os2.sh Hints for named architecture
hints/os390.sh Hints for named architecture
hints/os400.sh Hints for named architecture
hints/posix-bc.sh Hints for named architecture
hints/powerux.sh Hints for named architecture
hints/qnx.sh Hints for named architecture
hints/README.hints Notes about hints
hints/rhapsody.sh Hints for named architecture
hints/sco_2_3_0.sh Hints for named architecture
hints/sco_2_3_1.sh Hints for named architecture
hints/sco_2_3_2.sh Hints for named architecture
hints/sco_2_3_3.sh Hints for named architecture
hints/sco_2_3_4.sh Hints for named architecture
hints/sco.sh Hints for named architecture
hints/solaris_2.sh Hints for named architecture
hints/stellar.sh Hints for named architecture
hints/sunos_4_0.sh Hints for named architecture
hints/sunos_4_1.sh Hints for named architecture
hints/super-ux.sh Hints for named architecture
hints/svr4.sh Hints for named architecture
hints/svr5.sh Hints for named architecture
hints/t001.c Test case for gcc bug
hints/ti1500.sh Hints for named architecture
hints/titanos.sh Hints for named architecture
hints/ultrix_4.sh Hints for named architecture
hints/umips.sh Hints for named architecture
hints/unicosmk.sh Hints for named architecture
hints/unicos.sh Hints for named architecture
hints/unisysdynix.sh Hints for named architecture
hints/utekv.sh Hints for named architecture
hints/uts.sh Hints for named architecture
hints/uwin.sh Hints for named architecture
hints/vmesa.sh Hints for named architecture
hints/vos.sh Hints for named architecture
hv.c Hash value code
hv.h Hash value header
INSTALL Detailed installation instructions
installhtml Perl script to install html files for pods
installman Perl script to install man pages for pods
installperl Perl script to do "make install" dirty work
INTERN.h Included before domestic .h files
intrpvar.h Variables held in each interpreter instance
iperlsys.h Perl's interface to the system
jpl/bin/jpl JPL compiler
jpl/ChangeLog Java/Perl Lingo change log
jpl/docs/Tutorial.pod Perl and Java Tutorial
jpl/get_jdk/get_jdk.pl JDK download tool
jpl/get_jdk/jdk_hosts JDK availability list
jpl/get_jdk/README Instructions for using get_jdk.pl
jpl/install-jpl JPL install utility
jpl/JNI/Changes Java Native Interface changes
jpl/JNI/Closer.java Java Native Interface example
jpl/JNI/JNIConfig Java Native Interface config
jpl/JNI/JNIConfig.kaffe Java Native Interface config
jpl/JNI/JNIConfig.noembed Java Native Interface config
jpl/JNI/JNIConfig.standard Java Native Interface config
jpl/JNI/JNIConfig.Win32 Java Native Interface config
jpl/JNI/JNI.pm Java Native Interface module
jpl/JNI/JNI.xs Java Native Interface module
jpl/JNI/Makefile.PL Java Native Interface makefile generator
jpl/JNI/test.pl Java Native Interface tests
jpl/JNI/typemap Java/Perl interface typemap
jpl/JNI/typemap.gcc Java/Perl interface typemap
jpl/JNI/typemap.win32 Java/Perl interface typemap
jpl/JPL/AutoLoader.pm Java/Perl compiler module
jpl/JPL/Class.pm Java/Perl compiler module
jpl/JPL/Compile.pm Java/Perl compiler module
jpl/JPL/Makefile.PL Java/Perl makefile generator
jpl/JPL_Rolo/cardfile Rolodex sample application
jpl/JPL_Rolo/JPL_Rolo.jpl Rolodex sample application
jpl/JPL_Rolo/Makefile.PL Makefile generator
jpl/JPL_Rolo/README Instructions
jpl/PerlInterpreter/Makefile.PL Makefile generator
jpl/PerlInterpreter/PerlInterpreter.c Perl interpreter abstraction
jpl/PerlInterpreter/PerlInterpreter.h Perl interpreter abstraction
jpl/PerlInterpreter/PerlInterpreter.java Perl interpreter abstraction
jpl/README JPL instructions
jpl/README.JUST-JNI JPL instructions
jpl/Sample/Makefile.PL JPL sample makefile generator
jpl/Sample/Sample.jpl JPL sample
jpl/SETVARS.PL JPL setup
jpl/Test/Makefile.PL JPL tests makefile generator
jpl/Test/Test.jpl JPL tests
keywords.h The keyword numbers
keywords.pl Program to write keywords.h
lib/abbrev.pl An abbreviation table builder
lib/AnyDBM_File.pm Perl module to emulate dbmopen
lib/AnyDBM_File.t See if AnyDBM_File works
lib/assert.pl assertion and panic with stack trace
lib/Attribute/Handlers/Changes Attribute::Handlers
lib/Attribute/Handlers/demo/demo2.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo3.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo4.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo_call.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo_chain.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo_cycle.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo_hashdir.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo_phases.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/Demo.pm Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo_range.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/demo_rawdata.pl Attribute::Handlers demo
lib/Attribute/Handlers/demo/Descriptions.pm Attribute::Handlers demo
lib/Attribute/Handlers/demo/MyClass.pm Attribute::Handlers demo
lib/Attribute/Handlers.pm Attribute::Handlers
lib/Attribute/Handlers/README Attribute::Handlers
lib/Attribute/Handlers/t/multi.t See if Attribute::Handlers works
lib/attributes.pm For "sub foo : attrlist"
lib/AutoLoader.pm Autoloader base class
lib/AutoLoader.t See if AutoLoader works
lib/AutoSplit.pm Split up autoload functions
lib/AutoSplit.t See if AutoSplit works
lib/autouse.pm Load and call a function only when it's used
lib/autouse.t See if autouse works
lib/base.pm Establish IS-A relationship at compile time
lib/base/t/base.t See if base works
lib/base/t/fields-base.t See if fields work
lib/base/t/fields.t See if fields work
lib/Benchmark.pm Measure execution time
lib/Benchmark.t See if Benchmark works
lib/bigfloat.pl An arbitrary precision floating point package
lib/bigfloatpl.t See if bigfloat.pl works
lib/bigint.pl An arbitrary precision integer arithmetic package
lib/bigintpl.t See if bigint.pl works
lib/bigint.pm bignum
lib/bignum.pm bignum
lib/bignum/t/bigint.t See if bignum works
lib/bignum/t/bignum.t See if bignum works
lib/bignum/t/bigrat.t See if bignum works
lib/bignum/t/biinfnan.t See if bignum works
lib/bignum/t/bninfnan.t See if bignum works
lib/bignum/t/bn_lite.t See if bignum works
lib/bignum/t/brinfnan.t See if bignum works
lib/bignum/t/br_lite.t See if bignum works
lib/bignum/t/infnan.inc See if bignum works
lib/bignum/t/option_a.t See if bignum works
lib/bignum/t/option_l.t See if bignum works
lib/bignum/t/option_p.t See if bignum works
lib/bigrat.pl An arbitrary precision rational arithmetic package
lib/bigrat.pm bignum
lib/blib.pm For "use blib"
lib/blib.t blib.pm test
lib/bytes_heavy.pl Support routines for byte pragma
lib/bytes.pm Pragma to enable byte operations
lib/bytes.t bytes.pm test
lib/cacheout.pl Manages output filehandles when you need too many
lib/Carp/Heavy.pm Error message workhorse
lib/Carp.pm Error message base class
lib/Carp.t See if Carp works
lib/CGI/Apache.pm Support for Apache's Perl module
lib/CGI/Carp.pm Log server errors with helpful context
lib/CGI/Cookie.pm Interface to Netscape Cookies
lib/CGI/eg/caution.xbm CGI example
lib/CGI/eg/clickable_image.cgi CGI example
lib/CGI/eg/cookie.cgi CGI example
lib/CGI/eg/crash.cgi CGI example
lib/CGI/eg/customize.cgi CGI example
lib/CGI/eg/diff_upload.cgi CGI example
lib/CGI/eg/dna_small_gif.uu Small image for CGI examples
lib/CGI/eg/file_upload.cgi CGI example
lib/CGI/eg/frameset.cgi CGI example
lib/CGI/eg/index.html Index page for CGI examples
lib/CGI/eg/internal_links.cgi CGI example
lib/CGI/eg/javascript.cgi CGI example
lib/CGI/eg/make_links.pl CGI example
lib/CGI/eg/monty.cgi CGI example
lib/CGI/eg/multiple_forms.cgi CGI example
lib/CGI/eg/nph-clock.cgi CGI example
lib/CGI/eg/nph-multipart.cgi CGI example
lib/CGI/eg/popup.cgi CGI example
lib/CGI/eg/RunMeFirst Setup script for CGI examples
lib/CGI/eg/save_state.cgi CGI example
lib/CGI/eg/tryit.cgi CGI example
lib/CGI/eg/wilogo_gif.uu CGI example
lib/CGI/Fast.pm Support for FastCGI (persistent server process)
lib/CGI.pm Web server interface ("Common Gateway Interface")
lib/CGI/Pretty.pm Output nicely formatted HTML
lib/CGI/Push.pm Support for server push
lib/CGI/Switch.pm Simple interface for multiple server types
lib/CGI/t/apache.t See if CGI::Apache still loads
lib/CGI/t/carp.t See if CGI::Carp works
lib/CGI/t/cookie.t See if CGI::Cookie works
lib/CGI/t/fast.t See if CGI::Fast works (if FCGI is installed)
lib/CGI/t/form.t See if CGI.pm works
lib/CGI/t/function.t See if CGI.pm works
lib/CGI/t/html.t See if CGI.pm works
lib/CGI/t/pretty.t See if CGI.pm works
lib/CGI/t/push.t See if CGI::Push works
lib/CGI/t/request.t See if CGI.pm works
lib/CGI/t/switch.t See if CGI::Switch still loads
lib/CGI/t/util-58.t See if 5.8-dependent features work
lib/CGI/t/util.t See if CGI.pm works
lib/CGI/Util.pm Utility functions
lib/charnames.pm Character names
lib/charnames.t See if character names work
lib/Class/ISA.pm Class::ISA
lib/Class/ISA/test.pl See if Class::ISA works
lib/Class/Struct.pm Declare struct-like datatypes as Perl classes
lib/Class/Struct.t See if Class::Struct works
lib/complete.pl A command completion subroutine
lib/Config.t See if Config works
lib/constant.pm For "use constant"
lib/constant.t See if compile-time constants work
lib/CPAN/bin/cpan easily interact with CPAN from the command line
lib/CPAN/FirstTime.pm Utility for creating CPAN config files
lib/CPAN/META.yml CPAN metainfo
lib/CPAN/Nox.pm Runs CPAN while avoiding compiled extensions
lib/CPAN/PAUSE2003.pub CPAN public key
lib/CPAN.pm Interface to Comprehensive Perl Archive Network
lib/CPAN/SIGNATURE CPAN signature
lib/CPAN/t/loadme.t See if CPAN the module works
lib/CPAN/t/mirroredby.t See if CPAN::Mirrored::By works
lib/CPAN/t/Nox.t See if CPAN::Nox works
lib/CPAN/t/signature.t CPAN signature test
lib/CPAN/t/vcmp.t See if CPAN the module works
lib/ctime.pl A ctime workalike
lib/Cwd.pm Various cwd routines (getcwd, fastcwd, chdir)
lib/DB.pm Debugger API (draft)
lib/DB.t See if DB works
lib/Devel/SelfStubber.pm Generate stubs for SelfLoader.pm
lib/Devel/SelfStubber.t See if Devel::SelfStubber works
lib/diagnostics.pm Print verbose diagnostics
lib/diagnostics.t See if diagnostics.pm works
lib/Digest.pm Digest extensions
lib/Digest.t See if Digest extensions work
lib/DirHandle.pm like FileHandle only for directories
lib/DirHandle.t See if DirHandle works
lib/dotsh.pl Code to "dot" in a shell script
lib/Dumpvalue.pm Screen dump of perl values
lib/Dumpvalue.t See if Dumpvalue works
lib/dumpvar.pl A variable dumper
lib/dumpvar.t A variable dumper tester
lib/English.pm Readable aliases for short variables
lib/English.t See if English works
lib/Env.pm Map environment into ordinary variables
lib/Env/t/array.t See if Env works for arrays
lib/Env/t/env.t See if Env works
lib/exceptions.pl catch and throw routines
lib/Exporter/Heavy.pm Complicated routines for Exporter
lib/Exporter.pm Exporter base class
lib/Exporter.t See if Exporter works
lib/ExtUtils/Changes MakeMaker change log
lib/ExtUtils/Command/MM.pm Calling MM functions from the cmd line
lib/ExtUtils/Command.pm Utilities for Make on non-UNIX platforms
lib/ExtUtils/Constant.pm generate XS code to import C header constants
lib/ExtUtils/Embed.pm Utilities for embedding Perl in C programs
lib/ExtUtils/Installed.pm Information on installed extensions
lib/ExtUtils/Install.pm Handles 'make install' on extensions
lib/ExtUtils/instmodsh Give information about installed extensions
lib/ExtUtils/Liblist/Kid.pm Does the real work of the above
lib/ExtUtils/Liblist.pm Locates libraries
lib/ExtUtils/MakeMaker/bytes.pm Version agnostic bytes.pm
lib/ExtUtils/MakeMaker/FAQ.pod MakeMaker FAQ
lib/ExtUtils/MakeMaker.pm Write Makefiles for extensions
lib/ExtUtils/MakeMaker/Tutorial.pod Writing a module with MakeMaker
lib/ExtUtils/MakeMaker/vmsish.pm Platform agnostic vmsish.pm
lib/ExtUtils/Manifest.pm Utilities to write MANIFEST files
lib/ExtUtils/MANIFEST.SKIP The default MANIFEST.SKIP
lib/ExtUtils/META.yml ExtUtils::MakeMaker metadata
lib/ExtUtils/Mkbootstrap.pm Writes a bootstrap file (see MakeMaker)
lib/ExtUtils/Mksymlists.pm Writes a linker options file for extensions
lib/ExtUtils/MM_Any.pm MakeMaker methods for Any OS
lib/ExtUtils/MM_BeOS.pm MakeMaker methods for BeOS
lib/ExtUtils/MM_Cygwin.pm MakeMaker methods for Cygwin
lib/ExtUtils/MM_DOS.pm MakeMaker methods for DOS
lib/ExtUtils/MM_MacOS.pm MakeMaker methods for MacOS
lib/ExtUtils/MM_NW5.pm MakeMaker methods for NetWare
lib/ExtUtils/MM_OS2.pm MakeMaker methods for OS/2
lib/ExtUtils/MM.pm MakeMaker adaptor class
lib/ExtUtils/MM_Unix.pm MakeMaker methods for Unix
lib/ExtUtils/MM_UWIN.pm MakeMaker methods for U/WIN
lib/ExtUtils/MM_VMS.pm MakeMaker methods for VMS
lib/ExtUtils/MM_Win32.pm MakeMaker methods for Win32
lib/ExtUtils/MM_Win95.pm MakeMaker methods for Win95
lib/ExtUtils/MY.pm MakeMaker user override class
lib/ExtUtils/NOTES Notes about MakeMaker internals
lib/ExtUtils/Packlist.pm Manipulates .packlist files
lib/ExtUtils/PATCHING Suggestions for patching MakeMaker
lib/ExtUtils/README MakeMaker README
lib/ExtUtils/t/00compile.t See if MakeMaker modules compile
lib/ExtUtils/t/00setup_dummy.t Setup MakeMaker test module
lib/ExtUtils/t/backwards.t Check MakeMaker's backwards compatibility
lib/ExtUtils/t/basic.t See if MakeMaker can build a module
lib/ExtUtils/t/bytes.t Test ExtUtils::MakeMaker::bytes
lib/ExtUtils/t/Command.t See if ExtUtils::Command works (Win32 only)
lib/ExtUtils/t/Constant.t See if ExtUtils::Constant works
lib/ExtUtils/t/Embed.t See if ExtUtils::Embed and embedding works
lib/ExtUtils/testlib.pm Fixes up @INC to use just-built extension
lib/ExtUtils/t/hints.t See if hint files are honored.
lib/ExtUtils/t/Installed.t See if ExtUtils::Installed works
lib/ExtUtils/t/Install.t See if ExtUtils::Install works
lib/ExtUtils/t/INST_PREFIX.t See if MakeMaker can apply PREFIXs
lib/ExtUtils/t/INST.t Check MakeMaker INST_* macros
lib/ExtUtils/t/Liblist.t See if ExtUtils::Liblist works
lib/ExtUtils/t/Manifest.t See if ExtUtils::Manifest works
lib/ExtUtils/t/Mkbootstrap.t See if ExtUtils::Mkbootstrap works
lib/ExtUtils/t/MM_Any.t See if ExtUtils::MM_Any works
lib/ExtUtils/t/MM_BeOS.t See if ExtUtils::MM_BeOS works
lib/ExtUtils/t/MM_Cygwin.t See if ExtUtils::MM_Cygwin works
lib/ExtUtils/t/MM_NW5.t See if ExtUtils::MM_NW5 works
lib/ExtUtils/t/MM_OS2.t See if ExtUtils::MM_OS2 works
lib/ExtUtils/t/MM_Unix.t See if ExtUtils::MM_UNIX works
lib/ExtUtils/t/MM_VMS.t See if ExtUtils::MM_VMS works
lib/ExtUtils/t/MM_Win32.t See if ExtUtils::MM_Win32 works
lib/ExtUtils/TODO Things TODO in MakeMaker
lib/ExtUtils/t/oneliner.t See if MM can generate perl one-liners
lib/ExtUtils/t/Packlist.t See if Packlist works
lib/ExtUtils/t/postamble.t See if postamble works
lib/ExtUtils/t/prefixify.t See if MakeMaker can apply a PREFIX
lib/ExtUtils/t/prereq_print.t See if PREREQ_PRINT works
lib/ExtUtils/t/problems.t How MakeMaker reacts to build problems
lib/ExtUtils/t/prompt.t See if E::MM::prompt() works
lib/ExtUtils/t/recurs.t See if recursive builds work
lib/ExtUtils/t/split_command.t See if MM's xargs-like function works
lib/ExtUtils/t/testlib.t See if ExtUtils::testlib works
lib/ExtUtils/t/VERSION_FROM.t See if MakeMaker's VERSION_FROM works
lib/ExtUtils/t/vmsish.t Test ExtUtils::MakeMaker::vmsish
lib/ExtUtils/t/writemakefile_args.t See if WriteMakefile works
lib/ExtUtils/typemap Extension interface types
lib/ExtUtils/t/zz_cleanup_dummy.t Cleanup MakeMaker test module
lib/ExtUtils/xsubpp External subroutine preprocessor
lib/fastcwd.pl a faster but more dangerous getcwd
lib/Fatal.pm Make errors in functions/builtins fatal
lib/Fatal.t See if Fatal works
lib/fields.pm Set up object field names for pseudo-hash-using classes
lib/File/Basename.pm Emulate the basename program
lib/File/Basename.t See if File::Basename works
lib/FileCache.pm Keep more files open than the system permits
lib/FileCache/t/01open.t See if FileCache works
lib/FileCache/t/02maxopen.t See if FileCache works
lib/FileCache/t/03append.t See if FileCache works
lib/FileCache/t/04twoarg.t See if FileCache works
lib/FileCache/t/05override.t See if FileCache works
lib/File/CheckTree.pm Perl module supporting wholesale file mode validation
lib/File/CheckTree.t See if File::CheckTree works
lib/File/Compare.pm Emulation of cmp command
lib/File/Compare.t See if File::Compare works
lib/File/Copy.pm Emulation of cp command
lib/File/Copy.t See if File::Copy works
lib/File/DosGlob.pm Win32 DOS-globbing module
lib/File/DosGlob.t See if File::DosGlob works
lib/File/Find.pm Routines to do a find
lib/File/Find/t/find.t See if File::Find works
lib/File/Find/t/taint.t See if File::Find works with taint
lib/FileHandle.pm Backward-compatible front end to IO extension
lib/FileHandle.t See if FileHandle works
lib/File/Path.pm Do things like `mkdir -p' and `rm -r'
lib/File/Path.t See if File::Path works
lib/File/Spec/Cygwin.pm portable operations on Cygwin file names
lib/File/Spec/Epoc.pm portable operations on EPOC file names
lib/File/Spec/Functions.pm Function interface to File::Spec object methods
lib/File/Spec/Mac.pm portable operations on Mac file names
lib/File/Spec/OS2.pm portable operations on OS2 file names
lib/File/Spec.pm portable operations on file names
lib/File/Spec/t/crossplatform.t See if File::Spec works crossplatform
lib/File/Spec/t/Functions.t See if File::Spec::Functions works
lib/File/Spec/t/rel2abs2rel.t See if File::Spec->rel2abs/abs2rel works
lib/File/Spec/t/Spec.t See if File::Spec works
lib/File/Spec/Unix.pm portable operations on Unix file names
lib/File/Spec/VMS.pm portable operations on VMS file names
lib/File/Spec/Win32.pm portable operations on Win32 and NetWare file names
lib/File/stat.pm By-name interface to Perl's builtin stat
lib/File/stat.t See if File::stat works
lib/File/Temp.pm create safe temporary files and file handles
lib/File/Temp/t/mktemp.t See if File::Temp works
lib/File/Temp/t/object.t See if File::Temp works
lib/File/Temp/t/posix.t See if File::Temp works
lib/File/Temp/t/security.t See if File::Temp works
lib/File/Temp/t/tempfile.t See if File::Temp works
lib/filetest.pm For "use filetest"
lib/filetest.t See if filetest works
lib/Filter/Simple/Changes Filter::Simple
lib/Filter/Simple.pm Simple frontend to Filter::Util::Call
lib/Filter/Simple/README Filter::Simple
lib/Filter/Simple/t/data.t See if Filter::Simple works
lib/Filter/Simple/t/export.t See if Filter::Simple works
lib/Filter/Simple/t/filter_only.t See if Filter::Simple works
lib/Filter/Simple/t/filter.t See if Filter::Simple works
lib/Filter/Simple/t/import.t See if Filter::Simple works
lib/FindBin.pm Find name of currently executing program
lib/FindBin.t See if FindBin works
lib/finddepth.pl A depth-first find emulator--used by find2perl
lib/find.pl A find emulator--used by find2perl
lib/flush.pl Routines to do single flush
lib/getcwd.pl A getcwd() emulator
lib/Getopt/Long/CHANGES Getopt::Long changes
lib/Getopt/Long.pm Fetch command options (GetOptions)
lib/Getopt/Long/README Getopt::Long README
lib/Getopt/Long/t/gol-basic.t See if Getopt::Long works
lib/Getopt/Long/t/gol-compat.t See if Getopt::Long works
lib/Getopt/Long/t/gol-linkage.t See if Getopt::Long works
lib/Getopt/Long/t/gol-oo.t See if Getopt::Long works
lib/getopt.pl Perl library supporting option parsing
lib/getopts.pl Perl library supporting option parsing
lib/Getopt/Std.pm Fetch command options (getopt, getopts)
lib/Getopt/Std.t See if Getopt::Std and Getopt::Long work
lib/h2ph.t See if h2ph works like it should
lib/h2xs.t See if h2xs produces expected lists of files
lib/Hash/Util.pm Hash::Util
lib/Hash/Util.t See if Hash::Util works
lib/hostname.pl Old hostname code
lib/I18N/Collate.pm Routines to do strxfrm-based collation
lib/I18N/Collate.t See if I18N::Collate works
lib/I18N/LangTags/ChangeLog I18N::LangTags
lib/I18N/LangTags/List.pm List of tags for human languages
lib/I18N/LangTags.pm I18N::LangTags
lib/I18N/LangTags/README I18N::LangTags
lib/I18N/LangTags/t/01test.t See whether I18N::LangTags works
lib/I18N/LangTags/t/02decency.t See if I18N::LangTags::List::is_decent works
lib/if.pm For "use if"
lib/if.t Tests for "use if"
lib/importenv.pl Perl routine to get environment into variables
lib/integer.pm For "use integer"
lib/integer.t For "use integer" testing
lib/Internals.t For Internals::* testing
lib/IPC/Open2.pm Open a two-ended pipe
lib/IPC/Open2.t See if IPC::Open2 works
lib/IPC/Open3.pm Open a three-ended pipe!
lib/IPC/Open3.t See if IPC::Open3 works
lib/IPC/SysV.t See if IPC::SysV works
lib/less.pm For "use less"
lib/less.t See if less support works
lib/lib_pm.PL For "use lib", produces lib/lib.pm
lib/lib.t For "use lib" testing
lib/Locale/Codes/ChangeLog Locale::Codes
lib/Locale/Codes/README Locale::Codes
lib/Locale/Codes/t/all.t See if Locale::Codes work
lib/Locale/Codes/t/constants.t See if Locale::Codes work
lib/Locale/Codes/t/country.t See if Locale::Codes work
lib/Locale/Codes/t/currency.t See if Locale::Codes work
lib/Locale/Codes/t/languages.t See if Locale::Codes work
lib/Locale/Codes/t/rename.t See if Locale::Codes work
lib/Locale/Codes/t/script.t See if Locale::Codes work
lib/Locale/Codes/t/uk.t See if Locale::Codes work
lib/Locale/Constants.pm Locale::Codes
lib/Locale/Constants.pod Locale::Codes documentation
lib/Locale/Country.pm Locale::Codes
lib/Locale/Country.pod Locale::Codes documentation
lib/Locale/Currency.pm Locale::Codes
lib/Locale/Currency.pod Locale::Codes documentation
lib/Locale/Language.pm Locale::Codes
lib/Locale/Language.pod Locale::Codes documentation
lib/Locale/Maketext/ChangeLog Locale::Maketext
lib/Locale/Maketext/GutsLoader.pm Locale::Maketext
lib/Locale/Maketext/Guts.pm Locale::Maketext
lib/Locale/Maketext.pm Locale::Maketext
lib/Locale/Maketext.pod Locale::Maketext documentation
lib/Locale/Maketext/README Locale::Maketext
lib/Locale/Maketext/t/00about.t See if Locale::Maketext works
lib/Locale/Maketext/t/01make.t See if Locale::Maketext works
lib/Locale/Maketext/t/02get.t See if Locale::Maketext works
lib/Locale/Maketext/t/03http.t See if Locale::Maketext works
lib/Locale/Maketext/t/90utf8.t Locale::Maketext
lib/Locale/Maketext/TPJ13.pod Locale::Maketext documentation article
lib/locale.pm For "use locale"
lib/Locale/Script.pm Locale::Codes
lib/Locale/Script.pod Locale::Codes documentation
lib/locale.t See if locale support works
lib/look.pl A "look" equivalent
lib/Math/BigFloat.pm An arbitrary precision floating-point arithmetic package
lib/Math/BigFloat/Trace.pm bignum tracing
lib/Math/BigInt/Calc.pm Pure Perl module to support Math::BigInt
lib/Math/BigInt.pm An arbitrary precision integer arithmetic package
lib/Math/BigInt/Scalar.pm Pure Perl module to support Math::BigInt
lib/Math/BigInt/t/bare_mbf.t Test MBF under Math::BigInt::BareCalc
lib/Math/BigInt/t/bare_mbi.t Test MBI under Math::BigInt::BareCalc
lib/Math/BigInt/t/bare_mif.t Rounding tests under BareCalc
lib/Math/BigInt/t/bigfltpm.inc Shared tests for bigfltpm.t and sub_mbf.t
lib/Math/BigInt/t/bigfltpm.t See if BigFloat.pm works
lib/Math/BigInt/t/bigintc.t See if BigInt/Calc.pm works
lib/Math/BigInt/t/bigintpm.inc Shared tests for bigintpm.t and sub_mbi.t
lib/Math/BigInt/t/bigintpm.t See if BigInt.pm works
lib/Math/BigInt/t/bigints.t See if BigInt.pm works
lib/Math/BigInt/t/biglog.t Test the log function
lib/Math/BigInt/t/calling.t Test calling conventions
lib/Math/BigInt/t/config.t Test Math::BigInt->config()
lib/Math/BigInt/t/constant.t Test Math::BigInt/BigFloat under :constant
lib/Math/BigInt/t/downgrade.t Test if use Math::BigInt(); under downgrade works
lib/Math/BigInt/t/inf_nan.t Special tests for inf and NaN handling
lib/Math/BigInt/t/isa.t Test for Math::BigInt inheritance
lib/Math/BigInt/t/mbimbf.inc Actual BigInt/BigFloat accuracy, precision and fallback, round_mode tests
lib/Math/BigInt/t/mbimbf.t BigInt/BigFloat accuracy, precision and fallback, round_mode
lib/Math/BigInt/t/mbi_rand.t Test Math::BigInt randomly
lib/Math/BigInt/Trace.pm bignum tracing
lib/Math/BigInt/t/req_mbf0.t test: require Math::BigFloat; ->bzero();
lib/Math/BigInt/t/req_mbf1.t test: require Math::BigFloat; ->bone();
lib/Math/BigInt/t/req_mbfa.t test: require Math::BigFloat; ->bnan();
lib/Math/BigInt/t/req_mbfi.t test: require Math::BigFloat; ->binf();
lib/Math/BigInt/t/req_mbfn.t test: require Math::BigFloat; ->new();
lib/Math/BigInt/t/req_mbfw.t require Math::BigFloat; import ( with => );
lib/Math/BigInt/t/require.t Test if require Math::BigInt works
lib/Math/BigInt/t/sub_mbf.t Empty subclass test of BigFloat
lib/Math/BigInt/t/sub_mbi.t Empty subclass test of BigInt
lib/Math/BigInt/t/sub_mif.t Test A & P with subclasses using mbimbf.inc
lib/Math/BigInt/t/trap.t Test whether trap_nan and trap_inf work
lib/Math/BigInt/t/upgradef.t Test if use Math::BigFloat(); under upgrade works
lib/Math/BigInt/t/upgrade.inc Actual tests for upgrade.t
lib/Math/BigInt/t/upgrade.t Test if use Math::BigInt(); under upgrade works
lib/Math/BigInt/t/use_lib1.t Test combinations of Math::BigInt and BigFloat
lib/Math/BigInt/t/use_lib2.t Test combinations of Math::BigInt and BigFloat
lib/Math/BigInt/t/use_lib3.t Test combinations of Math::BigInt and BigFloat
lib/Math/BigInt/t/use_lib4.t Test combinations of Math::BigInt and BigFloat
lib/Math/BigInt/t/use_mbfw.t use BigFloat w/ with and lib at the same time
lib/Math/BigInt/t/use.t Test if use Math::BigInt(); works
lib/Math/BigInt/t/with_sub.t Test use Math::BigFloat with => package
lib/Math/BigRat.pm Math::BigRat
lib/Math/BigRat/t/big_ap.t Math::BigRat test
lib/Math/BigRat/t/bigfltpm.inc Math::BigRat test
lib/Math/BigRat/t/bigfltrt.t Math::BigRat test
lib/Math/BigRat/t/bigratpm.inc Math::BigRat test
lib/Math/BigRat/t/bigratpm.t Math::BigRat test
lib/Math/BigRat/t/bigrat.t Math::BigRat test
lib/Math/BigRat/t/bigratup.t test under $Math::BigInt::upgrade
lib/Math/BigRat/t/requirer.t see if require works properly
lib/Math/BigRat/t/trap.t see if trap_nan and trap_inf work
lib/Math/Complex.pm A Complex package
lib/Math/Complex.t See if Math::Complex works
lib/Math/Trig.pm A simple interface to complex trigonometry
lib/Math/Trig.t See if Math::Trig works
lib/Memoize/AnyDBM_File.pm Memoize glue layer for AnyDBM_File
lib/Memoize/ExpireFile.pm Memoize expiry manager test scaffold
lib/Memoize/Expire.pm Memoize expiry manager example
lib/Memoize/ExpireTest.pm Memoize expiry manager test scaffold
lib/Memoize/NDBM_File.pm Memoize glue layer for NDBM_File
lib/Memoize.pm Memoize
lib/Memoize/README Memoize release notes
lib/Memoize/SDBM_File.pm Memoize glue layer for SDBM_File
lib/Memoize/Storable.pm Memoize glue layer for Storable
lib/Memoize/t/array_confusion.t Memoize ambiguous array return tests
lib/Memoize/t/array.t Memoize array context return tests
lib/Memoize/t/correctness.t Memoize basic correctness tests
lib/Memoize/t/errors.t Memoize PEBKAC detection tests
lib/Memoize/t/expfile.t Memoize expiry manager tests
lib/Memoize/t/expire.t Memoize expiry manager tests
lib/Memoize/t/expmod_n.t Memoize expiry manager tests
lib/Memoize/t/expmod_t.t Memoize expiry manager (timed) tests
lib/Memoize/t/flush.t Memoize 'flush_cache' function tests
lib/Memoize/t/normalize.t Memoize 'normalizer' feature tests
lib/Memoize/TODO Memoize to-do list
lib/Memoize/t/prototype.t Memoize prototyped function handling tests
lib/Memoize/t/speed.t "Makes functions faster" advertisement test
lib/Memoize/t/tiefeatures.t Memoize FAULT / MERGE / HASH options test
lib/Memoize/t/tie_gdbm.t Memoize GDBM interface test
lib/Memoize/t/tie_ndbm.t Memoize NDBM interface test
lib/Memoize/t/tie_sdbm.t Memoize SDBM interface test
lib/Memoize/t/tie_storable.t Memoize Storable interface test
lib/Memoize/t/tie.t Memoize tied file test
lib/Memoize/t/unmemoize.t Memoize 'unmemoize' function test
lib/Net/ChangeLog.libnet libnet
lib/Net/Cmd.pm libnet
lib/Net/Config.eg libnet
lib/Net/Config.pm libnet
lib/Net/demos/ftp libnet
lib/Net/demos/inetd libnet
lib/Net/demos/nntp libnet
lib/Net/demos/nntp.mirror libnet
lib/Net/demos/pop3 libnet
lib/Net/demos/smtp.self libnet
lib/Net/demos/time libnet
lib/Net/Domain.pm libnet
lib/Net/FTP/A.pm libnet
lib/Net/FTP/dataconn.pm libnet
lib/Net/FTP/E.pm libnet
lib/Net/FTP/I.pm libnet
lib/Net/FTP/L.pm libnet
lib/Net/FTP.pm libnet
lib/Net/hostent.pm By-name interface to Perl's builtin gethost*
lib/Net/hostent.t See if Net::hostent works
lib/Net/Hostname.eg libnet
lib/Net/libnetFAQ.pod libnet
lib/Net/netent.pm By-name interface to Perl's builtin getnet*
lib/Net/netent.t See if Net::netent works
lib/Net/Netrc.pm libnet
lib/Net/NNTP.pm libnet
lib/Net/Ping/Changes Net::Ping
lib/Net/Ping.pm Hello, anybody home?
lib/Net/Ping/t/100_load.t Ping Net::Ping
lib/Net/Ping/t/110_icmp_inst.t Ping Net::Ping
lib/Net/Ping/t/120_udp_inst.t Ping Net::Ping
lib/Net/Ping/t/130_tcp_inst.t Ping Net::Ping
lib/Net/Ping/t/140_stream_inst.t Ping Net::Ping
lib/Net/Ping/t/150_syn_inst.t Ping Net::Ping
lib/Net/Ping/t/190_alarm.t Ping Net::Ping
lib/Net/Ping/t/200_ping_tcp.t Ping Net::Ping
lib/Net/Ping/t/250_ping_hires.t Ping Net::Ping
lib/Net/Ping/t/300_ping_stream.t Ping Net::Ping
lib/Net/Ping/t/400_ping_syn.t Ping Net::Ping
lib/Net/Ping/t/410_syn_host.t Ping Net::Ping
lib/Net/Ping/t/450_service.t Ping Net::Ping
lib/Net/Ping/t/500_ping_icmp.t Ping Net::Ping
lib/Net/Ping/t/510_ping_udp.t Ping Net::Ping
lib/Net/POP3.pm libnet
lib/Net/protoent.pm By-name interface to Perl's builtin getproto*
lib/Net/protoent.t See if Net::protoent works
lib/Net/README.libnet libnet
lib/Net/servent.pm By-name interface to Perl's builtin getserv*
lib/Net/servent.t See if Net::servtent works
lib/Net/SMTP.pm libnet
lib/Net/t/config.t libnet
lib/Net/t/ftp.t libnet
lib/Net/t/hostname.t libnet
lib/Net/Time.pm libnet
lib/Net/t/libnet_t.pl libnet
lib/Net/t/netrc.t libnet
lib/Net/t/nntp.t libnet
lib/Net/t/require.t libnet
lib/Net/t/smtp.t libnet
lib/Net/t/time.t libnet
lib/newgetopt.pl A perl library supporting long option parsing
lib/NEXT/Changes NEXT
lib/NEXT.pm Pseudo-class NEXT for method redispatch
lib/NEXT/README NEXT
lib/NEXT/t/actual.t NEXT
lib/NEXT/t/actuns.t NEXT
lib/NEXT/t/next.t NEXT
lib/NEXT/t/unseen.t NEXT
lib/open2.pl Open a two-ended pipe (uses IPC::Open2)
lib/open3.pl Open a three-ended pipe (uses IPC::Open3)
lib/open.pm Pragma to specify default I/O layers
lib/open.t See if the open pragma works
lib/overload.pm Module for overloading perl operators
lib/overload.t See if operator overloading works
lib/perl5db.pl Perl debugging routines
lib/PerlIO.pm PerlIO support module
lib/PerlIO/via/QuotedPrint.pm PerlIO::via::QuotedPrint
lib/PerlIO/via/t/QuotedPrint.t PerlIO::via::QuotedPrint
lib/ph.t See if h2ph works
lib/Pod/Checker.pm Pod-Parser - check POD documents for syntax errors
lib/Pod/Find.pm used by pod/splitpod
lib/Pod/Functions.pm used by pod/splitpod
lib/Pod/Html.pm Convert POD data to HTML
lib/Pod/InputObjects.pm Pod-Parser - define objects for input streams
lib/Pod/LaTeX.pm Convert POD data to LaTeX
lib/Pod/Man.pm Convert POD data to *roff
lib/Pod/ParseLink.pm Perl an L<> formatting code in POD text
lib/Pod/Parser.pm Pod-Parser - define base class for parsing POD
lib/Pod/ParseUtils.pm Pod-Parser - pod utility functions
lib/Pod/Perldoc/BaseTo.pm utility module for perldoc
lib/Pod/Perldoc/GetOptsOO.pm options parsing for perldoc
lib/Pod/Perldoc.pm guts of the 'perldoc' utility
lib/Pod/Perldoc/t/checkerbasic.t test Pod::Perldoc::ToChecker
lib/Pod/Perldoc/ToChecker.pm let perldoc check POD for errors
lib/Pod/Perldoc/ToMan.pm render POD as man pages
lib/Pod/Perldoc/ToNroff.pm convert POD to nroff
lib/Pod/Perldoc/ToPod.pm convert POD to POD
lib/Pod/Perldoc/ToRtf.pm convert POD to RTF
lib/Pod/Perldoc/ToText.pm convert POD to plain text
lib/Pod/Perldoc/ToTk.pm convert POD via Tk::Pod
lib/Pod/Perldoc/ToXml.pm convert POD to XML
lib/Pod/Perldoc/t/perldocbasic.t test Pod::Perldoc basic operation
lib/Pod/Perldoc/t/textbasic.t test Pod::Perldoc::ToText
lib/Pod/Plainer.pm Pod migration utility module
lib/Pod/PlainText.pm Convert POD data to formatted ASCII text
lib/Pod/Select.pm Pod-Parser - select portions of POD docs
lib/Pod/t/basic.cap podlators test
lib/Pod/t/basic.clr podlators test
lib/Pod/t/basic.man podlators test
lib/Pod/t/basic.ovr podlators test
lib/Pod/t/basic.pod podlators test
lib/Pod/t/basic.t podlators test
lib/Pod/t/basic.txt podlators test
lib/Pod/t/eol.t end of line agnosticism
lib/Pod/Text/Color.pm Convert POD data to color ASCII text
lib/Pod/Text/Overstrike.pm Convert POD data to formatted overstrike text
lib/Pod/Text.pm Pod-Parser - convert POD data to formatted ASCII text
lib/Pod/Text/Termcap.pm Convert POD data to ASCII text with format escapes
lib/Pod/t/Functions.t See if Pod::Functions works
lib/Pod/t/htmlescp.pod pod2html escape test input data
lib/Pod/t/htmlescp.t pod2html escape test
lib/Pod/t/htmlview.pod pod2html render test input data
lib/Pod/t/htmlview.t pod2html render test
lib/Pod/t/InputObjects.t See if Pod::InputObjects works
lib/Pod/t/man.t podlators test
lib/Pod/t/parselink.t podlators test
lib/Pod/t/pod2html-lib.pl pod2html testing library
lib/Pod/t/pod2latex.t See if Pod::LaTeX works
lib/Pod/t/Select.t See if Pod::Select works
lib/Pod/t/text-errors.t podlators test
lib/Pod/t/text-options.t podlators test
lib/Pod/t/text.t podlators test
lib/Pod/t/Usage.t See if Pod::Usage works
lib/Pod/t/utils.t Test for Pod::ParseUtils
lib/Pod/Usage.pm Pod-Parser - print usage messages
lib/pwd.pl Routines to keep track of PWD environment variable
lib/Search/Dict.pm Perform binary search on dictionaries
lib/Search/Dict.t See if Search::Dict works
lib/SelectSaver.pm Enforce proper select scoping
lib/SelectSaver.t See if SelectSaver works
lib/SelfLoader.pm Load functions only on demand
lib/SelfLoader.t See if SelfLoader works
lib/Shell.pm Make AUTOLOADed system() calls
lib/Shell.t Tests for above
lib/shellwords.pl Perl library to split into words with shell quoting
lib/sigtrap.pm For trapping an abort and giving traceback
lib/sigtrap.t See if sigtrap works
lib/sort.pm For "use sort"
lib/sort.t See if "use sort" works
lib/stat.pl Perl library supporting stat function
lib/strict.pm For "use strict"
lib/strict.t See if strictures work
lib/subs.pm Declare overriding subs
lib/subs.t See if subroutine pseudo-importation works
lib/Switch/Changes Switch
lib/Switch.pm Switch for Perl
lib/Switch/README Switch
lib/Switch/t/given.t See if Perl 6 given (switch) works
lib/Switch/t/nested.t See if nested switch works
lib/Switch/t/switch.t See if Perl 5 switch works
lib/Symbol.pm Symbol table manipulation routines
lib/Symbol.t See if Symbol works
lib/syslog.pl Perl library supporting syslogging
lib/tainted.pl Old code for tainting
lib/Term/ANSIColor/ChangeLog Term::ANSIColor
lib/Term/ANSIColor.pm Perl module supporting termcap usage
lib/Term/ANSIColor/README Term::ANSIColor
lib/Term/ANSIColor/test.pl See if Term::ANSIColor works
lib/termcap.pl Perl library supporting termcap usage
lib/Term/Cap.pm Perl module supporting termcap usage
lib/Term/Cap.t See if Term::Cap works
lib/Term/Complete.pm A command completion subroutine
lib/Term/Complete.t See if Term::Complete works
lib/Term/ReadLine.pm Stub readline library
lib/Term/ReadLine.t See if Term::ReadLine works
lib/Test/Builder.pm For writing new test libraries
lib/Test/Harness/Assert.pm Test::Harness::Assert (internal use only)
lib/Test/Harness/Changes Test::Harness
lib/Test/Harness/Iterator.pm Test::Harness::Iterator (internal use only)
lib/Test/Harness.pm A test harness
lib/Test/Harness/Straps.pm Test::Harness::Straps
lib/Test/Harness/t/00compile.t Test::Harness test
lib/Test/Harness/t/assert.t Test::Harness::Assert test
lib/Test/Harness/t/base.t Test::Harness test
lib/Test/Harness/t/callback.t Test::Harness test
lib/Test/Harness/t/nonumbers.t Test::Harness test
lib/Test/Harness/t/ok.t Test::Harness test
lib/Test/Harness/t/pod.t Test::Harness test
lib/Test/Harness/t/strap-analyze.t Test::Harness::Straps test
lib/Test/Harness/t/strap.t Test::Harness::Straps test
lib/Test/Harness/t/test-harness.t Test::Harness test
lib/Test/More.pm More utilities for writing tests
lib/Test.pm A simple framework for writing test scripts
lib/Test/Simple/Changes Test::Simple changes
lib/Test/Simple.pm Basic utility for writing tests
lib/Test/Simple/README Test::Simple README
lib/Test/Simple/t/bad_plan.t Test::Builder plan() test
lib/Test/Simple/t/buffer.t Test::Builder buffering test
lib/Test/Simple/t/Builder.t Test::Builder tests
lib/Test/Simple/t/curr_test.t Test::Builder->curr_test tests
lib/Test/Simple/t/details.t Test::Builder tests
lib/Test/Simple/t/diag.t Test::More diag() test
lib/Test/Simple/t/exit.t Test::Simple test, exit codes
lib/Test/Simple/t/extra.t Test::Simple test
lib/Test/Simple/t/fail-like.t Test::More test, like() failures
lib/Test/Simple/t/fail-more.t Test::More test, tests failing
lib/Test/Simple/t/fail.t Test::Simple test, test failures
lib/Test/Simple/t/filehandles.t Test::Simple test, STDOUT can be played with
lib/Test/Simple/t/fork.t Test::More fork tests
lib/Test/Simple/t/has_plan2.t Test::More->plan tests
lib/Test/Simple/t/has_plan.t Test::Builder->plan tests
lib/Test/Simple/t/import.t Test::More test, importing functions
lib/Test/Simple/t/is_deeply.t Test::More test, is_deeply()
lib/Test/Simple/t/maybe_regex.t Test::Builder->maybe_regex() tests
lib/Test/Simple/t/missing.t Test::Simple test, missing tests
lib/Test/Simple/t/More.t Test::More test, basic stuff
lib/Test/Simple/t/no_ending.t Test::Builder test, no_ending()
lib/Test/Simple/t/no_header.t Test::Builder test, no_header()
lib/Test/Simple/t/no_plan.t Test::Simple test, forgot the plan
lib/Test/Simple/t/ok_obj.t Test::Builder object tests
lib/Test/Simple/t/output.t Test::Builder test, output methods
lib/Test/Simple/t/plan_is_noplan.t Test::Simple test, no_plan
lib/Test/Simple/t/plan_no_plan.t Test::More test, plan() w/no_plan
lib/Test/Simple/t/plan_skip_all.t Test::More test, plan() w/skip_all
lib/Test/Simple/t/plan.t Test::More test, plan()
lib/Test/Simple/t/simple.t Test::Simple test, basic stuff
lib/Test/Simple/t/skipall.t Test::More test, skip all tests
lib/Test/Simple/t/skip.t Test::More test, SKIP tests
lib/Test/Simple/t/strays.t Test::Builder stray newline checks
lib/Test/Simple/t/threads.t Test::Builder thread-safe checks
lib/Test/Simple/t/todo.t Test::More test, TODO tests
lib/Test/Simple/t/undef.t Test::More test, undefs don't cause warnings
lib/Test/Simple/t/useing.t Test::More test, compile test
lib/Test/Simple/t/use_ok.t Test::More test, use_ok()
lib/Test/t/fail.t See if Test works
lib/Test/t/mix.t See if Test works
lib/Test/t/onfail.t See if Test works
lib/Test/t/qr.t See if Test works
lib/Test/t/skip.t See if Test works
lib/Test/t/success.t See if Test works
lib/Test/t/todo.t See if Test works
lib/Test/Tutorial.pod A tutorial on writing tests
lib/Text/Abbrev.pm An abbreviation table builder
lib/Text/Abbrev.t Test Text::Abbrev
lib/Text/Balanced/Changes Text::Balanced
lib/Text/Balanced.pm Text::Balanced
lib/Text/Balanced/README Text::Balanced
lib/Text/Balanced/t/extbrk.t See if Text::Balanced works
lib/Text/Balanced/t/extcbk.t See if Text::Balanced works
lib/Text/Balanced/t/extdel.t See if Text::Balanced works
lib/Text/Balanced/t/extmul.t See if Text::Balanced works
lib/Text/Balanced/t/extqlk.t See if Text::Balanced works
lib/Text/Balanced/t/exttag.t See if Text::Balanced works
lib/Text/Balanced/t/extvar.t See if Text::Balanced works
lib/Text/Balanced/t/gentag.t See if Text::Balanced works
lib/Text/ParseWords.pm Perl module to split words on arbitrary delimiter
lib/Text/ParseWords.t See if Text::ParseWords works
lib/Text/Soundex.pm Perl module to implement Soundex
lib/Text/Soundex.t See if Soundex works
lib/Text/Tabs.pm Do expand and unexpand
lib/Text/TabsWrap/CHANGELOG ChangeLog for Tabs+Wrap
lib/Text/TabsWrap/t/fill.t See if Text::Wrap::fill works
lib/Text/TabsWrap/t/tabs.t See if Text::Tabs works
lib/Text/TabsWrap/t/wrap.t See if Text::Wrap::wrap works
lib/Text/Wrap.pm Paragraph formatter
lib/Thread.pm Thread extensions frontend
lib/Thread/Queue.pm Threadsafe queue
lib/Thread/Queue.t See if threadsafe queue works
lib/Thread/Semaphore.pm Threadsafe semaphore
lib/Thread/Semaphore.t See if threadsafe semaphore works
lib/Tie/Array.pm Base class for tied arrays
lib/Tie/Array/push.t Test for Tie::Array
lib/Tie/Array/splice.t Test for Tie::Array::SPLICE
lib/Tie/Array/stdpush.t Test for Tie::StdArray
lib/Tie/Array/std.t Test for Tie::StdArray
lib/Tie/File.pm Files as tied arrays
lib/Tie/File/t/00_version.t Trivial test for Tie::File
lib/Tie/File/t/01_gen.t Generic read/write tests for Tie::File
lib/Tie/File/t/02_fetchsize.t File length fetch test for Tie::File
lib/Tie/File/t/03_longfetch.t Past-the-end-of-the-array tests for Tie::File
lib/Tie/File/t/04_splice.t SPLICE method tests for Tie::File
lib/Tie/File/t/05_size.t $#a tests for Tie::File
lib/Tie/File/t/06_fixrec.t '_fixrec' method functional tests for Tie::File
lib/Tie/File/t/07_rv_splice.t SPLICE method return value tests for Tie::File
lib/Tie/File/t/08_ro.t read-only mode tests for Tie::File
lib/Tie/File/t/09_gen_rs.t Like 01_gen.t, with unusual record separator
lib/Tie/File/t/10_splice_rs.t Like 04_splice.t, with unusual record separator
lib/Tie/File/t/11_rv_splice_rs.t Like 07_rv_splice.t, with unusual record separator
lib/Tie/File/t/12_longfetch_rs.t Like 03_longfetch.t, with unusual record separator
lib/Tie/File/t/13_size_rs.t Like 05_size.t, with unusual record separator
lib/Tie/File/t/14_lock.t File locking method tests for Tie::File
lib/Tie/File/t/15_pushpop.t PUSH / POP / SHIFT / UNSHIFT for Tie::File
lib/Tie/File/t/16_handle.t Tying a handle instead of a file for Tie::File
lib/Tie/File/t/17_misc_meth.t CLEAR / EXISTS / DELETE / EXTEND for Tie::File
lib/Tie/File/t/18_rs_fixrec.t Like 06_fixrec.t, with unusual record separator
lib/Tie/File/t/19_cache.t Read cache exercises and regression for Tie::File
lib/Tie/File/t/20_cache_full.t LRU expiry exercises and regression for Tie::File
lib/Tie/File/t/21_win32.t Win32 special behavior of Tie::File
lib/Tie/File/t/22_autochomp.t 'autochomp' option of Tie::File
lib/Tie/File/t/23_rv_ac_splice.t Like 07_rv_splice.t, but with autochomp
lib/Tie/File/t/24_cache_loop.t Regression for old Tie::File cache bug
lib/Tie/File/t/25_gen_nocache.t Like 01_gen.t, but with caching disabled
lib/Tie/File/t/26_twrite.t Unit tests for Tie::File::_twrite
lib/Tie/File/t/27_iwrite.t Unit tests for Tie::File::_iwrite
lib/Tie/File/t/28_mtwrite.t Unit tests for Tie::File::_mtwrite
lib/Tie/File/t/29a_upcopy.t Unit tests for Tie::File::_upcopy
lib/Tie/File/t/29_downcopy.t Unit tests for Tie::File::_downcopy
lib/Tie/File/t/30_defer.t deferred writing feature tests for Tie::File
lib/Tie/File/t/31_autodefer.t 'autodefer' feature tests for Tie::File
lib/Tie/File/t/32_defer_misc.t Like 17_misc_meth.t, but with deferred writing
lib/Tie/File/t/33_defer_vs.t Like 30_defer.t, but with varying-length records
lib/Tie/File/t/40_abs_cache.t Unit tests for Tie::File::Cache
lib/Tie/File/t/41_heap.t Unit tests for Tie::File::Heap
lib/Tie/File/t/42_offset.t Unit tests for the offset method
lib/Tie/Handle.pm Base class for tied handles
lib/Tie/Handle/stdhandle.t Test for Tie::StdHandle
lib/Tie/Hash.pm Base class for tied hashes
lib/Tie/Memoize.pm Base class for memoized tied hashes
lib/Tie/Memoize.t Test for Memoize.t
lib/Tie/RefHash.pm Base class for tied hashes with references as keys
lib/Tie/RefHash.t Test for Tie::RefHash and Tie::RefHash::Nestable
lib/Tie/Scalar.pm Base class for tied scalars
lib/Tie/Scalar.t See if Tie::Scalar works
lib/Tie/SubstrHash.pm Compact hash for known key, value and table size
lib/Tie/SubstrHash.t Test for Tie::SubstrHash
lib/Time/gmtime.pm By-name interface to Perl's builtin gmtime
lib/Time/gmtime.t Test for Time::gmtime
lib/timelocal.pl Perl library supporting inverse of localtime, gmtime
lib/Time/Local.pm Reverse translation of localtime, gmtime
lib/Time/Local.t See if Time::Local works
lib/Time/localtime.pm By-name interface to Perl's builtin localtime
lib/Time/localtime.t Test for Time::localtime
lib/Time/tm.pm Internal object for Time::{gm,local}time
lib/Unicode/Collate/Changes Unicode::Collate
lib/Unicode/Collate/keys.txt Unicode::Collate
lib/Unicode/Collate.pm Unicode::Collate
lib/Unicode/Collate/README Unicode::Collate
lib/Unicode/Collate/t/contract.t Unicode::Collate
lib/Unicode/Collate/t/hangtype.t Unicode::Collate
lib/Unicode/Collate/t/hangul.t Unicode::Collate
lib/Unicode/Collate/t/index.t Unicode::Collate
lib/Unicode/Collate/t/normal.t Unicode::Collate
lib/Unicode/Collate/t/test.t Unicode::Collate
lib/Unicode/Collate/t/trailwt.t Unicode::Collate
lib/Unicode/Collate/t/variable.t Unicode::Collate
lib/Unicode/Collate/t/version.t Unicode::Collate
lib/Unicode/README Explanation what happened to lib/unicode.
lib/Unicode/UCD.pm Unicode character database
lib/Unicode/UCD.t See if Unicode character database works
lib/unicore/ArabicShaping.txt Unicode character database
lib/unicore/ArabLink.pl Unicode character database
lib/unicore/ArabLnkGrp.pl Unicode character database
lib/unicore/BidiMirroring.txt Unicode character database
lib/unicore/Bidirectional.pl Unicode character database
lib/unicore/Blocks.pl Unicode character database
lib/unicore/Blocks.txt Unicode character database
lib/unicore/Canonical.pl Unicode character database
lib/unicore/CaseFolding.txt Unicode character database
lib/unicore/Category.pl Unicode character database
lib/unicore/CombiningClass.pl Unicode character database
lib/unicore/CompositionExclusions.txt Unicode character database
lib/unicore/Decomposition.pl Unicode character database
lib/unicore/EastAsianWidth.txt Unicode character database
lib/unicore/Exact.pl Unicode character database
lib/unicore/HangulSyllableType.txt Unicode character database
lib/unicore/Index.txt Unicode character database
lib/unicore/JamoShort.pl Unicode character database
lib/unicore/Jamo.txt Unicode character database
lib/unicore/Lbrk.pl Unicode character database
lib/unicore/lib/Alnum.pl Unicode character database
lib/unicore/lib/Alphabet.pl Unicode character database
lib/unicore/lib/Alpha.pl Unicode character database
lib/unicore/lib/Any.pl Unicode character database
lib/unicore/lib/Arabic.pl Unicode character database
lib/unicore/lib/Armenian.pl Unicode character database
lib/unicore/lib/AsciiHex.pl Unicode character database
lib/unicore/lib/ASCII.pl Unicode character database
lib/unicore/lib/Assigned.pl Unicode character database
lib/unicore/lib/Bengali.pl Unicode character database
lib/unicore/lib/BidiAL.pl Unicode character database
lib/unicore/lib/BidiAN.pl Unicode character database
lib/unicore/lib/BidiBN.pl Unicode character database
lib/unicore/lib/BidiB.pl Unicode character database
lib/unicore/lib/BidiCont.pl Unicode character database
lib/unicore/lib/BidiCS.pl Unicode character database
lib/unicore/lib/BidiEN.pl Unicode character database
lib/unicore/lib/BidiES.pl Unicode character database
lib/unicore/lib/BidiET.pl Unicode character database
lib/unicore/lib/BidiL.pl Unicode character database
lib/unicore/lib/BidiLRE.pl Unicode character database
lib/unicore/lib/BidiLRO.pl Unicode character database
lib/unicore/lib/BidiNSM.pl Unicode character database
lib/unicore/lib/BidiON.pl Unicode character database
lib/unicore/lib/BidiPDF.pl Unicode character database
lib/unicore/lib/BidiRLE.pl Unicode character database
lib/unicore/lib/BidiRLO.pl Unicode character database
lib/unicore/lib/BidiR.pl Unicode character database
lib/unicore/lib/BidiS.pl Unicode character database
lib/unicore/lib/BidiWS.pl Unicode character database
lib/unicore/lib/Blank.pl Unicode character database
lib/unicore/lib/Bopomofo.pl Unicode character database
lib/unicore/lib/Braille.pl Unicode character database
lib/unicore/lib/Buhid.pl Unicode character database
lib/unicore/lib/Canadian.pl Unicode character database
lib/unicore/lib/_CanonDC.pl Unicode character database
lib/unicore/lib/Canon.pl Unicode character database
lib/unicore/lib/_CaseIgn.pl Unicode character database
lib/unicore/lib/Cc.pl Unicode character database
lib/unicore/lib/Cf.pl Unicode character database
lib/unicore/lib/Cherokee.pl Unicode character database
lib/unicore/lib/Cn.pl Unicode character database
lib/unicore/lib/Cntrl.pl Unicode character database
lib/unicore/lib/_CombAbo.pl Unicode character database
lib/unicore/lib/Common.pl Unicode character database
lib/unicore/lib/Compat.pl Unicode character database
lib/unicore/lib/Co.pl Unicode character database
lib/unicore/lib/C.pl Unicode character database
lib/unicore/lib/Cs.pl Unicode character database
lib/unicore/lib/Cypriot.pl Unicode character database
lib/unicore/lib/Cyrillic.pl Unicode character database
lib/unicore/lib/Dash.pl Unicode character database
lib/unicore/lib/DCcircle.pl Unicode character database
lib/unicore/lib/DCcompat.pl Unicode character database
lib/unicore/lib/DCfinal.pl Unicode character database
lib/unicore/lib/DCfont.pl Unicode character database
lib/unicore/lib/DCfracti.pl Unicode character database
lib/unicore/lib/DCinitia.pl Unicode character database
lib/unicore/lib/DCisolat.pl Unicode character database
lib/unicore/lib/DCmedial.pl Unicode character database
lib/unicore/lib/DCnarrow.pl Unicode character database
lib/unicore/lib/DCnoBrea.pl Unicode character database
lib/unicore/lib/DCsmall.pl Unicode character database
lib/unicore/lib/DCsquare.pl Unicode character database
lib/unicore/lib/DCsub.pl Unicode character database
lib/unicore/lib/DCsuper.pl Unicode character database
lib/unicore/lib/DCvertic.pl Unicode character database
lib/unicore/lib/DCwide.pl Unicode character database
lib/unicore/lib/Deprecat.pl Unicode character database
lib/unicore/lib/Deseret.pl Unicode character database
lib/unicore/lib/Devanaga.pl Unicode character database
lib/unicore/lib/Diacriti.pl Unicode character database
lib/unicore/lib/Digit.pl Unicode character database
lib/unicore/lib/Ethiopic.pl Unicode character database
lib/unicore/lib/Extender.pl Unicode character database
lib/unicore/lib/Georgian.pl Unicode character database
lib/unicore/lib/Gothic.pl Unicode character database
lib/unicore/lib/Grapheme.pl Unicode character database
lib/unicore/lib/Graph.pl Unicode character database
lib/unicore/lib/Greek.pl Unicode character database
lib/unicore/lib/Gujarati.pl Unicode character database
lib/unicore/lib/Gurmukhi.pl Unicode character database
lib/unicore/lib/Hangul.pl Unicode character database
lib/unicore/lib/Han.pl Unicode character database
lib/unicore/lib/Hanunoo.pl Unicode character database
lib/unicore/lib/Hebrew.pl Unicode character database
lib/unicore/lib/HexDigit.pl Unicode character database
lib/unicore/lib/Hiragana.pl Unicode character database
lib/unicore/lib/Hyphen.pl Unicode character database
lib/unicore/lib/IdContin.pl Unicode character database
lib/unicore/lib/Ideograp.pl Unicode character database
lib/unicore/lib/IdsBinar.pl Unicode character database
lib/unicore/lib/IdStart.pl Unicode character database
lib/unicore/lib/IdsTrina.pl Unicode character database
lib/unicore/lib/InAegean.pl Unicode character database
lib/unicore/lib/InAlphab.pl Unicode character database
lib/unicore/lib/InArabi2.pl Unicode character database
lib/unicore/lib/InArabi3.pl Unicode character database
lib/unicore/lib/InArabic.pl Unicode character database
lib/unicore/lib/InArmeni.pl Unicode character database
lib/unicore/lib/InArrows.pl Unicode character database
lib/unicore/lib/InBasicL.pl Unicode character database
lib/unicore/lib/InBengal.pl Unicode character database
lib/unicore/lib/InBlockE.pl Unicode character database
lib/unicore/lib/InBopom2.pl Unicode character database
lib/unicore/lib/InBopomo.pl Unicode character database
lib/unicore/lib/InBoxDra.pl Unicode character database
lib/unicore/lib/InBraill.pl Unicode character database
lib/unicore/lib/InBuhid.pl Unicode character database
lib/unicore/lib/InByzant.pl Unicode character database
lib/unicore/lib/InCherok.pl Unicode character database
lib/unicore/lib/InCjkCo2.pl Unicode character database
lib/unicore/lib/InCjkCo3.pl Unicode character database
lib/unicore/lib/InCjkCo4.pl Unicode character database
lib/unicore/lib/InCjkCom.pl Unicode character database
lib/unicore/lib/InCjkRad.pl Unicode character database
lib/unicore/lib/InCjkSym.pl Unicode character database
lib/unicore/lib/InCjkUn2.pl Unicode character database
lib/unicore/lib/InCjkUn3.pl Unicode character database
lib/unicore/lib/InCjkUni.pl Unicode character database
lib/unicore/lib/InCombi2.pl Unicode character database
lib/unicore/lib/InCombi3.pl Unicode character database
lib/unicore/lib/InCombin.pl Unicode character database
lib/unicore/lib/InContro.pl Unicode character database
lib/unicore/lib/InCurren.pl Unicode character database
lib/unicore/lib/InCyprio.pl Unicode character database
lib/unicore/lib/InCyril2.pl Unicode character database
lib/unicore/lib/InCyrill.pl Unicode character database
lib/unicore/lib/InDesere.pl Unicode character database
lib/unicore/lib/InDevana.pl Unicode character database
lib/unicore/lib/InDingba.pl Unicode character database
lib/unicore/lib/InEnclo2.pl Unicode character database
lib/unicore/lib/InEnclos.pl Unicode character database
lib/unicore/lib/InEthiop.pl Unicode character database
lib/unicore/lib/InGenera.pl Unicode character database
lib/unicore/lib/InGeomet.pl Unicode character database
lib/unicore/lib/InGeorgi.pl Unicode character database
lib/unicore/lib/InGothic.pl Unicode character database
lib/unicore/lib/InGreekA.pl Unicode character database
lib/unicore/lib/InGreekE.pl Unicode character database
lib/unicore/lib/InGreek.pl Unicode character database
lib/unicore/lib/InGujara.pl Unicode character database
lib/unicore/lib/InGurmuk.pl Unicode character database
lib/unicore/lib/InHalfwi.pl Unicode character database
lib/unicore/lib/InHangu2.pl Unicode character database
lib/unicore/lib/InHangu3.pl Unicode character database
lib/unicore/lib/InHangul.pl Unicode character database
lib/unicore/lib/InHanuno.pl Unicode character database
lib/unicore/lib/InHebrew.pl Unicode character database
lib/unicore/lib/Inherite.pl Unicode character database
lib/unicore/lib/InHighPr.pl Unicode character database
lib/unicore/lib/InHighSu.pl Unicode character database
lib/unicore/lib/InHiraga.pl Unicode character database
lib/unicore/lib/InIdeogr.pl Unicode character database
lib/unicore/lib/InIpaExt.pl Unicode character database
lib/unicore/lib/InKanbun.pl Unicode character database
lib/unicore/lib/InKangxi.pl Unicode character database
lib/unicore/lib/InKannad.pl Unicode character database
lib/unicore/lib/InKatak2.pl Unicode character database
lib/unicore/lib/InKataka.pl Unicode character database
lib/unicore/lib/InKhmer.pl Unicode character database
lib/unicore/lib/InKhmerS.pl Unicode character database
lib/unicore/lib/InLao.pl Unicode character database
lib/unicore/lib/InLatin1.pl Unicode character database
lib/unicore/lib/InLatin2.pl Unicode character database
lib/unicore/lib/InLatin3.pl Unicode character database
lib/unicore/lib/InLatinE.pl Unicode character database
lib/unicore/lib/InLetter.pl Unicode character database
lib/unicore/lib/InLimbu.pl Unicode character database
lib/unicore/lib/InLinea2.pl Unicode character database
lib/unicore/lib/InLinear.pl Unicode character database
lib/unicore/lib/InLowSur.pl Unicode character database
lib/unicore/lib/InMalaya.pl Unicode character database
lib/unicore/lib/InMathe2.pl Unicode character database
lib/unicore/lib/InMathem.pl Unicode character database
lib/unicore/lib/InMisce2.pl Unicode character database
lib/unicore/lib/InMisce3.pl Unicode character database
lib/unicore/lib/InMisce4.pl Unicode character database
lib/unicore/lib/InMisce5.pl Unicode character database
lib/unicore/lib/InMiscel.pl Unicode character database
lib/unicore/lib/InMongol.pl Unicode character database
lib/unicore/lib/InMusica.pl Unicode character database
lib/unicore/lib/InMyanma.pl Unicode character database
lib/unicore/lib/InNumber.pl Unicode character database
lib/unicore/lib/InOgham.pl Unicode character database
lib/unicore/lib/InOldIta.pl Unicode character database
lib/unicore/lib/InOptica.pl Unicode character database
lib/unicore/lib/InOriya.pl Unicode character database
lib/unicore/lib/InOsmany.pl Unicode character database
lib/unicore/lib/InPhonet.pl Unicode character database
lib/unicore/lib/InPrivat.pl Unicode character database
lib/unicore/lib/InRunic.pl Unicode character database
lib/unicore/lib/InShavia.pl Unicode character database
lib/unicore/lib/InSinhal.pl Unicode character database
lib/unicore/lib/InSmallF.pl Unicode character database
lib/unicore/lib/InSpacin.pl Unicode character database
lib/unicore/lib/InSpecia.pl Unicode character database
lib/unicore/lib/InSupers.pl Unicode character database
lib/unicore/lib/InSuppl2.pl Unicode character database
lib/unicore/lib/InSuppl3.pl Unicode character database
lib/unicore/lib/InSuppl4.pl Unicode character database
lib/unicore/lib/InSuppl5.pl Unicode character database
lib/unicore/lib/InSupple.pl Unicode character database
lib/unicore/lib/InSyriac.pl Unicode character database
lib/unicore/lib/InTagalo.pl Unicode character database
lib/unicore/lib/InTagban.pl Unicode character database
lib/unicore/lib/InTags.pl Unicode character database
lib/unicore/lib/InTaiLe.pl Unicode character database
lib/unicore/lib/InTaiXua.pl Unicode character database
lib/unicore/lib/InTamil.pl Unicode character database
lib/unicore/lib/InTelugu.pl Unicode character database
lib/unicore/lib/InThaana.pl Unicode character database
lib/unicore/lib/InThai.pl Unicode character database
lib/unicore/lib/InTibeta.pl Unicode character database
lib/unicore/lib/InUgarit.pl Unicode character database
lib/unicore/lib/InUnifie.pl Unicode character database
lib/unicore/lib/InVaria2.pl Unicode character database
lib/unicore/lib/InVariat.pl Unicode character database
lib/unicore/lib/InYijing.pl Unicode character database
lib/unicore/lib/InYiRadi.pl Unicode character database
lib/unicore/lib/InYiSyll.pl Unicode character database
lib/unicore/lib/JoinCont.pl Unicode character database
lib/unicore/lib/Kannada.pl Unicode character database
lib/unicore/lib/Katakana.pl Unicode character database
lib/unicore/lib/Khmer.pl Unicode character database
lib/unicore/lib/Lao.pl Unicode character database
lib/unicore/lib/Latin.pl Unicode character database
lib/unicore/lib/Limbu.pl Unicode character database
lib/unicore/lib/LinearB.pl Unicode character database
lib/unicore/lib/Ll.pl Unicode character database
lib/unicore/lib/Lm.pl Unicode character database
lib/unicore/lib/LogicalO.pl Unicode character database
lib/unicore/lib/Lo.pl Unicode character database
lib/unicore/lib/Lowercas.pl Unicode character database
lib/unicore/lib/Lower.pl Unicode character database
lib/unicore/lib/L.pl Unicode character database
lib/unicore/lib/L_.pl Unicode character database
lib/unicore/lib/Lt.pl Unicode character database
lib/unicore/lib/Lu.pl Unicode character database
lib/unicore/lib/Malayala.pl Unicode character database
lib/unicore/lib/Math.pl Unicode character database
lib/unicore/lib/Mc.pl Unicode character database
lib/unicore/lib/Me.pl Unicode character database
lib/unicore/lib/Mirrored.pl Unicode character database
lib/unicore/lib/Mn.pl Unicode character database
lib/unicore/lib/Mongolia.pl Unicode character database
lib/unicore/lib/M.pl Unicode character database
lib/unicore/lib/Myanmar.pl Unicode character database
lib/unicore/lib/Nd.pl Unicode character database
lib/unicore/lib/Nl.pl Unicode character database
lib/unicore/lib/Nonchara.pl Unicode character database
lib/unicore/lib/No.pl Unicode character database
lib/unicore/lib/N.pl Unicode character database
lib/unicore/lib/Ogham.pl Unicode character database
lib/unicore/lib/OldItali.pl Unicode character database
lib/unicore/lib/Oriya.pl Unicode character database
lib/unicore/lib/Osmanya.pl Unicode character database
lib/unicore/lib/OtherAlp.pl Unicode character database
lib/unicore/lib/OtherDef.pl Unicode character database
lib/unicore/lib/OtherGra.pl Unicode character database
lib/unicore/lib/OtherIdS.pl Unicode character database
lib/unicore/lib/OtherLow.pl Unicode character database
lib/unicore/lib/OtherMat.pl Unicode character database
lib/unicore/lib/OtherUpp.pl Unicode character database
lib/unicore/lib/Pc.pl Unicode character database
lib/unicore/lib/Pd.pl Unicode character database
lib/unicore/lib/Pe.pl Unicode character database
lib/unicore/lib/Pf.pl Unicode character database
lib/unicore/lib/Pi.pl Unicode character database
lib/unicore/lib/Po.pl Unicode character database
lib/unicore/lib/P.pl Unicode character database
lib/unicore/lib/Print.pl Unicode character database
lib/unicore/lib/Ps.pl Unicode character database
lib/unicore/lib/Punct.pl Unicode character database
lib/unicore/lib/Quotatio.pl Unicode character database
lib/unicore/lib/Radical.pl Unicode character database
lib/unicore/lib/Runic.pl Unicode character database
lib/unicore/lib/Sc.pl Unicode character database
lib/unicore/lib/Shavian.pl Unicode character database
lib/unicore/lib/Sinhala.pl Unicode character database
lib/unicore/lib/Sk.pl Unicode character database
lib/unicore/lib/Sm.pl Unicode character database
lib/unicore/lib/SoftDott.pl Unicode character database
lib/unicore/lib/So.pl Unicode character database
lib/unicore/lib/SpacePer.pl Unicode character database
lib/unicore/lib/Space.pl Unicode character database
lib/unicore/lib/S.pl Unicode character database
lib/unicore/lib/Syriac.pl Unicode character database
lib/unicore/lib/Tagalog.pl Unicode character database
lib/unicore/lib/Tagbanwa.pl Unicode character database
lib/unicore/lib/TaiLe.pl Unicode character database
lib/unicore/lib/Tamil.pl Unicode character database
lib/unicore/lib/Telugu.pl Unicode character database
lib/unicore/lib/Terminal.pl Unicode character database
lib/unicore/lib/Thaana.pl Unicode character database
lib/unicore/lib/Thai.pl Unicode character database
lib/unicore/lib/Tibetan.pl Unicode character database
lib/unicore/lib/Title.pl Unicode character database
lib/unicore/lib/Ugaritic.pl Unicode character database
lib/unicore/lib/UnifiedI.pl Unicode character database
lib/unicore/lib/Uppercas.pl Unicode character database
lib/unicore/lib/Upper.pl Unicode character database
lib/unicore/lib/WhiteSpa.pl Unicode character database
lib/unicore/lib/Word.pl Unicode character database
lib/unicore/lib/XDigit.pl Unicode character database
lib/unicore/lib/Yi.pl Unicode character database
lib/unicore/lib/Zl.pl Unicode character database
lib/unicore/lib/Z.pl Unicode character database
lib/unicore/lib/Zp.pl Unicode character database
lib/unicore/lib/Zs.pl Unicode character database
lib/unicore/LineBreak.txt Unicode character database
lib/unicore/Makefile Unicode character database
lib/unicore/mktables Unicode character database generator
lib/unicore/Name.pl Unicode character database
lib/unicore/NamesList.txt Unicode character database
lib/unicore/NormalizationCorrections.txt Unicode character database
lib/unicore/Number.pl Unicode character database
lib/unicore/Properties Built-in \p{...} / \P{...} property list
lib/unicore/PropertyAliases.txt Unicode character database
lib/unicore/PropList.txt Unicode character database
lib/unicore/PropValueAliases.txt Unicode character database
lib/unicore/README.perl Unicode character database
lib/unicore/ReadMe.txt Unicode character database info
lib/unicore/Scripts.pl Unicode character database
lib/unicore/Scripts.txt Unicode character database
lib/unicore/SpecialCasing.txt Unicode character database
lib/unicore/StandardizedVariants.txt Unicode character database
lib/unicore/To/Digit.pl Unicode character database
lib/unicore/To/Fold.pl Unicode character database
lib/unicore/To/Lower.pl Unicode character database
lib/unicore/To/Title.pl Unicode character database
lib/unicore/To/Upper.pl Unicode character database
lib/unicore/UnicodeData.txt Unicode character database
lib/unicore/version The version of the Unicode
lib/UNIVERSAL.pm Base class for ALL classes
lib/User/grent.pm By-name interface to Perl's builtin getgr*
lib/User/grent.t See if User::grwent works
lib/User/pwent.pm By-name interface to Perl's builtin getpw*
lib/User/pwent.t See if User::pwent works
lib/utf8_heavy.pl Support routines for utf8 pragma
lib/utf8.pm Pragma to control Unicode support
lib/utf8.t See if utf8 operations work
lib/validate.pl Perl library supporting wholesale file mode validation
lib/vars.pm Declare pseudo-imported global variables
lib/vars.t See if "use vars" work
lib/vmsish.pm Control VMS-specific behavior of Perl core
lib/vmsish.t Tests for vmsish.pm
lib/warnings.pm For "use warnings"
lib/warnings/register.pm For "use warnings::register"
lib/warnings.t See if warning controls work
lib/Win32.pod Documentation for Win32 extras
locale.c locale-specific utility functions
makeaperl.SH perl script that produces a new perl binary
makedef.pl Create symbol export lists for linking
makedepend.SH Precursor to makedepend
makedir.SH Precursor to makedir
Makefile.micro microperl Makefile
Makefile.SH A script that generates Makefile
malloc.c A version of malloc you might not want
malloc_ctl.h A version of malloc you might not want
MANIFEST This list of files
META.yml CPAN Metadata
mg.c Magic code
mg.h Magic header
minimod.pl Writes lib/ExtUtils/Miniperl.pm
miniperlmain.c Basic perl w/o dynamic loading or extensions
mint/errno.h MiNT port
mint/Makefile MiNT port
mint/pwd.c MiNT port
mint/README MiNT port
mint/stdio.h MiNT port
mint/sys/time.h MiNT port
mint/time.h MiNT port
mpeix/mpeix.c MPE/iX port
mpeix/mpeixish.h MPE/iX port
mpeix/nm MPE/iX port
mpeix/relink MPE/iX port
mv-if-diff Script to mv a file if it changed
myconfig.SH Prints summary of the current configuration
NetWare/bat/Buildtype.bat NetWare port
NetWare/bat/SetCodeWar.bat NetWare port
NetWare/bat/Setnlmsdk.bat NetWare port
NetWare/bat/SetNWBld.bat NetWare port
NetWare/bat/ToggleD2.bat NetWare port
NetWare/CLIBsdio.h NetWare port
NetWare/CLIBstr.h NetWare port
NetWare/CLIBstuf.c NetWare port
NetWare/CLIBstuf.h NetWare port
NetWare/config_h.PL NetWare port
NetWare/config_H.wc NetWare port
NetWare/config_sh.PL NetWare port
NetWare/config.wc NetWare port
NetWare/deb.h NetWare port
NetWare/dl_netware.xs NetWare port
NetWare/intdef.h NetWare port
NetWare/interface.c NetWare port
NetWare/interface.cpp NetWare port
NetWare/interface.h NetWare port
NetWare/iperlhost.h NetWare port
NetWare/Main.c NetWare port
NetWare/Makefile NetWare port
NetWare/MP.imp NetWare port
NetWare/netware.h NetWare port
NetWare/nw5.c NetWare port
NetWare/nw5iop.h NetWare port
NetWare/nw5sck.c NetWare port
NetWare/nw5sck.h NetWare port
NetWare/nw5thread.c NetWare port
NetWare/nw5thread.h NetWare port
NetWare/nwhashcls.cpp NetWare port
NetWare/nwhashcls.h NetWare port
NetWare/Nwmain.c NetWare port
NetWare/nwperlhost.h NetWare port
NetWare/nwperlsys.c NetWare port
NetWare/nwperlsys.h NetWare port
NetWare/Nwpipe.c NetWare port
NetWare/nwpipe.h NetWare port
NetWare/nwplglob.c NetWare port
NetWare/nwplglob.h NetWare port
NetWare/nwstdio.h NetWare port
NetWare/NWTInfo.c NetWare port
NetWare/nwtinfo.h NetWare port
NetWare/NWUtil.c NetWare port
NetWare/nwutil.h NetWare port
NetWare/nwvmem.h NetWare port
NetWare/perllib.cpp NetWare port
NetWare/splittree.pl NetWare port
NetWare/sv_nw.c NetWare port
NetWare/testnlm/echo/echo.c NetWare port
NetWare/testnlm/type/type.c NetWare port
NetWare/t/NWModify.pl NetWare port
NetWare/t/NWScripts.pl NetWare port
NetWare/t/Readme.txt NetWare port
NetWare/win32ish.h NetWare port
nostdio.h Cause compile error on stdio calls
numeric.c Miscellaneous numeric conversion routines
op.c Opcode syntax tree code
opcode.h Automatically generated opcode header
opcode.pl Opcode header generator
op.h Opcode syntax tree header
opnames.h Automatically generated opcode header
os2/Changes Changelog for OS/2 port
os2/diff.configure Patches to Configure
os2/dlfcn.h Addon for dl_open
os2/dl_os2.c Addon for dl_open
os2/Makefile.SHs Shared library generation for OS/2
os2/os2add.sym Overriding symbols to export
os2/os2_base.t Additional tests for builtin methods
os2/os2.c Additional code for OS/2
os2/OS2/ExtAttr/Changes EA access module
os2/OS2/ExtAttr/ExtAttr.pm EA access module
os2/OS2/ExtAttr/ExtAttr.xs EA access module
os2/OS2/ExtAttr/Makefile.PL EA access module
os2/OS2/ExtAttr/MANIFEST EA access module
os2/OS2/ExtAttr/myea.h EA access module
os2/OS2/ExtAttr/t/os2_ea.t EA access module
os2/OS2/ExtAttr/typemap EA access module
os2/os2ish.h Header for OS/2
os2/OS2/PrfDB/Changes System database access module
os2/OS2/PrfDB/Makefile.PL System database access module
os2/OS2/PrfDB/MANIFEST System database access module
os2/OS2/PrfDB/PrfDB.pm System database access module
os2/OS2/PrfDB/PrfDB.xs System database access module
os2/OS2/PrfDB/t/os2_prfdb.t System database access module
os2/OS2/Process/Makefile.PL system() constants in a module
os2/OS2/Process/MANIFEST system() constants in a module
os2/OS2/Process/Process.pm system() constants in a module
os2/OS2/Process/Process.xs system() constants in a module
os2/OS2/Process/t/os2_process_kid.t Tests
os2/OS2/Process/t/os2_process.t Tests
os2/OS2/Process/t/os2_process_text.t Tests
os2/OS2/REXX/Changes DLL access module
os2/OS2/REXX/DLL/Changes DLL access module
os2/OS2/REXX/DLL/DLL.pm DLL access module
os2/OS2/REXX/DLL/DLL.xs DLL access module
os2/OS2/REXX/DLL/Makefile.PL DLL access module
os2/OS2/REXX/DLL/MANIFEST DLL access module
os2/OS2/REXX/Makefile.PL DLL access module
os2/OS2/REXX/MANIFEST DLL access module
os2/OS2/REXX/REXX.pm DLL access module
os2/OS2/REXX/REXX.xs DLL access module
os2/OS2/REXX/t/rx_cmprt.t DLL access module
os2/OS2/REXX/t/rx_dllld.t DLL access module
os2/OS2/REXX/t/rx_emxrv.t DLL access module
os2/OS2/REXX/t/rx_objcall.t DLL access module
os2/OS2/REXX/t/rx_sql.test DLL access module
os2/OS2/REXX/t/rx_tiesql.test DLL access module
os2/OS2/REXX/t/rx_tievar.t DLL access module
os2/OS2/REXX/t/rx_tieydb.t DLL access module
os2/OS2/REXX/t/rx_varset.t DLL access module
os2/OS2/REXX/t/rx_vrexx.t DLL access module
os2/os2.sym Additional symbols to export
os2/os2thread.h pthread-like typedefs
os2/OS2/typemap Common typemap for OS/2 types
os2/perl2cmd.pl Corrects installed binaries under OS/2
os2/perlrexx.c Support perl interpreter embedded in REXX
os2/perlrexx.cmd Test perl interpreter embedded in REXX
pad.c Scratchpad functions
pad.h Scratchpad headers
patchlevel.h The current patch level of perl
perlapi.c Perl API functions
perlapi.h Perl API function declarations
perl.c main()
perl.h Global declarations
perlio.c C code for PerlIO abstraction
perlio.h PerlIO abstraction
perliol.h PerlIO Layer definition
perlio.sym Symbols for PerlIO abstraction
perlsdio.h Fake stdio using perlio
perlsfio.h Prototype sfio mapping for PerlIO
perlsh A poor man's perl shell
perlvars.h Global variables
perly.c A byacc'ed perly.y
perly_c.diff Fixup perly.c to allow recursion
perly.fixer A program to remove yacc stack limitations
perly.h The header file for perly.c
perlyline.pl Perl code to fix #line directives and gcc warnings in perly.c
perly.y Yacc grammar for perl
plan9/aperl Shell to make Perl error messages Acme-friendly
plan9/arpa/inet.h Plan9 port: replacement C header file
plan9/buildinfo Plan9 port: configuration information
plan9/config_h.sample Plan9 port: 5.8.0 sample config.h
plan9/config.plan9 Plan9 port: config.h template
plan9/config_sh.sample Plan9 port: 5.8.0 sample config.sh
plan9/exclude Plan9 port: tests to skip
plan9/fndvers Plan9 port: update Perl version in config.plan9
plan9/genconfig.pl Plan9 port: generate config.sh
plan9/mkfile Plan9 port: Mk driver for build
plan9/myconfig.plan9 Plan9 port: script to print config summary
plan9/plan9.c Plan9 port: Plan9-specific C routines
plan9/plan9ish.h Plan9 port: Plan9-specific C header file
plan9/setup.rc Plan9 port: script for easy build+install
plan9/versnum Plan9 port: script to print version number
pod/buildtoc Update files based on pod.lst
pod/checkpods.PL Tool to check for common errors in pods
pod.lst List the pods and their roles
pod/Makefile.SH generate Makefile which makes pods into something else
pod/perl5004delta.pod Perl changes in version 5.004
pod/perl5005delta.pod Perl changes in version 5.005
pod/perl561delta.pod Perl changes in version 5.6.1
pod/perl56delta.pod Perl changes in version 5.6
pod/perl570delta.pod Perl changes in version 5.7.0
pod/perl571delta.pod Perl changes in version 5.7.1
pod/perl572delta.pod Perl changes in version 5.7.2
pod/perl573delta.pod Perl changes in version 5.7.3
pod/perl581delta.pod Perl changes in version 5.8.1
pod/perl582delta.pod Perl changes in version 5.8.2
pod/perl58delta.pod Perl changes in version 5.8.0
pod/perlapio.pod Perl internal IO abstraction interface
pod/perlapi.pod Perl API listing (autogenerated)
pod/perlartistic.pod Perl Artistic License
pod/perlbook.pod Perl book information
pod/perlboot.pod Perl OO tutorial for beginners
pod/perlbot.pod Perl OO tricks and examples
pod/perlcall.pod Perl calling conventions from C
pod/perlcheat.pod Perl cheat sheet
pod/perlclib.pod Internal replacements for standard C library functions
pod/perlcompile.pod Perl compiler suite intro
pod/perldata.pod Perl data structures
pod/perldbmfilter.pod Perl DBM filters
pod/perldebguts.pod Perl debugging guts and tips
pod/perldebtut.pod Perl debugging tutorial
pod/perldebug.pod Perl debugging
pod/perldelta.pod Perl changes since previous version
pod/perldiag.pod Perl diagnostic messages
pod/perldoc.pod Look up Perl documentation in Pod format
pod/perldsc.pod Perl data structures intro
pod/perlebcdic.pod Considerations for running Perl on EBCDIC platforms
pod/perlembed.pod Perl ways to embed perl in your C or C++ application
pod/perlfaq1.pod General Questions About Perl
pod/perlfaq2.pod Obtaining and Learning about Perl
pod/perlfaq3.pod Programming Tools
pod/perlfaq4.pod Data Manipulation
pod/perlfaq5.pod Files and Formats
pod/perlfaq6.pod Regexes
pod/perlfaq7.pod Perl Language Issues
pod/perlfaq8.pod System Interaction
pod/perlfaq9.pod Networking
pod/perlfaq.pod Perl frequently asked questions
pod/perlfilter.pod Perl source filters
pod/perlfork.pod Perl fork() information
pod/perlform.pod Perl formats
pod/perlfunc.pod Perl built-in functions
pod/perlgpl.pod GNU General Public License
pod/perlguts.pod Perl internal functions for those doing extensions
pod/perlhack.pod Perl hackers guide
pod/perlhist.pod Perl history records
pod/perlintern.pod Perl internal functions (autogenerated)
pod/perlintro.pod Perl introduction for beginners
pod/perliol.pod C API for Perl's implementation of IO in Layers
pod/perlipc.pod Perl interprocess communication
pod/perllexwarn.pod Perl warnings and their control
pod/perllocale.pod Perl locale support
pod/perllol.pod Perl data structures: arrays of arrays
pod/perlmodinstall.pod Perl modules: how to install from CPAN
pod/perlmodlib.PL Generate pod/perlmodlib.pod
pod/perlmodlib.pod Perl modules: how to write and use
pod/perlmod.pod Perl modules: how they work
pod/perlmodstyle.pod Perl modules: how to write modules with style
pod/perlnewmod.pod Perl modules: preparing a new module for distribution
pod/perlnumber.pod Perl number semantics
pod/perlobj.pod Perl objects
pod/perlopentut.pod Perl open() tutorial
pod/perlop.pod Perl operators and precedence
pod/perlothrtut.pod Old Perl threads tutorial
pod/perlpacktut.pod Perl pack() and unpack() tutorial
pod/perl.pod Perl overview (this section)
pod/perlpod.pod Perl plain old documentation
pod/perlpodspec.pod Perl plain old documentation format specification
pod/perlport.pod Perl portability guide
pod/perlref.pod Perl references, the rest of the story
pod/perlreftut.pod Perl references short introduction
pod/perlre.pod Perl regular expressions, the rest of the story
pod/perlrequick.pod Perl regular expressions quick start
pod/perlreref.pod Perl regular expressions quick reference
pod/perlretut.pod Perl regular expressions tutorial
pod/perlrun.pod Perl execution and options
pod/perlsec.pod Perl security
pod/perlstyle.pod Perl style guide
pod/perlsub.pod Perl subroutines
pod/perlsyn.pod Perl syntax
pod/perlthrtut.pod Perl threads tutorial
pod/perltie.pod Perl objects hidden behind simple variables
pod/perltoc.pod Perl documentation table of contents
pod/perltodo.pod Perl things to do
pod/perltooc.pod Perl OO tutorial, part 2
pod/perltoot.pod Perl OO tutorial, part 1
pod/perltrap.pod Perl traps for the unwary
pod/perlunicode.pod Perl Unicode support
pod/perluniintro.pod Perl Unicode introduction
pod/perlutil.pod utilities packaged with the Perl distribution
pod/perlvar.pod Perl predefined variables
pod/perlxs.pod Perl XS application programming interface
pod/perlxstut.pod Perl XS tutorial
pod/pod2html.PL Precursor for translator to turn pod into HTML
pod/pod2latex.PL Precursor for translator to turn pod into LaTeX
pod/pod2man.PL Precursor for translator to turn pod into manpage
pod/pod2text.PL Precursor for translator to turn pod into text
pod/pod2usage.PL Pod-Parser - print usage messages from POD docs
pod/podchecker.PL Pod-Parser - Pod::Checker::podchecker() CLI
pod/podselect.PL Pod-Parser - Pod::Select::podselect() CLI
pod/roffitall troff the whole man page set
pod/rofftoc Generate a table of contents in troff format
pod/splitman Splits perlfunc into multiple man pages
pod/splitpod Splits perlfunc into multiple pod pages
Policy_sh.SH Hold site-wide preferences between Configure runs.
Porting/apply Apply patches sent by mail
Porting/check83.pl Check whether we are 8.3-friendly
Porting/checkURL.pl Check whether we have working URLs
Porting/checkVERSION.pl Check whether we have $VERSIONs
Porting/cmpVERSION.pl Compare whether two trees have changed modules
Porting/config_H Sample config.h
Porting/config.sh Sample config.sh
Porting/Contract Social contract for contributed modules in Perl core
Porting/curliff.pl Curliff or liff your curliffable files.
Porting/findrfuncs Find reentrant variants of functions used in an executable
Porting/findvars Find occurrences of words
Porting/fixCORE Find and fix modules that generate warnings
Porting/fixvars Find undeclared variables with C compiler and fix em
Porting/genlog Generate formatted changelogs by querying p4d
Porting/Glossary Glossary of config.sh variables
Porting/Maintainers Program to pretty print info in Maintainers.pl
Porting/Maintainers.pl Information about maintainers
Porting/Maintainers.pm Library to pretty print info in Maintainers.pl
Porting/makemeta Create the top-level META.yml
Porting/makerel Release making utility
Porting/manicheck Check against MANIFEST
Porting/p4d2p Generate patch from p4 diff
Porting/p4genpatch Generate patch from p4 change in repository (obsoletes p4desc)
Porting/patching.pod How to report changes made to Perl
Porting/patchls Flexible patch file listing utility
Porting/pumpkin.pod Guidelines and hints for Perl maintainers
Porting/repository.pod How to use the Perl repository
Porting/sort_perldiag.pl Keep our diagnostics orderly
Porting/testall.atom Cumulative profile with Third Degree
Porting/thirdclean Cleanup Third Degree reports
Porting/valgrindpp.pl Summarize valgrind reports
pp.c Push/Pop code
pp_ctl.c Push/Pop code for control flow
pp.h Push/Pop code defs
pp_hot.c Push/Pop code for heavily used opcodes
pp_pack.c Push/Pop code for pack/unpack
pp_proto.h C++ definitions for Push/Pop code
pp_sort.c Push/Pop code for sort
pp.sym Push/Pop code symbols
pp_sys.c Push/Pop code for system interaction
proto.h Prototypes
qnx/ar QNX implementation of "ar" utility
qnx/cpp QNX implementation of preprocessor filter
README The Instructions
README.aix Perl notes for AIX
README.amiga Perl notes for AmigaOS
README.apollo Perl notes for Apollo DomainOS
README.beos Perl notes for BeOS
README.bs2000 Perl notes for POSIX-BC BS2000
README.ce Perl notes for WinCE
README.cn Perl for Simplified Chinese (in EUC-CN)
README.cygwin Perl notes for Cygwin
README.dgux Perl notes for DG/UX
README.dos Perl notes for DOS
README.epoc Perl notes for EPOC
README.freebsd Perl notes for FreeBSD
README.hpux Perl notes for HP-UX
README.hurd Perl notes for Hurd
README.irix Perl notes for Irix
README.jp Perl for Japanese (in EUC-JP)
README.ko Perl for Korean (in EUC-KR)
README.machten Perl notes for Power MachTen
README.macos Perl notes for Mac OS (Classic)
README.macosx Perl notes for Mac OS X
README.micro Notes about microperl
README.mint Perl notes for MiNT
README.mpeix Perl notes for MPE/iX
README.netware Perl notes for NetWare
README.os2 Perl notes for OS/2
README.os390 Perl notes for OS/390
README.os400 Perl notes for OS/400
README.plan9 Perl notes for Plan 9
README.qnx Perl notes for QNX
README.solaris Perl notes for Solaris
README.tru64 Perl notes for Tru64
README.tw Perl for Traditional Chinese (in Big5)
README.uts Perl notes for UTS
README.vmesa Perl notes for VM/ESA
README.vms Perl notes for VMS
README.vos Perl notes for Stratus VOS
README.win32 Perl notes for Windows
README.Y2K Notes about Year 2000 concerns
reentr.c Reentrant interfaces
reentr.h Reentrant interfaces
reentr.inc Reentrant interfaces
reentr.pl Reentrant interfaces
regcomp.c Regular expression compiler
regcomp.h Private declarations for above
regcomp.pl Builder of regnodes.h
regcomp.sym Data for regnodes.h
regen_lib.pl Common file routines for generator scripts
regen.pl Run all scripts that (re)generate files
regexec.c Regular expression evaluator
regexp.h Public declarations for the above
regnodes.h Description of nodes of RE engine
run.c The interpreter loop
scope.c Scope entry and exit code
scope.h Scope entry and exit header
sv.c Scalar value code
sv.h Scalar value header
taint.c Tainting code
t/base/cond.t See if conditionals work
t/base/if.t See if if works
t/base/lex.t See if lexical items work
t/base/num.t See if numbers work
t/base/pat.t See if pattern matching works
t/base/rs.t See if record-read works
t/base/term.t See if various terms work
t/cmd/elsif.t See if else-if works
t/cmd/for.t See if for loops work
t/cmd/mod.t See if statement modifiers work
t/cmd/subval.t See if subroutine values work
t/cmd/switch.t See if switch optimizations work
t/cmd/while.t See if while loops work
t/comp/bproto.t See if builtins conform to their prototypes
t/comp/cmdopt.t See if command optimization works
t/comp/colon.t See if colons are parsed correctly
t/comp/cpp.aux main file for cpp.t
t/comp/cpp.t See if C preprocessor works
t/comp/decl.t See if declarations work
t/comp/hints.t See if %^H works
t/comp/multiline.t See if multiline strings work
t/comp/our.t Tests for our declaration
t/comp/package.t See if packages work
t/comp/parser.t See if the parser works in edge cases
t/comp/proto.t See if function prototypes work
t/comp/redef.t See if we get correct warnings on redefined subs
t/comp/require.t See if require works
t/comp/script.t See if script invocation works
t/comp/term.t See if more terms work
t/comp/use.t See if pragmata work
t/harness Finer diagnostics from test suite
thrdvar.h Per-thread variables
thread.h Threading header
t/io/argv.t See if ARGV stuff works
t/io/binmode.t See if binmode() works
t/io/crlf.t See if :crlf works
t/io/dup.t See if >& works right
t/io/fflush.t See if auto-flush on fork/exec/system/qx works
t/io/fs.t See if directory manipulations work
t/io/inplace.t See if inplace editing works
t/io/iprefix.t See if inplace editing works with prefixes
t/io/layers.t See if PerlIO layers work
t/io/nargv.t See if nested ARGV stuff works
t/io/openpid.t See if open works for subprocesses
t/io/open.t See if open works
t/io/pipe.t See if secure pipes work
t/io/print.t See if print commands work
t/io/read.t See if read works
t/io/tell.t See if file seeking works
t/io/utf8.t See if file seeking works
t/japh/abigail.t Obscure tests
t/lib/1_compile.t See if the various libraries and extensions compile
t/lib/commonsense.t See if configuration meets basic needs
t/lib/compmod.pl Helper for 1_compile.t
t/lib/Devel/switchd.pm Module for t/run/switchd.t
t/lib/dprof/test1_t Perl code profiler tests
t/lib/dprof/test1_v Perl code profiler tests
t/lib/dprof/test2_t Perl code profiler tests
t/lib/dprof/test2_v Perl code profiler tests
t/lib/dprof/test3_t Perl code profiler tests
t/lib/dprof/test3_v Perl code profiler tests
t/lib/dprof/test4_t Perl code profiler tests
t/lib/dprof/test4_v Perl code profiler tests
t/lib/dprof/test5_t Perl code profiler tests
t/lib/dprof/test5_v Perl code profiler tests
t/lib/dprof/test6_t Perl code profiler tests
t/lib/dprof/test6_v Perl code profiler tests
t/lib/dprof/test7_t Perl code profiler tests
t/lib/dprof/test7_v Perl code profiler tests
t/lib/dprof/test8_t Perl code profiler tests
t/lib/dprof/test8_v Perl code profiler tests
t/lib/dprof/V.pm Perl code profiler tests
t/lib/Filter/Simple/ExportTest.pm Helper file for Filter::Simple tests
t/lib/Filter/Simple/FilterOnlyTest.pm Helper file for Filter::Simple tests
t/lib/Filter/Simple/FilterTest.pm Helper file for Filter::Simple tests
t/lib/Filter/Simple/ImportTest.pm Helper file for Filter::Simple tests
t/lib/filter-util.pl See if Filter::Util::Call works
t/lib/h2ph.h Test header file for h2ph
t/lib/h2ph.pht Generated output from h2ph.h by h2ph, for comparison
t/lib/locale/latin1 Part of locale.t in Latin 1
t/lib/locale/utf8 Part of locale.t in UTF8
t/lib/MakeMaker/Test/Setup/Recurs.pm MakeMaker test utilities
t/lib/MakeMaker/Test/Utils.pm MakeMaker test utilities
t/lib/Math/BigFloat/Subclass.pm Empty subclass of BigFloat for test
t/lib/Math/BigInt/BareCalc.pm Bigint's simulation of Calc
t/lib/Math/BigInt/Subclass.pm Empty subclass of BigInt for test
t/lib/Math/BigRat/Test.pm Math::BigRat test helper
t/lib/sample-tests/bailout Test data for Test::Harness
t/lib/sample-tests/bignum Test data for Test::Harness
t/lib/sample-tests/combined Test data for Test::Harness
t/lib/sample-tests/descriptive Test data for Test::Harness
t/lib/sample-tests/die Test data for Test::Harness
t/lib/sample-tests/die_head_end Test data for Test::Harness
t/lib/sample-tests/die_last_minute Test data for Test::Harness
t/lib/sample-tests/duplicates Test data for Test::Harness
t/lib/sample-tests/head_end Test data for Test::Harness
t/lib/sample-tests/head_fail Test data for Test::Harness
t/lib/sample-tests/lone_not_bug Test data for Test::Harness
t/lib/sample-tests/no_nums Test data for Test::Harness
t/lib/sample-tests/no_output Test data for Test::Harness
t/lib/sample-tests/out_of_order Test data for Test::Harness
t/lib/sample-tests/segfault Test data for Test::Harness
t/lib/sample-tests/shbang_misparse Test data for Test::Harness
t/lib/sample-tests/simple Test data for Test::Harness
t/lib/sample-tests/simple_fail Test data for Test::Harness
t/lib/sample-tests/skip Test data for Test::Harness
t/lib/sample-tests/skipall Test data for Test::Harness
t/lib/sample-tests/skipall_nomsg Test data for Test::Harness
t/lib/sample-tests/skip_nomsg Test data for Test::Harness
t/lib/sample-tests/switches Test data for Test::Harness
t/lib/sample-tests/taint Test data for Test::Harness
t/lib/sample-tests/todo Test data for Test::Harness
t/lib/sample-tests/todo_inline Test data for Test::Harness
t/lib/sample-tests/too_many Test data for Test::Harness
t/lib/sample-tests/vms_nit Test data for Test::Harness
t/lib/sample-tests/with_comments Test data for Test::Harness
t/lib/strict/refs Tests of "use strict 'refs'" for strict.t
t/lib/strict/subs Tests of "use strict 'subs'" for strict.t
t/lib/strict/vars Tests of "use strict 'vars'" for strict.t
t/lib/Test/Simple/Catch.pm Utility module for testing Test::Simple
t/lib/Test/Simple/sample_tests/death_in_eval.plx for exit.t
t/lib/Test/Simple/sample_tests/death.plx for exit.t
t/lib/Test/Simple/sample_tests/extras.plx for exit.t
t/lib/Test/Simple/sample_tests/five_fail.plx for exit.t
t/lib/Test/Simple/sample_tests/last_minute_death.plx for exit.t
t/lib/Test/Simple/sample_tests/one_fail.plx for exit.t
t/lib/Test/Simple/sample_tests/pre_plan_death.plx for exit.t
t/lib/Test/Simple/sample_tests/require.plx for exit.t
t/lib/Test/Simple/sample_tests/success.plx for exit.t
t/lib/Test/Simple/sample_tests/too_few.plx for exit.t
t/lib/Test/Simple/sample_tests/two_fail.plx for exit.t
t/lib/TieIn.pm Testing library for dummy input handles
t/lib/TieOut.pm Testing library to capture prints
t/lib/warnings/1global Tests of global warnings for warnings.t
t/lib/warnings/2use Tests for "use warnings" for warnings.t
t/lib/warnings/3both Tests for interaction of $^W and "use warnings"
t/lib/warnings/4lint Tests for -W switch
t/lib/warnings/5nolint Tests for -X switch
t/lib/warnings/6default Tests default warnings
t/lib/warnings/7fatal Tests fatal warnings
t/lib/warnings/8signal Tests warnings + __WARN__ and __DIE__
t/lib/warnings/9enabled Tests warnings
t/lib/warnings/av Tests for av.c for warnings.t
t/lib/warnings/doio Tests for doio.c for warnings.t
t/lib/warnings/doop Tests for doop.c for warnings.t
t/lib/warnings/gv Tests for gv.c for warnings.t
t/lib/warnings/hv Tests for hv.c for warnings.t
t/lib/warnings/malloc Tests for malloc.c for warnings.t
t/lib/warnings/mg Tests for mg.c for warnings.t
t/lib/warnings/op Tests for op.c for warnings.t
t/lib/warnings/pad Tests for pad.c for warnings.t
t/lib/warnings/perl Tests for perl.c for warnings.t
t/lib/warnings/perlio Tests for perlio.c for warnings.t
t/lib/warnings/perly Tests for perly.y for warnings.t
t/lib/warnings/pp Tests for pp.c for warnings.t
t/lib/warnings/pp_ctl Tests for pp_ctl.c for warnings.t
t/lib/warnings/pp_hot Tests for pp_hot.c for warnings.t
t/lib/warnings/pp_pack Tests for pp_pack.c for warnings.t
t/lib/warnings/pp_sys Tests for pp_sys.c for warnings.t
t/lib/warnings/regcomp Tests for regcomp.c for warnings.t
t/lib/warnings/regexec Tests for regexec.c for warnings.t
t/lib/warnings/run Tests for run.c for warnings.t
t/lib/warnings/sv Tests for sv.c for warnings.t
t/lib/warnings/taint Tests for taint.c for warnings.t
t/lib/warnings/toke Tests for toke.c for warnings.t
t/lib/warnings/universal Tests for universal.c for warnings.t
t/lib/warnings/utf8 Tests for utf8.c for warnings.t
t/lib/warnings/util Tests for util.c for warnings.t
Todo.micro The Wishlist for microperl
toke.c The tokener
t/op/64bitint.t See if 64 bit integers work
t/op/alarm.t See if alarm works
t/op/anonsub.t See if anonymous subroutines work
t/op/append.t See if . works
t/op/args.t See if operations on @_ work
t/op/arith.t See if arithmetic works
t/op/array.t See if array operations work
t/op/assignwarn.t See if OP= operators warn correctly for undef targets
t/op/attrs.t See if attributes on declarations work
t/op/auto.t See if autoincrement et all work
t/op/avhv.t See if pseudo-hashes work
t/op/bless.t See if bless works
t/op/bop.t See if bitops work
t/op/caller.t See if caller() works
t/op/chars.t See if character escapes work
t/op/chdir.t See if chdir works
t/op/chop.t See if chop works
t/op/closure.t See if closures work
t/op/cmp.t See if the various string and numeric compare work
t/op/concat.t See if string concatenation works
t/op/cond.t See if conditional expressions work
t/op/context.t See if context propagation works
t/op/cproto.t Check builtin prototypes
t/op/crypt.t See if crypt works
t/op/defins.t See if auto-insert of defined() works
t/op/delete.t See if delete works
t/op/die_exit.t See if die and exit status interaction works
t/op/die.t See if die works
t/op/do.t See if subroutines work
t/op/each.t See if hash iterators work
t/op/eval.t See if eval operator works
t/op/exec.t See if exec and system work
t/op/exists_sub.t See if exists(&sub) works
t/op/exp.t See if math functions work
t/op/fh.t See if filehandles work
t/op/filetest.t See if file tests work
t/op/flip.t See if range operator works
t/op/fork.t See if fork works
t/op/getpid.t See if $$ and getppid work with threads
t/op/glob.t See if <*> works
t/op/gmagic.t See if GMAGIC works
t/op/goto.t See if goto works
t/op/goto_xs.t See if "goto &sub" works on XSUBs
t/op/grent.t See if getgr*() functions work
t/op/grep.t See if grep() and map() work
t/op/groups.t See if $( works
t/op/gv.t See if typeglobs work
t/op/hash.t See if the complexity attackers are repelled
t/op/hashassign.t See if hash assignments work
t/op/hashwarn.t See if warnings for bad hash assignments work
t/op/inccode.t See if coderefs work in @INC
t/op/inc.t See if inc/dec of integers near 32 bit limit work
t/op/index.t See if index works
t/op/int.t See if int works
t/op/join.t See if join works
t/op/lc.t See if lc, uc, lcfirst, ucfirst, quotemeta work
t/op/lc_user.t See if user-defined lc et alia work
t/op/length.t See if length works
t/op/lex_assign.t See if ops involving lexicals or pad temps work
t/op/lfs.t See if large files work for perlio
t/op/list.t See if array lists work
t/op/localref.t See if local ${deref} works
t/op/local.t See if local works
t/op/loopctl.t See if next/last/redo work
t/op/lop.t See if logical operators work
t/op/magic.t See if magic variables work
t/op/method.t See if method calls work
t/op/mkdir.t See if mkdir works
t/op/my_stash.t See if my Package works
t/op/my.t See if lexical scoping works
t/op/nothr5005.t local @_ test which does not work under use5005threads
t/op/numconvert.t See if accessing fields does not change numeric values
t/op/oct.t See if oct and hex work
t/op/ord.t See if ord works
t/op/or.t See if || works in weird situations
t/op/override.t See if operator overriding works
t/op/pack.t See if pack and unpack work
t/op/pat.t See if esoteric patterns work
t/op/pos.t See if pos works
t/op/pow.t See if ** works
t/op/push.t See if push and pop work
t/op/pwent.t See if getpw*() functions work
t/op/qq.t See if qq works
t/op/quotemeta.t See if quotemeta works
t/op/rand.t See if rand works
t/op/range.t See if .. works
t/op/readdir.t See if readdir() works
t/op/readline.t See if <> / readline / rcatline work
t/op/read.t See if read() works
t/op/recurse.t See if deep recursion works
t/op/ref.t See if refs and objects work
t/op/regexp_noamp.t See if regular expressions work with optimizations
t/op/regexp.t See if regular expressions work
t/op/regmesg.t See if one can get regular expression errors
t/op/repeat.t See if x operator works
t/op/re_tests Regular expressions for regexp.t
t/op/reverse.t See if reverse operator works
t/op/runlevel.t See if die() works from perl_call_*()
t/op/sleep.t See if sleep works
t/op/sort.t See if sort works
t/op/splice.t See if splice works
t/op/split.t See if split works
t/op/sprintf.t See if sprintf works
t/op/srand.t See if srand works
t/op/stash.t See if %:: stashes work
t/op/stat.t See if stat works
t/op/study.t See if study works
t/op/sub.t See if subroutines work
t/op/sub_lval.t See if lvalue subroutines work
t/op/subst_amp.t See if $&-related substitution works
t/op/substr.t See if substr works
t/op/subst.t See if substitution works
t/op/subst_wamp.t See if substitution works with $& present
t/op/sysio.t See if sysread and syswrite work
t/op/taint.t See if tainting works
t/op/tiearray.t See if tie for arrays works
t/op/tiehandle.t See if tie for handles works
t/op/tie.t See if tie/untie functions work
t/op/time.t See if time functions work
t/op/tr.t See if tr works
t/op/undef.t See if undef works
t/op/universal.t See if UNIVERSAL class works
t/op/unshift.t See if unshift works
t/op/utf8decode.t See if UTF-8 decoding works
t/op/utfhash.t See if utf8 keys in hashes behave
t/op/vec.t See if vectors work
t/op/ver.t See if v-strings and the %v format flag work
t/op/wantarray.t See if wantarray works
t/op/write.t See if write works (formats work)
t/perl.supp Perl valgrind suppressions
t/pod/emptycmd.t Test empty pod directives
t/pod/emptycmd.xr Expected results for emptycmd.t
t/pod/find.t See if Pod::Find works
t/pod/for.t Test =for directive
t/pod/for.xr Expected results for for.t
t/pod/headings.t Test =head directives
t/pod/headings.xr Expected results for headings.t
t/pod/included.t Test =include directive
t/pod/included.xr Expected results for included.t
t/pod/include.t Test =include directive
t/pod/include.xr Expected results for include.t
t/pod/lref.t Test L<...> sequences
t/pod/lref.xr Expected results for lref.t
t/pod/multiline_items.t Test multiline =items
t/pod/multiline_items.xr Expected results for multiline_items.t
t/pod/nested_items.t Test nested =items
t/pod/nested_items.xr Expected results for nested_items.t
t/pod/nested_seqs.t Test nested interior sequences
t/pod/nested_seqs.xr Expected results for nested_seqs.t
t/pod/oneline_cmds.t Test single paragraph ==cmds
t/pod/oneline_cmds.xr Expected results for oneline_cmds.t
t/pod/plainer.t Test Pod::Plainer
t/pod/pod2usage.t Test Pod::Usage
t/pod/pod2usage.xr Expected results for pod2usage.t
t/pod/poderrs.t Test POD errors
t/pod/poderrs.xr Expected results for poderrs.t
t/pod/podselect.t Test Pod::Select
t/pod/podselect.xr Expected results for podselect.t
t/pod/special_seqs.t Test "special" interior sequences
t/pod/special_seqs.xr Expected results for special_seqs.t
t/pod/testcmp.pl Module to compare output against expected results
t/pod/testp2pt.pl Module to test Pod::PlainText for a given file
t/pod/testpchk.pl Module to test Pod::Checker for a given file
t/pod/testpods/lib/Pod/Stuff.pm Sample data for find.t
t/README Instructions for regression tests
t/run/exit.t Test perl's exit status.
t/run/fresh_perl.t Tests that require a fresh perl.
t/run/noswitch.t Test aliasing ARGV for other switch tests
t/run/runenv.t Test if perl honors its environment variables.
t/run/switcha.t Test the -a switch
t/run/switchC.t Test the -C switch
t/run/switchd.t Test the -d switch
t/run/switches.t Tests for the other switches (-0, -l, -c, -s, -M, -m, -V, -v, -h, -z, -i)
t/run/switchF.t Test the -F switch
t/run/switchI.t Test the -I switch
t/run/switchn.t Test the -n switch
t/run/switchp.t Test the -p switch
t/run/switchPx.aux Data for switchPx.t
t/run/switchPx.t Test the -Px combination
t/run/switcht.t Test the -t switch
t/run/switchx.aux Data for switchx.t
t/run/switchx.t Test the -x switch
t/TEST The regression tester
t/TestInit.pm Preamble library for core tests
t/test.pl Simple testing library
t/uni/case.pl See if Unicode casing works
t/uni/fold.t See if Unicode folding works
t/uni/lower.t See if Unicode casing works
t/uni/sprintf.t See if Unicode sprintf works
t/uni/title.t See if Unicode casing works
t/uni/tr_7jis.t See if Unicode tr/// works
t/uni/tr_eucjp.t See if Unicode tr/// works
t/uni/tr_sjis.t See if Unicode tr/// works
t/uni/tr_utf8.t See if Unicode tr/// works
t/uni/upper.t See if Unicode casing works
t/uni/write.t See if Unicode formats work
t/win32/longpath.t Test if Win32::GetLongPathName() works
t/win32/system.t See if system works in Win*
t/win32/system_tests Test runner for system.t
t/x2p/s2p.t See if s2p/psed work
uconfig.h Configuration header for microperl
uconfig.sh Configuration script for microperl
universal.c The default UNIVERSAL package methods
unixish.h Defines that are assumed on Unix
utf8.c Unicode routines
utf8.h Unicode header
utfebcdic.h Unicode on EBCDIC (UTF-EBCDIC, tr16) header
util.c Utility routines
util.h Dummy header
utils/c2ph.PL program to translate dbx stabs to perl
utils/cpan.PL easily interact with CPAN from the command line
utils/dprofpp.PL Perl code profile post-processor
utils/enc2xs.PL Encode module generator
utils/h2ph.PL A thing to turn C .h files into perl .ph files
utils/h2xs.PL Program to make .xs files from C header files
utils/instmodsh.PL Give information about installed extensions
utils/libnetcfg.PL libnet
utils.lst Lists utilities bundled with Perl
utils/Makefile Extract the utility scripts
utils/perlbug.PL A simple tool to submit a bug report
utils/perlcc.PL Front-end for compiler
utils/perldoc.PL A simple tool to find & display perl's documentation
utils/perlivp.PL installation verification procedure
utils/piconv.PL iconv(1), reinvented in perl
utils/pl2pm.PL A pl to pm translator
utils/splain.PL Stand-alone version of diagnostics.pm
utils/xsubpp.PL External subroutine preprocessor
uts/sprintf_wrap.c sprintf wrapper for UTS
uts/strtol_wrap.c strtol wrapper for UTS
vmesa/Makefile VM/ESA Makefile
vmesa/vmesa.c VM/ESA-specific C code for Perl core
vmesa/vmesaish.h VM/ESA-specific C header for Perl core
vms/descrip_mms.template Template MM[SK] description file for build
vms/ext/DCLsym/0README.txt ReadMe file for VMS::DCLsym
vms/ext/DCLsym/DCLsym.pm Perl access to CLI symbols
vms/ext/DCLsym/DCLsym.xs Perl access to CLI symbols
vms/ext/DCLsym/Makefile.PL MakeMaker driver for VMS::DCLsym
vms/ext/DCLsym/test.pl regression tests for VMS::DCLsym
vms/ext/Filespec.pm VMS-Unix file syntax interconversion
vms/ext/filespec.t See if VMS::Filespec functions work
vms/ext/Stdio/0README.txt ReadMe file for VMS::Stdio
vms/ext/Stdio/Makefile.PL MakeMaker driver for VMS::Stdio
vms/ext/Stdio/Stdio.pm VMS options to stdio routines
vms/ext/Stdio/Stdio.xs VMS options to stdio routines
vms/ext/Stdio/test.pl regression tests for VMS::Stdio
vms/ext/XSSymSet.pm manage linker symbols when building extensions
vms/genconfig.pl retcon config.sh from config.h
vms/genopt.com hack to write options files in case of broken makes
vms/gen_shrfls.pl generate options files and glue for shareable image
vms/make_command.com record MM[SK] command used to build Perl
vms/mms2make.pl convert descrip.mms to make syntax
vms/munchconfig.c performs shell $var substitution for VMS
vms/myconfig.com record local configuration info for bug report
vms/perlvms.pod VMS-specific additions to Perl documentation
vms/perly_c.vms perly.c with fixed declarations for global syms
vms/perly_h.vms perly.h with fixed declarations for global syms
vms/sockadapt.c glue for SockshShr socket support
vms/sockadapt.h glue for SockshShr socket support
vms/test.com DCL driver for regression tests
vms/vms.c VMS-specific C code for Perl core
vms/vmsish.h VMS-specific C header for Perl core
vms/vmspipe.com VMS-specific piped command helper script
vms/vms_yfix.pl convert Unix perly.[ch] to VMS perly_[ch].vms
vms/writemain.pl Generate perlmain.c from miniperlmain.c+extensions
vos/build.cm VOS command macro to build "mini" Perl
vos/Changes Changes made to port Perl to the VOS operating system
vos/compile_full_perl.cm VOS command macro to build "full" Perl
vos/compile_perl.cm VOS command macro to build "mini" Perl
vos/config.alpha.def definitions used by config.pl
vos/config.alpha.h config.h for use with alpha VOS POSIX.1 support
vos/config.ga.def definitions used by config.pl
vos/config.ga.h config.h for use with generally-available VOS POSIX.1 support
vos/config.pl script to convert a config_h.SH to a config.h
vos/configure_full_perl.sh VOS shell script to configure "full" perl before building
vos/configure_perl.cm VOS command macro to configure "mini" perl before building
vos/install_perl.cm VOS command macro to install "mini" perl after building
vos/Makefile A helper for maintaining the config.*.* in UNIX
vos/make_full_perl.sh VOS shell script to build and test "full" perl
vos/perl.bind VOS bind control file
vos/test_vos_dummies.c Test program for "vos_dummies.c"
vos/vos.c VOS emulations for missing POSIX functions
vos/vos_dummies.c Wrappers to soak up undefined functions
vos/vosish.h VOS-specific header file
warnings.h The warning numbers
warnings.pl Program to write warnings.h and lib/warnings.pm
win32/bin/exetype.pl Set executable type to CONSOLE or WINDOWS
win32/bin/perlglob.pl Win32 globbing
win32/bin/pl2bat.pl wrap perl scripts into batch files
win32/bin/runperl.pl run perl script via batch file namesake
win32/bin/search.pl Win32 port
win32/buildext.pl Build extensions once miniperl is built
win32/config.bc Win32 base line config.sh (Borland C++ build)
win32/config.gc Win32 base line config.sh (mingw32/gcc build)
win32/config_H.bc Win32 config header (Borland C++ build)
win32/config_H.gc Win32 config header (GNU build)?
win32/config_h.PL Perl code to convert Win32 config.sh to config.h
win32/config_H.vc Win32 config header (Visual C++ build)
win32/config_H.vc64 Win64 config header (Visual C++ build)
win32/config_sh.PL Perl code to update Win32 config.sh from Makefile
win32/config.vc Win32 base line config.sh (Visual C++ build)
win32/config.vc64 Win64 base line config.sh (Visual C++ build)
win32/distclean.bat Remove _ALL_ files not listed here in MANIFEST
win32/dl_win32.xs Win32 port
win32/fcrypt.c crypt() implementation
win32/FindExt.pm Scan for extensions
win32/genmk95.pl Perl code to generate command.com-usable makefile.95
win32/include/arpa/inet.h Win32 port
win32/include/dirent.h Win32 port
win32/include/netdb.h Win32 port
win32/include/sys/socket.h Win32 port
win32/Makefile Win32 makefile for NMAKE (Visual C++ build)
win32/makefile.mk Win32 makefile for DMAKE (BC++, VC++ builds)
win32/mdelete.bat multifile delete
win32/perlglob.c Win32 port
win32/perlhost.h Perl "host" implementation
win32/perllib.c Win32 port
win32/pod.mak Win32 port
win32/runperl.c Win32 port
win32/splittree.pl Win32 port
win32/sync_ext.pl Win32 port
win32/vdir.h Perl "host" virtual directory manager
win32/vmem.h Perl "host" memory manager
win32/win32.c Win32 port
win32/win32.h Win32 port
win32/win32io.c Win32 PerlIO layer support
win32/win32iop.h Win32 port
win32/win32sck.c Win32 port
win32/win32thread.c Win32 functions for threads
win32/win32thread.h Win32 port mapping to threads
wince/bin/exetype.pl WinCE port
wince/bin/perlglob.pl WinCE port
wince/bin/pl2bat.pl WinCE port
wince/bin/runperl.pl WinCE port
wince/bin/search.pl WinCE port
wince/cecopy-lib.pl WinCE port
wince/compile-all.bat WinCE port
wince/compile.bat WinCE port
wince/comp.pl WinCE port
wince/config.ce WinCE port
wince/config_H.ce WinCE port
wince/config_h.PL WinCE port
wince/config_sh.PL WinCE port
wince/dl_win32.xs WinCE port
wince/include/arpa/inet.h WinCE port
wince/include/sys/socket.h WinCE port
wince/makedist.pl WinCE port
wince/Makefile.ce WinCE port
wince/makeico.pl WinCE port
wince/perlhost.h Perl "host" implementation
wince/perllib.c WinCE port
wince/perlmain.c WinCE port
wince/perl.rc WinCE port
wince/README.perlce WinCE port
wince/registry.bat WinCE port
wince/runperl.c WinCE port
wince/splittree.pl WinCE port
wince/vdir.h Perl "host" virtual directory manager for CE
wince/vmem.h Perl "host" memory manager for CE
wince/win32.h WinCE port
wince/win32io.c WinCE port
wince/win32iop.h WinCE port
wince/win32thread.c WinCE port
wince/win32thread.h WinCE port
wince/wince.c WinCE port
wince/wince.h WinCE port
wince/wincesck.c WinCE port
writemain.SH Generate perlmain.c from miniperlmain.c+extensions
x2p/a2p.c Output of a2p.y run through byacc
x2p/a2p.h Global declarations
x2p/a2p.pod Pod for awk to perl translator
x2p/a2p.y A yacc grammar for awk
x2p/a2py.c Awk compiler, sort of
x2p/cflags.SH A script that emits C compilation flags per file
x2p/EXTERN.h Same as above
x2p/find2perl.PL A find to perl translator
x2p/hash.c Hashes again
x2p/hash.h Public declarations for the above
x2p/INTERN.h Same as above
x2p/Makefile.SH Precursor to Makefile
x2p/proto.h Dummy header
x2p/s2p.PL Sed to perl translator
x2p/str.c String handling package
x2p/str.h Public declarations for the above
x2p/util.c Utility routines
x2p/util.h Public declarations for the above
x2p/walk.c Parse tree walker
XSUB.h Include file for extension subroutines
xsutils.c Additional bundled package methods not in UNIVERSAL::
|