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
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: libunistring
Upstream-Contact: Bruno Haible <bruno@clisp.org>
Source: http://ftp.gnu.org/gnu/libunistring/
Files: *
Copyright: 1995-2024 Free Software Foundation, Inc.
License: GPL-3+
Files: lib/*
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-3+
Files: lib/declared.sh
lib/exported.sh.in
lib/Makefile.am
lib/Makefile.gnulib
lib/Makefile.in
Copyright: 2001-2024 Free Software Foundation, Inc.
License: GPL-3+
Files: lib/arg-nonnull.h
lib/c++defs.h
lib/_Noreturn.h
lib/stdint.mini.h
lib/warn-on-use.h
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-2+
Files: doc/libunistring_20.html
Copyright: 2001-2024 Free Software Foundation, Inc.
License: GFDL-1.3+
Files: doc/libunistring.texi
Copyright: 2001-2024 Free Software Foundation, Inc.
License: GFDL-1.2+ or GPL-3+ or LGPL-3
Files: lib/libunistring.rc
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-3+
Files: lib/unistring/cdefs.h
lib/unistring/inline.h
lib/unistring-notinline.h
lib/unistring/version.in.h
lib/unistring/woe32dll.in.h
lib/version.c
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-3+
Files: lib/alloca.in.h
lib/amemxfrm.c
lib/amemxfrm.h
lib/array-mergesort.h
lib/assert.in.h
lib/attribute.h
lib/c32isalnum.c
lib/c32isalpha.c
lib/c32isblank.c
lib/c32iscntrl.c
lib/c32isdigit.c
lib/c32isgraph.c
lib/c32is-impl.h
lib/c32islower.c
lib/c32isprint.c
lib/c32ispunct.c
lib/c32isspace.c
lib/c32isupper.c
lib/c32isxdigit.c
lib/c32to-impl.h
lib/c32tolower.c
lib/c32width.c
lib/c-ctype.c
lib/c-ctype.h
lib/c-strcasecmp.c
lib/c-strcaseeq.h
lib/c-strcase.h
lib/c-strncasecmp.c
lib/errno.in.h
lib/flexmember.h
lib/float.c
lib/float+.h
lib/float.in.h
lib/fpucw.h
lib/free.c
lib/frexp.c
lib/frexpl.c
lib/fseterr.c
lib/fseterr.h
lib/glthread/lock.c
lib/glthread/lock.h
lib/glthread/once.c
lib/glthread/once.h
lib/glthread/threadlib.c
lib/hard-locale.c
lib/hard-locale.h
lib/iconv.c
lib/iconv_close.c
lib/iconveh.h
lib/iconv.in.h
lib/iconv_open-aix.gperf
lib/iconv_open.c
lib/iconv_open-hpux.gperf
lib/iconv_open-irix.gperf
lib/iconv_open-osf.gperf
lib/iconv_open-solaris.gperf
lib/iconv_open-zos.gperf
lib/idx.h
lib/intprops-internal.h
lib/inttypes.in.h
lib/isnan.c
lib/isnand.c
lib/isnand-nolibm.h
lib/isnanf.c
lib/isnanf-nolibm.h
lib/isnanl.c
lib/isnanl-nolibm.h
lib/iswblank.c
lib/iswdigit.c
lib/iswpunct.c
lib/iswxdigit.c
lib/itold.c
lib/langinfo.in.h
lib/lc-charset-dispatch.c
lib/lc-charset-dispatch.h
lib/limits.in.h
lib/localcharset.c
lib/localcharset.h
lib/locale.in.h
lib/localename.c
lib/localename.h
lib/localename-table.c
lib/localename-table.h
lib/localename-unsafe.c
lib/malloca.c
lib/malloca.h
lib/malloc.c
lib/math.c
lib/math.in.h
lib/mbchar.c
lib/mbchar.h
lib/mbiterf.c
lib/mbiterf.h
lib/mbrtoc32.c
lib/mbrtowc.c
lib/mbrtowc-impl.h
lib/mbrtowc-impl-utf8.h
lib/mbsinit.c
lib/mbsnlen.c
lib/mbszero.c
lib/mbtowc-lock.c
lib/mbtowc-lock.h
lib/memchr.c
lib/memchr.valgrind
lib/memcmp2.c
lib/memcmp2.h
lib/minmax.h
lib/printf-args.c
lib/printf-args.h
lib/printf-frexp.c
lib/printf-frexp.h
lib/printf-frexpl.c
lib/printf-frexpl.h
lib/printf-parse.c
lib/printf-parse.h
lib/pthread.in.h
lib/pthread-once.c
lib/relocatable.c
lib/relocatable.h
lib/relocatable.valgrind
lib/sched.in.h
lib/setlocale-lock.c
lib/setlocale_null.c
lib/setlocale_null.h
lib/setlocale_null-unlocked.c
lib/signbitd.c
lib/signbitf.c
lib/signbitl.c
lib/size_max.h
lib/stdckdint.in.h
lib/stddef.in.h
lib/stdint.in.h
lib/stdio-impl.h
lib/stdlib.in.h
lib/streq.h
lib/striconveha.c
lib/striconveha.h
lib/striconveh.c
lib/striconveh.h
lib/string.in.h
lib/strncat.c
lib/strstr.c
lib/str-two-way.h
lib/struniq.h
lib/sys_types.in.h
lib/thread-optim.h
lib/time.in.h
lib/uchar.in.h
lib/unicase.in.h
lib/unicase/simple-mapping.h
lib/unicase/tolower.c
lib/unicase/tolower.h
lib/unicase/toupper.c
lib/unicase/toupper.h
lib/uniconv.in.h
lib/uniconv/u8-conv-from-enc.c
lib/uniconv/u8-strconv-from-enc.c
lib/uniconv/u8-strconv-from-locale.c
lib/uniconv/u-strconv-from-enc.h
lib/unictype/bidi_of.c
lib/unictype/bidi_of.h
lib/unictype/bitmap.h
lib/unictype/categ_M.c
lib/unictype/categ_M.h
lib/unictype/categ_none.c
lib/unictype/categ_of.c
lib/unictype/categ_of.h
lib/unictype/categ_test.c
lib/unictype/combiningclass.c
lib/unictype/combiningclass.h
lib/unictype/ctype_alnum.c
lib/unictype/ctype_alnum.h
lib/unictype/ctype_alpha.c
lib/unictype/ctype_alpha.h
lib/unictype/ctype_blank.c
lib/unictype/ctype_blank.h
lib/unictype/ctype_cntrl.c
lib/unictype/ctype_cntrl.h
lib/unictype/ctype_digit.c
lib/unictype/ctype_digit.h
lib/unictype/ctype_graph.c
lib/unictype/ctype_graph.h
lib/unictype/ctype_lower.c
lib/unictype/ctype_lower.h
lib/unictype/ctype_print.c
lib/unictype/ctype_print.h
lib/unictype/ctype_punct.c
lib/unictype/ctype_punct.h
lib/unictype/ctype_space.c
lib/unictype/ctype_space.h
lib/unictype/ctype_upper.c
lib/unictype/ctype_upper.h
lib/unictype/ctype_xdigit.c
lib/unictype/ctype_xdigit.h
lib/unictype.in.h
lib/unictype/joiningtype_of.c
lib/unictype/joiningtype_of.h
lib/unictype/scripts_byname.gperf
lib/unictype/scripts.c
lib/unictype/scripts.h
lib/unimetadata.in.h
lib/uninorm/canonical-decomposition.c
lib/uninorm/composition.c
lib/uninorm/composition-table-bounds.h
lib/uninorm/composition-table.gperf
lib/uninorm/decompose-internal.c
lib/uninorm/decompose-internal.h
lib/uninorm/decomposition-table1.h
lib/uninorm/decomposition-table2.h
lib/uninorm/decomposition-table.c
lib/uninorm/decomposition-table.h
lib/uninorm.in.h
lib/uninorm/nfc.c
lib/uninorm/nfd.c
lib/uninorm/normalize-internal.h
lib/uninorm/u-normalize-internal.h
lib/unistd.c
lib/unistd.in.h
lib/unistr.in.h
lib/unistr/u16-mbtoucr.c
lib/unistr/u16-strlen.c
lib/unistr/u16-to-u32.c
lib/unistr/u32-chr.c
lib/unistr/u32-cpy.c
lib/unistr/u32-mbtouc-unsafe.c
lib/unistr/u32-pcpy.c
lib/unistr/u32-strcat.c
lib/unistr/u32-strlen.c
lib/unistr/u32-to-u8.c
lib/unistr/u32-uctomb.c
lib/unistr/u8-check.c
lib/unistr/u8-mblen.c
lib/unistr/u8-mbtouc-aux.c
lib/unistr/u8-mbtouc.c
lib/unistr/u8-mbtoucr.c
lib/unistr/u8-mbtouc-unsafe-aux.c
lib/unistr/u8-mbtouc-unsafe.c
lib/unistr/u8-prev.c
lib/unistr/u8-strlen.c
lib/unistr/u8-to-u32.c
lib/unistr/u8-uctomb-aux.c
lib/unistr/u8-uctomb.c
lib/unistr/u-cpy.h
lib/unistr/u-pcpy.h
lib/unistr/u-strcat.h
lib/unistr/u-strlen.h
lib/unitypes.in.h
lib/uniwidth/cjk.h
lib/uniwidth.in.h
lib/uniwidth/width0.h
lib/uniwidth/width2.h
lib/uniwidth/width.c
lib/vasnprintf.c
lib/verify.h
lib/wchar.in.h
lib/wcsstr-impl.h
lib/wcs-two-way.h
lib/wctype-h.c
lib/wctype.in.h
lib/wcwidth.c
lib/windows-initguard.h
lib/windows-mutex.c
lib/windows-mutex.h
lib/windows-once.c
lib/windows-once.h
lib/windows-recmutex.c
lib/windows-recmutex.h
lib/windows-rwlock.c
lib/windows-rwlock.h
lib/xalloc-oversized.h
lib/xsize.c
lib/xsize.h
lib/uninorm/u32-normalize.c
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-2.1+
Files: lib/unicase/cased.c
lib/unicase/cased.h
lib/unicase/casefold.h
lib/unicase/caseprop.h
lib/unicase/context.h
lib/unicase/empty-prefix-context.c
lib/unicase/empty-suffix-context.c
lib/unicase/ignorable.c
lib/unicase/ignorable.h
lib/unicase/invariant.h
lib/unicase/locale-language.c
lib/unicase/locale-languages.gperf
lib/unicase/special-casing.c
lib/unicase/special-casing.in.h
lib/unicase/special-casing-table.gperf
lib/unicase/tocasefold.c
lib/unicase/tocasefold.h
lib/unicase/totitle.c
lib/unicase/totitle.h
lib/unicase/u16-casecmp.c
lib/unicase/u16-casecoll.c
lib/unicase/u16-casefold.c
lib/unicase/u16-casemap.c
lib/unicase/u16-casexfrm.c
lib/unicase/u16-ct-casefold.c
lib/unicase/u16-ct-tolower.c
lib/unicase/u16-ct-totitle.c
lib/unicase/u16-ct-toupper.c
lib/unicase/u16-is-cased.c
lib/unicase/u16-is-casefolded.c
lib/unicase/u16-is-invariant.c
lib/unicase/u16-is-lowercase.c
lib/unicase/u16-is-titlecase.c
lib/unicase/u16-is-uppercase.c
lib/unicase/u16-prefix-context.c
lib/unicase/u16-suffix-context.c
lib/unicase/u16-tolower.c
lib/unicase/u16-totitle.c
lib/unicase/u16-toupper.c
lib/unicase/u32-casecmp.c
lib/unicase/u32-casecoll.c
lib/unicase/u32-casefold.c
lib/unicase/u32-casemap.c
lib/unicase/u32-casexfrm.c
lib/unicase/u32-ct-casefold.c
lib/unicase/u32-ct-tolower.c
lib/unicase/u32-ct-totitle.c
lib/unicase/u32-ct-toupper.c
lib/unicase/u32-is-cased.c
lib/unicase/u32-is-casefolded.c
lib/unicase/u32-is-invariant.c
lib/unicase/u32-is-lowercase.c
lib/unicase/u32-is-titlecase.c
lib/unicase/u32-is-uppercase.c
lib/unicase/u32-prefix-context.c
lib/unicase/u32-suffix-context.c
lib/unicase/u32-tolower.c
lib/unicase/u32-totitle.c
lib/unicase/u32-toupper.c
lib/unicase/u8-casecmp.c
lib/unicase/u8-casecoll.c
lib/unicase/u8-casefold.c
lib/unicase/u8-casemap.c
lib/unicase/u8-casexfrm.c
lib/unicase/u8-ct-casefold.c
lib/unicase/u8-ct-tolower.c
lib/unicase/u8-ct-totitle.c
lib/unicase/u8-ct-toupper.c
lib/unicase/u8-is-cased.c
lib/unicase/u8-is-casefolded.c
lib/unicase/u8-is-invariant.c
lib/unicase/u8-is-lowercase.c
lib/unicase/u8-is-titlecase.c
lib/unicase/u8-is-uppercase.c
lib/unicase/u8-prefix-context.c
lib/unicase/u8-suffix-context.c
lib/unicase/u8-tolower.c
lib/unicase/u8-totitle.c
lib/unicase/u8-toupper.c
lib/unicase/u-casecmp.h
lib/unicase/u-casecoll.h
lib/unicase/u-casefold.h
lib/unicase/u-casemap.h
lib/unicase/u-casexfrm.h
lib/unicase/u-ct-casefold.h
lib/unicase/u-ct-totitle.h
lib/unicase/u-is-cased.h
lib/unicase/u-is-invariant.h
lib/unicase/ulc-casecmp.c
lib/unicase/ulc-casecoll.c
lib/unicase/ulc-casexfrm.c
lib/unicase/unicasemap.h
lib/unicase/u-prefix-context.h
lib/unicase/u-suffix-context.h
lib/unicase/u-totitle.h
lib/uniconv/u16-conv-from-enc.c
lib/uniconv/u16-conv-to-enc.c
lib/uniconv/u16-strconv-from-enc.c
lib/uniconv/u16-strconv-from-locale.c
lib/uniconv/u16-strconv-to-enc.c
lib/uniconv/u16-strconv-to-locale.c
lib/uniconv/u32-conv-from-enc.c
lib/uniconv/u32-conv-to-enc.c
lib/uniconv/u32-strconv-from-enc.c
lib/uniconv/u32-strconv-from-locale.c
lib/uniconv/u32-strconv-to-enc.c
lib/uniconv/u32-strconv-to-locale.c
lib/uniconv/u8-conv-to-enc.c
lib/uniconv/u8-strconv-to-enc.c
lib/uniconv/u8-strconv-to-locale.c
lib/uniconv/u-conv-from-enc.h
lib/uniconv/u-conv-to-enc.h
lib/uniconv/u-strconv-to-enc.h
lib/unictype/bidi_byname.c
lib/unictype/bidi_byname.gperf
lib/unictype/bidi_longname.c
lib/unictype/bidi_name.c
lib/unictype/bidi_test.c
lib/unictype/blocks.c
lib/unictype/blocks.h
lib/unictype/block_test.c
lib/unictype/categ_and.c
lib/unictype/categ_and_not.c
lib/unictype/categ_byname.c
lib/unictype/categ_byname.gperf
lib/unictype/categ_C.c
lib/unictype/categ_Cc.c
lib/unictype/categ_Cc.h
lib/unictype/categ_Cf.c
lib/unictype/categ_Cf.h
lib/unictype/categ_C.h
lib/unictype/categ_Cn.c
lib/unictype/categ_Cn.h
lib/unictype/categ_Co.c
lib/unictype/categ_Co.h
lib/unictype/categ_Cs.c
lib/unictype/categ_Cs.h
lib/unictype/categ_L.c
lib/unictype/categ_LC.c
lib/unictype/categ_LC.h
lib/unictype/categ_L.h
lib/unictype/categ_Ll.c
lib/unictype/categ_Ll.h
lib/unictype/categ_Lm.c
lib/unictype/categ_Lm.h
lib/unictype/categ_Lo.c
lib/unictype/categ_Lo.h
lib/unictype/categ_longname.c
lib/unictype/categ_Lt.c
lib/unictype/categ_Lt.h
lib/unictype/categ_Lu.c
lib/unictype/categ_Lu.h
lib/unictype/categ_Mc.c
lib/unictype/categ_Mc.h
lib/unictype/categ_Me.c
lib/unictype/categ_Me.h
lib/unictype/categ_Mn.c
lib/unictype/categ_Mn.h
lib/unictype/categ_name.c
lib/unictype/categ_N.c
lib/unictype/categ_Nd.c
lib/unictype/categ_Nd.h
lib/unictype/categ_N.h
lib/unictype/categ_Nl.c
lib/unictype/categ_Nl.h
lib/unictype/categ_No.c
lib/unictype/categ_No.h
lib/unictype/categ_or.c
lib/unictype/categ_P.c
lib/unictype/categ_Pc.c
lib/unictype/categ_Pc.h
lib/unictype/categ_Pd.c
lib/unictype/categ_Pd.h
lib/unictype/categ_Pe.c
lib/unictype/categ_Pe.h
lib/unictype/categ_Pf.c
lib/unictype/categ_Pf.h
lib/unictype/categ_P.h
lib/unictype/categ_Pi.c
lib/unictype/categ_Pi.h
lib/unictype/categ_Po.c
lib/unictype/categ_Po.h
lib/unictype/categ_Ps.c
lib/unictype/categ_Ps.h
lib/unictype/categ_S.c
lib/unictype/categ_Sc.c
lib/unictype/categ_Sc.h
lib/unictype/categ_S.h
lib/unictype/categ_Sk.c
lib/unictype/categ_Sk.h
lib/unictype/categ_Sm.c
lib/unictype/categ_Sm.h
lib/unictype/categ_So.c
lib/unictype/categ_So.h
lib/unictype/categ_Z.c
lib/unictype/categ_Z.h
lib/unictype/categ_Zl.c
lib/unictype/categ_Zl.h
lib/unictype/categ_Zp.c
lib/unictype/categ_Zp.h
lib/unictype/categ_Zs.c
lib/unictype/categ_Zs.h
lib/unictype/combiningclass_byname.c
lib/unictype/combiningclass_byname.gperf
lib/unictype/combiningclass_longname.c
lib/unictype/combiningclass_name.c
lib/unictype/decdigit.c
lib/unictype/decdigit.h
lib/unictype/digit.c
lib/unictype/digit.h
lib/unictype/identsyntaxmap.h
lib/unictype/incb_byname.c
lib/unictype/incb_byname.gperf
lib/unictype/incb_name.c
lib/unictype/incb_name.h
lib/unictype/incb_of.c
lib/unictype/incb_of.h
lib/unictype/joininggroup_byname.c
lib/unictype/joininggroup_byname.gperf
lib/unictype/joininggroup_name.c
lib/unictype/joininggroup_name.h
lib/unictype/joininggroup_of.c
lib/unictype/joininggroup_of.h
lib/unictype/joiningtype_byname.c
lib/unictype/joiningtype_byname.gperf
lib/unictype/joiningtype_longname.c
lib/unictype/joiningtype_name.c
lib/unictype/mirror.c
lib/unictype/mirror.h
lib/unictype/numeric.c
lib/unictype/numeric.h
lib/unictype/pr_alphabetic.c
lib/unictype/pr_alphabetic.h
lib/unictype/pr_ascii_hex_digit.c
lib/unictype/pr_ascii_hex_digit.h
lib/unictype/pr_bidi_arabic_digit.c
lib/unictype/pr_bidi_arabic_digit.h
lib/unictype/pr_bidi_arabic_right_to_left.c
lib/unictype/pr_bidi_arabic_right_to_left.h
lib/unictype/pr_bidi_block_separator.c
lib/unictype/pr_bidi_block_separator.h
lib/unictype/pr_bidi_boundary_neutral.c
lib/unictype/pr_bidi_boundary_neutral.h
lib/unictype/pr_bidi_common_separator.c
lib/unictype/pr_bidi_common_separator.h
lib/unictype/pr_bidi_control.c
lib/unictype/pr_bidi_control.h
lib/unictype/pr_bidi_embedding_or_override.c
lib/unictype/pr_bidi_embedding_or_override.h
lib/unictype/pr_bidi_eur_num_separator.c
lib/unictype/pr_bidi_eur_num_separator.h
lib/unictype/pr_bidi_eur_num_terminator.c
lib/unictype/pr_bidi_eur_num_terminator.h
lib/unictype/pr_bidi_european_digit.c
lib/unictype/pr_bidi_european_digit.h
lib/unictype/pr_bidi_hebrew_right_to_left.c
lib/unictype/pr_bidi_hebrew_right_to_left.h
lib/unictype/pr_bidi_left_to_right.c
lib/unictype/pr_bidi_left_to_right.h
lib/unictype/pr_bidi_non_spacing_mark.c
lib/unictype/pr_bidi_non_spacing_mark.h
lib/unictype/pr_bidi_other_neutral.c
lib/unictype/pr_bidi_other_neutral.h
lib/unictype/pr_bidi_pdf.c
lib/unictype/pr_bidi_pdf.h
lib/unictype/pr_bidi_segment_separator.c
lib/unictype/pr_bidi_segment_separator.h
lib/unictype/pr_bidi_whitespace.c
lib/unictype/pr_bidi_whitespace.h
lib/unictype/pr_byname.c
lib/unictype/pr_byname.gperf
lib/unictype/pr_cased.c
lib/unictype/pr_cased.h
lib/unictype/pr_case_ignorable.c
lib/unictype/pr_case_ignorable.h
lib/unictype/pr_changes_when_casefolded.c
lib/unictype/pr_changes_when_casefolded.h
lib/unictype/pr_changes_when_casemapped.c
lib/unictype/pr_changes_when_casemapped.h
lib/unictype/pr_changes_when_lowercased.c
lib/unictype/pr_changes_when_lowercased.h
lib/unictype/pr_changes_when_titlecased.c
lib/unictype/pr_changes_when_titlecased.h
lib/unictype/pr_changes_when_uppercased.c
lib/unictype/pr_changes_when_uppercased.h
lib/unictype/pr_combining.c
lib/unictype/pr_combining.h
lib/unictype/pr_composite.c
lib/unictype/pr_composite.h
lib/unictype/pr_currency_symbol.c
lib/unictype/pr_currency_symbol.h
lib/unictype/pr_dash.c
lib/unictype/pr_dash.h
lib/unictype/pr_decimal_digit.c
lib/unictype/pr_decimal_digit.h
lib/unictype/pr_default_ignorable_code_point.c
lib/unictype/pr_default_ignorable_code_point.h
lib/unictype/pr_deprecated.c
lib/unictype/pr_deprecated.h
lib/unictype/pr_diacritic.c
lib/unictype/pr_diacritic.h
lib/unictype/pr_emoji.c
lib/unictype/pr_emoji_component.c
lib/unictype/pr_emoji_component.h
lib/unictype/pr_emoji.h
lib/unictype/pr_emoji_modifier_base.c
lib/unictype/pr_emoji_modifier_base.h
lib/unictype/pr_emoji_modifier.c
lib/unictype/pr_emoji_modifier.h
lib/unictype/pr_emoji_presentation.c
lib/unictype/pr_emoji_presentation.h
lib/unictype/pr_extended_pictographic.c
lib/unictype/pr_extended_pictographic.h
lib/unictype/pr_extender.c
lib/unictype/pr_extender.h
lib/unictype/pr_format_control.c
lib/unictype/pr_format_control.h
lib/unictype/pr_grapheme_base.c
lib/unictype/pr_grapheme_base.h
lib/unictype/pr_grapheme_extend.c
lib/unictype/pr_grapheme_extend.h
lib/unictype/pr_grapheme_link.c
lib/unictype/pr_grapheme_link.h
lib/unictype/pr_hex_digit.c
lib/unictype/pr_hex_digit.h
lib/unictype/pr_hyphen.c
lib/unictype/pr_hyphen.h
lib/unictype/pr_id_compat_math_continue.c
lib/unictype/pr_id_compat_math_continue.h
lib/unictype/pr_id_compat_math_start.c
lib/unictype/pr_id_compat_math_start.h
lib/unictype/pr_id_continue.c
lib/unictype/pr_id_continue.h
lib/unictype/pr_ideographic.c
lib/unictype/pr_ideographic.h
lib/unictype/pr_ids_binary_operator.c
lib/unictype/pr_ids_binary_operator.h
lib/unictype/pr_id_start.c
lib/unictype/pr_id_start.h
lib/unictype/pr_ids_trinary_operator.c
lib/unictype/pr_ids_trinary_operator.h
lib/unictype/pr_ids_unary_operator.c
lib/unictype/pr_ignorable_control.c
lib/unictype/pr_ignorable_control.h
lib/unictype/pr_iso_control.c
lib/unictype/pr_iso_control.h
lib/unictype/pr_join_control.c
lib/unictype/pr_join_control.h
lib/unictype/pr_left_of_pair.c
lib/unictype/pr_left_of_pair.h
lib/unictype/pr_line_separator.c
lib/unictype/pr_line_separator.h
lib/unictype/pr_logical_order_exception.c
lib/unictype/pr_logical_order_exception.h
lib/unictype/pr_lowercase.c
lib/unictype/pr_lowercase.h
lib/unictype/pr_math.c
lib/unictype/pr_math.h
lib/unictype/pr_modifier_combining_mark.c
lib/unictype/pr_modifier_combining_mark.h
lib/unictype/pr_non_break.c
lib/unictype/pr_non_break.h
lib/unictype/pr_not_a_character.c
lib/unictype/pr_not_a_character.h
lib/unictype/pr_numeric.c
lib/unictype/pr_numeric.h
lib/unictype/pr_other_alphabetic.c
lib/unictype/pr_other_alphabetic.h
lib/unictype/pr_other_default_ignorable_code_point.c
lib/unictype/pr_other_default_ignorable_code_point.h
lib/unictype/pr_other_grapheme_extend.c
lib/unictype/pr_other_grapheme_extend.h
lib/unictype/pr_other_id_continue.c
lib/unictype/pr_other_id_continue.h
lib/unictype/pr_other_id_start.c
lib/unictype/pr_other_id_start.h
lib/unictype/pr_other_lowercase.c
lib/unictype/pr_other_lowercase.h
lib/unictype/pr_other_math.c
lib/unictype/pr_other_math.h
lib/unictype/pr_other_uppercase.c
lib/unictype/pr_other_uppercase.h
lib/unictype/pr_paired_punctuation.c
lib/unictype/pr_paired_punctuation.h
lib/unictype/pr_paragraph_separator.c
lib/unictype/pr_paragraph_separator.h
lib/unictype/pr_pattern_syntax.c
lib/unictype/pr_pattern_syntax.h
lib/unictype/pr_pattern_white_space.c
lib/unictype/pr_pattern_white_space.h
lib/unictype/pr_prepended_concatenation_mark.c
lib/unictype/pr_prepended_concatenation_mark.h
lib/unictype/pr_private_use.c
lib/unictype/pr_private_use.h
lib/unictype/pr_punctuation.c
lib/unictype/pr_punctuation.h
lib/unictype/pr_quotation_mark.c
lib/unictype/pr_quotation_mark.h
lib/unictype/pr_radical.c
lib/unictype/pr_radical.h
lib/unictype/pr_regional_indicator.c
lib/unictype/pr_sentence_terminal.c
lib/unictype/pr_sentence_terminal.h
lib/unictype/pr_soft_dotted.c
lib/unictype/pr_soft_dotted.h
lib/unictype/pr_space.c
lib/unictype/pr_space.h
lib/unictype/pr_terminal_punctuation.c
lib/unictype/pr_terminal_punctuation.h
lib/unictype/pr_test.c
lib/unictype/pr_titlecase.c
lib/unictype/pr_titlecase.h
lib/unictype/pr_unassigned_code_value.c
lib/unictype/pr_unassigned_code_value.h
lib/unictype/pr_unified_ideograph.c
lib/unictype/pr_unified_ideograph.h
lib/unictype/pr_uppercase.c
lib/unictype/pr_uppercase.h
lib/unictype/pr_variation_selector.c
lib/unictype/pr_variation_selector.h
lib/unictype/pr_white_space.c
lib/unictype/pr_white_space.h
lib/unictype/pr_xid_continue.c
lib/unictype/pr_xid_continue.h
lib/unictype/pr_xid_start.c
lib/unictype/pr_xid_start.h
lib/unictype/pr_zero_width.c
lib/unictype/pr_zero_width.h
lib/unictype/sy_c_ident.c
lib/unictype/sy_c_ident.h
lib/unictype/sy_c_whitespace.c
lib/unictype/sy_java_ident.c
lib/unictype/sy_java_ident.h
lib/unictype/sy_java_whitespace.c
lib/unigbrk/gbrkprop.h
lib/unigbrk.in.h
lib/unigbrk/u16-grapheme-breaks.c
lib/unigbrk/u16-grapheme-next.c
lib/unigbrk/u16-grapheme-prev.c
lib/unigbrk/u32-grapheme-breaks.c
lib/unigbrk/u32-grapheme-next.c
lib/unigbrk/u32-grapheme-prev.c
lib/unigbrk/u8-grapheme-breaks.c
lib/unigbrk/u8-grapheme-next.c
lib/unigbrk/u8-grapheme-prev.c
lib/unigbrk/uc-gbrk-prop.c
lib/unigbrk/uc-grapheme-breaks.c
lib/unigbrk/uc-is-grapheme-break.c
lib/unigbrk/u-grapheme-breaks.h
lib/unigbrk/ulc-grapheme-breaks.c
lib/unilbrk.in.h
lib/unilbrk/internal.h
lib/unilbrk/lbrkprop1.h
lib/unilbrk/lbrkprop2.h
lib/unilbrk/lbrktables.c
lib/unilbrk/lbrktables.h
lib/unilbrk/u16-possible-linebreaks.c
lib/unilbrk/u16-width-linebreaks.c
lib/unilbrk/u32-possible-linebreaks.c
lib/unilbrk/u32-width-linebreaks.c
lib/unilbrk/u8-possible-linebreaks.c
lib/unilbrk/u8-width-linebreaks.c
lib/unilbrk/ulc-common.c
lib/unilbrk/ulc-common.h
lib/unilbrk/ulc-possible-linebreaks.c
lib/unilbrk/ulc-width-linebreaks.c
lib/unimetadata/u-version.c
lib/uniname/gen-uninames.lisp
lib/uniname.in.h
lib/uniname/uniname.c
lib/uniname/uninames.h
lib/uninorm/compat-decomposition.c
lib/uninorm/decomposing-form.c
lib/uninorm/decomposition.c
lib/uninorm/nfkc.c
lib/uninorm/nfkd.c
lib/uninorm/u16-normalize.c
lib/uninorm/u16-normcmp.c
lib/uninorm/u16-normcoll.c
lib/uninorm/u16-normxfrm.c
lib/uninorm/u32-normcmp.c
lib/uninorm/u32-normcoll.c
lib/uninorm/u32-normxfrm.c
lib/uninorm/u8-normalize.c
lib/uninorm/u8-normcmp.c
lib/uninorm/u8-normcoll.c
lib/uninorm/u8-normxfrm.c
lib/uninorm/uninorm-filter.c
lib/uninorm/u-normcmp.h
lib/uninorm/u-normcoll.h
lib/uninorm/u-normxfrm.h
lib/unistdio.in.h
lib/unistdio/u16-asnprintf.c
lib/unistdio/u16-asprintf.c
lib/unistdio/u16-printf-parse.c
lib/unistdio/u16-snprintf.c
lib/unistdio/u16-sprintf.c
lib/unistdio/u16-u16-asnprintf.c
lib/unistdio/u16-u16-asprintf.c
lib/unistdio/u16-u16-snprintf.c
lib/unistdio/u16-u16-sprintf.c
lib/unistdio/u16-u16-vasnprintf.c
lib/unistdio/u16-u16-vasprintf.c
lib/unistdio/u16-u16-vsnprintf.c
lib/unistdio/u16-u16-vsprintf.c
lib/unistdio/u16-vasnprintf.c
lib/unistdio/u16-vasprintf.c
lib/unistdio/u16-vsnprintf.c
lib/unistdio/u16-vsprintf.c
lib/unistdio/u32-asnprintf.c
lib/unistdio/u32-asprintf.c
lib/unistdio/u32-printf-parse.c
lib/unistdio/u32-snprintf.c
lib/unistdio/u32-sprintf.c
lib/unistdio/u32-u32-asnprintf.c
lib/unistdio/u32-u32-asprintf.c
lib/unistdio/u32-u32-snprintf.c
lib/unistdio/u32-u32-sprintf.c
lib/unistdio/u32-u32-vasnprintf.c
lib/unistdio/u32-u32-vasprintf.c
lib/unistdio/u32-u32-vsnprintf.c
lib/unistdio/u32-u32-vsprintf.c
lib/unistdio/u32-vasnprintf.c
lib/unistdio/u32-vasprintf.c
lib/unistdio/u32-vsnprintf.c
lib/unistdio/u32-vsprintf.c
lib/unistdio/u8-asnprintf.c
lib/unistdio/u8-asprintf.c
lib/unistdio/u8-printf-parse.c
lib/unistdio/u8-snprintf.c
lib/unistdio/u8-sprintf.c
lib/unistdio/u8-u8-asnprintf.c
lib/unistdio/u8-u8-asprintf.c
lib/unistdio/u8-u8-snprintf.c
lib/unistdio/u8-u8-sprintf.c
lib/unistdio/u8-u8-vasnprintf.c
lib/unistdio/u8-u8-vasprintf.c
lib/unistdio/u8-u8-vsnprintf.c
lib/unistdio/u8-u8-vsprintf.c
lib/unistdio/u8-vasnprintf.c
lib/unistdio/u8-vasprintf.c
lib/unistdio/u8-vsnprintf.c
lib/unistdio/u8-vsprintf.c
lib/unistdio/u-asnprintf.h
lib/unistdio/u-asprintf.h
lib/unistdio/ulc-asnprintf.c
lib/unistdio/ulc-asprintf.c
lib/unistdio/ulc-fprintf.c
lib/unistdio/ulc-printf-parse.c
lib/unistdio/ulc-snprintf.c
lib/unistdio/ulc-sprintf.c
lib/unistdio/ulc-vasnprintf.c
lib/unistdio/ulc-vasprintf.c
lib/unistdio/ulc-vfprintf.c
lib/unistdio/ulc-vsnprintf.c
lib/unistdio/ulc-vsprintf.c
lib/unistdio/u-printf-args.c
lib/unistdio/u-printf-args.h
lib/unistdio/u-printf-parse.h
lib/unistdio/u-snprintf.h
lib/unistdio/u-sprintf.h
lib/unistdio/u-vasprintf.h
lib/unistdio/u-vsnprintf.h
lib/unistdio/u-vsprintf.h
lib/unistr/u16-check.c
lib/unistr/u16-chr.c
lib/unistr/u16-cmp2.c
lib/unistr/u16-cmp.c
lib/unistr/u16-cpy-alloc.c
lib/unistr/u16-cpy.c
lib/unistr/u16-endswith.c
lib/unistr/u16-mblen.c
lib/unistr/u16-mbsnlen.c
lib/unistr/u16-mbtouc-aux.c
lib/unistr/u16-mbtouc.c
lib/unistr/u16-mbtouc-unsafe-aux.c
lib/unistr/u16-mbtouc-unsafe.c
lib/unistr/u16-move.c
lib/unistr/u16-next.c
lib/unistr/u16-pcpy.c
lib/unistr/u16-prev.c
lib/unistr/u16-set.c
lib/unistr/u16-startswith.c
lib/unistr/u16-stpcpy.c
lib/unistr/u16-stpncpy.c
lib/unistr/u16-strcat.c
lib/unistr/u16-strchr.c
lib/unistr/u16-strcmp.c
lib/unistr/u16-strcoll.c
lib/unistr/u16-strcpy.c
lib/unistr/u16-strcspn.c
lib/unistr/u16-strdup.c
lib/unistr/u16-strmblen.c
lib/unistr/u16-strmbtouc.c
lib/unistr/u16-strncat.c
lib/unistr/u16-strncmp.c
lib/unistr/u16-strncpy.c
lib/unistr/u16-strnlen.c
lib/unistr/u16-strpbrk.c
lib/unistr/u16-strrchr.c
lib/unistr/u16-strspn.c
lib/unistr/u16-strstr.c
lib/unistr/u16-strtok.c
lib/unistr/u16-to-u8.c
lib/unistr/u16-uctomb-aux.c
lib/unistr/u16-uctomb.c
lib/unistr/u32-check.c
lib/unistr/u32-cmp2.c
lib/unistr/u32-cmp.c
lib/unistr/u32-cpy-alloc.c
lib/unistr/u32-endswith.c
lib/unistr/u32-mblen.c
lib/unistr/u32-mbsnlen.c
lib/unistr/u32-mbtouc.c
lib/unistr/u32-mbtoucr.c
lib/unistr/u32-move.c
lib/unistr/u32-next.c
lib/unistr/u32-prev.c
lib/unistr/u32-set.c
lib/unistr/u32-startswith.c
lib/unistr/u32-stpcpy.c
lib/unistr/u32-stpncpy.c
lib/unistr/u32-strchr.c
lib/unistr/u32-strcmp.c
lib/unistr/u32-strcoll.c
lib/unistr/u32-strcpy.c
lib/unistr/u32-strcspn.c
lib/unistr/u32-strdup.c
lib/unistr/u32-strmblen.c
lib/unistr/u32-strmbtouc.c
lib/unistr/u32-strncat.c
lib/unistr/u32-strncmp.c
lib/unistr/u32-strncpy.c
lib/unistr/u32-strnlen.c
lib/unistr/u32-strpbrk.c
lib/unistr/u32-strrchr.c
lib/unistr/u32-strspn.c
lib/unistr/u32-strstr.c
lib/unistr/u32-strtok.c
lib/unistr/u32-to-u16.c
lib/unistr/u8-chr.c
lib/unistr/u8-cmp2.c
lib/unistr/u8-cmp.c
lib/unistr/u8-cpy-alloc.c
lib/unistr/u8-cpy.c
lib/unistr/u8-endswith.c
lib/unistr/u8-mbsnlen.c
lib/unistr/u8-move.c
lib/unistr/u8-next.c
lib/unistr/u8-pcpy.c
lib/unistr/u8-set.c
lib/unistr/u8-startswith.c
lib/unistr/u8-stpcpy.c
lib/unistr/u8-stpncpy.c
lib/unistr/u8-strcat.c
lib/unistr/u8-strchr.c
lib/unistr/u8-strcmp.c
lib/unistr/u8-strcoll.c
lib/unistr/u8-strcpy.c
lib/unistr/u8-strcspn.c
lib/unistr/u8-strdup.c
lib/unistr/u8-strmblen.c
lib/unistr/u8-strmbtouc.c
lib/unistr/u8-strncat.c
lib/unistr/u8-strncmp.c
lib/unistr/u8-strncpy.c
lib/unistr/u8-strnlen.c
lib/unistr/u8-strpbrk.c
lib/unistr/u8-strrchr.c
lib/unistr/u8-strspn.c
lib/unistr/u8-strstr.c
lib/unistr/u8-strtok.c
lib/unistr/u8-to-u16.c
lib/unistr/u-cmp2.h
lib/unistr/u-cpy-alloc.h
lib/unistr/u-endswith.h
lib/unistr/u-move.h
lib/unistr/u-set.h
lib/unistr/u-startswith.h
lib/unistr/u-stpcpy.h
lib/unistr/u-stpncpy.h
lib/unistr/u-strcoll.h
lib/unistr/u-strcpy.h
lib/unistr/u-strcspn.h
lib/unistr/u-strdup.h
lib/unistr/u-strncat.h
lib/unistr/u-strncpy.h
lib/unistr/u-strnlen.h
lib/unistr/u-strpbrk.h
lib/unistr/u-strspn.h
lib/unistr/u-strtok.h
lib/uniwbrk.in.h
lib/uniwbrk/u16-wordbreaks.c
lib/uniwbrk/u32-wordbreaks.c
lib/uniwbrk/u8-wordbreaks.c
lib/uniwbrk/ulc-wordbreaks.c
lib/uniwbrk/u-wordbreaks.h
lib/uniwbrk/wbrkprop.h
lib/uniwbrk/wbrktable.c
lib/uniwbrk/wbrktable.h
lib/uniwbrk/wordbreak-property.c
lib/uniwidth/u16-strwidth.c
lib/uniwidth/u16-width.c
lib/uniwidth/u32-strwidth.c
lib/uniwidth/u32-width.c
lib/uniwidth/u8-strwidth.c
lib/uniwidth/u8-width.c
doc/lgpl.texi
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-3
Files: woe32dll/*
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-2+ or LGPL-3+
Files: tests/*
Copyright: 2001-2024 Free Software Foundation, Inc.
License: GPL-3+
Files: tests/unigbrk/*
tests/unictype/test-combiningclass_byname.c
tests/unictype/test-incb_byname.c
tests/unictype/test-incb_name.c
tests/unictype/test-incb_of.c
tests/unictype/test-joininggroup_byname.c
tests/unictype/test-joininggroup_name.c
tests/unictype/test-joininggroup_of.c
tests/unictype/test-joiningtype_byname.c
tests/unictype/test-joiningtype_longname.c
tests/unictype/test-joiningtype_name.c
tests/unictype/test-joiningtype_of.c
tests/c32tob.c
tests/fchdir.c
tests/memrchr.c
tests/putenv.c
tests/rewinddir.c
tests/setlocale.c
tests/symlink.c
tests/test-array-mergesort.c
tests/uniwbrk/test-uc-wordbreaks.c
tests/wctob.c
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-3+
Files: tests/unigbrk/test-uc-gbrk-prop.c
tests/unigbrk/test-uc-gbrk-prop.h
tests/unigbrk/test-ulc-grapheme-breaks.c
Copyright: 2001-2024 Free Software Foundation, Inc.
License: GPL-3+
Files: tests/arg-nonnull.h
tests/c++defs.h
tests/_Noreturn.h
tests/warn-on-use.h
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-2+
Files: tests/arpa_inet.c
tests/arpa_inet.in.h
tests/assure.h
tests/basename-lgpl.c
tests/basename-lgpl.h
tests/binary-io.c
tests/binary-io.h
tests/bind.c
tests/btoc32.c
tests/btowc.c
tests/c32rtomb.c
tests/calloc.c
tests/cdefs.h
tests/cloexec.c
tests/cloexec.h
tests/close.c
tests/closedir.c
tests/concat-filename.c
tests/concat-filename.h
tests/connect.c
tests/ctype.in.h
tests/dirent.in.h
tests/dirent-private.h
tests/dirfd.c
tests/dup2.c
tests/dup.c
tests/error.c
tests/error.in.h
tests/exitfail.c
tests/exitfail.h
tests/fcntl.c
tests/fcntl.in.h
tests/fd-hook.c
tests/fd-hook.h
tests/fdopen.c
tests/filenamecat.h
tests/filenamecat-lgpl.c
tests/filename.h
tests/fstat.c
tests/getcwd-lgpl.c
tests/getdtablesize.c
tests/getprogname.c
tests/getprogname.h
tests/gettext.h
tests/gettimeofday.c
tests/glthread/thread.c
tests/glthread/thread.h
tests/glthread/yield.h
tests/ialloc.c
tests/ialloc.h
tests/ignore-value.h
tests/intprops.h
tests/intprops-internal.h
tests/ioctl.c
tests/isblank.c
tests/libc-config.h
tests/listen.c
tests/lstat.c
tests/malloc.c
tests/mbtowc.c
tests/mbtowc-impl.h
tests/mempcpy.c
tests/msvc-inval.c
tests/msvc-inval.h
tests/msvc-nothrow.c
tests/msvc-nothrow.h
tests/nan.h
tests/nanosleep.c
tests/netinet_in.in.h
tests/open.c
tests/opendir.c
tests/pathmax.h
tests/perror.c
tests/pipe.c
tests/pselect.c
tests/pthread-cond.c
tests/pthread-mutex.c
tests/pthread_mutex_timedlock.c
tests/pthread-rwlock.c
tests/pthread_sigmask.c
tests/pthread-thread.c
tests/qemu.h
tests/raise.c
tests/readdir.c
tests/reallocarray.c
tests/realloc.c
tests/same-inode.h
tests/sched_yield.c
tests/select.c
tests/setenv.c
tests/setsockopt.c
tests/signal.in.h
tests/signed-nan.h
tests/signed-snan.h
tests/sigprocmask.c
tests/sleep.c
tests/snan.h
tests/socket.c
tests/sockets.c
tests/sockets.h
tests/stat.c
tests/stat-time.c
tests/stat-time.h
tests/stat-w32.c
tests/stat-w32.h
tests/stdio.in.h
tests/stdio-read.c
tests/stdio-write.c
tests/stpcpy.c
tests/strdup.c
tests/strerror.c
tests/strerror-override.c
tests/strerror-override.h
tests/strerror_r.c
tests/sys_ioctl.in.h
tests/sys_select.in.h
tests/sys_socket.c
tests/sys_socket.in.h
tests/sys_stat.in.h
tests/sys_time.in.h
tests/sys_uio.in.h
tests/time.c
tests/unsetenv.c
tests/usleep.c
tests/verify.h
tests/virtualbox.h
tests/w32sock.h
tests/wcrtomb.c
tests/wctomb.c
tests/wctomb-impl.h
tests/windows-cond.c
tests/windows-cond.h
tests/windows-initguard.h
tests/windows-thread.c
tests/windows-thread.h
tests/windows-timedmutex.c
tests/windows-timedmutex.h
tests/windows-timedrecmutex.c
tests/windows-timedrecmutex.h
tests/windows-timedrwlock.c
tests/windows-timedrwlock.h
tests/windows-tls.c
tests/windows-tls.h
tests/accept.c
Copyright: 2001-2024 Free Software Foundation, Inc.
License: LGPL-2.1+
Files: tests/random.c
Copyright: 2001-2024 Free Software Foundation, Inc.
License: BSD-3-clause or LGPL-3+
Files: tests/random_r.c
Copyright: 2001-2024 Free Software Foundation, Inc.
License: BSD-3-clause or LGPL-2.1+
Files: tests/inet_pton.c
Copyright: 2001-2024 Free Software Foundation, Inc.
License: ISC or LGPL-2.1+
Files: tests/unigbrk/GraphemeBreakTest.txt
tests/unilbrk/LineBreakTest.txt
tests/uniname/UnicodeData.txt
tests/uninorm/NormalizationTest.txt
tests/uniwbrk/WordBreakTest.txt
tests/uniname/NameAliases.txt
Copyright: 1995-2024 Free Software Foundation, Inc.
License: Unicode-DFS-2016
Files: tests/alloca.c
tests/uniname/HangulSyllableNames.txt
Copyright: 1995-2024 Free Software Foundation, Inc.
License: public-domain
Files: gnulib-m4/* m4/*.m4
Copyright: 1995-2024 Free Software Foundation, Inc.
License: FreeSoftware
This file is free software; the Free Software Foundation
gives unlimited permission to copy and/or distribute it,
with or without modifications, as long as this notice is preserved.
Files: build-aux/*
Copyright: 1995-2024 Free Software Foundation, Inc.
License: GPL-2+
Files: m4/init-package-version.m4
Copyright: 1992-2021, Free Software Foundation, Inc.
License: GPL-2+ with distribution exception
This file is free software, distributed under the terms of the GNU
General Public License. As a special exception to the GNU General
Public License, this file may be distributed as part of a program
that contains a configuration script generated by Autoconf, under
the same distribution terms as the rest of that program.
Files: build-aux/texi2html
Copyright: 1999-2005 Patrice Dumas <dumas@centre-cired.fr>,
1999-2005 Derek Price <derek@ximbiot.com>,
1999-2005 Adrian Aichner <adrian@xemacs.org>
License: GPL-2+
Files: build-aux/ltmain.sh
Copyright: 1996-2021 Free Software Foundation, Inc.
2004-2019, 2021 Bootstrap Authors
License: GPL-2+ with distribution exception, Expat and GPL-2+
This file is free software, distributed under the terms of the GNU
General Public License. As a special exception to the GNU General
Public License, this file may be distributed as part of a program
that contains a configuration script generated by Autoconf, under
the same distribution terms as the rest of that program.
Files: build-aux/install-sh
Copyright: 1994, X Consortium
License: X11
Files: debian/*
Copyright: 2009-2011 Andreas Rottmann <rotty@debian.org>
2017-2025 Jörg Frings-Fürst <debian@jff.email>
License: GPL-3+
License: LGPL-3+
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.
On Debian systems the full text of the GNU Lesser General Public
License version 3 can be found in the file
`/usr/share/common-licenses/LGPL-3'.
License: GPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
.
On Debian systems the full text of the GNU General Public License
version 3 can be found in the file
`/usr/share/common-licenses/GPL-3'.
License: GPL-2+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
.
On Debian systems the full text of the GNU General Public License
version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.
License: X11
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
.
Except as contained in this notice, the name of the X Consortium shall not
be used in advertising or otherwise to promote the sale, use or other deal-
ings in this Software without prior written authorization from the X Consor-
tium.
License: bsd-3-clause
All rights reserved.
.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
.
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
.
3. Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: gfdl-1.2+
Copyright (C) 2000,2001,2002 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
.
.
0. PREAMBLE
.
The purpose of this License is to make a manual, textbook, or other
functional and useful document "free" in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
.
This License is a kind of "copyleft", which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
.
We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
.
.
1. APPLICABILITY AND DEFINITIONS
.
This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The "Document", below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as "you". You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
.
A "Modified Version" of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
.
A "Secondary Section" is a named appendix or a front-matter section of
the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall subject
(or to related matters) and contains nothing that could fall directly
within that overall subject. (Thus, if the Document is in part a
textbook of mathematics, a Secondary Section may not explain any
mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
.
The "Invariant Sections" are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
.
The "Cover Texts" are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
.
A "Transparent" copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not "Transparent" is called "Opaque".
.
Examples of suitable formats for Transparent copies include plain
ASCII without markup, Texinfo input format, LaTeX input format, SGML
or XML using a publicly available DTD, and standard-conforming simple
HTML, PostScript or PDF designed for human modification. Examples of
transparent image formats include PNG, XCF and JPG. Opaque formats
include proprietary formats that can be read and edited only by
proprietary word processors, SGML or XML for which the DTD and/or
processing tools are not generally available, and the
machine-generated HTML, PostScript or PDF produced by some word
processors for output purposes only.
.
The "Title Page" means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, "Title Page" means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
.
A section "Entitled XYZ" means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as "Acknowledgements",
"Dedications", "Endorsements", or "History".) To "Preserve the Title"
of such a section when you modify the Document means that it remains a
section "Entitled XYZ" according to this definition.
.
The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
.
.
2. VERBATIM COPYING
.
You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no other
conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
.
You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
.
.
3. COPYING IN QUANTITY
.
If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document's license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
.
If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
.
If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
.
It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to give
them a chance to provide you with an updated version of the Document.
.
.
4. MODIFICATIONS
.
You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
.
A. Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
B. List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
C. State on the Title page the name of the publisher of the
Modified Version, as the publisher.
D. Preserve all the copyright notices of the Document.
E. Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
F. Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
H. Include an unaltered copy of this License.
I. Preserve the section Entitled "History", Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled "History" in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the "History" section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
K. For any section Entitled "Acknowledgements" or "Dedications",
Preserve the Title of the section, and preserve in the section all
the substance and tone of each of the contributor acknowledgements
and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
M. Delete any section Entitled "Endorsements". Such a section
may not be included in the Modified Version.
N. Do not retitle any existing section to be Entitled "Endorsements"
or to conflict in title with any Invariant Section.
O. Preserve any Warranty Disclaimers.
.
If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
.
You may add a section Entitled "Endorsements", provided it contains
nothing but endorsements of your Modified Version by various
parties--for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
.
You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
.
The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
.
.
5. COMBINING DOCUMENTS
.
You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
.
The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy. If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
.
In the combination, you must combine any sections Entitled "History"
in the various original documents, forming one section Entitled
"History"; likewise combine any sections Entitled "Acknowledgements",
and any sections Entitled "Dedications". You must delete all sections
Entitled "Endorsements".
.
.
6. COLLECTIONS OF DOCUMENTS
.
You may make a collection consisting of the Document and other documents
released under this License, and replace the individual copies of this
License in the various documents with a single copy that is included in
the collection, provided that you follow the rules of this License for
verbatim copying of each of the documents in all other respects.
.
You may extract a single document from such a collection, and distribute
it individually under this License, provided you insert a copy of this
License into the extracted document, and follow this License in all
other respects regarding verbatim copying of that document.
.
.
7. AGGREGATION WITH INDEPENDENT WORKS
.
A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an "aggregate" if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation's users beyond what the individual works permit.
When the Document is included in an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
.
If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document's Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
.
.
8. TRANSLATION
.
Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections. You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
.
If a section in the Document is Entitled "Acknowledgements",
"Dedications", or "History", the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
.
.
9. TERMINATION
.
You may not copy, modify, sublicense, or distribute the Document except
as expressly provided for under this License. Any other attempt to
copy, modify, sublicense or distribute the Document is void, and will
automatically terminate your rights under this License. However,
parties who have received copies, or rights, from you under this
License will not have their licenses terminated so long as such
parties remain in full compliance.
.
.
10. FUTURE REVISIONS OF THIS LICENSE
.
The Free Software Foundation may publish new, revised versions
of the GNU Free Documentation License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns. See
https://www.gnu.org/licenses/.
.
Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License "or any later version" applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation.
.
.
ADDENDUM: How to use this License for your documents
.
To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
.
Copyright (c) YEAR YOUR NAME.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.2
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".
.
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the "with...Texts." line with this:
.
with the Invariant Sections being LIST THEIR TITLES, with the
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
.
If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
.
If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.
License: gfdl-1.3+
Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
<https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
.
0. PREAMBLE
.
The purpose of this License is to make a manual, textbook, or other
functional and useful document "free" in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
.
This License is a kind of "copyleft", which means that derivative
works of the document must themselves be free in the same sense. It
complements the GNU General Public License, which is a copyleft
license designed for free software.
.
We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does. But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book. We recommend this License
principally for works whose purpose is instruction or reference.
.
.
1. APPLICABILITY AND DEFINITIONS
.
This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License. Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein. The "Document", below,
refers to any such manual or work. Any member of the public is a
licensee, and is addressed as "you". You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
.
A "Modified Version" of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
.
A "Secondary Section" is a named appendix or a front-matter section of
the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document's overall
subject (or to related matters) and contains nothing that could fall
directly within that overall subject. (Thus, if the Document is in
part a textbook of mathematics, a Secondary Section may not explain
any mathematics.) The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
.
The "Invariant Sections" are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License. If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant. The Document may contain zero
Invariant Sections. If the Document does not identify any Invariant
Sections then there are none.
.
The "Cover Texts" are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License. A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
.
A "Transparent" copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters. A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text. A copy that is not "Transparent" is called "Opaque".
.
Examples of suitable formats for Transparent copies include plain
ASCII without markup, Texinfo input format, LaTeX input format, SGML
or XML using a publicly available DTD, and standard-conforming simple
HTML, PostScript or PDF designed for human modification. Examples of
transparent image formats include PNG, XCF and JPG. Opaque formats
include proprietary formats that can be read and edited only by
proprietary word processors, SGML or XML for which the DTD and/or
processing tools are not generally available, and the
machine-generated HTML, PostScript or PDF produced by some word
processors for output purposes only.
.
The "Title Page" means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page. For works in
formats which do not have any title page as such, "Title Page" means
the text near the most prominent appearance of the work's title,
preceding the beginning of the body of the text.
.
The "publisher" means any person or entity that distributes copies of
the Document to the public.
.
A section "Entitled XYZ" means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language. (Here XYZ stands for a
specific section name mentioned below, such as "Acknowledgements",
"Dedications", "Endorsements", or "History".) To "Preserve the Title"
of such a section when you modify the Document means that it remains a
section "Entitled XYZ" according to this definition.
.
The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document. These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
.
2. VERBATIM COPYING
.
You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no
other conditions whatsoever to those of this License. You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute. However, you may accept
compensation in exchange for copies. If you distribute a large enough
number of copies you must also follow the conditions in section 3.
.
You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
.
.
3. COPYING IN QUANTITY
.
If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document's license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover. Both covers must also clearly and legibly identify
you as the publisher of these copies. The front cover must present
the full title with all words of the title equally prominent and
visible. You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
.
If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
.
If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
.
It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to
give them a chance to provide you with an updated version of the
Document.
.
.
4. MODIFICATIONS
.
You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it. In addition, you must do these things in the Modified Version:
.
A. Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document). You may use the same title as a previous version
if the original publisher of that version gives permission.
B. List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.
C. State on the Title page the name of the publisher of the
Modified Version, as the publisher.
D. Preserve all the copyright notices of the Document.
E. Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.
F. Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.
G. Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document's license notice.
H. Include an unaltered copy of this License.
I. Preserve the section Entitled "History", Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page. If
there is no section Entitled "History" in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.
J. Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on. These may be placed in the "History" section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.
K. For any section Entitled "Acknowledgements" or "Dedications",
Preserve the Title of the section, and preserve in the section all
the substance and tone of each of the contributor acknowledgements
and/or dedications given therein.
L. Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles. Section numbers
or the equivalent are not considered part of the section titles.
M. Delete any section Entitled "Endorsements". Such a section
may not be included in the Modified Version.
N. Do not retitle any existing section to be Entitled "Endorsements"
or to conflict in title with any Invariant Section.
O. Preserve any Warranty Disclaimers.
.
If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant. To do this, add their titles to the
list of Invariant Sections in the Modified Version's license notice.
These titles must be distinct from any other section titles.
.
You may add a section Entitled "Endorsements", provided it contains
nothing but endorsements of your Modified Version by various
parties--for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
.
You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version. Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity. If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
.
The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
.
.
5. COMBINING DOCUMENTS
.
You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
.
The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy. If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
.
In the combination, you must combine any sections Entitled "History"
in the various original documents, forming one section Entitled
"History"; likewise combine any sections Entitled "Acknowledgements",
and any sections Entitled "Dedications". You must delete all sections
Entitled "Endorsements".
.
.
6. COLLECTIONS OF DOCUMENTS
.
You may make a collection consisting of the Document and other
documents released under this License, and replace the individual
copies of this License in the various documents with a single copy
that is included in the collection, provided that you follow the rules
of this License for verbatim copying of each of the documents in all
other respects.
.
You may extract a single document from such a collection, and
distribute it individually under this License, provided you insert a
copy of this License into the extracted document, and follow this
License in all other respects regarding verbatim copying of that
document.
.
.
7. AGGREGATION WITH INDEPENDENT WORKS
.
A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an "aggregate" if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation's users beyond what the individual works permit.
When the Document is included in an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
.
If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document's Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
.
.
8. TRANSLATION
.
Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections. You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers. In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
.
If a section in the Document is Entitled "Acknowledgements",
"Dedications", or "History", the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
.
.
9. TERMINATION
.
You may not copy, modify, sublicense, or distribute the Document
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense, or distribute it is void, and
will automatically terminate your rights under this License.
.
However, if you cease all violation of this License, then your license
from a particular copyright holder is reinstated (a) provisionally,
unless and until the copyright holder explicitly and finally
terminates your license, and (b) permanently, if the copyright holder
fails to notify you of the violation by some reasonable means prior to
60 days after the cessation.
.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, receipt of a copy of some or all of the same material does
not give you any rights to use it.
.
.
10. FUTURE REVISIONS OF THIS LICENSE
.
The Free Software Foundation may publish new, revised versions of the
GNU Free Documentation License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in
detail to address new problems or concerns. See
https://www.gnu.org/licenses/.
.
Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License "or any later version" applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation. If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation. If the Document
specifies that a proxy can decide which future versions of this
License can be used, that proxy's public statement of acceptance of a
version permanently authorizes you to choose that version for the
Document.
.
11. RELICENSING
.
"Massive Multiauthor Collaboration Site" (or "MMC Site") means any
World Wide Web server that publishes copyrightable works and also
provides prominent facilities for anybody to edit those works. A
public wiki that anybody can edit is an example of such a server. A
"Massive Multiauthor Collaboration" (or "MMC") contained in the site
means any set of copyrightable works thus published on the MMC site.
.
"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
license published by Creative Commons Corporation, a not-for-profit
corporation with a principal place of business in San Francisco,
California, as well as future copyleft versions of that license
published by that same organization.
.
"Incorporate" means to publish or republish a Document, in whole or in
part, as part of another Document.
.
An MMC is "eligible for relicensing" if it is licensed under this
License, and if all works that were first published under this License
somewhere other than this MMC, and subsequently incorporated in whole or
in part into the MMC, (1) had no cover texts or invariant sections, and
(2) were thus incorporated prior to November 1, 2008.
.
The operator of an MMC Site may republish an MMC contained in the site
under CC-BY-SA on the same site at any time before August 1, 2009,
provided the MMC is eligible for relicensing.
.
.
ADDENDUM: How to use this License for your documents
.
To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
.
Copyright (c) YEAR YOUR NAME.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled "GNU
Free Documentation License".
.
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the "with...Texts." line with this:
.
with the Invariant Sections being LIST THEIR TITLES, with the
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
.
If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
.
If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.
License: unicode-dfs-2016
COPYRIGHT AND PERMISSION NOTICE
.
Copyright © 1991-2024 Unicode, Inc.
.
NOTICE TO USER: Carefully read the following legal agreement. BY
DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
.
Permission is hereby granted, free of charge, to any person obtaining a
copy of data files and any associated documentation (the "Data Files") or
software and any associated documentation (the "Software") to deal in the
Data Files or Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, and/or sell
copies of the Data Files or Software, and to permit persons to whom the
Data Files or Software are furnished to do so, provided that either (a)
this copyright and permission notice appear with all copies of the Data
Files or Software, or (b) this copyright and permission notice appear in
associated Documentation.
.
THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
THIRD PARTY RIGHTS.
.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
FILES OR SOFTWARE.
.
Except as contained in this notice, the name of a copyright holder shall
not be used in advertising or otherwise to promote the sale, use or other
dealings in these Data Files or Software without prior written
authorization of the copyright holder.
License: LGPL-2+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the complete text of the GNU Library General Public License
version 2 can be found in "/usr/share/common-licenses/LGPL-2".
License: LGPL-2.1+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the complete text of the GNU Lesser General Public License
version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1".
License: LGPL-3
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
.
.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
.
0. Additional Definitions.
.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
.
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
.
1. Exception to Section 3 of the GNU GPL.
.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
.
2. Conveying Modified Versions.
.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
.
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
.
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
.
3. Object Code Incorporating Material from Library Header Files.
.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
.
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
.
4. Combined Works.
.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
.
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
.
d) Do one of the following:
.
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
.
5. Combined Libraries.
.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
.
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
.
6. Revised Versions of the GNU Lesser General Public License.
.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
License: isc
Copyright <YEAR> <OWNER>
.
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
.
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
License: public-domain
This file is in the public domain.
|