finished(ish) clscan, first proper --scan run
authorIan Beckwith <ianb@erislabs.net>
Thu, 10 Sep 2009 00:03:48 +0000 (01:03 +0100)
committerIan Beckwith <ianb@erislabs.net>
Thu, 10 Sep 2009 00:03:48 +0000 (01:03 +0100)
debian/clscan/clscan
debian/clscan/files.yaml [deleted file]
debian/clscan/new.txt [new file with mode: 0644]
debian/copyright.new [deleted file]

index fd7413b..37cbe36 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
-# Ian Beckwith <ianb@erislabs.net>
-#
+# Copyright 2009 Ian Beckwith <ianb@erislabs.net>
+# License: GPL v2 or later.
 
 use strict;
 use vars qw($me);
@@ -59,11 +59,11 @@ sub write_copyright
     {
        die("$me: no files known, run $0 --scan\n");
     }
-    unless(copy($COPYRIGHTSTUB, "debian/copyright.new"))
+    unless(copy($COPYRIGHTSTUB, "debian/copyright"))
     {
        die("$me: cannot copy $COPYRIGHTSTUB to debian/copyright: $!\n");
     }
-    unless(open(COPYRIGHT, ">>debian/copyright.new"))
+    unless(open(COPYRIGHT, ">>debian/copyright"))
     {
        die("$me: cannot append to debian/copyright: $!\n");
     }
@@ -77,26 +77,37 @@ sub write_copyright
        my $license_text=$files->{$file}->{license_text};
        push(@{$licenses->{$license}->{$license_text}->{$copyright}}, $file);
     }
+    my %refs=();
+    my $refnum=0;
     for my $license (sort keys(%$licenses))
     {
        for my $license_text (sort keys(%{$licenses->{$license}}))
        {
+           my $licensestr=$license;
+           if(length($license_text))
+           {
+               $refnum++;
+               $licensestr .= " (REF$refnum)";
+               $refs{$licensestr}=$license_text;
+           }
            for my $copyright (sort keys(%{$licenses->{$license}->{$license_text}}))
            {
                next if(!length($license) && !length($copyright) && !length($license_text));
                my @filelist=sort @{$licenses->{$license}->{$license_text}->{$copyright}};
                print COPYRIGHT "Files: ", join(', ', @filelist), "\n";
                print COPYRIGHT "Copyright: $copyright\n" if length($copyright);
-               print COPYRIGHT "License: $license\n" if length($license);
-               if(length($license_text))
-               {
-                   my @text=split(/\n/, $license_text);
-                   print COPYRIGHT map { "    " . $_ . "\n" } @text;
-               }
+               print COPYRIGHT "License: $licensestr\n" if length($licensestr);
                print COPYRIGHT "\n";
            }
        }
     }
+    for my $ref (keys(%refs))
+    {
+       print COPYRIGHT "License: $ref\n";
+       my @text=split(/\n/, $refs{$ref});
+       print COPYRIGHT map { "    " . $_ . "\n" } @text;
+       print COPYRIGHT "\n";
+    }
     print COPYRIGHT license_trailer(sort keys(%$licenses));
     close(COPYRIGHT);
 }
@@ -142,83 +153,6 @@ TYPE: for my $type (keys(%$license_data))
 }
 
 
-sub merge_new
-{
-    unless(open(NEW, $NEWFILES))
-    {
-       die("$me: $NEWFILES: cannot open: $!\n");
-    }
-    my $license='';
-    my $copyright='';
-    my $hash='';
-    my $file='';
-    my $license_text='';
-    my $in_license_text=0;
-    my $line=0;
-    while(<NEW>)
-    {
-       $line++;
-       chomp;
-       next if(/^\s*$/);
-       next if(/^\s*\#/);
-       if($in_license_text && /^\s+(.*)/)
-       {
-           $license_text .= "\n" . $1;
-       }
-       elsif(/^File:\s*(.*)/)
-       {
-           my $newfile=$1;
-           # save previous entry
-           if(length($file) && length($hash))
-           {
-               $files->{$file}={ hash=>$hash,
-                                 copyright=>$copyright,
-                                 license=>$license,
-                                 license_text=>$license_text };
-           }
-           $file=$newfile;
-           $license='';
-           $copyright='';
-           $hash='';
-           $license_text='';
-       }
-       elsif(/^Hash:\s*(.*)/)
-       {
-           $hash=$1;
-       }
-       elsif(/^Copyright:\s*(.*)/)
-       {
-           $copyright=$1;
-       }
-       elsif(/^License:\s*(.*)/)
-       {
-           $license=$1;
-       }
-       elsif(/^License_text:\s*(.*)/)
-       {
-           $in_license_text=1;
-           $license_text=$1;
-       }
-       elsif($in_license_text && /^\s+(.*)/)
-       {
-           $license_text .= "\n" . $1;
-       }
-       else
-       {
-           warn("$me: $file: line $line not recognized\n");
-       }
-    }
-    close(NEW);
-    # save last entry
-    if(length($file) && length($hash))
-    {
-       $files->{$file}={ hash=>$hash,
-                         copyright=>$copyright,
-                         license=>$license,
-                         license_text=>$license_text };
-    }
-}
-
 sub guess_license
 {
     my $file=shift;
@@ -318,8 +252,6 @@ sub wanted
 sub get_filenames
 {
     find(\&wanted, ".");
-#    find(\&wanted, "lib/uniname");
-#    find(\&wanted, "lib/uniconv");
 }
 
 sub load_cache
@@ -390,6 +322,83 @@ sub write_new
     close NEW;
 }
 
+sub merge_new
+{
+    unless(open(NEW, $NEWFILES))
+    {
+       die("$me: $NEWFILES: cannot open: $!\n");
+    }
+    my $license='';
+    my $copyright='';
+    my $hash='';
+    my $file='';
+    my $license_text='';
+    my $in_license_text=0;
+    my $line=0;
+    while(<NEW>)
+    {
+       $line++;
+       chomp;
+       next if(/^\s*$/);
+       next if(/^\s*\#/);
+       if($in_license_text && /^\s+(.*)/)
+       {
+           $license_text .= "\n" . $1;
+       }
+       elsif(/^File:\s*(.*)/)
+       {
+           my $newfile=$1;
+           # save previous entry
+           if(length($file) && length($hash))
+           {
+               $files->{$file}={ hash=>$hash,
+                                 copyright=>$copyright,
+                                 license=>$license,
+                                 license_text=>$license_text };
+           }
+           $file=$newfile;
+           $license='';
+           $copyright='';
+           $hash='';
+           $license_text='';
+       }
+       elsif(/^Hash:\s*(.*)/)
+       {
+           $hash=$1;
+       }
+       elsif(/^Copyright:\s*(.*)/)
+       {
+           $copyright=$1;
+       }
+       elsif(/^License:\s*(.*)/)
+       {
+           $license=$1;
+       }
+       elsif(/^License_text:\s*(.*)/)
+       {
+           $in_license_text=1;
+           $license_text=$1;
+       }
+       elsif($in_license_text && /^\s+(.*)/)
+       {
+           $license_text .= "\n" . $1;
+       }
+       else
+       {
+           warn("$me: $file: line $line not recognized: $_\n");
+       }
+    }
+    close(NEW);
+    # save last entry
+    if(length($file) && length($hash))
+    {
+       $files->{$file}={ hash=>$hash,
+                         copyright=>$copyright,
+                         license=>$license,
+                         license_text=>$license_text };
+    }
+}
+
 sub find_deleted
 {
     my @deleted=();
@@ -422,8 +431,10 @@ sub backup
 sub usage
 {
     die("usage: $me [--scan] [--merge]\n",
-       "  --scan      Scan for new files & files with changed copyright headers\n",
-       "              Writes to debian/clscan/new.txt for manual review.\n",
-       "  --merge     Merges new data from debian/clscan/new.txt\n",
-       "              Writes updated debian/copyright.\n");
+       "scans for changed copyright/licenses\n",
+       "  -s|-scan      Scan for new files & files with changed copyright headers\n",
+       "                Writes to debian/clscan/new.txt for manual review.\n",
+       "  -m|--merge    Merges new data from debian/clscan/new.txt\n",
+       "  -w|--write    Writes updated debian/copyright.\n",
+       "                --merge implies --write.\n");
 }
diff --git a/debian/clscan/files.yaml b/debian/clscan/files.yaml
deleted file mode 100644 (file)
index 3531010..0000000
+++ /dev/null
@@ -1,33981 +0,0 @@
---- 
-./COPYING: 
-  copyright: Free Software Foundation, and
-  hash: 60c25a32bddb8e12cdd819cc29ec9a6d941431c6a013a71e2878536fa16d4dd7
-  license: ''
-  license_text: ''
-./ChangeLog: 
-  copyright: ''
-  hash: 0fc0c9c0235be8c8ba21d40facf534e03437b77886effa77a634fc9a1929b3e8
-  license: ''
-  license_text: ''
-./DEPENDENCIES: 
-  copyright: ''
-  hash: 3c8640aeff44fe6c30a27836e926fcaa6f6a5f4d35d8c540f71f7c568cf60d4f
-  license: ''
-  license_text: ''
-./MODULES.html.sh: 
-  copyright: 2002-2009 Free Software Foundation, Inc
-  hash: 30633aa046887d3d7c2edee238d5e009b260d8eaec001809cdcdcef205089d59
-  license: "GPL-3+ "
-  license_text: ''
-./Makefile: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 7ad5a3ccd8892f7a29384dd4ed455a2c57cdadf2624c943f51127745751ffbe7
-  license: ''
-  license_text: ''
-./NEWS: 
-  copyright: ''
-  hash: 141ae5843fb9df760bf1e31402eb714cf1261d9c6db16e4db30aeba3acf9e663
-  license: ''
-  license_text: ''
-./README: 
-  copyright: ''
-  hash: 3da1ae1f2de3a84a70abca2325e281203ffe123afbc003420697463b56efd35c
-  license: ''
-  license_text: ''
-./build-aux/announce-gen: 
-  copyright: 2002-2009 Free Software Foundation, Inc
-  hash: 9ebe62448e2c3a71f08521ec64d65dd561761e446347edc914f396fe810040ba
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/bootstrap: 
-  copyright: 2003-2009 Free Software Foundation, Inc
-  hash: f97568fc9b26977bf8aa781f26a1f5df7c9e5dc7c8d9a4e54e2c8d7892765096
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/bootstrap.conf: 
-  copyright: 2006, 2007 Free Software Foundation, Inc
-  hash: 95cc00b43d60d3bff61561355253d777ac82e105338bf23faf29168086d392c2
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/compile: 
-  copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software
-  hash: 1a1d949ff906c036a902a8021154e8f127f6bdeaa7b22843a9bd13badc24253a
-  license: GPL GENERATED FILE
-  license_text: ''
-./build-aux/config.guess: 
-  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999 / 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
-  hash: 1fc09da52d50a533ff9166226320f69603e3c5189271118a66d0cc514e6a3d71
-  license: GPL-2+ GENERATED FILE
-  license_text: ''
-./build-aux/config.libpath: 
-  copyright: 1996-2008 Free Software Foundation, Inc
-  hash: ac72222f705d2427683a67b643cf25045db2915ab66319cf535c68b847472ad3
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./build-aux/config.rpath: 
-  copyright: 1996-2008 Free Software Foundation, Inc
-  hash: c52259321cfea86c34876e34db5356168f319d7f0dda0fd76efa9dce5e6fea4d
-  license: ''
-  license_text: ''
-./build-aux/config.sub: 
-  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
-  hash: 6e2b7e1143d443ea670be8edea2db4d9a6ac57e6f22aa4a88443959ab8ad42c7
-  license: GPL-2+ GENERATED FILE
-  license_text: ''
-./build-aux/csharpcomp.sh.in: 
-  copyright: 2003-2006 Free Software Foundation, Inc
-  hash: 13d53b69f8e2663d2abeb4053b3cd45b2b3f99563e826a5fd67abcf4ac201e22
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/csharpexec.sh.in: 
-  copyright: 2003, 2005 Free Software Foundation, Inc
-  hash: 08e6e1564fcf7509ae893ac7b3121aa831344458a4ff420c1994918d9792b151
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/depcomp: 
-  copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
-  hash: ab3cbcc8d9b25ff49daba60a573055149a8330158ab61b0602538a1cdf27e9f8
-  license: GPL GENERATED FILE
-  license_text: ''
-./build-aux/elisp-comp: 
-  copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software
-  hash: 650765cd58e0b384cc47b3c257ea4955be8b26117eb05106cd7a39ef002314ed
-  license: GPL GENERATED FILE
-  license_text: ''
-./build-aux/gendocs.sh: 
-  copyright: 2009 Free Software Foundation, Inc / 2003, 2004, 2005, 2006, 2007, 2008, 2009
-  hash: 203ece29ab9caad64ebd3b3a75725444676b43bd66f2f22b8fc836c5bab0ec78
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/git-version-gen: 
-  copyright: 2007-2008 Free Software Foundation
-  hash: a08c7e5c0619d75de3d15e0bdf4ff226dc7f5a89a1e3c6f7b1d5b664b96cf692
-  license: "GPL "
-  license_text: ''
-./build-aux/gitlog-to-changelog: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: 9cca6130908ff793b8a1af70cc476f55970e378cddd4177d5a602decbeb94542
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/gnupload: 
-  copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
-  hash: bff7381ec4c19e81634ea630fca8a053cfe1333142662cd70b32c4fe46f3e36e
-  license: "GPL "
-  license_text: ''
-./build-aux/install-reloc: 
-  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: 613894d1c2a2855e0f3eb82986175598d077c45c05dbac2f339031487a83f4e4
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/install-sh: 
-  copyright: 1994 X Consortium
-  hash: 5dcf8a8dd376f4c95767a2dcb626e89a66d6f2fda2352f534a296ac6cc9a20b3
-  license: "MIT/X11 (BSD like) "
-  license_text: ''
-./build-aux/javacomp.sh.in: 
-  copyright: 2001-2002, 2006 Free Software Foundation, Inc
-  hash: a2fa68883ebe7994ced1edf628a9c6cb6d79ef3edfd0c14996e1e14ef0d7c4c6
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/javaexec.sh.in: 
-  copyright: 2001, 2006 Free Software Foundation, Inc
-  hash: 8b8c346d69504f34a6426de103455a52b09deb2a0c5a74bb8d4368cad9d6b8d4
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/ldd.sh.in: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 6bfa3933015b9b05e431eb13f03e5297cc73bb56bc426d811f1fa41ec7844650
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/link-warning.h: 
-  copyright: ''
-  hash: cb78032cfaf626adb1bc97576502516519b4888988a51aaa1c4963817b48b0e2
-  license: ''
-  license_text: ''
-./build-aux/mdate-sh: 
-  copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free
-  hash: ae36e3c36cd08de4a5aaadc7311d0863108cbc4fcda21b18e902f6218e675035
-  license: GPL GENERATED FILE
-  license_text: ''
-./build-aux/missing: 
-  copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006
-  hash: d8c7220550f4985316cb4c11d4c304b84debd55902b7528ad3f944a478f0c90e
-  license: GPL GENERATED FILE
-  license_text: ''
-./build-aux/mkinstalldirs: 
-  copyright: ''
-  hash: fbad76aa017d3ccba0cfd78db353d5c15c571f4617320fd53b7ee67c788cbc65
-  license: ''
-  license_text: ''
-./build-aux/mktempd: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 5c32320b58d10b6b74af578eb9a1bf5015360211ac2b2932f4303648b3e7a354
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/move-if-change: 
-  copyright: 2007 Free Software Foundation, Inc / 2002-2007 Free Software Foundation, Inc
-  hash: 804812198e7aadc810a167cc8015b32770e16ac23315a92f8ce3bba2c1ecbfe1
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/ncftpput-ftp: 
-  copyright: 2008 Free Software Foundation
-  hash: 462b4e7cc8f6796fd32420382ed3f3f5e2246d58bd186469614dcd8d3a89a239
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/pmccabe.css: 
-  copyright: ''
-  hash: 0d101dc42f369f71b997fc77eb3bc11d765e5c437b6824ef244bda483f9a1c48
-  license: ''
-  license_text: ''
-./build-aux/pmccabe2html: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: a93c5cea3b0bf8641cfbe982861478458a8419d5adffa3e4e88c5c5450d54ebe
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/po/Makefile.in.in: 
-  copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
-  hash: 5580fc36bc0f59414a3844a04f9f2f4185bddc3a262525fa98898da44a4a9e95
-  license: ''
-  license_text: ''
-./build-aux/po/remove-potcdate.sin: 
-  copyright: ''
-  hash: ff1cc3a86fdab7c5764e80f794afd6f5e81d05421c0e52dc27c4cc93e9546f19
-  license: ''
-  license_text: ''
-./build-aux/reloc-ldflags: 
-  copyright: 2003 Free Software Foundation, Inc
-  hash: 7455efaa7fbcc667838f3599223fba7bddc4873e38527f938e7168c709602ffb
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./build-aux/relocatable.sh.in: 
-  copyright: 2003, 2005-2007 Free Software Foundation, Inc
-  hash: 9999da027001765970462a1eefc6bb884cbed4f8e7c548585f0b21c86e9851da
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/texinfo.tex: 
-  copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995
-  hash: 6e6bda9f2252f034e86fb076cb53b27dbe4b35c676205310c46642a86d6bf51d
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/update-copyright: 
-  copyright: target rule in maint.mk from gnulib's / 1990-2005, 2007-2009 Free Software / statement is not recognized because the / statements to be updated. For example, you might wish to / &copy; 90,2005,2007-2009 / statement must be formated correctly in / year list to include the current year / 2009 Free Software Foundation, Inc / year intervals. (See "Environment variables" / @{} 1990-2005, 2007-2009 Free Software / statement is recognized in a file and the final
-  hash: a49986e631d5bcdc1ae01896d48c4012ff114f92427b2290dc166a7512804b56
-  license: "GPL "
-  license_text: ''
-./build-aux/useless-if-before-free: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: 3328c2c72241c0c23c28e4c19a5a353b08e308334956478cce81534a6a5cf7e2
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/vc-list-files: 
-  copyright: $year Free Software Foundation, Inc / 2006-2009 Free Software Foundation, Inc
-  hash: 37cfcaca7e77bc33ad04c6bc2f69980b41136c6610fa24b30dd929126d28e8eb
-  license: "GPL-3+ "
-  license_text: ''
-./build-aux/x-to-1.in: 
-  copyright: 2001, 2003, 2006 Free Software Foundation, Inc
-  hash: 435c01c15a67e002b489e7cd3ceaa0680f4817e6410f07f8209bc67a061f9498
-  license: "GPL-3+ "
-  license_text: ''
-./check-module: 
-  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc / 2006 Free Software Foundation, Inc.\n"
-  hash: 0773e749793f3ec28522fb356985b4f51ce4d7f17b99c7f1ec92a80bfff8b026
-  license: "GPL-3+ "
-  license_text: ''
-./config/argz.mk: 
-  copyright: 1995-1998, 2000-2002, 2006 Free Software Foundation, Inc."\
-  hash: 6931c96d920bb98e9705beea49aa8e61ce728439d16bcc702289e9f16d04fe90
-  license: "GPL "
-  license_text: ''
-./config/srclist-update: 
-  copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc
-  hash: 07d2f67dd25798899d772b1db8639368147e43615c175443b9d8720f7ae0d428
-  license: "GPL-3+ "
-  license_text: ''
-./config/srclist.txt: 
-  copyright: ''
-  hash: 82bb09655cee0a765f990da640454c5099c5e49f722a0d14d35fde12270d2983
-  license: ''
-  license_text: ''
-./config/srclistvars.sh: 
-  copyright: 2002, 2003, 2004 2005, 2006, 2008
-  hash: 009a6f6d36cf2b47a67c2e404d912b491cb310a8653631b8302a8691da1b7f6b
-  license: "GPL-3+ "
-  license_text: ''
-./doc/COPYING.LESSERv2: 
-  copyright: the / 1991, 1999 Free Software Foundation, Inc
-  hash: c5e2ab2668641c2e13afa9e23551ae614f835ac715d30aec90e5d7bada5ecbff
-  license: ''
-  license_text: ''
-./doc/COPYING.LESSERv3: 
-  copyright: 2007 Free Software Foundation, Inc. <http://fsf.org/>
-  hash: f5b4a69119b8d0acfc04d77831874f339432846e9ed129e412b15fb328c9d2c6
-  license: ''
-  license_text: ''
-./doc/COPYINGv2: 
-  copyright: 1989, 1991 Free Software Foundation, Inc. / the software, and
-  hash: 2b241f6064bd3616cb72a4d0c6dae9821c891d4c8fd63493b6ad9933c3be72c9
-  license: ''
-  license_text: ''
-./doc/COPYINGv3: 
-  copyright: on the software, and (2) offer you this License / 2007 Free Software Foundation, Inc. <http://fsf.org/>
-  hash: cbf8d8990150fe3b4cd5e988bb081217b05d988766f352fed4de6d2e5a35a58e
-  license: ''
-  license_text: ''
-./doc/Copyright/assign.changes.manual: 
-  copyright: holder so / to the Foundation is to sign an assignment / on the new version
-  hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
-  license: ''
-  license_text: ''
-./doc/Copyright/assign.future.manual: 
-  copyright: holder so / to the Foundation is to sign an assignment / on the new version
-  hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
-  license: ''
-  license_text: ''
-./doc/Copyright/assign.manual: 
-  copyright: on this manual to the Foundation is to / interest
-  hash: fc744c2d1b5aa2c596922b17b46b760d852e99717883fe9fd547d5f5bd318a9c
-  license: ''
-  license_text: ''
-./doc/Copyright/assign.translation.manual: 
-  copyright: on the new version. I'm assuming that you / holder so that / to the Foundation is to sign an assignment
-  hash: 5fd32468982f7402a68b288a2906b1351ffe45a2bb839b5ae13ab97a63827460
-  license: ''
-  license_text: ''
-./doc/Copyright/conditions.text: 
-  copyright: holder, the Foundation can sue anyone who tries to / to the Free Software Foundation / laws, even though / means signing a contract that makes the Free / law for helping / to defend users' freedom, by means
-  hash: a0ea940fa380501407151c5ccd168afabc1749eab7ed1ccda3b32b2b85b9255a
-  license: ''
-  license_text: ''
-./doc/Copyright/disclaim.changes.manual: 
-  copyright: interest in my
-  hash: 757e8f68162152a11f39cc06de884e60f95476ecd4cd382194c22af4d7c2dbfe
-  license: ''
-  license_text: ''
-./doc/Copyright/disclaim.manual: 
-  copyright: interest in my / interest
-  hash: 8bb37e0674a0a2ffd0a89682057126b8e58280dde15573436bf8b307c5db7c92
-  license: ''
-  license_text: ''
-./doc/Copyright/disclaim.program: 
-  copyright: interest in my / interest
-  hash: 1004a718603464ea52341822431714f6de8c4bdcf58f20f53f418a13c0457c30
-  license: ''
-  license_text: ''
-./doc/Copyright/request-assign.changes: 
-  copyright: registration, what country are you a citizen of?]
-  hash: 2ba32591db9fee4f110bdbcbe22f674ab921b555585aa905d212b9c56b4c01c4
-  license: ''
-  license_text: ''
-./doc/Copyright/request-assign.future: 
-  copyright: registration, what country are you a citizen of?]
-  hash: 9ba7d169c4fc06b01a773daf5ff5c2a9b2e52ac0b79a3d41aa123c51c9755a03
-  license: ''
-  license_text: ''
-./doc/Copyright/request-assign.program: 
-  copyright: ''
-  hash: f1c1a0ce3e67f88c09551e5dde215d5bf03022945d5fce5d47eb781f971a6699
-  license: ''
-  license_text: ''
-./doc/Copyright/request-disclaim.changes: 
-  copyright: ''
-  hash: 5d1569edac388e95ffe46d8a867730615f1a0ff33075596038d3e7a3eb06ee36
-  license: ''
-  license_text: ''
-./doc/INSTALL: 
-  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
-  hash: 71a35b239f3b448ef8b27fd63a6722f5cbec0a5bc5f700deb5038afa3caa84ba
-  license: ''
-  license_text: ''
-./doc/INSTALL.ISO: 
-  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
-  hash: 6e5a01010be07ff0d4d534b3b790b151a8e39cbc596c45033bf1d82ec269eed6
-  license: ''
-  license_text: ''
-./doc/INSTALL.UTF-8: 
-  copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
-  hash: 0b6f2758c270e39f2120bc2beb256a3dcdd878e3ab6f36c81cfe1110d4a65fbb
-  license: ''
-  license_text: ''
-./doc/Makefile: 
-  copyright: 2004, 2006-2009 Free Software Foundation, Inc
-  hash: e588412f4808f445922802b7c5310650b2edc4fc1d22da096884812313562f82
-  license: ''
-  license_text: ''
-./doc/README: 
-  copyright: ''
-  hash: 5eb4b0ac21e256e6b201f1d6038cfc9fe8c0d168484e6471bda54699c84b88c9
-  license: ''
-  license_text: ''
-./doc/acl-cygwin.txt: 
-  copyright: ''
-  hash: 7512950629f04d795e20ac566c5fc7f846b829a09031acfd3ba424841e3f6e71
-  license: ''
-  license_text: ''
-./doc/acl-resources.txt: 
-  copyright: ''
-  hash: 65da96ac4e110970dd7bee204441e94d575e83310791c7f95365082981b55962
-  license: ''
-  license_text: ''
-./doc/agpl-3.0.texi: 
-  copyright: "@{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer"
-  hash: 77c3f2a9718accc065836d61cf2575b50220f1f3c121e281fec0a06ee3ad8b46
-  license: ''
-  license_text: ''
-./doc/alloca-opt.texi: 
-  copyright: 2004, 2007 Free Software Foundation, Inc
-  hash: ba0ad6232fbf3ba81b9dece15497df973cbcf4a4b7e2295ca66b0bed803d82da
-  license: ''
-  license_text: ''
-./doc/alloca.texi: 
-  copyright: 2004, 2007 Free Software Foundation, Inc
-  hash: abaafa45b821b2064d735be4848a476c92e67742811e7c991eefbf8b0314210c
-  license: ''
-  license_text: ''
-./doc/c-ctype.texi: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 02681cc5ffcc4bb503782c8ce7f5b053f524a61d77b10dfd3c8d29e8696a8cd5
-  license: ''
-  license_text: ''
-./doc/c-strcase.texi: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 12a8966489a243d56b5727a843e8d199ce1be4cbddf810d6e0546fc0d47c0db9
-  license: ''
-  license_text: ''
-./doc/c-strcaseeq.texi: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 07a09de098c41135d2b8c252e34d16942a2df705d4165259604efc2bc89f32df
-  license: ''
-  license_text: ''
-./doc/c-strcasestr.texi: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 28f551e29d750587564a6c9d605d880b4adc908e73ba20486dad95089bcbe988
-  license: ''
-  license_text: ''
-./doc/c-strstr.texi: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: dc0b4e2b4ae14f6c0b231a1cb517386171cdd2e79bad16e5c8468a6d3f05d863
-  license: ''
-  license_text: ''
-./doc/c-strtod.texi: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: f12b034c095af6fedebe50970c03692a308cd6d76c710040021e05e14111d0e6
-  license: ''
-  license_text: ''
-./doc/c-strtold.texi: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: acd8d275bc49ba09e74845ef9ab62f76fe1ec2a82b7358a85790af57c33de3eb
-  license: ''
-  license_text: ''
-./doc/ctime.texi: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: c54a4356bb5de6dc3dd73b82b8ba0e40975a2cf465b639f8cf8456097c6f8658
-  license: ''
-  license_text: ''
-./doc/error.texi: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: a5f78c9c537fb0dbb6b9d6740073f5c7cf4f1bc3af0531c33806fbfd624de688
-  license: ''
-  license_text: ''
-./doc/fdl-1.2.texi: 
-  copyright: law / holder saying it can be / @{} 2000,2001,2002 Free Software Foundation, Inc
-  hash: 6f673a8c0082124229a9a100543bd41368cfe3db307ab0db0b89cf84c611cf1b
-  license: ''
-  license_text: ''
-./doc/fdl-1.3.texi: 
-  copyright: law / holder saying it can be / @{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc
-  hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
-  license: ''
-  license_text: ''
-./doc/fdl.texi: 
-  copyright: law / holder saying it can be / @{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc
-  hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
-  license: ''
-  license_text: ''
-./doc/func.texi: 
-  copyright: ''
-  hash: f8cd19fcf35037aa6fd49e493bd85eb6f696afa87e1bc56fbf2ee045329f20e7
-  license: ''
-  license_text: ''
-./doc/gcd.texi: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: aa4594d335a46b562a96ebd76cabc7451a3ba2737bf0b032f1b66f18ab3fc5cb
-  license: ''
-  license_text: ''
-./doc/gendocs_template: 
-  copyright: ''
-  hash: 61dc5a61685d6ce9d5377c109bba5dc71089a86add68e14628f17ca13697d849
-  license: ''
-  license_text: ''
-./doc/gendocs_template_min: 
-  copyright: ''
-  hash: 8599a5f69e6110fe324e413e04c4920db1f37a9becf5db55f27a6d132bbfb8b2
-  license: ''
-  license_text: ''
-./doc/getdate.texi: 
-  copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
-  hash: b49cb20e0eb9f85da9aeb64338b8442bd47b45259faf2e6fce118e6c90af6579
-  license: ''
-  license_text: ''
-./doc/glibc-functions/accept4.texi: 
-  copyright: ''
-  hash: b17ebc577f3ee392f19100a7b506ff1a38cc1328a92bea909d6d34690aa2bed2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/acct.texi: 
-  copyright: ''
-  hash: d37daf7575d441486ace90191eefb3bea667e4d10eff5e8a14a8c41493b0fab8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/addmntent.texi: 
-  copyright: ''
-  hash: 859dc5755ca851474f5acfa8db53055f59573e5bbaf332b8dd8e5754fda11b50
-  license: ''
-  license_text: ''
-./doc/glibc-functions/addseverity.texi: 
-  copyright: ''
-  hash: 6e44d5223f4987a83f8c4db55cfdc1f9e81c6d998c1853716aba498d5d9a1535
-  license: ''
-  license_text: ''
-./doc/glibc-functions/adjtime.texi: 
-  copyright: ''
-  hash: cbc4f68c7f77addbdc16bd13629e75db5fcff64a0567488ceb04a9459e6b992d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/adjtimex.texi: 
-  copyright: ''
-  hash: 5c618ea0205407dfab68f9bf13e88e944c25e7be821a02d1e42f49998b5ed63b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/advance.texi: 
-  copyright: ''
-  hash: 83424853aeaa0dbc7252aa0ae47b7e9f9b633576a94942c0519d53e8e4fbf526
-  license: ''
-  license_text: ''
-./doc/glibc-functions/aio_init.texi: 
-  copyright: ''
-  hash: 9776ff627d5968a12d86d200038f926555e224daed04cde21769fc19b58856f7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_err_exit_status.texi: 
-  copyright: ''
-  hash: 5ad7e936e9599c8501ca2844805be318d773b5d5c7e96714c730596e5bf02292
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_error.texi: 
-  copyright: ''
-  hash: 72fdeba016c2e94cd219221fd18adfb4d13c5ba9759e2a0ec006c587799f0239
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_failure.texi: 
-  copyright: ''
-  hash: 0f61197bb59045af63a046f1456ddcc1efe393b7d73e170c2c112ac960feedd3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_help.texi: 
-  copyright: ''
-  hash: 773dd3780b48dabb78efa3e3f644e7c823f67de3b7e87ec93b0ec5cac2323bfc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_parse.texi: 
-  copyright: ''
-  hash: 3ca5263fc5663150b7dc9362a3114bd350d03d1e3e5be932c07299810577ebe2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_program_bug_address.texi: 
-  copyright: ''
-  hash: 3abb0a66f95fb062ec1970dbc8bf29e7fbf683b64d7334d38c1c58e2e175a8ec
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_program_version.texi: 
-  copyright: ''
-  hash: ff08b5d2808dc3501de2605f1631bd2e0a60676ba06b47d3a6faa09728c9989f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_program_version_hook.texi: 
-  copyright: ''
-  hash: 7a8f425b15b7e6abda323db20c96f40c5b56729b1bd3ddb9ab1f2130c590935c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_state_help.texi: 
-  copyright: ''
-  hash: 10e9a562637cf6c60d5b43a4e8512e74cd9a74db87707e628300d49e0e4f2512
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argp_usage.texi: 
-  copyright: ''
-  hash: ece258de9630be5b079b97514e35aca806a96c4ebff29277d1c07379649f5e7d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_add.texi: 
-  copyright: ''
-  hash: 18f2bcea93aa6152c099688d18a0b6ae9f76590ab025af5ec39e16865f55f96c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_add_sep.texi: 
-  copyright: ''
-  hash: 3cdf339fc9645ea7cdac7064100ed6a6fecefa47e48581d2c75e8335220b9fcd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_append.texi: 
-  copyright: ''
-  hash: ae244a6da5f6ca8ef7107924f21425880f8154ab51c14f8fb43be0f5bb7c4f52
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_count.texi: 
-  copyright: ''
-  hash: 599ba24548a6631c721c4a913df6101ad0f19f0f7bfecd4549cc20fba44c1252
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_create.texi: 
-  copyright: ''
-  hash: 6b7edc8f20ff0749926679da311d9d61a120537cb7e071ee58074a4646d19ca8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_create_sep.texi: 
-  copyright: ''
-  hash: ecd63dedd9dabcd06f22d5430d23801af84b2cfd41025684200edc2f9f951256
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_delete.texi: 
-  copyright: ''
-  hash: c5327fcde9bb049ceb161f6953d623b95ee853ed45e9616599b6acc5b2097039
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_extract.texi: 
-  copyright: ''
-  hash: a09a50dff90d595c24ae23bdccfbb09746c37bffdc88cc2b94d1864b1a9e738b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_insert.texi: 
-  copyright: ''
-  hash: 85103c1f755497213b705dcb1ecf79bf4d7564fe11243f89c5a611b642a6dde3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_next.texi: 
-  copyright: ''
-  hash: 254e88751b133e09414abfe834861a0459847c67e138f81405303735f07fdf9e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_replace.texi: 
-  copyright: ''
-  hash: f9fc8e8e0ef61fb433d129ebe214dbceab9d516d9500a9721fccc477e35cd882
-  license: ''
-  license_text: ''
-./doc/glibc-functions/argz_stringify.texi: 
-  copyright: ''
-  hash: 2e019d0347b285bd91926d5e328effc134b65090ca4bdb5bed2e6ec696baea24
-  license: ''
-  license_text: ''
-./doc/glibc-functions/asprintf.texi: 
-  copyright: ''
-  hash: 4d17afdfffec5aaf5d84729b98b8b39011e25b70ce4a732557fcbb77ec8941e9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/authdes_create.texi: 
-  copyright: ''
-  hash: af49562730f4bc1eae2bf729db613caedd3c19062f2e837d3c451c9dbbe0bf6d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/authdes_getucred.texi: 
-  copyright: ''
-  hash: 3962401affaa1079d18bf6751923e893ff9ad89ac80ef2a1e4319d506af10472
-  license: ''
-  license_text: ''
-./doc/glibc-functions/authdes_pk_create.texi: 
-  copyright: ''
-  hash: 49a5ec10bf2dcafa8d0765e2c3399c5485bda1fe79ab9e8b963d5b9b448df435
-  license: ''
-  license_text: ''
-./doc/glibc-functions/authnone_create.texi: 
-  copyright: ''
-  hash: e2755104eebcd1c86babce2250ea655d235714bacc7ac9af5fff656edbb4ff04
-  license: ''
-  license_text: ''
-./doc/glibc-functions/authunix_create.texi: 
-  copyright: ''
-  hash: 2249d61f5ba791a25990c863209b5e439f4be7bacaa22901a17fca65ff57c5d9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/authunix_create_default.texi: 
-  copyright: ''
-  hash: e2042c8ffb02a472907f345c6a79e7d47ebdb04ccdeda8fcc0d8e0247419d5ef
-  license: ''
-  license_text: ''
-./doc/glibc-functions/backtrace.texi: 
-  copyright: ''
-  hash: 9218fc11f85121754f3dce8759f4abfc2e96678cdcde0b64b8c5bc1dac4784fc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/backtrace_symbols.texi: 
-  copyright: ''
-  hash: 8cd5973763a4a86ca3d03a9cd93b877ccae2393c527f1c27316b5179d6d4a5c9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/backtrace_symbols_fd.texi: 
-  copyright: ''
-  hash: 568caed6a6ac65d5fd1787fd3dffafa08ff544cb3fab9405ebefa12bbe3a264f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/bdflush.texi: 
-  copyright: ''
-  hash: c9d58ca272a569549bccbc6cf430bbd0e3766a2fd96f4f85d28b264e7c3aac4f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/bind_textdomain_codeset.texi: 
-  copyright: ''
-  hash: 99bf7d082540b4e76c5810e19f258198590dcbd8ed95ba7f249e11e2385ebbe5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/bindresvport.texi: 
-  copyright: ''
-  hash: 407362b84b67ca56f509dfede5907a628e1dbc66d95aaf1fade0d8278be1ab76
-  license: ''
-  license_text: ''
-./doc/glibc-functions/bindtextdomain.texi: 
-  copyright: ''
-  hash: 893f7472a65a60adec27ff2fd59fc1b10ef4c8c79721df77b684108c5bd4b3c6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/brk.texi: 
-  copyright: ''
-  hash: 79f13ae11705a8f029f92450cb76d735a551947e2dc605f30eb41181253dcbfd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/bswap_16.texi: 
-  copyright: ''
-  hash: 8637c5832585d431bfc3e334d7b4f7b28dba3867e892c9bb3212b23a83fd7832
-  license: ''
-  license_text: ''
-./doc/glibc-functions/bswap_32.texi: 
-  copyright: ''
-  hash: 45c27263a3c7a55e61f4965f1a769c37aec80440fea88a85fac0c011a534fab0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/bswap_64.texi: 
-  copyright: ''
-  hash: 0c90737dd8475488dfe04bdea14b07139f68b9db3ffe7ef7413b6d0c90aa050f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/callrpc.texi: 
-  copyright: ''
-  hash: b20e0a5aabcff3296d32c26431ce49c9d028ceed0945caea1ac15b3c39b11cc1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/canonicalize_file_name.texi: 
-  copyright: ''
-  hash: 88ff6a4a9c1a9c691748ecbfc050f992518fae1d30dc880577caea53f2fd759c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/capget.texi: 
-  copyright: ''
-  hash: 30ca364f553845f7411c9144e8fc54534e63b47c00f1d2d8b7d42651556ee971
-  license: ''
-  license_text: ''
-./doc/glibc-functions/capset.texi: 
-  copyright: ''
-  hash: 0d46ec1a25dc5ae5c2a09e23c6df148f90bc4f6a3f339202728bc731521a79bc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/cbc_crypt.texi: 
-  copyright: ''
-  hash: 2fafbda5215452dabaecd6ae338b1b42292fc7649957d7dfd53298e125c73aff
-  license: ''
-  license_text: ''
-./doc/glibc-functions/cfmakeraw.texi: 
-  copyright: ''
-  hash: e17dc832db4056f94397e2cca5eebec2b7e7ebbf4dfd1961d7d04c2a54348d78
-  license: ''
-  license_text: ''
-./doc/glibc-functions/cfree.texi: 
-  copyright: ''
-  hash: 3bf2ea530728c4bf2675d2c138bc897e2c61fb86e52eb1aaa5f595ee3ac1334f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/cfsetspeed.texi: 
-  copyright: ''
-  hash: 3fa0159499537d1d12632e4721c20870e24b362744100c8ebf05001ac60def9a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/chroot.texi: 
-  copyright: ''
-  hash: 939c1364cb648d6985389a66cee0f7eafea4bbfeb9d87202357b7a923da9c3c6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clearenv.texi: 
-  copyright: ''
-  hash: 45a56cc1e9cf0437cab4c9d9ef7939585bcd832ff2630a99ac47277be6afa7ea
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clearerr_unlocked.texi: 
-  copyright: ''
-  hash: 18ac3bd638d52e5eea084f0693462f14b38c9236ffa469c9d3523413afead17a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnt_broadcast.texi: 
-  copyright: ''
-  hash: 1c8663af16571cdf3d9365225d9a0e98784cc856191f3febbc639bd263193ca9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnt_create.texi: 
-  copyright: ''
-  hash: 9b8db11b5c1ea0786cad25ac17504a90a35d649d816e719443ded731822eebc4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnt_pcreateerror.texi: 
-  copyright: ''
-  hash: eb667a76af61d29859afcfdcbfe23a1ba8685a7697247f375d88458d6272bd60
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnt_perrno.texi: 
-  copyright: ''
-  hash: ad17b85da3516ff2f72cb23d033c48e8b7a2aac5a02c5d7a01d41c6aa6600db0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnt_perror.texi: 
-  copyright: ''
-  hash: 82cd26d158a5d3c44dece6a886244ce36c49ebeffa26673909de77d5a788b10e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnt_spcreateerror.texi: 
-  copyright: ''
-  hash: 209e1e3f9cdb5fb2ae93d82626397a91f86fc5de7e053a4e9dd9ee984590ac29
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnt_sperrno.texi: 
-  copyright: ''
-  hash: 85facf37092f224547c9b22de2ce7120f6223b123880955f9741d4f1192ef962
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnt_sperror.texi: 
-  copyright: ''
-  hash: 3c5cb03e7db0c9890413fb8274e3e0825571fe513b5c3c4a8a1f381da141440a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clntraw_create.texi: 
-  copyright: ''
-  hash: 369e8f51ad73920a35f5bb49c46788c9676a78b5c1efd70b19cfd8bacfc2e9ea
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clnttcp_create.texi: 
-  copyright: ''
-  hash: 4d775bbea4f66563fecb2274103849755071792c5af93c5f597ecc85ab8899f3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clntudp_bufcreate.texi: 
-  copyright: ''
-  hash: a962c5041725d4a71eba817fb867bd2533442b43a7b467916e11b4d2fcfb6abd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clntudp_create.texi: 
-  copyright: ''
-  hash: b7e0dbcfcc8ab25b818f1f10021ffb0ffe9346f911c9a9d2e6c3831177732fe5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clntunix_create.texi: 
-  copyright: ''
-  hash: 9e698ad851ba6e1fd147fe815aaf57881ff7dc062416604dbf2d545352bfcfff
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clog10.texi: 
-  copyright: ''
-  hash: acd1d6d0a6a71603c0428c8498650814dd43eb9d6baabdc9fd80237f71c3516b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clog10f.texi: 
-  copyright: ''
-  hash: 203698100193133e3bf5e65d9190cc87f10ec2adb8ad31f194c46c6bc5dd8f7c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clog10l.texi: 
-  copyright: ''
-  hash: 82e4a4440dbf9ba56b1f888e1715adc2e915ae8648ef4e9f1e7f35416ed36343
-  license: ''
-  license_text: ''
-./doc/glibc-functions/clone.texi: 
-  copyright: ''
-  hash: a8582f08a00c2362dd1296178cbbf88992b956c0c3b535cf196b0bc2936a9a6b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/crypt_r.texi: 
-  copyright: ''
-  hash: cac89bde4b8094201459b5c860197e43c9d19a1edd5f4d19e61f5ae2388e36c2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/cuserid.texi: 
-  copyright: ''
-  hash: 0a6b5bac9d5e7c8e6bb2e247a67c1a11e93e5a19c3ae107a8a7f6ec904f7da68
-  license: ''
-  license_text: ''
-./doc/glibc-functions/daemon.texi: 
-  copyright: ''
-  hash: 2fd4f418d424f8b9ec2b30aef1ee09500ac5b4be47c7188da99adceaacfbe873
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dcgettext.texi: 
-  copyright: ''
-  hash: 905acd2a435ee383e3a90021092c71b1e0353a4d830f8b3368f44b7e0f16621b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dcngettext.texi: 
-  copyright: ''
-  hash: 25fe3abe9d3c981d8e134eb1eac98ed4d5431cb316b695e9f394e1730882e212
-  license: ''
-  license_text: ''
-./doc/glibc-functions/des_setparity.texi: 
-  copyright: ''
-  hash: 25d06dfb2357289c755d22b55b35fc27d29e2cbd1890ff499f26685f4fd63577
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dgettext.texi: 
-  copyright: ''
-  hash: 77128e568c7dc65aa42f7e606fa4877bc5ed42b1e00fca2a430f035f9cebc529
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dl_iterate_phdr.texi: 
-  copyright: ''
-  hash: 62ea16c0513d25faf9ec94dacddf8fd09577503f95ac512b43dd64272f621007
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dladdr.texi: 
-  copyright: ''
-  hash: a3b59426c942a6c73ba2a3ab0fdca76a02287d69dcd0af66101519b5c9f9d90f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dladdr1.texi: 
-  copyright: ''
-  hash: e173046f4a96855e31bf1e8a5e8c06752872379e66c84803e099a466f56dc35c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dlinfo.texi: 
-  copyright: ''
-  hash: cce858a4949abfcaf32a9011a7bc103723a2e8c5f3f68484d8771ba6041580c4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dlmopen.texi: 
-  copyright: ''
-  hash: 88c9a180c401ca6f03ae86e95becba54896b826306370ca3b8a8507fc8e60f07
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dlvsym.texi: 
-  copyright: ''
-  hash: 26ff4f9d467ee71d017515429de5fbfa4882051545692dbcb1c41de7af914f5f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dn_expand.texi: 
-  copyright: ''
-  hash: 63ce3292ca5569aa0366ad9c7de252d6fe18bafa7a89a5a2df6a635d5803e33f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dngettext.texi: 
-  copyright: ''
-  hash: ab37ed0effb5751971a1b3250c420469fd3bf15abc3ddfcd104904dbeb4580c1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/drand48_r.texi: 
-  copyright: ''
-  hash: 2b593e3e6fd04f9338b7138257ca7619720da7ed3fd534ee3e3a1e430c2785d6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/drem.texi: 
-  copyright: ''
-  hash: 568abf399954900f4cff6dd482ab33c057fe68b9a59bafe4bec9ae73f7865399
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dremf.texi: 
-  copyright: ''
-  hash: aff887dbc137c68938b4349c5ed83048621700344ed2835c697e57fc4be7ffbb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dreml.texi: 
-  copyright: ''
-  hash: 5e5742ed947607742512dfd05cc9ec610d696663893755f51adbce805ccdd0a3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dup3.texi: 
-  copyright: ''
-  hash: 16c23e59c857fb99c7bb7b25fe21d101a640baae3518a4cf20d572e9434992eb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/dysize.texi: 
-  copyright: ''
-  hash: 47a7fd72f74631c010e68a98e309a73c1c98bf25571524e582306739c239555b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ecb_crypt.texi: 
-  copyright: ''
-  hash: f690509aa7eae66e6d744b6d94375a3c735a95b856afbe31631cc213d35a0b4a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ecvt_r.texi: 
-  copyright: ''
-  hash: a3766480ff58d17093f27198c734a920722b79f48f9ad3a220c417d3edce8342
-  license: ''
-  license_text: ''
-./doc/glibc-functions/encrypt_r.texi: 
-  copyright: ''
-  hash: 979cf283d7e89b787857095878553ce9fdd52f37d25528614248c801640a4e3a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endaliasent.texi: 
-  copyright: ''
-  hash: fb6325f2b1786c6daada61f5763b2eabe62ef7167e29c6def8dfec6b29b9efd4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endfsent.texi: 
-  copyright: ''
-  hash: 2ef59b14a9f5b3b4eff8dc92d40599d2989beb3056a9d905f3c287651b2051e7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endmntent.texi: 
-  copyright: ''
-  hash: 902f99fbfabd3d3eaea54807c5d37d8ae32561911a61da4d7d826c453956b788
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endnetgrent.texi: 
-  copyright: ''
-  hash: b561dcd1b6c6b62e9a3a88367b4035c2c7254d8d090337ab0323e327358e23d3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endrpcent.texi: 
-  copyright: ''
-  hash: 2ec149a39480679f19e566cbfe837884852ce67563d81ddb5af842b60a2f7b75
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endspent.texi: 
-  copyright: ''
-  hash: 23caa8ff196980b0fe2091e5ac0cd11117a6bc13a244ba4e59f2afe4d63f808e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endttyent.texi: 
-  copyright: ''
-  hash: 353485a83507aee8c9e0f8d7543cfde2ffd936dd4661252f07a58245a7f06e86
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endusershell.texi: 
-  copyright: ''
-  hash: 3d7510451d51d0337b32959a55732d9db68c360bd0ddf5f7c342657074518413
-  license: ''
-  license_text: ''
-./doc/glibc-functions/endutent.texi: 
-  copyright: ''
-  hash: 1d2126a81c39601d25ce2479b13997eea4be84fe13500e6223a15603a36a7e79
-  license: ''
-  license_text: ''
-./doc/glibc-functions/envz_add.texi: 
-  copyright: ''
-  hash: 929a0bb40555c4cdf9b1d14eeb8e7c789a7a221706e2ee56ea67fb701185641f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/envz_entry.texi: 
-  copyright: ''
-  hash: 28cf6f28a93c0ade5125892036a65037b8be5e0b2265132a56172664cb295d70
-  license: ''
-  license_text: ''
-./doc/glibc-functions/envz_get.texi: 
-  copyright: ''
-  hash: 73dcfdab7c19f3e3b899aea56ac1cbe8433dc5d91c87650f0d62f50d9e29f1a6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/envz_merge.texi: 
-  copyright: ''
-  hash: da6f80f14d5cb2706ee602a6ebdcc7e2783bd46cc4dd1e217286de438f3b1bc7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/envz_remove.texi: 
-  copyright: ''
-  hash: 052e269cc2f4c958fc937cfe92377318ac659e361bdfde1ed31ef03cc8225a04
-  license: ''
-  license_text: ''
-./doc/glibc-functions/envz_strip.texi: 
-  copyright: ''
-  hash: 9f33728bf5d1263c41541e31829546c6be1bb7149bbee554414674b7a5a76f8f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/epoll_create.texi: 
-  copyright: ''
-  hash: e2be8db1d90a7447a960b5dd2f418cf2aae182562f396030b1d0b0ebba5e9289
-  license: ''
-  license_text: ''
-./doc/glibc-functions/epoll_ctl.texi: 
-  copyright: ''
-  hash: 9999e16055753d71a31950a02ef676ba0eea5e033afa1141140e66638120a8ad
-  license: ''
-  license_text: ''
-./doc/glibc-functions/epoll_wait.texi: 
-  copyright: ''
-  hash: f9429a26d6f4f4f72fa6635a53726a953061d951e8626269cd305df15371327b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/erand48_r.texi: 
-  copyright: ''
-  hash: 6669b6ab848630d8eb97b64fbb7732d3d5f0adb9cfb2efc13c602d06f44c3011
-  license: ''
-  license_text: ''
-./doc/glibc-functions/err.texi: 
-  copyright: ''
-  hash: f2822ce953258b67212742fa39cd8f3e71211dcb9ad9e1c08f1733549c5e87b4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/error.texi: 
-  copyright: ''
-  hash: 8cef704a2bef7f901913e2ecb6a79a974c5c929784cd1a3efb83762ff9f0f78c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/error_at_line.texi: 
-  copyright: ''
-  hash: cf9e32d64af320b9a0a362a3a2030fe267c9975dd806450fc034a5271fba6b68
-  license: ''
-  license_text: ''
-./doc/glibc-functions/error_message_count.texi: 
-  copyright: ''
-  hash: 64921e6e3cbf254851de971c005efed63de341e918d68815a9cbaf0144fc2474
-  license: ''
-  license_text: ''
-./doc/glibc-functions/error_one_per_line.texi: 
-  copyright: ''
-  hash: 41c37fa05255f035aae595ba8be8bf6a948f194d6e8f062a4dc1b3b3621b98c2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/error_print_progname.texi: 
-  copyright: ''
-  hash: bc96d8956a86cae93032b2c4c2b2cf3d10a7c8eec32d2dd8a20d3eee8c26b4a6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/errx.texi: 
-  copyright: ''
-  hash: a7cdc040dd2e090c274719420cedb80b530aacdfe42b7ede1d77a24a148456ce
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ether_aton.texi: 
-  copyright: ''
-  hash: a842346260d42e4c0a45db5dd7cd75a3177bb0f0df8c990257803c214823ddad
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ether_aton_r.texi: 
-  copyright: ''
-  hash: fe43aa6c687d10c66577fc64c58745d2f5062b4b111066512e0416e4780c8143
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ether_hostton.texi: 
-  copyright: ''
-  hash: fe52a6f7a718ca3e4bc6d97cb686fe2b65337b46a9fcaae9ef54f7d9ccef5ee7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ether_line.texi: 
-  copyright: ''
-  hash: 3cc5f18d0bece8d4994e39601f8c8889a33a4f38e50df1990fad90d20e90a0c6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ether_ntoa.texi: 
-  copyright: ''
-  hash: babf9fe2efe3a0d0c4490b4ce7caec7f2b819fa28fa57afb55ab319051106de8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ether_ntoa_r.texi: 
-  copyright: ''
-  hash: c2b5156ddda84f53d15db242391715e0f2ca131662587d0cd4d9e62f75b2da45
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ether_ntohost.texi: 
-  copyright: ''
-  hash: c2091a64f35c0ae5d661860b1f60d57ad6944ad0403e4bf28a3cc7c96131aaa7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/euidaccess.texi: 
-  copyright: ''
-  hash: 2a87b5e240d11086cffaf06df3881482e1ffa24627ab797f4715fc9a215386f2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/exp10.texi: 
-  copyright: ''
-  hash: 28f79331e4b58884933515b29863bc9a52742bc7f370744a0e4a10452f099f06
-  license: ''
-  license_text: ''
-./doc/glibc-functions/exp10f.texi: 
-  copyright: ''
-  hash: 6bc7b61d534ef6f83c8461e72de721f5118651239555193971f3dad02fa23d46
-  license: ''
-  license_text: ''
-./doc/glibc-functions/exp10l.texi: 
-  copyright: ''
-  hash: f9565a3a532005973d9b6f51e0c7706ec6dc8d01c19746fa8e505147d54a29ca
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fallocate.texi: 
-  copyright: ''
-  hash: 31fafd55b211c7951256cf510c48929dbf0905c1d6adf6ce67a5f2c834d89e9b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fcloseall.texi: 
-  copyright: ''
-  hash: 2454b1a7e29b85b95416951cb3def913d0d4ff6d29f3a9d5ada2168be1b14e49
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fcvt_r.texi: 
-  copyright: ''
-  hash: 1226fb28c13dfae15d1f84e2ace830d894b9a5785effc4bf23eae22e0819d4c7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fedisableexcept.texi: 
-  copyright: ''
-  hash: 559755cb3f08a938aa3cae6ba68289ae9e8545baf594d71a8c7a6242d0371b94
-  license: ''
-  license_text: ''
-./doc/glibc-functions/feenableexcept.texi: 
-  copyright: ''
-  hash: db385ebfb7a42feb0e9f02c96ef0ede1e5be24761c1ddbefc2f57da58df53306
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fegetexcept.texi: 
-  copyright: ''
-  hash: 6ca79a91498b9b0bc91e5a1534a1e08167e795a7018a76dea8c52af2b42cb25b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/feof_unlocked.texi: 
-  copyright: ''
-  hash: 1845120fe96136edef181ead3d3d621b9fbfbc50ad928e98b75b0958c34d1bf8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ferror_unlocked.texi: 
-  copyright: ''
-  hash: cb31a7959c6e17cb428009f020898f3aa9f5a5a94d802a13b13b4d91987f3e0d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fflush_unlocked.texi: 
-  copyright: ''
-  hash: 7b77cc9354310377449aa1c5e033d3389b2ef98d4d87cdcaf133abc67e518637
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ffsl.texi: 
-  copyright: ''
-  hash: 7ff7df1ee7b12f75c430eb45418546d6ca7af38ee555686d46292d1c6b0d546e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ffsll.texi: 
-  copyright: ''
-  hash: f42ded9a37fabd10750809c4fb7af7893b2feea0826b23d5ac2ce7574eef4094
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetc_unlocked.texi: 
-  copyright: ''
-  hash: fd047b70f29ecc5dfbe87e98fb2412798cc35c51efd44e6e2fc83f3893738c27
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetgrent.texi: 
-  copyright: ''
-  hash: 0b18f0b797c2a7c1860c33c9304af2bfa428622038cbb34e5ada28bba02c0602
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetgrent_r.texi: 
-  copyright: ''
-  hash: 85ec05e27db7a4cd0043130657bcc7d21de99ba3e8547888923170a8a0799df0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetpwent.texi: 
-  copyright: ''
-  hash: a57008ebce017626f01d164e1f36cb66ddcaf81e7aa1d43cd1d92b0223d81ebb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetpwent_r.texi: 
-  copyright: ''
-  hash: 75100ef488211123031efb59301d244ecb208b1cb9b65c4246803fa12ab4d41d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgets_unlocked.texi: 
-  copyright: ''
-  hash: 3afe49da21531770e755913daf2957e563869eaf7311d0bbae6c4d2a664b00ec
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetspent.texi: 
-  copyright: ''
-  hash: d22f7bf1109eaba8e95ebe8c050a77b9c677932e482068de0092aa1abc993d1d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetspent_r.texi: 
-  copyright: ''
-  hash: 88cce64476ac720a065d48f7ed83e89757d63c47b0397b2e4f66e30384ac5bc4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetwc_unlocked.texi: 
-  copyright: ''
-  hash: b29178e60e8b553881d945e4be798334def8c4123d44b176462d522bfe1af2f1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetws_unlocked.texi: 
-  copyright: ''
-  hash: 73140a13f61673c53dbb5d6a98e4edbf6648d239c6cd9dfa1e58eec08b3ed1f5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fgetxattr.texi: 
-  copyright: ''
-  hash: 690019b55ebc29fa70959ccca4ceea265daeeef5ab17782576151fab734ef1c7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fileno_unlocked.texi: 
-  copyright: ''
-  hash: b114e30579686f868d9b5c0c1ebc7b367451428905308c9c5b44788b23cc5fa4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/finite.texi: 
-  copyright: ''
-  hash: 29b265d6f1a1c66117c921380d2f8541ecb864d9bb4b99bd063377b2fc379fb1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/finitef.texi: 
-  copyright: ''
-  hash: 327d8133425a2bca8406a7ae88aa480fc96ef29d5d813d12bef4d00fbb84c11a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/finitel.texi: 
-  copyright: ''
-  hash: f1dfd14d92d720128a297b18802208de0aef77b8a55724a3bab52e1479a959b7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/flistxattr.texi: 
-  copyright: ''
-  hash: f690841408ca5558193c7cb2548a0fde981b916ecc72db6ff57263c37ed95f21
-  license: ''
-  license_text: ''
-./doc/glibc-functions/flock.texi: 
-  copyright: ''
-  hash: 7efcc517b27c29ac838581e490b7de074f2a907c7d0e8019e6f1ca8837296a92
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fopencookie.texi: 
-  copyright: ''
-  hash: 84f7e5764f5c5ba2402d7e79c475c8bdfacd7d6257c9f7b26fdb3330d7c09349
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fputc_unlocked.texi: 
-  copyright: ''
-  hash: eaa6f4ff0366284337b9d6cf787c8b90a4496e22f732d5b3c75a7ad81a701d60
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fputs_unlocked.texi: 
-  copyright: ''
-  hash: edd6df84c06304c0437c886bb83502513adc2964f412e1083b0437c0375aea57
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fputwc_unlocked.texi: 
-  copyright: ''
-  hash: 1ff188f75d9abcd7575d0fa34888759b6bb1e3f5f8a22b388e78dae16f032015
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fputws_unlocked.texi: 
-  copyright: ''
-  hash: 1c1444e165a52b94709303c0bbe816b400d1f56a57e11dc5ea3b2d2caa8fd7ef
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fread_unlocked.texi: 
-  copyright: ''
-  hash: b9d76fc01917357762291957d2a045fc020498ed7c8a767c6b27b2e3046e4fbe
-  license: ''
-  license_text: ''
-./doc/glibc-functions/freeifaddrs.texi: 
-  copyright: ''
-  hash: d5198cf034f6423206e3904ec037f3d2d3cddd2d2a19eb6f4bd11bca16cfb781
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fremovexattr.texi: 
-  copyright: ''
-  hash: 6ba4e774379ac053b21a8a26c04a2a2c453da0770521225903b9ed6de6e3067c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fsetxattr.texi: 
-  copyright: ''
-  hash: 0fc330b04332599ebb973d94e987ef0f2b31b571ab2cd7a34947c41a12ae1a42
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fstatfs.texi: 
-  copyright: ''
-  hash: 7c08a51a0efa25dffbf458537d7aecd92c717d76e40ca2966251a39e1c8a70eb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fts_children.texi: 
-  copyright: ''
-  hash: 94455de1757c151913c00f827b1a2cb6789f967ea511921a4f9c02f6ef1d5acb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fts_close.texi: 
-  copyright: ''
-  hash: f24724092bc824c6d20defedcf74897ac95ebf70949559820a3bc366b0e1f58b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fts_open.texi: 
-  copyright: ''
-  hash: 71e6cf5ee44d9e7d6be7a9d4d2ffdfa9e4b96b9ec8e5de10eaf3bbbae82ad330
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fts_read.texi: 
-  copyright: ''
-  hash: 7b1858d353c66d3dbd174039b17a0a4d0b16e8c3899a13eed362f1a4c13244c1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fts_set.texi: 
-  copyright: ''
-  hash: 256a8d88f0cc0955a51687ecf5615cf7a881767b10a089ca44992d99aa8b1429
-  license: ''
-  license_text: ''
-./doc/glibc-functions/futimes.texi: 
-  copyright: ''
-  hash: 037829991904df1c3901b1d01cb83109588552f04f88343861b5c4f4f1bf40bc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/fwrite_unlocked.texi: 
-  copyright: ''
-  hash: 974ebb20ba87289b7f0e6ddefcd90961129b8d175829ffce2e381725d2ba1945
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gamma.texi: 
-  copyright: ''
-  hash: 9cb11d5b2e84aa422c9f2e2133ccd0932dfd228551eadc06b20ec078581b38aa
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gammaf.texi: 
-  copyright: ''
-  hash: 7edaf91ce2d925820a9a78615837f905f281f4bc2790b11ce2c8772eee1ffee1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gammal.texi: 
-  copyright: ''
-  hash: 6e51220bdbd524db03f3041796922be83f750d1c72d031514e4ccb6818a1e395
-  license: ''
-  license_text: ''
-./doc/glibc-functions/get_avphys_pages.texi: 
-  copyright: ''
-  hash: 86b817fa554261cffad4b234b1c1f76b937059593d07a00c86d3952baeb25aec
-  license: ''
-  license_text: ''
-./doc/glibc-functions/get_current_dir_name.texi: 
-  copyright: ''
-  hash: c881b750dfad7180315ee97d2b221ffda075390499de4c95d673654bef8f112a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/get_myaddress.texi: 
-  copyright: ''
-  hash: 57dd4818b22e5ed6e62a684c49b21a6e70f5d70f8819ad0d069ce50a11aece52
-  license: ''
-  license_text: ''
-./doc/glibc-functions/get_nprocs.texi: 
-  copyright: ''
-  hash: e4ae1bf4f5a4a4d2fa18f4004fe315b6c3797753a31462fb10b80bab3eebeef5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/get_nprocs_conf.texi: 
-  copyright: ''
-  hash: 871ded04b70eb098a066433e66a0719f426de8652e8bf2a018c78cce4a8feab6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/get_phys_pages.texi: 
-  copyright: ''
-  hash: 0b435c167f36008b1c489bbe6e654c84a71339cf253b6e0bf9f6375012ca3fac
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getaliasbyname.texi: 
-  copyright: ''
-  hash: 65689c5a2dcbda4a359ef794eb15c9024496d01b08165a300e1e95910bb8a18a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getaliasbyname_r.texi: 
-  copyright: ''
-  hash: 7f5a394056e5e3ef999c0ef65ff789e3fd223586bf3ed8bb06e41f1b0198cdb3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getaliasent.texi: 
-  copyright: ''
-  hash: 0660506d75982e5d03be95aa0f0eb1a59daf650761a21da74b3eac6fcc147867
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getaliasent_r.texi: 
-  copyright: ''
-  hash: 66b222cfcd7497514392309a78bb93a837b1b127131214cafae44be18f39f75f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getdate_r.texi: 
-  copyright: ''
-  hash: dc9df7e7e7403e56c170c3b7a33bce22bdb2507b21a261c3a2274538a431816c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getdirentries.texi: 
-  copyright: ''
-  hash: 3a012dd3241b1456caee10d79274eb940c4214014790fc72543bc952dcd7480c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getdomainname.texi: 
-  copyright: ''
-  hash: cf1b6b4a46a7477005767cb622701ab85b7d6406b5d6491f46a8c4f65ebcf436
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getdtablesize.texi: 
-  copyright: ''
-  hash: 06cf32c410472a7d90298a5830e61e20c06ede2e722334ae6e9f63aa9fb918af
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getfsent.texi: 
-  copyright: ''
-  hash: 8fe4b7150bb087d51ba540574f6fd67b6f8d21603d46806af136aa0c804a4f03
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getfsfile.texi: 
-  copyright: ''
-  hash: 4d6b165155cbcf1d90f346c076836501c493c3c4d5b3b50911fdde6a51d30a4f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getfsspec.texi: 
-  copyright: ''
-  hash: 98cbde6d93830b56dd77d5410108faad88aa601e687bc9e7db3a330fc2faec5a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getgrent_r.texi: 
-  copyright: ''
-  hash: 415a963f427a26141a3101785143c8ae15441636078d0713398e1d6806cd824e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getgrouplist.texi: 
-  copyright: ''
-  hash: a49850ad2d6a07c35ad979f1159ebcb648b6cbe8736094494ca1469400eaf72d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gethostbyaddr_r.texi: 
-  copyright: ''
-  hash: df45e5647825973d9f0dd763fa040795dcb4f5bc902da7282abcb73868525863
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gethostbyname2.texi: 
-  copyright: ''
-  hash: e719f389b44f23c32ed792b3458b6ea0553f49ed5f3ac8daf200f4b116f9a484
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gethostbyname2_r.texi: 
-  copyright: ''
-  hash: 7dffb2287bac4f81d6d7f64d5e7ec94935a87c3de4f3f32a5dd53d7cc95cc52a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gethostbyname_r.texi: 
-  copyright: ''
-  hash: 19e1150763a82fe7e0239e6fde63ed8e2c97ca30a9d81e16934d038d8f015a8a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gethostent_r.texi: 
-  copyright: ''
-  hash: 0a7b5beeb6683459d5d242bebe81d29591081a3dc8337b6bf4794ef911d90a47
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getifaddrs.texi: 
-  copyright: ''
-  hash: b6e093fdcea493b5eaf3d05eebf59cc8019e8c30ec1f918dca2ff11926e45f5d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getipv4sourcefilter.texi: 
-  copyright: ''
-  hash: 6c4a84dbb00ebe732e345872cd6238e6b6a21d0c570782c5027f85a132939cdc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getloadavg.texi: 
-  copyright: ''
-  hash: 5c50122cf493b14e89404a2529742e0eb7f769eaf1ad2e2eb1de55c522f72070
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getmntent.texi: 
-  copyright: ''
-  hash: 118d57e88ed72fcb5c276a839dcf8b0c904f5692b6a0edb3f06e68455489f824
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getmntent_r.texi: 
-  copyright: ''
-  hash: 48eb7d81bc253d4a805ba2492968265048fdcbb16ced813c0c7e47fa43786e19
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getnetbyaddr_r.texi: 
-  copyright: ''
-  hash: 8836358d4db5b375335c43a5829364489815a6743c667794e43dfbe350165119
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getnetbyname_r.texi: 
-  copyright: ''
-  hash: 74b2ce77d900b1b43ab6ecf6d5ab1609135ccd0f61fbfbeaed71ec533218ce92
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getnetent_r.texi: 
-  copyright: ''
-  hash: 9d9954b6b2c0763e4863e77e693ca5b27b4af1bb9628c68b09b84c5fbfd32569
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getnetgrent.texi: 
-  copyright: ''
-  hash: c13ce3af9094527db4d66d68ef8b1753c8c544443356ccae7c3b6c80a8192153
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getnetgrent_r.texi: 
-  copyright: ''
-  hash: 31b5ec65e6bdf042d6ec5850f70992b8512f0847207be624ae421c1eba543c4a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getnetname.texi: 
-  copyright: ''
-  hash: 0a4a9be7822c9ece381caf81f9e18f6b702a742c21ad0cb63bbaeb38723fe229
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getopt_long.texi: 
-  copyright: ''
-  hash: dad8eb73ad490ceaf3ee7e5c203f85a5bf4c98806402d26ebcd62dbaed58c7a6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getopt_long_only.texi: 
-  copyright: ''
-  hash: 38aefb0c9ffea52916f9d325982549e94f16a1f00e0fcbef4b0c17571276c80d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getpagesize.texi: 
-  copyright: ''
-  hash: 17c733598549bd7e5467f30df030367e9330861157dd95d74e0b470ba83f72a8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getpass.texi: 
-  copyright: ''
-  hash: 694469640b9f29046e9d2544e5ac1f53e9b4c5a8f5be710ac49bcab014eb3f6a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getprotobyname_r.texi: 
-  copyright: ''
-  hash: aac24abffdfc1f64410dd5a2db7699f92d0dcff5a635a2a699f8751026986cad
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getprotobynumber_r.texi: 
-  copyright: ''
-  hash: e2bf616350a39627ccee7c70afff54cc519b109982c4b47c8fd24d1c5a24a6dd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getprotoent_r.texi: 
-  copyright: ''
-  hash: 1b20b82271d78e1add8a6c551ecf444f41b8844b3aa86f658341c1da9c4ca1ed
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getpt.texi: 
-  copyright: ''
-  hash: c6fc22204ce304b1a58766533965391bf90544a87140bc3c144d1b2ec3c2005e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getpublickey.texi: 
-  copyright: ''
-  hash: 1e5ed1f2dd2cd6f816c391c3c1400afff1a8594c11c520707eba9311d64d99ef
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getpw.texi: 
-  copyright: ''
-  hash: 3396864fd691dff5978be16d1c8ca280115900c5ab81b4ec3cd820be7c12b6cd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getpwent_r.texi: 
-  copyright: ''
-  hash: d35394471916e21a74403c692013b97e794c9e13ee8b73d01ba8c40a30973da3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getresgid.texi: 
-  copyright: ''
-  hash: 4efd93f503f97b2da4db28219cb83a1d67ad3a1ee604faf21c7edb0cde3788e3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getresuid.texi: 
-  copyright: ''
-  hash: 4f1280ba0721b8f9c76f825e14245c788548755fad562195beea6cba0ad1d1f7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getrpcbyname.texi: 
-  copyright: ''
-  hash: 905f78969e816bd350371c52ebe91dad4a5b048ee6f000151ac80b4a65e48b2e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getrpcbyname_r.texi: 
-  copyright: ''
-  hash: 44eac722eea8be2fcae7d693ea0284f9ab65ca59b43434d0fa9cdc3978586116
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getrpcbynumber.texi: 
-  copyright: ''
-  hash: 19a049fa39885a88b1b1656784167616f7a0f06cc386b49b096128fe8a14849b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getrpcbynumber_r.texi: 
-  copyright: ''
-  hash: 5b8dd84e20a06df244b7d3edc8605103662dfe841148bf00b9a454ef95f02a88
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getrpcent.texi: 
-  copyright: ''
-  hash: 548d13540a5fe2e1a3f06658f9888ec428a4921edbcb4e94fbb13845c393cf20
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getrpcent_r.texi: 
-  copyright: ''
-  hash: 19ab0f4d93c76eb06be0821328366797143747ba178622a0f9ad32e40bed4f3b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getrpcport.texi: 
-  copyright: ''
-  hash: cf4a3213ca4830fdea0aaa73c4e0d6bbecd11482e8b41445b0b799f0a900fd3d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getsecretkey.texi: 
-  copyright: ''
-  hash: cb680a88fb1c4043d7ad5aeede48e3b45f280065222c98269e3b7e2f1ff3a4c9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getservbyname_r.texi: 
-  copyright: ''
-  hash: 2d08f58dc31a7a5d6ce63b87427c82c10463d0677ed9a96c6744dac760cf7262
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getservbyport_r.texi: 
-  copyright: ''
-  hash: f488f6a67c41f08aaf2d078d1bee111c5ba850008601f5abe7cb2fcdf2dbd64a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getservent_r.texi: 
-  copyright: ''
-  hash: 6f3fb5e0944a60104ac0c0367388c291c6bd330cf92a5ce3ea037bada24731ae
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getsourcefilter.texi: 
-  copyright: ''
-  hash: 15322732f310afc29502328c640113b0330af4800e7215f544f5bed24ed06e0e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getspent.texi: 
-  copyright: ''
-  hash: 816a3e44c64019324be118cf732622c9b41800b00d54207318c5ca679391c448
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getspent_r.texi: 
-  copyright: ''
-  hash: c90f3c1a8151fd685d77b05c06edad9008729c3d6da221cc0f5f83ffc04fd932
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getspnam.texi: 
-  copyright: ''
-  hash: e631c5008ad912f6ea71bb26ec876dfa92e9b2bd194088697e5d399c962b248c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getspnam_r.texi: 
-  copyright: ''
-  hash: 06de88fb505a2a1a6c2b68ab76d83c4b0cbbe1d455a47eda337bc53683c07825
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gettext.texi: 
-  copyright: ''
-  hash: c3e128d9a2aad55928c0e6dec0d5eb46e61499055328c6a496a176b7c9ac4c25
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getttyent.texi: 
-  copyright: ''
-  hash: 6323d546b13f1fa19f8d12c7493f30c83d3069e5d758e42d85fff135a2af58d1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getttynam.texi: 
-  copyright: ''
-  hash: d37f8ec697e742f31810a75c3856bdd3135ac59ca5aff77900a26735a96fc0c7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getusershell.texi: 
-  copyright: ''
-  hash: cfab9f44b6e745d3d468f31d513f50ed5583cc39de18788eee15bf69ef1df781
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getutent.texi: 
-  copyright: ''
-  hash: 6f5c71a6983b4ea15e9a021b7b35f04339c8f553d0a6665bee201e2a4029e32d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getutent_r.texi: 
-  copyright: ''
-  hash: f23aa1bb4cf2e15afff917913cf5fa875fcce3fd76bf28b6286146cf1a8312cb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getutid.texi: 
-  copyright: ''
-  hash: 439997018c8b769dfb084615688bafe72428d4474bdfb0161939704cec828897
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getutid_r.texi: 
-  copyright: ''
-  hash: 9ba7da53bc2795a796bdf6f0dd1b970e8c280d5f17ce03a6b670e9bccb38494b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getutline.texi: 
-  copyright: ''
-  hash: fe54ac8a004414583269fc3344705760ecb22c3c50e12363d49ade9a623af8dc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getutline_r.texi: 
-  copyright: ''
-  hash: 36891c71d337e6950a6843a4569e906ecbc3d31a1cced286b170ebf0444c16ef
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getutmp.texi: 
-  copyright: ''
-  hash: 5c40fd3e795045b2d723783cb2d898de33a3b0c6c7730816e237fe1cf9a4198b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getutmpx.texi: 
-  copyright: ''
-  hash: 860f5db05955b646b09ef98b56e1d0f553aba1321aff45ae114e2477330863e0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getw.texi: 
-  copyright: ''
-  hash: ab2d47caf89a7b4d27c816c5fa8ae1dc26e8bb1719b7513534a167d08bc66bba
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getwc_unlocked.texi: 
-  copyright: ''
-  hash: e15241f0f79501082baf0556344152cb4ad99e048310bddd3307f49fcd782590
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getwchar_unlocked.texi: 
-  copyright: ''
-  hash: 4bc33b5e349b95a16b08328563f1705c3a8b377d4bba92760d98a3c2e53e0dcc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/getxattr.texi: 
-  copyright: ''
-  hash: 03a413c12f46294e620434f6988a843d1c7b71e9093540c05f8c052577dc98b5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/glob_pattern_p.texi: 
-  copyright: ''
-  hash: e5a45525080d1fb6f20b346c999fc57bf1d945c563ca219e40b7df38385c616f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gnu_dev_major.texi: 
-  copyright: ''
-  hash: 2c8f2c8cd3092dac8fde1de1fa9eba83afac47e2d00f2579adf9f6ea6fa342ab
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gnu_dev_makedev.texi: 
-  copyright: ''
-  hash: 91456ec1cb52c337a02eab045a676bccd9b81ab87d293c4bb059c08f8cf09782
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gnu_dev_minor.texi: 
-  copyright: ''
-  hash: f4ba04dbd23ce77e3cefff8b4b2b5c60dfa80629d1069a98d9397a37023b61e1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gnu_get_libc_release.texi: 
-  copyright: ''
-  hash: ef4a4671b053aa45ce96e73496c747ef75fcdc144a722460e0be44456916ec38
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gnu_get_libc_version.texi: 
-  copyright: ''
-  hash: b5114fbee7bd09824fa503582703e09f7f6b2a7585e6663c67a35609ed382e10
-  license: ''
-  license_text: ''
-./doc/glibc-functions/group_member.texi: 
-  copyright: ''
-  hash: 0e0b082f81548c68c61dd3a9eeda82ebf07d7b1fd5b61543994344e045a92408
-  license: ''
-  license_text: ''
-./doc/glibc-functions/gsignal.texi: 
-  copyright: ''
-  hash: b2b2657d25fbc80d269f5a0685e399bf312b4d68ba672a068f8f2431ad41b553
-  license: ''
-  license_text: ''
-./doc/glibc-functions/hasmntopt.texi: 
-  copyright: ''
-  hash: 36f7270890737ec725e1cc0561841b5887be379932a7033ec8b834289f5d3a8b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/hcreate_r.texi: 
-  copyright: ''
-  hash: abc69a457cc1547bbeecb52c53a69d35e837795fca08831198f38f4dfccd9c5a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/hdestroy_r.texi: 
-  copyright: ''
-  hash: bf9ebc5b6f3dc6c2fef05616d7749656828c50f575497157021cd89b734630c3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/herror.texi: 
-  copyright: ''
-  hash: 7efb9d00e25020573fe0ca6d431f5327a0e107cfdb5d169ea32044a5b6a90981
-  license: ''
-  license_text: ''
-./doc/glibc-functions/host2netname.texi: 
-  copyright: ''
-  hash: b79d5bf0b0a6505453d8350062b6df0e9778f32ddb2362c3f8588bdef2810d9e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/hsearch_r.texi: 
-  copyright: ''
-  hash: 5e162a4ac8adb0bbf7952b6adb65c2b16238a077bfe346cf416573a5d02bf8b9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/hstrerror.texi: 
-  copyright: ''
-  hash: ff2896c321e129159b197b089ba7d3b2bd432f5c19892df7bbcce553a885f3f5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/in6addr_any.texi: 
-  copyright: ''
-  hash: 3343d5d1d2109f64c2734eaff57f503f856d8cf36c052b02fbea1534b6b254ec
-  license: ''
-  license_text: ''
-./doc/glibc-functions/in6addr_loopback.texi: 
-  copyright: ''
-  hash: f691c99e758b8950e9d2c3d2632ba2188ccce0bf0e2a694b5fc6bfb3d8d0e62f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet6_option_alloc.texi: 
-  copyright: ''
-  hash: f8ee416c2fafae2cc7de879032e7e823c23f002bb1f0da2f9775c0365c34ba50
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet6_option_append.texi: 
-  copyright: ''
-  hash: 32eed6853d5746e0ae79df426c83fbbe260b5d207cb80f91e936621abbc3c97c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet6_option_find.texi: 
-  copyright: ''
-  hash: 8baa6d877ecd7d6bb686c29f627489c85204f5aaf48caa2abaf89eec92dcb309
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet6_option_init.texi: 
-  copyright: ''
-  hash: 716e71d5494dfdb22f64896bde3fa8ae205c6bb991f7e9c6d0fc952c846f47dc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet6_option_next.texi: 
-  copyright: ''
-  hash: 13cbcc7303e27c83c1774694d78389e69aa86407793a5949c9d9405345911b82
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet6_option_space.texi: 
-  copyright: ''
-  hash: 6a338b1ab5bf78425879176034fbd8ce86ea60012693598f4ea14ecae1e3a5f6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_aton.texi: 
-  copyright: ''
-  hash: 9a56198c1b11ffa7150833f8ee1d9a4028f6aa89bd414b1f7a0e7c543cff9f16
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_lnaof.texi: 
-  copyright: ''
-  hash: 20483661f4173ae4282bab0f288af2fa5e182b5412f23a427c4436a1f8265660
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_makeaddr.texi: 
-  copyright: ''
-  hash: ecbcf0e5b28d43d1b529117c3fc1158cf0098e7ce14f76ed0d567668319cb56e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_net_ntop.texi: 
-  copyright: ''
-  hash: 77ee21bd1f169d7eb033b898b34b45a0237e0df1410f25dd455a01729c3c05d6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_net_pton.texi: 
-  copyright: ''
-  hash: 8091b168ada9dce7cbb5a6a514333edd9f7183085b640320a395810c26b5a4b4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_neta.texi: 
-  copyright: ''
-  hash: 3c964ed2f9db297bb4dcf3465662c790ab871bb6097a662047e7c1e08390065c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_netof.texi: 
-  copyright: ''
-  hash: d70586041f476627921035730357871373233e52c0c6e94f91818550e6b66eaf
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_network.texi: 
-  copyright: ''
-  hash: f2254b279938a2eec4c6ecc5454ce2b3beb3bd6351d7975d0f0cd8790b21f533
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_nsap_addr.texi: 
-  copyright: ''
-  hash: c1c16ad1ff261f383ff1c3afc2d485879cd52700b11d1b32d6dd64c261374cc3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/inet_nsap_ntoa.texi: 
-  copyright: ''
-  hash: 22cbce91c0a84fc930ea34428b2487e2cc500468c4078b1cb753e56d6c91d490
-  license: ''
-  license_text: ''
-./doc/glibc-functions/initgroups.texi: 
-  copyright: ''
-  hash: 10e6d0b7a28afe505954b18d7222af105b5c0d8bdd5981dd65217435dc52cfa6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/initstate_r.texi: 
-  copyright: ''
-  hash: 50335fba65ff9a2874843ef28cf645262a1f58db8252219f19d40c753f96617f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/innetgr.texi: 
-  copyright: ''
-  hash: 98fc724eab658d8ed65ba83432248a5d34c20a9d3d052ad6a96bfbcb9bcc62cb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ioperm.texi: 
-  copyright: ''
-  hash: 823826c8fd5e3e084b894cb58615b662b2bf53547e5e3808f4249cd4101bcadc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/iopl.texi: 
-  copyright: ''
-  hash: 3e7a8dd4e5b5ae33a9f5e799d208ddc48030ed9fee2c0d94b15262ab5b16030a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/isctype.texi: 
-  copyright: ''
-  hash: 889baa1d5aa326c2837dc4f72b30c184cea862b1a32ed8dc7d20b6b87d5f235f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/isfdtype.texi: 
-  copyright: ''
-  hash: b493b5b3e930e6aa2d5182a88f186dbf845e087ff44fddeb94fb7989c9969514
-  license: ''
-  license_text: ''
-./doc/glibc-functions/isinff.texi: 
-  copyright: ''
-  hash: 7b778ea3f39894bff3a41540003a2ea2ce14fef3bb60ef86d52ee6660ef0e805
-  license: ''
-  license_text: ''
-./doc/glibc-functions/isinfl.texi: 
-  copyright: ''
-  hash: d68b2173aab022dadd5e172ba5216fba620cd71f9e5b92a99548f1ae1ebfe338
-  license: ''
-  license_text: ''
-./doc/glibc-functions/isnanf.texi: 
-  copyright: ''
-  hash: 1bce23ee271e7eef2d71e8db58edf3ca47dc80441668f74c81dbe8826bf87b2b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/isnanl.texi: 
-  copyright: ''
-  hash: efbd3688a2c450ca48c45b0136ced1c4aff2c88514808efec73f03fd9b78c319
-  license: ''
-  license_text: ''
-./doc/glibc-functions/j0f.texi: 
-  copyright: ''
-  hash: f018984a8e665058bcee8aba2e80e8d77c5ac1a803125c397151f46fe43e20e6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/j0l.texi: 
-  copyright: ''
-  hash: be8df2ff66c9633147a1dc233d630b26af08ffdfa1933cf4aaf9f4d09d5a5941
-  license: ''
-  license_text: ''
-./doc/glibc-functions/j1f.texi: 
-  copyright: ''
-  hash: e6ea933aca4d80ea575f33af255ab6a3a2eda0cdd27784b83b53ca5d66211d21
-  license: ''
-  license_text: ''
-./doc/glibc-functions/j1l.texi: 
-  copyright: ''
-  hash: 36579052197222d9efc066047354b6a133e706205b9f137ecf4b71427b4fdc15
-  license: ''
-  license_text: ''
-./doc/glibc-functions/jnf.texi: 
-  copyright: ''
-  hash: f14a75b388ab7fe56275dae1799ba1c17cde27b7e5d9b96b1a391a33b3df3efc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/jnl.texi: 
-  copyright: ''
-  hash: 3349339e57b6eade070ba4b9cbe16e5a0618a9b85fddbc1a5247036cc12fa268
-  license: ''
-  license_text: ''
-./doc/glibc-functions/jrand48_r.texi: 
-  copyright: ''
-  hash: 875e437face5769c385f1106637fd80c5bb8eb5b226ca64b99af6987eddd8647
-  license: ''
-  license_text: ''
-./doc/glibc-functions/key_decryptsession.texi: 
-  copyright: ''
-  hash: f14cf546a9737b2f8028dafe7ef389ce9b886ba35d2542ddc8ae65517df1610d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/key_decryptsession_pk.texi: 
-  copyright: ''
-  hash: 5a61fcee114acb7ca73e3e27b17554cff55f4d20b58627e0d6482974bcfd9fc1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/key_encryptsession.texi: 
-  copyright: ''
-  hash: a352d0f45112554f83095b1b11cfc6c2fe3dd18846a2e279d57a07069eaeaa29
-  license: ''
-  license_text: ''
-./doc/glibc-functions/key_encryptsession_pk.texi: 
-  copyright: ''
-  hash: 50ce495fb62eac5281e2a5197c60eb843d01fa0e0d74462c77c5f5d108c772bf
-  license: ''
-  license_text: ''
-./doc/glibc-functions/key_gendes.texi: 
-  copyright: ''
-  hash: ff565b8a1f485504fddc3dd79b2a5298cafee45d9cfd295f06952f93cf0fc41c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/key_get_conv.texi: 
-  copyright: ''
-  hash: 2d67dd92f660d35a6c01ee3ab092b29f019bce6e4cc42b7d6090ddcd22078945
-  license: ''
-  license_text: ''
-./doc/glibc-functions/key_secretkey_is_set.texi: 
-  copyright: ''
-  hash: bd6b7b1dace7b7a1b74b4b0b2c58048aed86b897ffc611526f68c6c8582b5f8b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/key_setsecret.texi: 
-  copyright: ''
-  hash: 6094078abb1f07ee4edafc08a32407f75d51ce0754608fbcf30285aa93aeeed9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/klogctl.texi: 
-  copyright: ''
-  hash: e94f06a40c4d0334e6164193081d720d3919f87240350763f60fc1bd02243920
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lchmod.texi: 
-  copyright: ''
-  hash: 41c523da30a051dd99ec2257cb0be4a516ebd67cf98f27fd1cdec7233791c0e9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lckpwdf.texi: 
-  copyright: ''
-  hash: 6ce97709bb88f0181fdead5cdd63ba4ea2ff23e2133e08ef3ad6f38aad44d168
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lcong48_r.texi: 
-  copyright: ''
-  hash: cdf1fc0cf75c5dfa76850685b7dfa0970223c08ac3c313511109705f041e32e5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lgamma_r.texi: 
-  copyright: ''
-  hash: f1067f2deef4d6d086b613dafcf75e2d8a8b33516dcea3d650a4e53eb798be85
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lgammaf_r.texi: 
-  copyright: ''
-  hash: 07fc9d2fb55d3b03b25613c659cd7a421cec84336ba790a0140f2b5170959e36
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lgammal_r.texi: 
-  copyright: ''
-  hash: a202db76414d545a82571afd6b5b142038b5c76857892595291bd0956dbabded
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lgetxattr.texi: 
-  copyright: ''
-  hash: b4016960542d19ab531b198fa260b565e234aa75f52e450a4ddac8c4153c2b86
-  license: ''
-  license_text: ''
-./doc/glibc-functions/listxattr.texi: 
-  copyright: ''
-  hash: 766b533e1039bda67b46b2abc106e61b68237807b365fa2d8c7cd9cedb09b7ed
-  license: ''
-  license_text: ''
-./doc/glibc-functions/llistxattr.texi: 
-  copyright: ''
-  hash: cb2cc96665e3469eab1aca6e9914d527d7deebeb1c577cf6e66e9927b5d0d9af
-  license: ''
-  license_text: ''
-./doc/glibc-functions/loc1.texi: 
-  copyright: ''
-  hash: 9949724a8185c91f3ef464d2aa050f0b5b43eaa8321a6a2515bd0b6999330021
-  license: ''
-  license_text: ''
-./doc/glibc-functions/loc2.texi: 
-  copyright: ''
-  hash: df9bf9c136fd206c3634b2407f5b42dc6c9288ce610651a6db47701b1370b762
-  license: ''
-  license_text: ''
-./doc/glibc-functions/locs.texi: 
-  copyright: ''
-  hash: 1a2e4532efeb8ca8cc341d087d36601be44fa8bae2739f429d389c234c74841b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lrand48_r.texi: 
-  copyright: ''
-  hash: 7b0e546feae99c2ea77f3129dd3efb78f581ebbc0ac49a32cf55bbac1a3c8d1e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lremovexattr.texi: 
-  copyright: ''
-  hash: dac08211e81a4886e6300466d6179c752fa4e88d6e18909047d998eb01c48fe1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lsetxattr.texi: 
-  copyright: ''
-  hash: e72b0131c569a6b2919740004a201d9042a5886861a99a6682116e0d74deedd0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/lutimes.texi: 
-  copyright: ''
-  hash: 4494237aa78d1f5feae4a8716c80b67462a78776a0e04621a5e002a93c5e9db1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/madvise.texi: 
-  copyright: ''
-  hash: 0abf4aaa28a84d398b86fc0b64fe40ba82661a7aa28be80be83ce5481999c24b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mallinfo.texi: 
-  copyright: ''
-  hash: 53dc1fe63b43700cfc5595bb7c9b42bf254ea159738be0d6f19e32959922a525
-  license: ''
-  license_text: ''
-./doc/glibc-functions/malloc_get_state.texi: 
-  copyright: ''
-  hash: 0f8db5157459002d516fab08a56deebcf940e6ed3025d83ef829c901798a9bf3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/malloc_set_state.texi: 
-  copyright: ''
-  hash: 4bf70c2bcd80fab43784d28c0b12af9e30854ed31c601ff859a7b01f3acfb720
-  license: ''
-  license_text: ''
-./doc/glibc-functions/malloc_stats.texi: 
-  copyright: ''
-  hash: 2298a8823b378dea8818f1d9a770ac197b8503a13a69fd7346fec1b8adc5badf
-  license: ''
-  license_text: ''
-./doc/glibc-functions/malloc_trim.texi: 
-  copyright: ''
-  hash: 8fa0f761ba3f7a709958c154bc5b00060432a7bc5d64dd87a029374c23b3c721
-  license: ''
-  license_text: ''
-./doc/glibc-functions/malloc_usable_size.texi: 
-  copyright: ''
-  hash: e03768f538df19a72d96df56a8d72b851ed620417a3cfbf0f023984a7aa27cbc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mallopt.texi: 
-  copyright: ''
-  hash: 354303e13ef60ac8f163ce31970099caae693733e806a3d784b35c6502380d33
-  license: ''
-  license_text: ''
-./doc/glibc-functions/matherr.texi: 
-  copyright: ''
-  hash: c9f25db9aa8e2d44cb7c2d7eb36e59a781374db3345e762d9947e00308b640af
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mcheck.texi: 
-  copyright: ''
-  hash: 43737afc82a18aee7de3fedd13d407ddc56eb478a24e445430f3562474a8d00d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mcheck_check_all.texi: 
-  copyright: ''
-  hash: 05f9d5fb933246bb5f0e7c78250f93db035e76fc439f2b23d51d878607946515
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mcheck_pedantic.texi: 
-  copyright: ''
-  hash: 073bd20f56761fe3864be551f40f53acdf50e7f558c6283e8bb446e1a7507e0a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/memalign.texi: 
-  copyright: ''
-  hash: f136fa4c4d15ffdbd5f531220ea80a0fe280ea744efe2df2464ca729ed50544a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/memfrob.texi: 
-  copyright: ''
-  hash: 90bb532679e589dc002bdac93373fb237660eee372041a4d57bbc10bca2b4613
-  license: ''
-  license_text: ''
-./doc/glibc-functions/memmem.texi: 
-  copyright: ''
-  hash: 04f124a3fcb1df4da38a60d37d4857c9345452b7fbf71a71c6002a518c95ead1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mempcpy.texi: 
-  copyright: ''
-  hash: b858f2e5874b7b279e54b70d044ef9bd6b836bf3cdb7e62182ef094457ea7fb6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/memrchr.texi: 
-  copyright: ''
-  hash: f10096eec4df36c30bc322d5f37c71eb9e1295c8d1279caa10d7337adb9e9bfe
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mincore.texi: 
-  copyright: ''
-  hash: d5ceb391e9ca3ad88142c561d35df48487b2b5244eb31c59c10c86148c729d52
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mkostemp.texi: 
-  copyright: ''
-  hash: b2b1685ff0c8b88ee8472b3ef555c792849913110ee83219aad70e59cb6ecb84
-  license: ''
-  license_text: ''
-./doc/glibc-functions/monstartup.texi: 
-  copyright: ''
-  hash: 66ff5e7ec331a6bc6b660646ab8eb22538317c7d33f96fcabd0c5d425803cfad
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mount.texi: 
-  copyright: ''
-  hash: 89d49f190bf722b33bba60f3422d827ee83250869251d905394a34bf4bba6a9b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mprobe.texi: 
-  copyright: ''
-  hash: 2ac42cda54a697d68ea2e325e4ba43eb65736cd30b4382aede8dc4824572f9b1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mrand48_r.texi: 
-  copyright: ''
-  hash: ffb500a2ff554d63422da2ea61c5b231549100a88736dd7fc3b506d3b5fb3094
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mremap.texi: 
-  copyright: ''
-  hash: 4e3207e5e74599c816870d954202dcdae1715843b3df121a4f2e92175bff329d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/mtrace.texi: 
-  copyright: ''
-  hash: db58f2773449db5048f8cfc6447f1ec6a5800205846cafe936b2e50df304b6c0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/muntrace.texi: 
-  copyright: ''
-  hash: e4ef0e069f49433b429895b055f989584f43aee61bc11729d0b12690d53265a0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/netname2host.texi: 
-  copyright: ''
-  hash: f6e22e73db730831231e52473244e21f49b9472597a7d25ee6374780b72b7be4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/netname2user.texi: 
-  copyright: ''
-  hash: 297df46c6a600ed01680f8e1ab82d3eb8dfea80bafc392c63ff042c3066b957d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ngettext.texi: 
-  copyright: ''
-  hash: 353e35ccc3655d2746555f2166fe50c9745ff46f8d3b9da62cdf4e2478edfd0d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_add.texi: 
-  copyright: ''
-  hash: 263e816d7afa10f2eff1d04d45ad18c9376fefc8387e038002157f1fb9b9e627
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_add_entry.texi: 
-  copyright: ''
-  hash: be462a1c0813a2fbe4a6c63c656728103b648f8ebf90d7d65cfd43b7c9bf2122
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_addmember.texi: 
-  copyright: ''
-  hash: 7072a94c1c6a763fbdb403984914dab8d19e94f4e006d2da05d793a5e9d79671
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_checkpoint.texi: 
-  copyright: ''
-  hash: e4226fd044059c8fe33f10a2fdb76cc5fc56b89c1d3311a5df12bfd78967e027
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_clone_object.texi: 
-  copyright: ''
-  hash: a464d80bc89c5ec658aa632ff8d84414cbbe990b840f5d53e82199e019a4222c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_creategroup.texi: 
-  copyright: ''
-  hash: 5e4f2f700588803a40a7426e00f416c4be2652170b4665a3b23aa6e553094d81
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_destroy_object.texi: 
-  copyright: ''
-  hash: 86f6389d465a145bc9091b09bed0c51c1c7ee4d09f94612821e1b529fe29074a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_destroygroup.texi: 
-  copyright: ''
-  hash: e11e32b812c8f945ae14541ca337f9536b7a79ef57894734a37d2778596935ac
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_dir_cmp.texi: 
-  copyright: ''
-  hash: 5ab7cef0103aeadbae156d28208185b62d0745b1f91b0201776b400d5fdbbd3d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_domain_of.texi: 
-  copyright: ''
-  hash: cb2e2f91fac66b3ef7cbbed96c046597d9402dac44e48715e298c5d3325b33e2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_domain_of_r.texi: 
-  copyright: ''
-  hash: e01fa11b120ba609cc2b03eb06432003342c5c2f6777c32b6b476bc8c80107ad
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_first_entry.texi: 
-  copyright: ''
-  hash: 45660d94336a14941d4700b9f46ae7b03258556c408af401e0bc43e60c92fdc4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_freenames.texi: 
-  copyright: ''
-  hash: 33c1a1ff5e5749756bb71d4be9085a4e0906d101402c28d9b918a58d5c2ff30d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_freeresult.texi: 
-  copyright: ''
-  hash: d641a6f0bd155a2f4fb7439d570eccb55e645429ca22e9c07c97a8ab658afbc5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_freeservlist.texi: 
-  copyright: ''
-  hash: a313a31d105e0e98d83014e7b059a110654b88e2bcd163dba39b969d19d33446
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_freetags.texi: 
-  copyright: ''
-  hash: a3ff251aea66d507b2063975140b06150d679a9a9bf00017624ff85f8f6bd28f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_getnames.texi: 
-  copyright: ''
-  hash: d43fe192fa29a30b8f90ac61d180ccfe184211ed3f0977faa89ef0f7a07d6099
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_getservlist.texi: 
-  copyright: ''
-  hash: 1a83d9805324b888d5311711e68616fedd684b59f87f51d69b563dc9f00f6858
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_ismember.texi: 
-  copyright: ''
-  hash: 2857c63d04a9936f8ba3d20d28940517296bf8b20f803c8a743c104988d93034
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_leaf_of.texi: 
-  copyright: ''
-  hash: b6c67a9456cca5e2b69c86c0ecbbd2fedb8440c625e979a1f5566c64ab27f6d5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_leaf_of_r.texi: 
-  copyright: ''
-  hash: 725eaebe89c74f16acce404fdf0f071aec15529fef9f090ef5c34be4d433546b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_lerror.texi: 
-  copyright: ''
-  hash: 4ffdf8647b3c5221348e69ed7337e739bdff92f8eb769471e9d6689991070429
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_list.texi: 
-  copyright: ''
-  hash: d4769bf377fc70bdf55491b7a67377fd1a0aa1dd73dc058055d72c76e32af56c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_local_directory.texi: 
-  copyright: ''
-  hash: ba21442c5b7d1c1e7df74f813f51c39739ef4c44fdd4c3e30410aac44ffff269
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_local_group.texi: 
-  copyright: ''
-  hash: 35d966e801ccbc175af0d271405896cdf076aee2a3963cccf9c344996b6ef16e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_local_host.texi: 
-  copyright: ''
-  hash: 61acdea5cc4f7e391d7a17ca71f48b4e99ce85adf87422596ff9b9fe9ad33c17
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_local_principal.texi: 
-  copyright: ''
-  hash: bda75c39fa29b305e57270533cd43fcff4b8957b7c33a88720f576e56d2df59c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_lookup.texi: 
-  copyright: ''
-  hash: dff8a627d19f85a944417280c3e06bac997c1e3e602fb256a92071677849b399
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_mkdir.texi: 
-  copyright: ''
-  hash: 5cab157d00861d7ae6a2e0a5aa9eb68901e09a0368fe1f5a3eb24cf0ed06cae2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_modify.texi: 
-  copyright: ''
-  hash: 5114449ba61f1c9ab605553b89b6123d3a32078f00e5a76e499b68d8366876c8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_modify_entry.texi: 
-  copyright: ''
-  hash: 293d5bb41a19fcfbea60ee5f78972517c0bcc93b6eddeb5e0b1f79ea538f3c49
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_name_of.texi: 
-  copyright: ''
-  hash: bd40e5451a5dadee1589a2ca890f0c4be95459bfd4710d3b00c0f7032a323d41
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_name_of_r.texi: 
-  copyright: ''
-  hash: 74450547b58277c638dc8c9fc5a9f77735cefc00af5581f21b477426174cba91
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_next_entry.texi: 
-  copyright: ''
-  hash: b5d18a883a8082cf62c0f70127d027f2d730dfee8bdf4fce9f78fac612a11059
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_perror.texi: 
-  copyright: ''
-  hash: 63e175ba3d8d9462bf33f5591c26da377537e4c2d19f98ce94b1bf4e6667cda4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_ping.texi: 
-  copyright: ''
-  hash: a283339d6df98d521b354c7c3a19f12800177c783e36c4496190befec8058db3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_directory.texi: 
-  copyright: ''
-  hash: 0d12a211acc7071d10598c83dbc6b33b328ab633b38ba33d6ffcce607c22c16e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_entry.texi: 
-  copyright: ''
-  hash: 3c03608e3d357f4f2ae81a76f45c8440141609a4fb7c6ed2db95ac5b426ce10d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_group.texi: 
-  copyright: ''
-  hash: d191e435ff63ff626db4247802381f0d2ca23de51ccd223ae5b0e3fa8798d383
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_group_entry.texi: 
-  copyright: ''
-  hash: 94235e89b9b74f3643923e90bf96ae311c285f6e306e968846b16b97edf831f9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_link.texi: 
-  copyright: ''
-  hash: db76e611302d621d742ecbc5f0b7748aa41a52c75fef66b7d51a9b61e47b31b8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_object.texi: 
-  copyright: ''
-  hash: 4b444fa06c5c0e05d28efd64f53953c251fe11cd356c7072f605f7b81fe44643
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_result.texi: 
-  copyright: ''
-  hash: 065717135cf4120bb8595486c857722fac9a7ff6efa0cb228ee5ed7bd4b0b62f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_rights.texi: 
-  copyright: ''
-  hash: ef827fc3aeb4e8739745772e04c2bb33dfb616b5c139e9899cef7de0b2c61ff9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_print_table.texi: 
-  copyright: ''
-  hash: e0f15bef44e6d6c29b27cf7fb973a373c824b49e6f6cac7d78e1a4e24ffe9c8f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_remove.texi: 
-  copyright: ''
-  hash: 32a1b74e420a969df9b898f94512ffe55692fccd53e5bc0a8b49747dd12ae9c6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_remove_entry.texi: 
-  copyright: ''
-  hash: b942f308181744e8798341c6f5941ded24f4e0c7da25c1418c85aa877c6e8883
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_removemember.texi: 
-  copyright: ''
-  hash: 25febaa8a16ad94e35bc18a7488d7982d4f78ce14918877d291c9c5c767bfd6a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_rmdir.texi: 
-  copyright: ''
-  hash: 1520922fcc74b7d84ab000e8f2cc44f6b632d3b360c994c96ce622aaac36c8ea
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_servstate.texi: 
-  copyright: ''
-  hash: ae1e425890ce2bd608090b7d4fda1a425f4eb9e9d9f8a723ea19657380abe127
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_sperrno.texi: 
-  copyright: ''
-  hash: f10e0ad2db9f765254f6314102b1293f9016812a67324536afc77869bea491fd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_sperror.texi: 
-  copyright: ''
-  hash: 0424f046ae5b85b906c4f37dde7692dda8837b71c3e8e5f2fe20a3803efdb6be
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_sperror_r.texi: 
-  copyright: ''
-  hash: 0b85879da12a5e9e29a941c50f3efd8e45e0541a0e18802f9a4506be929cb612
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_stats.texi: 
-  copyright: ''
-  hash: 42c64c2e6a6584e33cd7eb39921d729dbd6e6a26115b6d2826df92d6939149ef
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nis_verifygroup.texi: 
-  copyright: ''
-  hash: be6731f73427f2734ac003d261a86ec8c46e25e1fc47cce640ccd74020f884c5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/nrand48_r.texi: 
-  copyright: ''
-  hash: 7712ccaaa3bdcae2f7eb09d18a52fe84269c4bafff25c8852f4fcba3ac3e98d2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ntp_adjtime.texi: 
-  copyright: ''
-  hash: 9e4776f50a88065a71713e5f612bce9632cc30b1f8bc4d2954a2446f9cb88aef
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ntp_gettime.texi: 
-  copyright: ''
-  hash: 43d0ca9a1f71946a1212081c572d4bbf1200a6741aac69b1615aab6a59449b55
-  license: ''
-  license_text: ''
-./doc/glibc-functions/obstack_alloc_failed_handler.texi: 
-  copyright: ''
-  hash: 5a162a65e8a06e06e90a6b0899fd99e63db1b413893f10ba7032f07f8aef588b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/obstack_exit_failure.texi: 
-  copyright: ''
-  hash: 2edf67bf7a1835c04266ee354618b79b2cf1a55504e63f8df43d88e33fa7adea
-  license: ''
-  license_text: ''
-./doc/glibc-functions/obstack_free.texi: 
-  copyright: ''
-  hash: 07713f4fe1679f4214b0ef91479610382e1e71da8177afffda8ef741d4bf2bef
-  license: ''
-  license_text: ''
-./doc/glibc-functions/obstack_printf.texi: 
-  copyright: ''
-  hash: b365a91c2948c92bec6e04ad47471246074c066e91a9c7280419a2b0565744ba
-  license: ''
-  license_text: ''
-./doc/glibc-functions/obstack_vprintf.texi: 
-  copyright: ''
-  hash: 0116c5a2b4b5e76cede18a9b00d4584b1fe9c48eab74d203c12d979e2b2e39c9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/on_exit.texi: 
-  copyright: ''
-  hash: f98b9178741dde52f30e55489bd237902b8cb9e5b46daed74deb35af2053adb3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/parse_printf_format.texi: 
-  copyright: ''
-  hash: 08ec06c5f956c4070a8b8054be634cc362e5e0e26e4ec8caef463a3ab9cd4cc9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/personality.texi: 
-  copyright: ''
-  hash: 63ce42d8b39416dbcd2374b3db74e391930f2df790ac086e8b1e7f762ae2fd69
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pipe2.texi: 
-  copyright: ''
-  hash: 12ae9770c7677e3b83f1a72345d69c53783e89421def3b00a427828aa4aae3b7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pmap_getmaps.texi: 
-  copyright: ''
-  hash: 9d85f6d0f65096677f4732a2bc82f6afa1f50403b05bf01e92206309db3f8873
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pmap_getport.texi: 
-  copyright: ''
-  hash: 43960c367109816c9e5617623378139b66ceb8f0b929615750e1c5f4843f9dd2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pmap_rmtcall.texi: 
-  copyright: ''
-  hash: 03654d766f665bb32b4a7b827d20aa8f6bea089916d5f00fa3f88848d411778d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pmap_set.texi: 
-  copyright: ''
-  hash: 201b0d49ff805bb952b775dcdb25c33a70a6d0ee2aa959f9dcdce21ab7926ce5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pmap_unset.texi: 
-  copyright: ''
-  hash: 054bd3e1cd0792cb25c68df8fb153cd370444146dfc243b81cb187e177db8e48
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pow10.texi: 
-  copyright: ''
-  hash: f7912dfe94bb0f8ed4dee6d39483b4a4f76d7351546ef2c3e26fd901e252d2d6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pow10f.texi: 
-  copyright: ''
-  hash: 877756c67f392d56fce20c2950bec91968190c557374f63cd87a22763ce81b47
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pow10l.texi: 
-  copyright: ''
-  hash: a4c1ab66b2a92023aed121a70e545bc9d98b47f6df5d36b1351cc504e97d55d5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/prctl.texi: 
-  copyright: ''
-  hash: 2427ec4bec38663fd75581e4a8602ed0c541707f2cba09a65af9825adb32a23c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/printf_size.texi: 
-  copyright: ''
-  hash: ccc98cc15667f89d94b22bc643ce60325dd868e79cd95487d7f6ad497a1210b9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/printf_size_info.texi: 
-  copyright: ''
-  hash: 237a32ff30c1e23980f4360ba09bfb50c6be4224fabd7a59919bd51aeffaaafc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/profil.texi: 
-  copyright: ''
-  hash: 0285b1f65b72595b3cdc34f19758d6a7c23b39ca0f9fbea16ce0fd482b5633ae
-  license: ''
-  license_text: ''
-./doc/glibc-functions/program_invocation_name.texi: 
-  copyright: ''
-  hash: db3aa2f7f6e63fde4dd4838f5ca464248be07d6ce02f604a2409cb704bb60f78
-  license: ''
-  license_text: ''
-./doc/glibc-functions/program_invocation_short_name.texi: 
-  copyright: ''
-  hash: 8fcb3035a868fc5dfa3c18c5064f3f8923e58487d6fd76f3c7b2b0655ee2d384
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pthread_getattr_np.texi: 
-  copyright: ''
-  hash: 5590b31dad731bebfe2b8ceb8113ac27a6c50d9217e44e6ab3f30cead2c0d24e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pthread_kill_other_threads_np.texi: 
-  copyright: ''
-  hash: e25942ee2f53e9ca33f05e74e0ae70f80054d143a1ee2b6fe1dfd8e3289969b3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pthread_rwlockattr_getkind_np.texi: 
-  copyright: ''
-  hash: f84f03d67a82f7e2c4af4bc8a182657f2a4551524d997213cee786e26dfbf543
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pthread_rwlockattr_setkind_np.texi: 
-  copyright: ''
-  hash: 5ae7f4598ef73bf7ce5a8f90875cdcff75b082163e7d79da8ba002b34fb91ea2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pthread_yield.texi: 
-  copyright: ''
-  hash: e1337bc33112135e65c647d51a8d5adee256835cb800205a520d0546efcf4873
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ptrace.texi: 
-  copyright: ''
-  hash: 27af6240148516067e80c328ec3534ed7e40044622162395eef385f5719f584d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ptsname_r.texi: 
-  copyright: ''
-  hash: 1cc50cfb5fafbdd0153d9c1788a49c41bb87fc9100e76edd9175ae4fc9547845
-  license: ''
-  license_text: ''
-./doc/glibc-functions/putgrent.texi: 
-  copyright: ''
-  hash: 544f112128ba4307a201ac0244bdcf3352fce4cb574457ff2406b5b357d0d483
-  license: ''
-  license_text: ''
-./doc/glibc-functions/putpwent.texi: 
-  copyright: ''
-  hash: 93178cf90ec4ac36c8ae75028fca56b82288ccb6f4fe145a418aa253bc3fe25c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/putspent.texi: 
-  copyright: ''
-  hash: d6963772ef8e056c5e923c67f34fd2e931d6bf1f1e62dd2bae741ace73ec4265
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pututline.texi: 
-  copyright: ''
-  hash: afff12c0ed2226e45909cef2f6b409fddf503c4d0245a035fa85302e70bd9e10
-  license: ''
-  license_text: ''
-./doc/glibc-functions/putw.texi: 
-  copyright: ''
-  hash: a7028bb2975807511cf4acd39f137c540e13cdcd67e0f00188a345645605ccc2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/putwc_unlocked.texi: 
-  copyright: ''
-  hash: 570a8de4fa9f99fd2e735a412763e2dd138191615b64b9bb16bc3c3cd03b535a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/putwchar_unlocked.texi: 
-  copyright: ''
-  hash: f69ccaf0b8879e1b32f8329370cbbd3eef8ebf53964299657799567911f280e6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/pvalloc.texi: 
-  copyright: ''
-  hash: 01f71af124d7774fd46b6a3c388a86a7a0039fc30d235d2ea226ee8bc659912b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/qecvt.texi: 
-  copyright: ''
-  hash: c2c83522e967fd4ceb406a9629d36310bedc29e77ba38d75f3a5367a178f8932
-  license: ''
-  license_text: ''
-./doc/glibc-functions/qecvt_r.texi: 
-  copyright: ''
-  hash: a1c7516fe37f8c935920a2793726be94fcb48c5064bf4fbcc516a47b9bf9d2db
-  license: ''
-  license_text: ''
-./doc/glibc-functions/qfcvt.texi: 
-  copyright: ''
-  hash: 1b0d08244caaca9dd6f63183a50f81ee270c7250b6c4090fec67e3cf11e0e253
-  license: ''
-  license_text: ''
-./doc/glibc-functions/qfcvt_r.texi: 
-  copyright: ''
-  hash: 06b32b91bdd122fb691306a30ee07dd366dc10afd4fb5f4b797675626c46cf22
-  license: ''
-  license_text: ''
-./doc/glibc-functions/qgcvt.texi: 
-  copyright: ''
-  hash: ec9dd3a171af5d5d31ec024141385d5bd30972d0d66e42dca15e845bd24f395f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/quotactl.texi: 
-  copyright: ''
-  hash: 836ab775c2feab3b068d36d672ad6123aad387f6fb1f5fa368f06a01ac807f2e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/random_r.texi: 
-  copyright: ''
-  hash: 5844e7a46c936938dfbf2ce4fdbcbe51d82a4074a6bc5b2414f2a107311479dd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rawmemchr.texi: 
-  copyright: ''
-  hash: a88efb16cc1008fb2069f17f86e19d4ca86a2ee95560cffd35e015f79d55c8b2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rcmd.texi: 
-  copyright: ''
-  hash: e257d1d57a345cddc907c3e227b0d51dfbece0c211d1b0e9d7b2519ba85090b1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rcmd_af.texi: 
-  copyright: ''
-  hash: 33267b7d2782d13d76324a3812e2ce79aae5bf28b639472be4e5dbeb29588118
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_comp.texi: 
-  copyright: ''
-  hash: 01bfce768f404c4fff73edfee715bcfea880485a92171532c28dd24ee902ddda
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_compile_fastmap.texi: 
-  copyright: ''
-  hash: df04f615fa59f124aea7423c97c3ab28d68bc4e7354fdba5bec20ec2189c38bc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_compile_pattern.texi: 
-  copyright: ''
-  hash: ed911d035be21cdd51ea9886bfeac42f4b1528025c790409d988e1dd298ec0e4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_exec.texi: 
-  copyright: ''
-  hash: a1297936ebe8c37bd2e40e89c02f620cee30ab8e066c05b44c9e007fbcbebe85
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_match.texi: 
-  copyright: ''
-  hash: b18566e77f75118465e53a1b14a0cf42da170947642f9c6d7d32272329b89661
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_match_2.texi: 
-  copyright: ''
-  hash: b456a65fbeabbb70c1ea7c3cc9d9af1c0d1fd7313ae2cab14bf0fcdfe8a9d949
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_search.texi: 
-  copyright: ''
-  hash: 1546d42e4213de80f339e367568465dddb64971f935cca31fff6a46ceaa22107
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_search_2.texi: 
-  copyright: ''
-  hash: 81618d34a0a95e7bf19b0c3f6e9bb7dc853e954bc4bc0e91581cc76af5aec179
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_set_registers.texi: 
-  copyright: ''
-  hash: 56b39a6302e400bfb705a54caefa53c2433d8b834ddd4f96e4322a2afd219580
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_set_syntax.texi: 
-  copyright: ''
-  hash: 748a99045110cf56f79df6e0d5f4b234bf7dde20a723d93a0a673da3b03c90ad
-  license: ''
-  license_text: ''
-./doc/glibc-functions/re_syntax_options.texi: 
-  copyright: ''
-  hash: 0c830a2c8456fd51772baaa9a4090458bb2e6b76f76c386603a25c228f7b6ca6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/readahead.texi: 
-  copyright: ''
-  hash: 8f826416be974f9a1e522ef20f3a12a29ef06badbf895c58d04588577d843e0e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/reboot.texi: 
-  copyright: ''
-  hash: 821bc1ae818abe8915a90b46f5222f4ada16fbea77e88d86c0358421e73b709c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/register_printf_function.texi: 
-  copyright: ''
-  hash: 55330e647478ac89ec8173c27dc6ccde685c0c9ff1aa731f92c403c3643264f3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/remap_file_pages.texi: 
-  copyright: ''
-  hash: 6ebd3f6be34b6b2bfd24e20710e6b8f9eb129fa6248ab974a952205fd4a98f67
-  license: ''
-  license_text: ''
-./doc/glibc-functions/removexattr.texi: 
-  copyright: ''
-  hash: 84ac25baaee52cbb40f99f510e79d07b6b8428d24256042b6ae785a0868f9883
-  license: ''
-  license_text: ''
-./doc/glibc-functions/res_init.texi: 
-  copyright: ''
-  hash: 388e462fc34d47868da844ac1b41166ca1d710720fc4cf90949471b6b22e06df
-  license: ''
-  license_text: ''
-./doc/glibc-functions/res_mkquery.texi: 
-  copyright: ''
-  hash: 0b93eb65d4f8eb234d2cf53f9be95119f92ba036e114bccffaad8f4217b8be95
-  license: ''
-  license_text: ''
-./doc/glibc-functions/res_query.texi: 
-  copyright: ''
-  hash: 86b37d31764f008efaccff858dd736522731703d0e3db5df805ff8a8641830d7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/res_querydomain.texi: 
-  copyright: ''
-  hash: 4febd67db3cafc50012c62f08b9150179b6b6a86fe3b563308abcf8aef41ea22
-  license: ''
-  license_text: ''
-./doc/glibc-functions/res_search.texi: 
-  copyright: ''
-  hash: c61477ed9ea9b2f03e6d988d1459e5c85d6d767e5d5afd77688cbe1531c9d6bb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/revoke.texi: 
-  copyright: ''
-  hash: adf7f5046e9f85a1de13826a1877dab9bfb1e3f8926f96c31feb8fc9917c69a0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rexec.texi: 
-  copyright: ''
-  hash: 4beb711fc9303350ba038dd9e41dd18a54e9cd1df22fd2848b2ccdb633abc29a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rexec_af.texi: 
-  copyright: ''
-  hash: 2d2addfd332aeac29c6e6f0199609364003aa36cfe6edb4da81edd73f408250d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rpc_createerr.texi: 
-  copyright: ''
-  hash: cd184775acd5c98bf80055c4f63cc5e4f1cf8be76c79f8359575324e96c0126c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rpmatch.texi: 
-  copyright: ''
-  hash: 5626ebb2b2a3e883ddea5f7983fd541e62176b8fe1b90b6315281551744b773a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rresvport.texi: 
-  copyright: ''
-  hash: a97f5ee77da3a964130fe12ad34f4429a25dc4e8983614eee3ff2228e41a5f05
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rresvport_af.texi: 
-  copyright: ''
-  hash: 5211bddef422718e87e6aed59cf45e467d35e86554b9620b72846aa840542485
-  license: ''
-  license_text: ''
-./doc/glibc-functions/rtime.texi: 
-  copyright: ''
-  hash: 2da678ee5e984b04b11b8441f6c38275bfce06b3d62f5bbf89e85c5510b10242
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ruserok.texi: 
-  copyright: ''
-  hash: 4521b929c1ed87ca5ae848c5a95d221964ecfdc3efb41a6f0d05adc5c438fb6c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ruserok_af.texi: 
-  copyright: ''
-  hash: 54c8a002ff9e44fc49fb4bffd3bccdcc0f11e545b23463d9e3d3945bc8862e56
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sbrk.texi: 
-  copyright: ''
-  hash: 4d580822d85c2db8a05c71c6bbc254541a6ce7666158f73bc52fe573cc565151
-  license: ''
-  license_text: ''
-./doc/glibc-functions/scalbf.texi: 
-  copyright: ''
-  hash: b16e449629ea32f221f6a63199f6b1691aa80be4d73e7215d8a0e1139149a9d6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/scalbl.texi: 
-  copyright: ''
-  hash: b30afc7e613e8f733f740a96f53c657699ace3dd840b3dd6859224ee96ca2385
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sched_getaffinity.texi: 
-  copyright: ''
-  hash: c3f41bc0b5cc0b9f81a9b3c03a45c74c58936a3ed3fda2d3983a1de9c0cdf054
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sched_setaffinity.texi: 
-  copyright: ''
-  hash: 2df764b35ee0d3f8a787b710f5154954dd0775e3daf75a5b9cfb34c1cd8c010c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/seed48_r.texi: 
-  copyright: ''
-  hash: 6f0ca8a62a531d471a5968c0b0117f6bfd1b3c4f8292a2f805e916f1b4ebea5d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/semtimedop.texi: 
-  copyright: ''
-  hash: 80ac3efc9c4674b2a8c0fba162e409c061324e76e3715bb034e48f06d744c1ec
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sendfile.texi: 
-  copyright: ''
-  hash: 20c385fd8bd96b281377ff50c7eedf88fe7f424d965765b9ed3429976ffe788a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setaliasent.texi: 
-  copyright: ''
-  hash: c676df80fadf27ec301ff8d5668fb6e7aa5e057788c4b334847bcd9402724933
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setbuffer.texi: 
-  copyright: ''
-  hash: 840463919c23c80fb9256b4d89f5a8a975413c47a4b18d99a291d2c3fd775c74
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setdomainname.texi: 
-  copyright: ''
-  hash: d246fb85da1d127786c3c8c54fdd4662f2ab4234985ba4ec0f9e983a2856970d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setfsent.texi: 
-  copyright: ''
-  hash: 92cc739baa4eb3f52eefcad295bba2960905e5acec6e3f69afdb6cccac5b9d96
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setfsgid.texi: 
-  copyright: ''
-  hash: a3e35a76fb66fc7edfe5eadb4fca7c217aa0f2dc521b0784d0e1e47749f1c49e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setfsuid.texi: 
-  copyright: ''
-  hash: 72853abaad0d3750b660aaa0496f1d95d3ea3a182bc34a16df3ea00a1b25ac1b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setgroups.texi: 
-  copyright: ''
-  hash: d47bf569c94762a70603caaa8b89619e1820828049b0a19af2694cf7928da98c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sethostid.texi: 
-  copyright: ''
-  hash: 2caed9ea890d6844a17a375c6b579ec03850c96c9aed240cea87bd0b882c9561
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sethostname.texi: 
-  copyright: ''
-  hash: 6359c3be8e8047c37933b2a94e5323fc44e3be3ef72ad19957500e4d1449c832
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setipv4sourcefilter.texi: 
-  copyright: ''
-  hash: 769bdc41e8ac069fabcdf83b06be2c5741e75b340352c2b9eafa1d294f032097
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setkey_r.texi: 
-  copyright: ''
-  hash: ff01f1e3f4faf132318c0d62ae42e6e536e83adf9f04b6987d397f18b871dda1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setlinebuf.texi: 
-  copyright: ''
-  hash: 823f1a2c56b9bfd0fc25a9476ef59c90fadb49050d097037bc459d3d71e7c1e4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setlogin.texi: 
-  copyright: ''
-  hash: 9eaafc78df2669e5b4e72a2e5a485085acb927d50e5be2953dbeb2d81701391f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setmntent.texi: 
-  copyright: ''
-  hash: b332b02169657299a7ca3ba9af1e7e3fc737d24cd2983f7a4d133af81b092961
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setnetgrent.texi: 
-  copyright: ''
-  hash: 30d8d87126649c90573d67b04ff921db26d84a756946067181cb5946356b0c0a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setresgid.texi: 
-  copyright: ''
-  hash: 4975dfd5771c4957030f086d8ac5ce7189cdde23f5e2bb67d0ff07d968e35479
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setresuid.texi: 
-  copyright: ''
-  hash: cbd55c93dfbb005061c4332bb10d9cd19c08f8a184a1d192c45d42466ac5fc85
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setrpcent.texi: 
-  copyright: ''
-  hash: ca47e2ef511b58040b7786ede8b64eaa8d0cb58ac434221596b0d7243d1b480c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setsourcefilter.texi: 
-  copyright: ''
-  hash: 9e3a447c3cd41174f4b9ea6a4eede7e34ee84c95483674ed06d20ff866e0bfc8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setspent.texi: 
-  copyright: ''
-  hash: 68ed2648af0ebecb98d3bf880c5be4de1fce4929b0de543754c298c458c011fd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setstate_r.texi: 
-  copyright: ''
-  hash: e4d7b351007b8e8def79a82d454f164d8f556f4bf6826632ba9d25a7145afb84
-  license: ''
-  license_text: ''
-./doc/glibc-functions/settimeofday.texi: 
-  copyright: ''
-  hash: fc6c7b74ed55751f1b9cd21d152fa6e70b668dcf57710351f309902b5e5affb9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setttyent.texi: 
-  copyright: ''
-  hash: 872b4c7efffec76c314ae3692798b581b59be4b0a11eb6e347a2433f8d3d1b74
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setusershell.texi: 
-  copyright: ''
-  hash: 477ef1c7ddfce9e2288f6a88e43c3ea8e145e597f6e804432e490c88a6fbdb7d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setutent.texi: 
-  copyright: ''
-  hash: 36be58898a9d9619f987500bb8ad48703b3b386cdb1dca7f13a8f722980c3f51
-  license: ''
-  license_text: ''
-./doc/glibc-functions/setxattr.texi: 
-  copyright: ''
-  hash: af409fa4c1d03fe81bac55d63c469cdc03226ca561f727c619154204da0bf115
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sgetspent.texi: 
-  copyright: ''
-  hash: 2f4846b40833b0c7688dfa37b976889a9f8cf678e31e3d1531283d9a60baf9f7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sgetspent_r.texi: 
-  copyright: ''
-  hash: 978bcfc4fc40a2fdb82866fb2987a7a8e76d94770f437d12d4fcd9f1f53520da
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sigandset.texi: 
-  copyright: ''
-  hash: 5b76732bc467d481bed4bf2c89662fa7a83bd3efb8edbe663a459dacc489df5a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sigblock.texi: 
-  copyright: ''
-  hash: d24395448034650dd3561cf398904e9423525f1ea310dcc9495ad4389678ff5f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/siggetmask.texi: 
-  copyright: ''
-  hash: 9547fcbda13bfb47700b223e5625b1dd8f7ead952650f7f1601796a5bd9bfd75
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sigisemptyset.texi: 
-  copyright: ''
-  hash: adc7331e09d3e1906354d3f1088b3d82a0f374a49d70553bf2a8bdf5dabd6d98
-  license: ''
-  license_text: ''
-./doc/glibc-functions/significand.texi: 
-  copyright: ''
-  hash: e3fc1148c171fbea7b8a88291964da753fc483cc72e395f90defc8f913dab945
-  license: ''
-  license_text: ''
-./doc/glibc-functions/significandf.texi: 
-  copyright: ''
-  hash: 914e8ed95038b7596b6f8664b5d356e94bf64fd371a8d34e5c6993514c247e80
-  license: ''
-  license_text: ''
-./doc/glibc-functions/significandl.texi: 
-  copyright: ''
-  hash: b914050d57690497a42bf4f9ea1629690571bf8f248678bb27144558244459bf
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sigorset.texi: 
-  copyright: ''
-  hash: 0f90cd35021ca496fcca811f88941ad4c53f6bb7f4bb5309ac69e9cec7b2607a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sigreturn.texi: 
-  copyright: ''
-  hash: 4109f568a6d1455056f5d91d0c44277e0af12df9f48ead1d3b0b093d9cb88367
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sigsetmask.texi: 
-  copyright: ''
-  hash: 21b02d389a2a52be020e6d2debdbb63155256cbcd340a7139e37883d164a2f53
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sigstack.texi: 
-  copyright: ''
-  hash: b27976cb6de009f776f9d77d1e943fd892684d910082b2e313ab25dbd9929c56
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sigvec.texi: 
-  copyright: ''
-  hash: c8f0aa7dc316b819ba924fdd1b032a56d1c51033556703a95693b7ad37469047
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sincos.texi: 
-  copyright: ''
-  hash: e099c2aa2af17f5445683b13950dc83c8f36a8c799ddd736778f60b769bfa978
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sincosf.texi: 
-  copyright: ''
-  hash: 9acbcc862d6641f66afd97f947372db43d1da508ebf44bb2e097cfb5dadfe08a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sincosl.texi: 
-  copyright: ''
-  hash: a89fd4b147815474f331d64f144fbd4d7d75f2227af7eb93441703a0b16d3c32
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sprofil.texi: 
-  copyright: ''
-  hash: c08fdfe99dcfab4dca1cb86b587f2240b31c837207173d7174db1f34d4062e2c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/srand48_r.texi: 
-  copyright: ''
-  hash: a1b31d907a31703ac36d663284071ace96275b5a27822fe0a1e5e4f1c2b603a5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/srandom_r.texi: 
-  copyright: ''
-  hash: 2a08e55af0f00d7af009ec4676559ba9918f061ab74e235b22c59972ac050349
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ssignal.texi: 
-  copyright: ''
-  hash: fcb2979253673c67d4c09487a6cc8cf39be3c2252c6ec496042be4023ea0a398
-  license: ''
-  license_text: ''
-./doc/glibc-functions/statfs.texi: 
-  copyright: ''
-  hash: 9d6fc5e1c0bdfae6063e50e332eb0012b995748c979a5d8580eef86bfd8264ee
-  license: ''
-  license_text: ''
-./doc/glibc-functions/step.texi: 
-  copyright: ''
-  hash: 426a0a4b16e9bcbd7d7aa2ec82179983156979e5d4f5cf3b4873f222927b3649
-  license: ''
-  license_text: ''
-./doc/glibc-functions/stime.texi: 
-  copyright: ''
-  hash: f64814a768ab3a8c2dfc527a6996a254ae0378f1372004713722faa0f7539d86
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strcasestr.texi: 
-  copyright: ''
-  hash: 6be97e12f20df96d2042b184ed047d50673dc850649541ba46094f6487dc5932
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strchrnul.texi: 
-  copyright: ''
-  hash: c291b83d07a36362c9038066bdc0d7d21ec01dd7ae29f155f14de1706c7fc7f7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strfry.texi: 
-  copyright: ''
-  hash: eca813b0b80cd6fd4f69613929302810c07d23628958246d8b381f371a8ab226
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strptime_l.texi: 
-  copyright: ''
-  hash: 61de6a13e4b945c81a96495f6c1314565151113468844dc21ee8250c55736e4b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strsep.texi: 
-  copyright: ''
-  hash: b489bf696b48cd524d457667002388a229416e42dc1a63eb63730caa7f9f834e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtod_l.texi: 
-  copyright: ''
-  hash: 96d95390352ef1aaccbdef7d3046cd2710855e0956a86dd2d9ae0a73882d8d2f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtof_l.texi: 
-  copyright: ''
-  hash: 3a7c917085697f19f398d2dff4f912cc2558df8b1a20619530347c1a32cf2a10
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtol_l.texi: 
-  copyright: ''
-  hash: 1056e76e6f3b96576d6daa749628144d71173983258b917cfabdad15c2a5cc84
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtold_l.texi: 
-  copyright: ''
-  hash: 980aab34470b28f72b4d05de96192a884c5a5b4735613778864b58c978d2a052
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtoll_l.texi: 
-  copyright: ''
-  hash: 7c77b5e468dba6520dad40a9029afb868c0e77759d1aded41f788d9512fa7fc1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtoq.texi: 
-  copyright: ''
-  hash: 3ee5c14f722fd6571b509d168bebaa6eac29ae9fa67e06fa6185e1c6434f843a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtoul_l.texi: 
-  copyright: ''
-  hash: 2e9edb1ca6317be19540834bdc994101d4e1ba3acf938a92f0a208d703663327
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtoull_l.texi: 
-  copyright: ''
-  hash: d72937fc153e6134f62f1e5e091dc1fba60c2bfe36ee0fde62e11f29af458254
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strtouq.texi: 
-  copyright: ''
-  hash: 4d4e4b1560b347f7c940bf2f1ab536573b722bc14621595d1f58b0beb6fbcc56
-  license: ''
-  license_text: ''
-./doc/glibc-functions/strverscmp.texi: 
-  copyright: ''
-  hash: 0434fb9a8d1d9eb76da42138e9dddaabb2ed83e8256c8125e1518d22996cdf13
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_exit.texi: 
-  copyright: ''
-  hash: 742a22a37b97a093d94bfb5e450a99a8493496e7a45e9fbc9523dd8b1e8e26ad
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_fdset.texi: 
-  copyright: ''
-  hash: 86ac209423900ccf82784e29806514f557a75814e294a8ec878a178bc4a43d7a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_getreq.texi: 
-  copyright: ''
-  hash: 0d0f553c97d0c006ff8fd51d80811496471a155c5f6142ef18346229375be10a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_getreq_common.texi: 
-  copyright: ''
-  hash: 6eb644f28f759de13fb4a8a99336de8a03220b4313b734f69fd0f7592bec8385
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_getreq_poll.texi: 
-  copyright: ''
-  hash: bd3b4fdaad69465c30adb4295f68efa66bf8f4ed1eb19fb4516ab39d442f9cfc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_getreqset.texi: 
-  copyright: ''
-  hash: 998123121ccd30984d17bd2695098f64638509b84567a5245ad531e5460c24a2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_max_pollfd.texi: 
-  copyright: ''
-  hash: a8c742ad774e846b1ae0224476a8eafacf12814e0d2d92e51c10c19c89d47f72
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_pollfd.texi: 
-  copyright: ''
-  hash: a5eb6ae06444b07898b1ff83435e446b709bee52ac757f9bbe48742ee666ed57
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_register.texi: 
-  copyright: ''
-  hash: 1a6f4f41aac1621aa10a247323bad0698f2b0531c10b84782216e3728f0009ff
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_run.texi: 
-  copyright: ''
-  hash: da083b143bb1db65e5210a2456b483c19b833f3d2d3e495fcf9b4b319b6a1fec
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_sendreply.texi: 
-  copyright: ''
-  hash: d710e6624e82f543d3ad7fdefe76aefd4b88cd0142ad24f75d5403c7942f93dd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svc_unregister.texi: 
-  copyright: ''
-  hash: ad6885dfeb185cdf4f0ce763b440c8805f8e4b02ac9c44df6231576ac68918aa
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcerr_auth.texi: 
-  copyright: ''
-  hash: 657d79eaada1f05fcd496f9faf8a85c5b914419aee6c0681b961250cba6b8bd2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcerr_decode.texi: 
-  copyright: ''
-  hash: 013d5c25e6c2ab654f6b6b95e33881fc2e774e31b404265acdba1610fe7ff4a1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcerr_noproc.texi: 
-  copyright: ''
-  hash: 0093d9d2b2f48942af33a201c8aa57b2d588db21b684f0cb9622ba87f780ac97
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcerr_noprog.texi: 
-  copyright: ''
-  hash: 0411b3b4407bb4ebf4a5a86b619c044ee035b2a77fbcf2de14ab8c04a44708d5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcerr_progvers.texi: 
-  copyright: ''
-  hash: 63b59aa0eaba24585ee2ea85ba6b8d2ce2212ced66266f5fff5ef99043ca4675
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcerr_systemerr.texi: 
-  copyright: ''
-  hash: 9a43f8242ce29eea2b3dabe6eba74372a66b998d24a8784634b931912ab118e5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcerr_weakauth.texi: 
-  copyright: ''
-  hash: 60f129f48b216becf43b7a6e107572bad1c0aa12975c9b9e2dcb4de32ea12bb6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcraw_create.texi: 
-  copyright: ''
-  hash: 9875045015fb706eed8645e1d24f2b6d09cff0018b985afe987c567c3f262168
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svctcp_create.texi: 
-  copyright: ''
-  hash: 76e63979ea96b2ce48409fcba007b8d2a2dd2d1da33cd8c4be2477376f860d6a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcudp_bufcreate.texi: 
-  copyright: ''
-  hash: ebad62a46d00b7f175d1ac81978d861de596d20f37be2a7e01c918ee9ad815bb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcudp_create.texi: 
-  copyright: ''
-  hash: e6c5c92dcfc4d6256d7c0c8704a3ab0156d7b8f8f4da9cdb264522e3cffcca68
-  license: ''
-  license_text: ''
-./doc/glibc-functions/svcunix_create.texi: 
-  copyright: ''
-  hash: c2d36cc3e9b42dc5c0087798d08088d981fee60bb2b1fc134cb051015dfdf364
-  license: ''
-  license_text: ''
-./doc/glibc-functions/swapoff.texi: 
-  copyright: ''
-  hash: d28e58cd281ea7d216c396bbe6cbb28c4ade6a1b1cb8f5d2bdfae763de8eb9bd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/swapon.texi: 
-  copyright: ''
-  hash: a2ae81f7c69492bebb553992ff91279a5e17c259426a305e78c4398175810bd4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sys_errlist.texi: 
-  copyright: ''
-  hash: 9484aa6c644fd4efcf3f9c79bbb710107e54086b9d2cfea822a505e85b11d95f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sys_nerr.texi: 
-  copyright: ''
-  hash: 6c269f9e04c5d53a2917b1fddeb7d432f614326628f60cdf42128bdbc1b4bf58
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sys_siglist.texi: 
-  copyright: ''
-  hash: cdfa2194216664145565158d29ce28afe50425b6434879005d1f09fc2e353de8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/syscall.texi: 
-  copyright: ''
-  hash: 190444fde09ca92f5d3c1a088254e8ea24f8ad21e7e743bd7bc74d5e7c3d8422
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sysctl.texi: 
-  copyright: ''
-  hash: 7caee75d99a482a34152821c313157a935611e93d37475e51fcfa966c389b00f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sysinfo.texi: 
-  copyright: ''
-  hash: 2ad08e1570e50f92819f57b496af7be37f638f2c45f31ddf1445f35d928e58b8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/sysv_signal.texi: 
-  copyright: ''
-  hash: 53654570fe739a0174eac69d3395bed8f5ee0a66ab1dce4870f0c6a9ef8da8d8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/tdestroy.texi: 
-  copyright: ''
-  hash: 2b159ca8f8ccd5a6ba34012b632072be835387cef1daa34853fdbdec8d11bfd3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/textdomain.texi: 
-  copyright: ''
-  hash: 2b3b638baceaf30671d2612435628b02e3510a81bcb035c4d0953415beb44aa0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/timegm.texi: 
-  copyright: ''
-  hash: b33fd6b9183cda8ba31a038b0646223cf342064f7f57f96a60c01adee101f593
-  license: ''
-  license_text: ''
-./doc/glibc-functions/timelocal.texi: 
-  copyright: ''
-  hash: aa7d6d8db5573d824931cad1a0e543b7ac6615fb9f76d7e294700027c2a7f901
-  license: ''
-  license_text: ''
-./doc/glibc-functions/tmpnam_r.texi: 
-  copyright: ''
-  hash: 867eda2cdd3958cb2d0774ac423ace6f99f332061f97fc1e89ee182b4defd593
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ttyslot.texi: 
-  copyright: ''
-  hash: a2db69dfed6d03d128a80b25100aa8bfdbf9ab8b7e6aae779b69352fe68be984
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ulckpwdf.texi: 
-  copyright: ''
-  hash: 5f913bc70494c38469fbeb1b242348e0d6818d5efa27ce69d1e56d0bf9733477
-  license: ''
-  license_text: ''
-./doc/glibc-functions/umount.texi: 
-  copyright: ''
-  hash: fda8d64fea228f847027a34530867b8fb61767a6b19b9bd8a2bccd46400dd1c5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/umount2.texi: 
-  copyright: ''
-  hash: 2957ef22d4b034fe43264d7a077e0c0b79acfe9b8d77dac47cbd9871e7322a87
-  license: ''
-  license_text: ''
-./doc/glibc-functions/updwtmp.texi: 
-  copyright: ''
-  hash: 0b9cdb5b25e1d740d3d4f9c7f3b42619f569938aba2412951a154103a9300952
-  license: ''
-  license_text: ''
-./doc/glibc-functions/updwtmpx.texi: 
-  copyright: ''
-  hash: 3d8f09f5afded96b9f0ae4b4d20dfa978893205440ea6bd95424e0e3861d624a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/user2netname.texi: 
-  copyright: ''
-  hash: 5f52a0441b2809065a8fa64c97c5c16eccf950ae9ed3108a0f0746ffc0ecea5a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ustat.texi: 
-  copyright: ''
-  hash: f6cc53dfd21cf85c0e451aeea98c50ccd011ea4c88da39fcde741121726e1183
-  license: ''
-  license_text: ''
-./doc/glibc-functions/utmpname.texi: 
-  copyright: ''
-  hash: 30f2c75b23465299b58ac58dd7d8782080f478c88177e4f4a383f7c45f7120db
-  license: ''
-  license_text: ''
-./doc/glibc-functions/utmpxname.texi: 
-  copyright: ''
-  hash: 7f048aaa1c923da17dbac39bf8b24992e0e1429d0f8f1b07ad60a6b4c0959974
-  license: ''
-  license_text: ''
-./doc/glibc-functions/valloc.texi: 
-  copyright: ''
-  hash: bc0a2963c65006320c0a49b64417fe78e8b2fa1dfa9bacec78dcada637280365
-  license: ''
-  license_text: ''
-./doc/glibc-functions/vasprintf.texi: 
-  copyright: ''
-  hash: 01dc69843bb08b39bbef53771785a3f74e86491f2d1dddc8739d898d2a8bdf9a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/verr.texi: 
-  copyright: ''
-  hash: 78267ac4d25a9129dd9b2509e14064e457b8c938b2f7075931403403963d17da
-  license: ''
-  license_text: ''
-./doc/glibc-functions/verrx.texi: 
-  copyright: ''
-  hash: 243ae75a133530c958e53bb80fbef71f2528824270327400efbe249a75c523cd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/versionsort.texi: 
-  copyright: ''
-  hash: a8d292fdf0af9d2eb2473ecba25b36c64863e58acce8c463bf054dc5476603c8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/vhangup.texi: 
-  copyright: ''
-  hash: 24826dfcb8f9b2e73d2e89ddd190426d8e5d0f227b0082ac812909b10b8a8b3d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/vlimit.texi: 
-  copyright: ''
-  hash: 9462f628ec3422857cc94eb976adec9a79466b27f54a83ab819f916053c96976
-  license: ''
-  license_text: ''
-./doc/glibc-functions/vm86.texi: 
-  copyright: ''
-  hash: c86ac73a01f52ed04acc07d62d1ec512640f650cb0347dd079e7ec4c71e0af5d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/vsyslog.texi: 
-  copyright: ''
-  hash: 848e6a794d99db034fd60bb81dd195003e60770bffcdee4dbaeaebcf71c98ddd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/vtimes.texi: 
-  copyright: ''
-  hash: 06d2ebc51079102284cf04e82831a57f97849fd2a1e177aaed25aa462f93e12f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/vwarn.texi: 
-  copyright: ''
-  hash: fdc2b63b39a6cb2c3207ba881f0765eb8768f34d2fa7badb91b15c0a291b715c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/vwarnx.texi: 
-  copyright: ''
-  hash: a36189d641dc9338fd1667d162ed6642f0a3bea5356d5357aedfcc2888b47337
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wait3.texi: 
-  copyright: ''
-  hash: a7b4066310d3a25054fa4f7aa01e708505f766e673c9cd25645a820129cf5d2d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wait4.texi: 
-  copyright: ''
-  hash: 6d200273bf91bf0dcb399661230e36cac133661d4bc9dff07cc419dae1f76c05
-  license: ''
-  license_text: ''
-./doc/glibc-functions/warn.texi: 
-  copyright: ''
-  hash: 723908ecf30a2a6a42d40630b7c66884afeb923239309b052149301d01d48d41
-  license: ''
-  license_text: ''
-./doc/glibc-functions/warnx.texi: 
-  copyright: ''
-  hash: 5f98d682eb3ca5672fcbad900bd876090ced691d922879ea4bc661c541d83d1e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcschrnul.texi: 
-  copyright: ''
-  hash: 5d417933737648f79c9b9091e34dd6de4bdcbacabb611962290237a8b1a53f78
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcsftime_l.texi: 
-  copyright: ''
-  hash: ef33c1a0f5969ac80dfac455c2ab398baa7e2ae22403663282b851abcacb0c86
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstod_l.texi: 
-  copyright: ''
-  hash: ad0ddbd33f44160180dc6a5116dec058c419d4cbabf88fa761763aa9f38e11a4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstof_l.texi: 
-  copyright: ''
-  hash: e3b0808da41d177b2fc26f9fa6dbaf17fde774661f00d708a7599f32e8ae22c8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstol_l.texi: 
-  copyright: ''
-  hash: 7f70614683c069b068bdd6f22a9f557afb8a5cc586f5c4a6e434506834c08c2c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstold_l.texi: 
-  copyright: ''
-  hash: c68fa338d011fe9288ac28b1eb729b469531db1475cae1b1b7dadbcf7098b90a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstoll_l.texi: 
-  copyright: ''
-  hash: bf5c9212a552069833ed365917ab1628caaac9bafde388b648aeb9d3d96cb709
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstoq.texi: 
-  copyright: ''
-  hash: 4999de040d3a057b3a08f5a332220ea773287f6916b8f012d3e0b184c3f26592
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstoul_l.texi: 
-  copyright: ''
-  hash: e614b148fe54e7838a90ab850f729e323d6669bf7e07312bf4789ce74918119d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstoull_l.texi: 
-  copyright: ''
-  hash: 745c028ab6e80155cab792bf525124410699c33d23085c42d2be99ab905f0f24
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wcstouq.texi: 
-  copyright: ''
-  hash: ba85b34761c3f98505456e786d5ed3c3259271db6f67594a58751d4cf48f6053
-  license: ''
-  license_text: ''
-./doc/glibc-functions/wmempcpy.texi: 
-  copyright: ''
-  hash: 4bcdb18550e5c7d28fb6c83a0313ce9f4ace5cc915c3d08084984599785bc2fa
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_array.texi: 
-  copyright: ''
-  hash: 19c6ca0199f50e5f501e77f148ab91dcbfe91b661cf52da5e6856f5cbcea03d3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_authunix_parms.texi: 
-  copyright: ''
-  hash: cdb3df779cceb4d74a88670f6a4610951a2aa4394de151d1e7fadb24c5d0be3b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_bool.texi: 
-  copyright: ''
-  hash: 4ea286fe1a567849deeabf993df9d993ba60ebca88953089f743484495cd055b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_bytes.texi: 
-  copyright: ''
-  hash: 3cb975a4ce2552c20f4957ccd8b73cdb7b626672140bef0b1e2f72f6e5fc0d1e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_callhdr.texi: 
-  copyright: ''
-  hash: 6f417e2360984d05faa4f6e29ec925d45ff15aaff8b559b8797a3e1323b85751
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_callmsg.texi: 
-  copyright: ''
-  hash: cb750ed335f8990d02c2f270df2af3936914bca25e3c6ccf0744ca6cecfb28c3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_cback_data.texi: 
-  copyright: ''
-  hash: d4a37bb7dc668a544a5cd09991da24d8096f4b12f9e6e37e8393a26940361fa9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_char.texi: 
-  copyright: ''
-  hash: c14040bd19324e444f22eb519f081124ad19cc489ff3204c2b48e52576921e8a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_cryptkeyarg.texi: 
-  copyright: ''
-  hash: dcdd59591f3dca753276ddb3dc166b55ae1e1dd469fa7a80f9ce2a998423b84d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_cryptkeyarg2.texi: 
-  copyright: ''
-  hash: e7b71aa3c2b7935333c3782753185038023468223a630d977a16a3ffd24e105d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_cryptkeyres.texi: 
-  copyright: ''
-  hash: 3b754af6685bd5ebf15014e7cf19ccbbfef72939d1c5a815488b0007e0352e44
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_des_block.texi: 
-  copyright: ''
-  hash: 3ce2fdf69ba45fff5fc0faa36f81ae554c4a5af6ea364d6a134a230d870b4f93
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_domainname.texi: 
-  copyright: ''
-  hash: 3881316adc80be14ad5c4fbdae5d311b492d7109e80cf05a00314e9e69aa5ff9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_double.texi: 
-  copyright: ''
-  hash: f91e2921b11504f0c91cbd54470b2973bc77623887893e0b94e964b503f7277f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_enum.texi: 
-  copyright: ''
-  hash: b149f650f465a2faa5f1d68bd93ece4c0a0ed0896afeabae4dcb70ba405b89d0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_float.texi: 
-  copyright: ''
-  hash: 78543df2289178a87a35441879ce5a1ff664fcc58c7b8c6426ba648e3ff4a8cb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_free.texi: 
-  copyright: ''
-  hash: a47ac9b7d37b8d0cb2f75c4d7d96e563dd8047c92de3f49a33e3c3ce8f66020e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_getcredres.texi: 
-  copyright: ''
-  hash: beaa386f00d0505786655c3db8d09815047d87487d12835741e566bf945bbed9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_hyper.texi: 
-  copyright: ''
-  hash: 8e26f31e26f57ef964cd9116f3d9e2574589b14caaa979585e198941bd24bb9e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_int.texi: 
-  copyright: ''
-  hash: cb72dde3124b8fd76f079ba72974518af41d6411110e224ad69a9dd66c4e377e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_int16_t.texi: 
-  copyright: ''
-  hash: 9d69be17ce7fcf05a552f56855ca688ec4eb9692b7e7133dd74cf3af7a0ff4c6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_int32_t.texi: 
-  copyright: ''
-  hash: 17df4279175d33cbffeb13dfc3723dd8cff57e6848ac36fcd31b6f662e0083e9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_int64_t.texi: 
-  copyright: ''
-  hash: 4753692e70e7e2651f024e883c7f010c103b4c79709fff8ef1fdf941047ec0e1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_int8_t.texi: 
-  copyright: ''
-  hash: 1a0aa6477a573362cb68f4a632c0a058c2ec2902f2151ff9e84ac6a5a6b780e8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_key_netstarg.texi: 
-  copyright: ''
-  hash: 0f4590353eccd2b066cc84ed1e150a99a544717e54a13be8af2bb22d7dd4a240
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_key_netstres.texi: 
-  copyright: ''
-  hash: ca085bcc181d082d1a2f1577ccc05c0d4b52ee79579b97259bfc6f5bf07dc781
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_keybuf.texi: 
-  copyright: ''
-  hash: a9c13f98859f695a73919a5fc0a4b2ba5b2b45f2ae7e162642343596d1533435
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_keydat.texi: 
-  copyright: ''
-  hash: 73378018a2b511581dae3489763c619c7d7bfc34028fb1b7b863c5a39bb2f04c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_keystatus.texi: 
-  copyright: ''
-  hash: 298e5a8921550a28dba370bdccc49d13dd939586385108de443e2ed839be59a1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_long.texi: 
-  copyright: ''
-  hash: e06094afc04e32d73c2acc605cafcc9e09437632f2b5c2abe358e516f94f18a7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_longlong_t.texi: 
-  copyright: ''
-  hash: 53de27845b0a5e03ff5f8130b12a1b13999547c01fb30c65b73cf92694bb0803
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_mapname.texi: 
-  copyright: ''
-  hash: b9e02d47cff97af875c28948086c04f39cc7552f7a2a0497f3027dc263b9c919
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_netnamestr.texi: 
-  copyright: ''
-  hash: fb5440773a3cf802982b1e1410236bbfce22b04dab527a1bfefd607e06ee96af
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_netobj.texi: 
-  copyright: ''
-  hash: 918ec09950c6cef891df450e39e65854ad72f515eed4a07675ad526d7d029271
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_obj_p.texi: 
-  copyright: ''
-  hash: 7ebd559c8f4ce57177436f5f78c4c8d2b3896199fe11a24f1af48c471cda310e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_opaque.texi: 
-  copyright: ''
-  hash: f79ec3f8db308c32f344e9d267e031c96c9b3a017a6d431bc0a7348be7ce1fd8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_opaque_auth.texi: 
-  copyright: ''
-  hash: 54c3c5c297b9d6cf5c898ae54e857b841a1e16df4f1571dadfe2f3ba295f391f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_peername.texi: 
-  copyright: ''
-  hash: 8538bdb09599068f97b98edfb2a62e4ea6127f54711bd870c49aa117313eaa7f
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_pmap.texi: 
-  copyright: ''
-  hash: caaac80f2f2fa2612d1e842bfd4a93f557882c7eea684560c0d85549a95f91c3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_pmaplist.texi: 
-  copyright: ''
-  hash: ff5f2a65c464e0a939f8b99d477a84604052392e0b2992a9476887c90c433043
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_pointer.texi: 
-  copyright: ''
-  hash: b660e5bf17a26cdf685fc6d23dffdb14a71b632f4eaa27f03edeb522f5aa7f99
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_quad_t.texi: 
-  copyright: ''
-  hash: ea704f7e0d01c043c1e277cd4963dbf6187e89e3654dc699e7b5fcb850a840a7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_reference.texi: 
-  copyright: ''
-  hash: 6134f57fa3312cce201a4c6d77ba8e811fd8790b22ccb6b8a73e687644ac9330
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_replymsg.texi: 
-  copyright: ''
-  hash: 4e007440139b2dda257c96d363b3b80ccb149be9009ae80ae2bd3a629b6b2135
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_rmtcall_args.texi: 
-  copyright: ''
-  hash: bec9d04d82d941309b9d46bf423d0eff1f90382e71cdc9e3a08357dfc740bdd5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_rmtcallres.texi: 
-  copyright: ''
-  hash: 150f8543b53edd291c4b83bc2eefebe934b2c8158a173cf8e2650e0f38c12d60
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_short.texi: 
-  copyright: ''
-  hash: d8f8eb2c0ee517e33fff798e697baf8765a32bb01fdb018e1c7e4c5d24d47ddd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_sizeof.texi: 
-  copyright: ''
-  hash: b9e8e1b750d3cfa2d374d483dac1308f4b5a8e614ddc1bc89201bcdca2b53bd2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_string.texi: 
-  copyright: ''
-  hash: 2a056d27011ebfb9c2fde0648bb47ace5429329369eeae141bbd0b5dd7d19abe
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_u_char.texi: 
-  copyright: ''
-  hash: 6b8f014daebc6193c1fe4b95ca2bc0c9a75a34bf91e625a64779cf4d09632198
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_u_hyper.texi: 
-  copyright: ''
-  hash: 38a30d406c25e5e945e21ba8df38a61a5bea26be525257fea360edf720f62be9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_u_int.texi: 
-  copyright: ''
-  hash: bc84e1bcbc9c805eeae8970f26c2f2c08cc6f3c7b3aca4d3d3bc4116ccd18762
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_u_long.texi: 
-  copyright: ''
-  hash: 79996dfe2a34829be53444eeb81caf5bf33642fb5791eadf467cc5be2efb58ca
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_u_longlong_t.texi: 
-  copyright: ''
-  hash: 68109be44fd22b27b66ac2dfe47e3ef9a8cc0f9aff21e2fade30373aae96ffa7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_u_quad_t.texi: 
-  copyright: ''
-  hash: c1debccf71d14e14221ed9c5848cc1aa2366a65948f68845fcd2b57b0749ee79
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_u_short.texi: 
-  copyright: ''
-  hash: 5277089c7dbf9c47c789cddf19c5d1b80af4a83c8fc5858daae1d6f960a9c0d8
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_uint16_t.texi: 
-  copyright: ''
-  hash: 5056c5c947997ff404e63d557adb270b3a96be18eb85d91a99ba658f262c307b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_uint32_t.texi: 
-  copyright: ''
-  hash: 0e93d9fbd8816dd776781b73ba642602968d88b1a9a1835f2aacf5d163f256bb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_uint64_t.texi: 
-  copyright: ''
-  hash: f40a280712d786b4c58851ea0ada93ee7e8dd374dc6bedb1d88d1eb3029e5171
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_uint8_t.texi: 
-  copyright: ''
-  hash: 6944d05901cc4f743764f005d098d50799ed43b4aa6de7469c40a94cc1d92d87
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_union.texi: 
-  copyright: ''
-  hash: e8c3b53eade2aaea2a515e16d398bf97e4c667a4fb5aed2dadff6bf8dfb8b62b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_unixcred.texi: 
-  copyright: ''
-  hash: 9f888821059934a9e8d72e85c34b0c74fff437fff04af14d3e1f7b8adc0c95ce
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_valdat.texi: 
-  copyright: ''
-  hash: 3ed49a721838c98227ffa1d475de25866ae591b1f5a580e5f9dfeb46cbef4f91
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_vector.texi: 
-  copyright: ''
-  hash: 53d9bca4da0f5eaed77104e988310b12bc2f5d42c83b6937c5200c174cbc3708
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_void.texi: 
-  copyright: ''
-  hash: 81033902e9049ef9f57a463240c562bc2d5d68852657d2a8088758b1418b5ba0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_wrapstring.texi: 
-  copyright: ''
-  hash: c8c995b3843fb29dbc49af22efbda22eaa1a4c9a3ac036833c892b533db4384a
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_yp_buf.texi: 
-  copyright: ''
-  hash: 967c6a5a78890236ee181eba0d63eb789115e8eeedc2c58621664544ec9bd493
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypall.texi: 
-  copyright: ''
-  hash: 49021a841d747afa6c867addf2fdad46adfed7820ba1999395e264b2e4e3a96c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypbind_binding.texi: 
-  copyright: ''
-  hash: abd640055eb5a0d21f0f6a06024ef8e25da1cab867fd84151c3fbfa71ba49b0b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypbind_resp.texi: 
-  copyright: ''
-  hash: e71ba4166aa4b084e54b251c076892d86209e5c4026c9621bb83cd82420518a2
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypbind_resptype.texi: 
-  copyright: ''
-  hash: fc323b9e591fd7d0405fbbfdf6a350828bb3e37b17f5698ce0853da9accfca6e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypbind_setdom.texi: 
-  copyright: ''
-  hash: 715266fd7005c68155bc84c3bfd72a0dbd2839f4f9c1431cdccda41d2516c61b
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypdelete_args.texi: 
-  copyright: ''
-  hash: 5a2b2391166fd729def02629326df511cb557403bb3430e8c309d40f0151bd0e
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypmap_parms.texi: 
-  copyright: ''
-  hash: 31deda1200c8b55648464a71a80e05c092d1c342a11dcf1621ae60f75649e2c3
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypmaplist.texi: 
-  copyright: ''
-  hash: 3770fe4174a30510e6650d1532f1254d90b4ee9a8fd55a240704aeceac7116d4
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_yppush_status.texi: 
-  copyright: ''
-  hash: bed774ce7f2689102ac04fcebe6f8bb353d2fa812ccf8fef9e3c9f9ef7707539
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_yppushresp_xfr.texi: 
-  copyright: ''
-  hash: caacebd076371cf8370ef66bd87d61c5a969ba9b2de9263437267a78a4582b2d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypreq_key.texi: 
-  copyright: ''
-  hash: 5e8853ba7b6102e9ef59daad62f95b5ad79482a0809507ad302e7efb7e14c180
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypreq_nokey.texi: 
-  copyright: ''
-  hash: ca0a55c40a73ff170a59e2e77693a4b0099f9f21cf68112362b10c73ba4897bd
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypreq_xfr.texi: 
-  copyright: ''
-  hash: 38242199a4947757bcca43ae41c1aceeaf21204f91662b6c6a70870aa6c52105
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypresp_all.texi: 
-  copyright: ''
-  hash: 7b3944e0fdfcd0437b44e330fd160a5a452738e4f2ed88a06c428507135704af
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypresp_key_val.texi: 
-  copyright: ''
-  hash: 16879a199e808011cfb7bce444c0400f537d3299a1c9667ca1581d622e8387f1
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypresp_maplist.texi: 
-  copyright: ''
-  hash: d8f02b128e983b30f2be817f09ec1636d1d22863908833b9a104231736c1757d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypresp_master.texi: 
-  copyright: ''
-  hash: e623a774cfbf5390ac5ab6db1871df8fc813438aa10e701c19f067fbf11ca3e0
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypresp_order.texi: 
-  copyright: ''
-  hash: d68c39c59fcbfefdb10d7e77def68a96ee1536b33e42d7cae1249a59fbddc7e5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypresp_val.texi: 
-  copyright: ''
-  hash: 7c45b13e75ad02e922ffc50bd1e0f74f246ff392ec0f7269f784490ff6421332
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypresp_xfr.texi: 
-  copyright: ''
-  hash: 6684da40fa119c7354fda920dbc8067d4e6769687a66c08c96342311d0dc1a9c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypstat.texi: 
-  copyright: ''
-  hash: 1e7de73d56c70be501e608841a86d6e7c23b5b3d58f1d9a3f6e09d9868d5d6e9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypupdate_args.texi: 
-  copyright: ''
-  hash: 77aaa0ef10b3095e45964efa46e739376002decd90cf42f0f8a8dec3d5eff977
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdr_ypxfrstat.texi: 
-  copyright: ''
-  hash: c78e6f06c5fd2a43a28a72a7ce49d02b158b37062e80b1d9788be764b82b26ab
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdrmem_create.texi: 
-  copyright: ''
-  hash: 2a203690a726870fade84da1208be0cdfab169f22001ee6efe93f06e3742ebb7
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdrrec_create.texi: 
-  copyright: ''
-  hash: 8073fe892a74de188dd302a4a43e971cf0e3fb48c86cebeef96240e0ac4bd4cc
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdrrec_endofrecord.texi: 
-  copyright: ''
-  hash: 88344824ec838d41448198022405e5dac92019e2bc1475a230608b4518bec054
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdrrec_eof.texi: 
-  copyright: ''
-  hash: 25422c24889db04aa8ff53d00ce41fae2e5444730364cb37890ccacd15e10f3d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdrrec_skiprecord.texi: 
-  copyright: ''
-  hash: 0b1d2e89f6f0d930e81e40412735caed420e496c1d7e2c3317083704ddbc822c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xdrstdio_create.texi: 
-  copyright: ''
-  hash: 0898f08554917e889fd206ae59a18d6bf78f9f57a5a9e636844660f8bb4460ba
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xprt_register.texi: 
-  copyright: ''
-  hash: c94e94912422f8a89d1046086b09b5f1aa13198a6ecd72276a6cba7caf0364ef
-  license: ''
-  license_text: ''
-./doc/glibc-functions/xprt_unregister.texi: 
-  copyright: ''
-  hash: f682b2bfcd16651912315034106c71ff0946a50daaf430177bd0624a37f88416
-  license: ''
-  license_text: ''
-./doc/glibc-functions/y0f.texi: 
-  copyright: ''
-  hash: 53011f664d3903683e4544d10dcf5b7c7f2c1222c9acab2e70d9f2c9df387afb
-  license: ''
-  license_text: ''
-./doc/glibc-functions/y0l.texi: 
-  copyright: ''
-  hash: 049581b8d62217de9d548fee3df56a779e216c9b490a92081b3e440174e277df
-  license: ''
-  license_text: ''
-./doc/glibc-functions/y1f.texi: 
-  copyright: ''
-  hash: 2af7a392fb4304dd9bdf7cedc4f950d151b3e72dc31b5eb42d9b53451859e389
-  license: ''
-  license_text: ''
-./doc/glibc-functions/y1l.texi: 
-  copyright: ''
-  hash: 9f65d87b286eb81df62bfdb118cb3ab8c763aab3cae81aea9a9dc16161bdaa12
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ynf.texi: 
-  copyright: ''
-  hash: b20e9430fc3cd02a0586eed22a0cd3eb2d271582b9087490395973f33038aac6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ynl.texi: 
-  copyright: ''
-  hash: 8802eb9677218d45cd4e44dd735d1115f0fcb9e61acec28ab17b887b50ffe117
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_all.texi: 
-  copyright: ''
-  hash: b42b025cf632d8cf7da519a7528a9a2d1210f4e357dcd9390c882bb8a38c0e53
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_bind.texi: 
-  copyright: ''
-  hash: be7340086b6000053f761dfd46aea30bcc1bd2f4dfa161204a8bedc5ec212967
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_first.texi: 
-  copyright: ''
-  hash: 448d2709a2f0d219dbd749d8367b8c82fcb12aa01988d1ecc33e5deb2fc824c5
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_get_default_domain.texi: 
-  copyright: ''
-  hash: 41048d71e875a399559a8d3438f700a43b5468548935403691f02ca2351e141c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_master.texi: 
-  copyright: ''
-  hash: 0b2a7eb836405fa27ed19e381580f7e43df719ab12e78763c129576b5cdd1a7c
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_match.texi: 
-  copyright: ''
-  hash: 627851384f34c2c955e0e1e24fb264440f4559b4e2d93ed5661a97bf32a4380d
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_next.texi: 
-  copyright: ''
-  hash: 6a2841054c2ea3aed8bf5bc393b4dd9b7b3178b199b119fdd82678eec3ed21a6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_order.texi: 
-  copyright: ''
-  hash: 8eae91da78f387f713f35b9d102c4fa66c5931737f6f1467289f76628a8334e9
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_unbind.texi: 
-  copyright: ''
-  hash: bd6cf9c478e4596ec9082e569e2bf6937f7985d1ba7c2d5db1f9802195b5bd26
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yp_update.texi: 
-  copyright: ''
-  hash: 117e4ddb5bcaf2a5e0768d85e23471c5895cc162da1390b7c5fdb77ba5ddc775
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ypbinderr_string.texi: 
-  copyright: ''
-  hash: e7167ff396db2d51dfefcd5b793df6d529e9425dd1aead57cb012d97584e6cf6
-  license: ''
-  license_text: ''
-./doc/glibc-functions/yperr_string.texi: 
-  copyright: ''
-  hash: c94934aac4843428b891128424e3012dee61594fb6bd1dddf9d466de2ada7482
-  license: ''
-  license_text: ''
-./doc/glibc-functions/ypprot_err.texi: 
-  copyright: ''
-  hash: 2670cca93cbe02f004e8676febd96ceb18676682aae42a869b01c0697332a068
-  license: ''
-  license_text: ''
-./doc/glibc-headers/a.out.texi: 
-  copyright: ''
-  hash: c82b738632f1965d1559f7667c877af774465a98c6ca3f81c897beaf7b374357
-  license: ''
-  license_text: ''
-./doc/glibc-headers/aliases.texi: 
-  copyright: ''
-  hash: 94f129741de8a7fd4521bae2dc42f429abfaba102e9fa06c5a9351e1379a4c5f
-  license: ''
-  license_text: ''
-./doc/glibc-headers/alloca.texi: 
-  copyright: ''
-  hash: 42d72a383eea05edb7de100160f56e7ab4d915e5dab4668c2fd128f4b651d2f0
-  license: ''
-  license_text: ''
-./doc/glibc-headers/ar.texi: 
-  copyright: ''
-  hash: 63a2433058954240c8a3d62a4b5b0a2809326d5c6b82b623799d2a8cf39cc734
-  license: ''
-  license_text: ''
-./doc/glibc-headers/argp.texi: 
-  copyright: ''
-  hash: 7250680a987ff78ed8feac3a74ec4a5661c071de4e4d1dfc60de9db22d28e589
-  license: ''
-  license_text: ''
-./doc/glibc-headers/argz.texi: 
-  copyright: ''
-  hash: c0d05a1e13f8f4f7a4a4002cb7e9683b657434da45c97b304951986f7d94bfc9
-  license: ''
-  license_text: ''
-./doc/glibc-headers/byteswap.texi: 
-  copyright: ''
-  hash: daf819b6395c3de377b3efb8f8176107e27f2b3b26561d77a8a3b2dad08e147a
-  license: ''
-  license_text: ''
-./doc/glibc-headers/crypt.texi: 
-  copyright: ''
-  hash: fa453cee950ed9d2d41db4eac6a4c5fcad6f4186d3d207d519045a9f68ae65ef
-  license: ''
-  license_text: ''
-./doc/glibc-headers/endian.texi: 
-  copyright: ''
-  hash: 0f822251f51808592a371b872b6ac045d213519befa9311b36eb6e28bddc9324
-  license: ''
-  license_text: ''
-./doc/glibc-headers/envz.texi: 
-  copyright: ''
-  hash: 939b798b1ec8e61e63e9f93a82c69c5db6f6c05bf98f7f3bbfb8e44c9bb4453e
-  license: ''
-  license_text: ''
-./doc/glibc-headers/err.texi: 
-  copyright: ''
-  hash: 771c351eba6fadf44f8ac86e707dfc90823ead9582e51fb8c95a54702a09395d
-  license: ''
-  license_text: ''
-./doc/glibc-headers/error.texi: 
-  copyright: ''
-  hash: 564594bacc029daac4577221c831b68ab6e6b141d225252b2e5a1ff6a2b5c377
-  license: ''
-  license_text: ''
-./doc/glibc-headers/execinfo.texi: 
-  copyright: ''
-  hash: 442281157e2f5c7d15617b99dc65c5e2740ed8132d5ef4b6a637d7bd0efe8a16
-  license: ''
-  license_text: ''
-./doc/glibc-headers/fpu_control.texi: 
-  copyright: ''
-  hash: 0d1f21a6828be61eaafc50791e6648cadd3cf5986071c19912bb0e485780e01e
-  license: ''
-  license_text: ''
-./doc/glibc-headers/fstab.texi: 
-  copyright: ''
-  hash: d765e5f871ae90bba1b85512cdbbd9d04babbb1073e89f28a5e4203003ccbb3b
-  license: ''
-  license_text: ''
-./doc/glibc-headers/fts.texi: 
-  copyright: ''
-  hash: 05a382b4ee91017936ce7dceda2379ade746af1154b3977321604b116f237f5b
-  license: ''
-  license_text: ''
-./doc/glibc-headers/getopt.texi: 
-  copyright: ''
-  hash: d2425536ed01e34b35b1f3c58f4cf07ca9b09f6d81663efab78da5a5ab688a03
-  license: ''
-  license_text: ''
-./doc/glibc-headers/ieee754.texi: 
-  copyright: ''
-  hash: 515398e288e2a4e2e6118c4c896dbb4c1a9019d6b91221aa076f2d5cac32f9f7
-  license: ''
-  license_text: ''
-./doc/glibc-headers/ifaddrs.texi: 
-  copyright: ''
-  hash: c85198be6c0f9e8ac1c65d365a6cc7bc0cc665bdbc72fe83acf7b0ab0cc955c9
-  license: ''
-  license_text: ''
-./doc/glibc-headers/libintl.texi: 
-  copyright: ''
-  hash: 79beb5970e6f446c6a04900828534f021471762201935c60cfd021c6332b7e78
-  license: ''
-  license_text: ''
-./doc/glibc-headers/mcheck.texi: 
-  copyright: ''
-  hash: dedb846dbfd04c6c9a2a967d276c9de008ac4c79e61e07aeafd412846df98fee
-  license: ''
-  license_text: ''
-./doc/glibc-headers/mntent.texi: 
-  copyright: ''
-  hash: bd4559256ee3494644710f4e1602495d4050f8fa0d4c703f11fcaf8fde02a704
-  license: ''
-  license_text: ''
-./doc/glibc-headers/obstack.texi: 
-  copyright: ''
-  hash: 1c5f322397603a32199f6a1983459423e6610d00288bfb2f3e8b8ee875abd7a8
-  license: ''
-  license_text: ''
-./doc/glibc-headers/paths.texi: 
-  copyright: ''
-  hash: 8dc24f98bf823265dd3378f42860137cacdfd735284b75108ef5437552a339b1
-  license: ''
-  license_text: ''
-./doc/glibc-headers/printf.texi: 
-  copyright: ''
-  hash: c7159716f5c2910ec7d390f7877340ba3998b5fbbb63bd559484742f859ba86b
-  license: ''
-  license_text: ''
-./doc/glibc-headers/pty.texi: 
-  copyright: ''
-  hash: 210686eb5ebf3e3163fa609fea0156ea611363bde9b6a363135e2697765a0594
-  license: ''
-  license_text: ''
-./doc/glibc-headers/resolv.texi: 
-  copyright: ''
-  hash: 67e701d549c3af1a21fa81ac7bb0aea9bc236210f49d4a58e44a93ef173d7d1d
-  license: ''
-  license_text: ''
-./doc/glibc-headers/shadow.texi: 
-  copyright: ''
-  hash: a366437bb8a42ee9261518470bfbaf0fdc8da97ebdfafd9b582e0896d7f739ad
-  license: ''
-  license_text: ''
-./doc/glibc-headers/sys_ioctl.texi: 
-  copyright: ''
-  hash: 9368a7f1aab344a4a2b9c5e895868ca14cc69044c0b1c04a8bf3a9c89cef6e41
-  license: ''
-  license_text: ''
-./doc/glibc-headers/sysexits.texi: 
-  copyright: ''
-  hash: e281f6c23b36b8fd6bfaaa9e8983259765fa320d989f9d77639cdf67c7b74182
-  license: ''
-  license_text: ''
-./doc/glibc-headers/ttyent.texi: 
-  copyright: ''
-  hash: a9e0f8c8e52a08d612b970503007b714f785c88f0d36786a6f2a8917b56c59d8
-  license: ''
-  license_text: ''
-./doc/gnu-oids.texi: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: a8b7560867c2aed55edee1312ccb3b71d4a7d36209c0544d538aafc0c990c7d2
-  license: ''
-  license_text: ''
-./doc/gnulib-intro.texi: 
-  copyright: ''
-  hash: 8afe4cf237d90be78640df9ef7349588a2a5bcb07901f8bc2ad44b625b00afea
-  license: ''
-  license_text: ''
-./doc/gnulib-tool.texi: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: 86878555c512a6423372b2cd838d55c7c6a02da7eb97664a78e4bbf111f33b31
-  license: ''
-  license_text: ''
-./doc/gnulib.texi: 
-  copyright: "@{} 2004-2009 Free Software Foundation, Inc"
-  hash: de3a5da4c9cc7db7d7ef6de60a5248025bed7cbc6b9dc0320c0075bb28b18b77
-  license: ''
-  license_text: ''
-./doc/gpl-2.0.texi: 
-  copyright: the software, and / @{} 1989, 1991 Free Software Foundation, Inc
-  hash: ba36a1e79e0a6db5aa3012803fd12acab7bc7be569da100c6659fff959670389
-  license: ''
-  license_text: ''
-./doc/gpl-3.0.texi: 
-  copyright: "@{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer you this License"
-  hash: 1c68a24b291a0eebaa1fabba67326ad8c5d48968b84bba0907bf74d8d3b01971
-  license: ''
-  license_text: ''
-./doc/havelib.texi: 
-  copyright: ''
-  hash: b178e7f4be5c66b0756783fc65a9fdbefb2ddb9e2fce18cfe4838383506ba25f
-  license: ''
-  license_text: ''
-./doc/inet_ntoa.texi: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 44cfa1261391ab7b6da6a8387826d35826ef9238214aea7713a3bdae92621afc
-  license: ''
-  license_text: ''
-./doc/install.texi: 
-  copyright: "@{} 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004"
-  hash: 3579aa06fdcde2788de2bdb2ac9e3f7dddaaf305033e3819b0bd5e8bcd321ad5
-  license: ''
-  license_text: ''
-./doc/ld-output-def.texi: 
-  copyright: ''
-  hash: f3adaf3de58b4ee8286574e8dc7d25e0d536753026018880d7ed6299129dee1c
-  license: ''
-  license_text: ''
-./doc/ld-version-script.texi: 
-  copyright: ''
-  hash: 21a0a61901f55f0d7c8ba37d1ce6dc1d569e74583bd96a03ea211db7d969fc10
-  license: ''
-  license_text: ''
-./doc/lgpl-2.1.texi: 
-  copyright: the / @{} 1991, 1999 Free Software Foundation, Inc
-  hash: 85eec7ec57d7c054ced20ff937a0dbb6f85ef080feef81c969e3338c4e07c237
-  license: ''
-  license_text: ''
-./doc/lgpl-3.0.texi: 
-  copyright: "@{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/}"
-  hash: a4c865bb56a69cee86c1ab9bb354cd6a81b95e64a6ed096b1b3e616af3f85cc1
-  license: ''
-  license_text: ''
-./doc/lib-symbol-visibility.texi: 
-  copyright: 2005-2006, 2009 Free Software Foundation, Inc
-  hash: ace49800754530f3421436b0c69c07faa05fec9319591a7a4d30b2bd37a98525
-  license: ''
-  license_text: ''
-./doc/maintain.texi: 
-  copyright: "@{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999"
-  hash: c3f2ff808bd13ddf5c9dfdecff85d6bc5581e6338bf9919e43aa41a7d2a5ed05
-  license: ''
-  license_text: ''
-./doc/make-stds.texi: 
-  copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001
-  hash: 6856144813c56da2dd64ded78323b4e4e1be9177837113f827f9340b8cb74446
-  license: ''
-  license_text: ''
-./doc/manywarnings.texi: 
-  copyright: ''
-  hash: eb20f35c0202b22d36b97d775196f85053b54dc0a181eced05ac1f19457dd4df
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/bcmp.texi: 
-  copyright: ''
-  hash: ee5e5047ceaf869e5c235c6f2702e7f43b6b4ea02ef553524b75e92be07c640b
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/bcopy.texi: 
-  copyright: ''
-  hash: 223523ff87be634108d2bf747ce5fbe13ad98f02904e0c098e5bbf60bf490330
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/bsd_signal.texi: 
-  copyright: ''
-  hash: 00704a5cfe69597fb6d992575594832eb5947e8748892a721d7ffb17283aa90b
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/bzero.texi: 
-  copyright: ''
-  hash: c850be8ba6f681e50eb0a4ecc5820bf7e59d6ff4b4614588c060201ea49eb02e
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/ecvt.texi: 
-  copyright: ''
-  hash: e6504270c1681b6065cb639e57224dd1f372edfa0a59123f7d37173406a4f494
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/fcvt.texi: 
-  copyright: ''
-  hash: 430225c066876772ad6b84ef2fec19a1c57b804a039583810795399f63705b54
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/ftime.texi: 
-  copyright: ''
-  hash: 89c4865146e1c4cbe085be8b535cc4895846e0d7dc5d9463cd893f2a2611cc6b
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/gcvt.texi: 
-  copyright: ''
-  hash: b58c5c40dd157cd45a90cc8116c094bc7467118421b812fa7603d85ef5f9a216
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/getcontext.texi: 
-  copyright: ''
-  hash: d4cff088a3b331819944b6dd371788d793587a91a2e300d45e194025ba3912f0
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/gethostbyaddr.texi: 
-  copyright: ''
-  hash: f62bfb5224b154effd3082e24c0573f955ccece64433a088bf72f82c97797593
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/gethostbyname.texi: 
-  copyright: ''
-  hash: 776bee42bc3143a75a126fc67510c85e732caff095d2618cf3dad9adfde2823e
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/getwd.texi: 
-  copyright: ''
-  hash: 0ea55e75af07fb3979e1a63cf6b6182eefbaea7dd5556d849894438bd700541e
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/h_errno.texi: 
-  copyright: ''
-  hash: 8ad4e6a01308643335b767c77d0f461f310eeeb59a03fd2b7057f5064c165625
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/index.texi: 
-  copyright: ''
-  hash: a5fca5d0786ced2a2f131a143afab2f5ee54b26b419e1be48f0139c208117de8
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/makecontext.texi: 
-  copyright: ''
-  hash: 1c5f3629d45da8aa766f448b81564a651ce98fcf39f5982732a39f9309b6760b
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/mktemp.texi: 
-  copyright: ''
-  hash: 9eb524104f966e5d2bec99631296f09f0f359d79cd59f39feeb96ab11d99fc43
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/pthread_attr_getstackaddr.texi: 
-  copyright: ''
-  hash: 4d63b667e605bb58aa0663e91f62ede2047edc8b47c59feb336a73fcbfe9fc8a
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/pthread_attr_setstackaddr.texi: 
-  copyright: ''
-  hash: 6321fd00b2cdfca18d37e2da59c1746b49d208d9342fd98061524fae66a617fc
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/rindex.texi: 
-  copyright: ''
-  hash: 7d63a4ee6bc483b81e2d88abf9ecc5576e30f3c911e8a00ae2a6c79aeaa0f141
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/scalb.texi: 
-  copyright: ''
-  hash: 466c68b70229a839f6d041c664ca3b58a0cd8bbe7b878e3d1fbe68f1bf578b90
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/setcontext.texi: 
-  copyright: ''
-  hash: cf06f7a1492f1b932e521f9532748e9d6e93638ac687bda4eabebd45b8f14fda
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/swapcontext.texi: 
-  copyright: ''
-  hash: cbd3d366ba77cedb5d159f4ba6325e42dc851244f91750aac38dd037bbe32ebd
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/ualarm.texi: 
-  copyright: ''
-  hash: 2e8b19c1c34350007a55f47aec6a9c248d12f48f6b5b350f391b723c0b93392c
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/usleep.texi: 
-  copyright: ''
-  hash: f501d093118e406965e4dad35b035eee7346fec9ca5ee2a69867718e32d277fe
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/vfork.texi: 
-  copyright: ''
-  hash: 36148ae554abcc4b634cf714f4fd99d663a957814057cf580370d48944a22ff5
-  license: ''
-  license_text: ''
-./doc/pastposix-functions/wcswcs.texi: 
-  copyright: ''
-  hash: c56c89e0ec1d7221fa616889acfc8be4eff6a18d830fb452fd62c2c59c115c32
-  license: ''
-  license_text: ''
-./doc/posix-functions/FD_CLR.texi: 
-  copyright: ''
-  hash: 4bdcc69109a06b2a638508e0e88920c7b9144c36295828451960cc3937dfa0ee
-  license: ''
-  license_text: ''
-./doc/posix-functions/FD_ISSET.texi: 
-  copyright: ''
-  hash: 1291518a4f9111d9e9475c542cc9c025c2150e824852f4f5d689b43aff16f0d1
-  license: ''
-  license_text: ''
-./doc/posix-functions/FD_SET.texi: 
-  copyright: ''
-  hash: 16e13795165195f4a4eacd97bb731c1cc32746395eda808584fe24e7bf2bf040
-  license: ''
-  license_text: ''
-./doc/posix-functions/FD_ZERO.texi: 
-  copyright: ''
-  hash: 867ed157d794920b1e6ef522bd1389065fa176a2745516597adc9d957c6d9c1f
-  license: ''
-  license_text: ''
-./doc/posix-functions/_Exit_C99.texi: 
-  copyright: ''
-  hash: f2971a822bc1838157a0c388c7112b4fb3512e7285ad00028a64ed2d126560ca
-  license: ''
-  license_text: ''
-./doc/posix-functions/_exit.texi: 
-  copyright: ''
-  hash: 617e14d15ded9c83e30656eee2982fbd7779fae2a9ebb85434e731e0448ea376
-  license: ''
-  license_text: ''
-./doc/posix-functions/_longjmp.texi: 
-  copyright: ''
-  hash: a4efad25c9a2aa0a0bb68cb8f8d93469f8dededd867d67616165bd2cac5b49ea
-  license: ''
-  license_text: ''
-./doc/posix-functions/_setjmp.texi: 
-  copyright: ''
-  hash: fd4f68ff284ebc28908272e8ba70caa11cd851a607710395440093198b78da33
-  license: ''
-  license_text: ''
-./doc/posix-functions/_tolower.texi: 
-  copyright: ''
-  hash: af965647c2059fa305a0ea66425e067f6351285e242a80bfb79892d04af1efe2
-  license: ''
-  license_text: ''
-./doc/posix-functions/_toupper.texi: 
-  copyright: ''
-  hash: a60a13b20e2c158a30d313107892d5c7445595700c098bf69aa2e09a9932a27d
-  license: ''
-  license_text: ''
-./doc/posix-functions/a64l.texi: 
-  copyright: ''
-  hash: 9a48aa5a59249118c5ed8abb938d8c66ee17754847ba48b97d1bb34ebd736950
-  license: ''
-  license_text: ''
-./doc/posix-functions/abort.texi: 
-  copyright: ''
-  hash: f7017d331926830c3d0ee3ef193aaba54cc29e400d26730478300ed46c330278
-  license: ''
-  license_text: ''
-./doc/posix-functions/abs.texi: 
-  copyright: ''
-  hash: 8a6be2b119b4780391f1a407aef5ce6064c1f1c2fb42b2d9801e81446320a575
-  license: ''
-  license_text: ''
-./doc/posix-functions/accept.texi: 
-  copyright: ''
-  hash: 81b3c3211aee16330e76a0b86a339f4d352a02421066633fc356a3bff5365aec
-  license: ''
-  license_text: ''
-./doc/posix-functions/access.texi: 
-  copyright: ''
-  hash: 5c9fe6527a708f0f5699ddaa241a010325972adaaf5f6dbd5a05728a80ab7de0
-  license: ''
-  license_text: ''
-./doc/posix-functions/acos.texi: 
-  copyright: ''
-  hash: 150b61e719501d08ba13f5c263800804a50eefb71d3ce76b4c267c5cf01f297c
-  license: ''
-  license_text: ''
-./doc/posix-functions/acosf.texi: 
-  copyright: ''
-  hash: 9c84c5a1592f90ebe189dd0411e60fae1dc44b75d1b85235767ba29fdb461845
-  license: ''
-  license_text: ''
-./doc/posix-functions/acosh.texi: 
-  copyright: ''
-  hash: 194f7fc07993dbde9913bcdc50b1f595c79f07e3bcc99a22abd2c7f996be9615
-  license: ''
-  license_text: ''
-./doc/posix-functions/acoshf.texi: 
-  copyright: ''
-  hash: 16975c50d57f3c7d1e6e146f12dd4fb00edf62eb981cd7ca0086ba4637a6c4ae
-  license: ''
-  license_text: ''
-./doc/posix-functions/acoshl.texi: 
-  copyright: ''
-  hash: c48a11ab5a5cbe1b315d4eba844ada7b360515d9dde684063df356b4e26ca7cf
-  license: ''
-  license_text: ''
-./doc/posix-functions/acosl.texi: 
-  copyright: ''
-  hash: e7792ee050ec415ebb3afb0943ed08c5a1d8473e4a3965fc294a40f54508ff80
-  license: ''
-  license_text: ''
-./doc/posix-functions/aio_cancel.texi: 
-  copyright: ''
-  hash: b66233d7d61128517a0b7295d5acec1e95f4b39184ffb18d77fb8ef6b78fe623
-  license: ''
-  license_text: ''
-./doc/posix-functions/aio_error.texi: 
-  copyright: ''
-  hash: c373cc41047b3d210041a50ec055a65ffe89026e4fdf391bc4a45890df6fe34c
-  license: ''
-  license_text: ''
-./doc/posix-functions/aio_fsync.texi: 
-  copyright: ''
-  hash: e727b3d41bef54f2e5c2729130af2eb90f1010edc998c99bd06e02f466e47cdc
-  license: ''
-  license_text: ''
-./doc/posix-functions/aio_read.texi: 
-  copyright: ''
-  hash: 3d17ee9b9556d524d7d7f90a80fe07b3fcd01a23d833c1bd12815ded8abe1f0c
-  license: ''
-  license_text: ''
-./doc/posix-functions/aio_return.texi: 
-  copyright: ''
-  hash: 7991e57a0afdf4886417e32b5ff2fefca051625e020d2f99c6ba13a9ba0b93f6
-  license: ''
-  license_text: ''
-./doc/posix-functions/aio_suspend.texi: 
-  copyright: ''
-  hash: 6a7462cef0037932257eeb80998e3fe8d56418d33006cdfd729b36c2ee2442f9
-  license: ''
-  license_text: ''
-./doc/posix-functions/aio_write.texi: 
-  copyright: ''
-  hash: 1bcfee726b7f2c39b8ab864a98213996e3d6550bc91ffe27e68ca52cc42fef61
-  license: ''
-  license_text: ''
-./doc/posix-functions/alarm.texi: 
-  copyright: ''
-  hash: e2e54168615ce20a9bdb520184cdb94f8c87bc7afbe08bad9e3fa30228948609
-  license: ''
-  license_text: ''
-./doc/posix-functions/alphasort.texi: 
-  copyright: ''
-  hash: ef1142784d13d61cc5243b241b611436b5c41936674ff9c822f3bd5a525a541d
-  license: ''
-  license_text: ''
-./doc/posix-functions/asctime.texi: 
-  copyright: ''
-  hash: 721bc2ac5ac79045cbf87988e789bbab5132485fcfb82753f1341d315c4ac690
-  license: ''
-  license_text: ''
-./doc/posix-functions/asctime_r.texi: 
-  copyright: ''
-  hash: f9f95df6f49642a423caa4d7f15c2f032790dc10388af51c7661f87407f1f260
-  license: ''
-  license_text: ''
-./doc/posix-functions/asin.texi: 
-  copyright: ''
-  hash: b329f7976db842d1b576513d498164f1469586519242f55a3549f35d19fa5c8a
-  license: ''
-  license_text: ''
-./doc/posix-functions/asinf.texi: 
-  copyright: ''
-  hash: dcc23541874407b670f6aaa98d3206d52d1dc7d332c61591c21b902c0c88175a
-  license: ''
-  license_text: ''
-./doc/posix-functions/asinh.texi: 
-  copyright: ''
-  hash: ca1f10207ab80b34856d7d221917ab4e3ea8ec66daabfad193f620a43e0890fa
-  license: ''
-  license_text: ''
-./doc/posix-functions/asinhf.texi: 
-  copyright: ''
-  hash: 57aa296f938827a7b7ccc0146a519d2daec080d5a4fd9faaeb912ba6b25fc5a7
-  license: ''
-  license_text: ''
-./doc/posix-functions/asinhl.texi: 
-  copyright: ''
-  hash: 5334814ec20f8cb6f5b4fa90b116944da8b21130f87f170143da8c5e7d0ed90a
-  license: ''
-  license_text: ''
-./doc/posix-functions/asinl.texi: 
-  copyright: ''
-  hash: f38089461ff6de8a2e20fe6faf14bb3536b88885f71406ec3678f9eeddb3b7e2
-  license: ''
-  license_text: ''
-./doc/posix-functions/assert.texi: 
-  copyright: ''
-  hash: c57a5393ad06cfbf14e522f23e99c9f7c79ff4295814b68d038ebfc9914898a1
-  license: ''
-  license_text: ''
-./doc/posix-functions/atan.texi: 
-  copyright: ''
-  hash: 4ff1b784715d8fccd274a4d46d6c0a2aaa69ba2d80d1b6551033c492cf599c98
-  license: ''
-  license_text: ''
-./doc/posix-functions/atan2.texi: 
-  copyright: ''
-  hash: 7fdc70bbb2d4ec9e2f5cb007bc3c45617de137614d5d793d80e6a1c7d28fdcb9
-  license: ''
-  license_text: ''
-./doc/posix-functions/atan2f.texi: 
-  copyright: ''
-  hash: e097eb1773d31fceff278a30c31286bc5600c4b73b1c152778dd1057036982d9
-  license: ''
-  license_text: ''
-./doc/posix-functions/atan2l.texi: 
-  copyright: ''
-  hash: f4c5ca77363c312560873e8094350021d32b086379d14a23fb80a75147fbc45c
-  license: ''
-  license_text: ''
-./doc/posix-functions/atanf.texi: 
-  copyright: ''
-  hash: ba3c7c2fc2662ad55ef268494c70149f99f16a3ef9f266870508454cd70e12a3
-  license: ''
-  license_text: ''
-./doc/posix-functions/atanh.texi: 
-  copyright: ''
-  hash: 2ebfd2d4f0608e214eee8e76ea21fa027dd8496d685b81231e7e7e40bcd83689
-  license: ''
-  license_text: ''
-./doc/posix-functions/atanhf.texi: 
-  copyright: ''
-  hash: 327fcf33922e20f61594c5d6bfb40a36d60661a50594ed1373cb04182f78ad1f
-  license: ''
-  license_text: ''
-./doc/posix-functions/atanhl.texi: 
-  copyright: ''
-  hash: 7d84523ad7598e7932a11e3bdf4cfaa78a0e2844bfa8fef21ac0a9445a7d2461
-  license: ''
-  license_text: ''
-./doc/posix-functions/atanl.texi: 
-  copyright: ''
-  hash: f9fdd043f291ef30c72d8b86bec63f81872c4e27c075eb44555e3519a942ce71
-  license: ''
-  license_text: ''
-./doc/posix-functions/atexit.texi: 
-  copyright: ''
-  hash: 07af21ce2184b60a35aff17a7de75adac18a1c23a31c8ef3966fe5a19b11f702
-  license: ''
-  license_text: ''
-./doc/posix-functions/atof.texi: 
-  copyright: ''
-  hash: cb598c82f7c415f1525ac2f407c7924853f15d7f63a42471e2e980e263aed83b
-  license: ''
-  license_text: ''
-./doc/posix-functions/atoi.texi: 
-  copyright: ''
-  hash: 42f659e4671bf747e181f5ef4b3f949ecb73cdd988944a3847e0b43b3af9a980
-  license: ''
-  license_text: ''
-./doc/posix-functions/atol.texi: 
-  copyright: ''
-  hash: 509a54f5251640192f8b2054f91f5c2d8acf54dbe7ed65ef8ef07747502402af
-  license: ''
-  license_text: ''
-./doc/posix-functions/atoll.texi: 
-  copyright: ''
-  hash: 8c9a6dc1b25278f7455c06e10fdccf05c49405df1d7116aca867349387b4d9f4
-  license: ''
-  license_text: ''
-./doc/posix-functions/basename.texi: 
-  copyright: ''
-  hash: 580230c22dd6f6cf1cf798e506e89d861118db39bc129e9f4257f55de4915995
-  license: ''
-  license_text: ''
-./doc/posix-functions/bind.texi: 
-  copyright: ''
-  hash: 075c556c5fdc1c0a9aa62c6cc8c9c94ab0a632352b43e43c36daf2682dafbcac
-  license: ''
-  license_text: ''
-./doc/posix-functions/bsearch.texi: 
-  copyright: ''
-  hash: a52cfb1ef7418d53462eb86d9b8153cf8589b501f912e649c765afe6ee090968
-  license: ''
-  license_text: ''
-./doc/posix-functions/btowc.texi: 
-  copyright: ''
-  hash: 86660f1a58cfde44606f43b85c540b2e731dca2e3387fb1a2486656615ba03e4
-  license: ''
-  license_text: ''
-./doc/posix-functions/cabs.texi: 
-  copyright: ''
-  hash: 5a57e05203246e471ecb597d82a6df81a9a9324e7f9d41c4c07524134f1a742f
-  license: ''
-  license_text: ''
-./doc/posix-functions/cabsf.texi: 
-  copyright: ''
-  hash: 6206f6a5f20a0c6471551ea93ba80961472d58caa288e80acc5400a973546d49
-  license: ''
-  license_text: ''
-./doc/posix-functions/cabsl.texi: 
-  copyright: ''
-  hash: d6d3a323b448fe92e604e0121be72ea0fdf5c8876ab74c851cae2119804a23af
-  license: ''
-  license_text: ''
-./doc/posix-functions/cacos.texi: 
-  copyright: ''
-  hash: 50eeefeabe4315e966bc544fdef355a310e83c8d3a199628c70c4333fb3659c6
-  license: ''
-  license_text: ''
-./doc/posix-functions/cacosf.texi: 
-  copyright: ''
-  hash: 5574c38edf482540ee0ccabea8512ea3b254bc971aac84d48c0814a9161b71ab
-  license: ''
-  license_text: ''
-./doc/posix-functions/cacosh.texi: 
-  copyright: ''
-  hash: d5668e987d967fa28f2fc14ee7b0b32cab5b7ce204f9724133c81b1ab9d0d38c
-  license: ''
-  license_text: ''
-./doc/posix-functions/cacoshf.texi: 
-  copyright: ''
-  hash: 09c419d35ce19ad5101b87b37cb67507975fa38ad4e5558a78c3fb28897d45a7
-  license: ''
-  license_text: ''
-./doc/posix-functions/cacoshl.texi: 
-  copyright: ''
-  hash: dc375481504fafa3bd2f505b3a24f913052b5d7cc8f6be09d322b23ecd72fe4f
-  license: ''
-  license_text: ''
-./doc/posix-functions/cacosl.texi: 
-  copyright: ''
-  hash: bf1d59e5f937aa85da28fa866443894e6a227636f9c2075f81c13a6ff1f010fb
-  license: ''
-  license_text: ''
-./doc/posix-functions/calloc.texi: 
-  copyright: ''
-  hash: 8d5ecf56975464579d01f08920bee2441850c4e3e295ee55688c1669a6d871c3
-  license: ''
-  license_text: ''
-./doc/posix-functions/carg.texi: 
-  copyright: ''
-  hash: a82fbcbbd57f46c534a0b7c0498648ccb5d1b990a71c3f00b7f71d62ead996f1
-  license: ''
-  license_text: ''
-./doc/posix-functions/cargf.texi: 
-  copyright: ''
-  hash: 3400afd0256e66a6906d3ec9034955305cd3018876434b982005c1070ff4d9b1
-  license: ''
-  license_text: ''
-./doc/posix-functions/cargl.texi: 
-  copyright: ''
-  hash: 05ba0a0471f75afc9164bf93664b3e3169236684072ba2e750805ba7c441ce71
-  license: ''
-  license_text: ''
-./doc/posix-functions/casin.texi: 
-  copyright: ''
-  hash: 088c0bcfac54314d20520422d335a2cdd8fd8de1fa28f7a3574b049b64206d4c
-  license: ''
-  license_text: ''
-./doc/posix-functions/casinf.texi: 
-  copyright: ''
-  hash: e1eda8eda74e50383462f6250d8797995b4bd9e33630a97b11068457b25079ad
-  license: ''
-  license_text: ''
-./doc/posix-functions/casinh.texi: 
-  copyright: ''
-  hash: c92401d5821a5c2e8eae6e1ee0e4d0f404fed62fe860d51ca34276cbe5c67fdc
-  license: ''
-  license_text: ''
-./doc/posix-functions/casinhf.texi: 
-  copyright: ''
-  hash: 955a15c8ef8373798497a79b8303d6ddc32b5a9ca5132389339e2934344d3d45
-  license: ''
-  license_text: ''
-./doc/posix-functions/casinhl.texi: 
-  copyright: ''
-  hash: bc36d55b4db6c64eec973c48e5f4e01bf2524e0774b4ed7575a0962e6c752d60
-  license: ''
-  license_text: ''
-./doc/posix-functions/casinl.texi: 
-  copyright: ''
-  hash: 2fdcbfd22461c6328f3a88b4a220c43c7e669f760b9247dc13924213b3608ca4
-  license: ''
-  license_text: ''
-./doc/posix-functions/catan.texi: 
-  copyright: ''
-  hash: 1900ac3c57172c7fcf543e7c2bdbbe29786d3e2de52b270034ba0d1043b03142
-  license: ''
-  license_text: ''
-./doc/posix-functions/catanf.texi: 
-  copyright: ''
-  hash: 15a02393981d9d54e9343892174f0f4460b9a912a7e081154ee9549d2e7ffbf0
-  license: ''
-  license_text: ''
-./doc/posix-functions/catanh.texi: 
-  copyright: ''
-  hash: 26f0ae150358d27a41ebd8a1ea04f9894175f61babb39a6b98f5d61599a9edd1
-  license: ''
-  license_text: ''
-./doc/posix-functions/catanhf.texi: 
-  copyright: ''
-  hash: 4e75f5881fbb08aa54a2fff4134b3762fa0e12469c74932a38fd9e4207a3623a
-  license: ''
-  license_text: ''
-./doc/posix-functions/catanhl.texi: 
-  copyright: ''
-  hash: 82d0c974c64a7cf16231948261385d9481c370fccd9c1505479c1570315fcd47
-  license: ''
-  license_text: ''
-./doc/posix-functions/catanl.texi: 
-  copyright: ''
-  hash: 9e7691d069d4a4738e083cf638a18a533a7c823dcd5703365ab766d077e8744f
-  license: ''
-  license_text: ''
-./doc/posix-functions/catclose.texi: 
-  copyright: ''
-  hash: 01ecba8a97e46807f4fbb86f8f783a4aac58738c54a0100b32283f4d64f2307f
-  license: ''
-  license_text: ''
-./doc/posix-functions/catgets.texi: 
-  copyright: ''
-  hash: 85222dd53c8d87d37d1fc345d441786afb858cfbd76117d6ad374541305c418b
-  license: ''
-  license_text: ''
-./doc/posix-functions/catopen.texi: 
-  copyright: ''
-  hash: 6735bd2f884c12725cdae1f82a0d5e53c6773f3803e206c4d2fbb773e74834c2
-  license: ''
-  license_text: ''
-./doc/posix-functions/cbrt.texi: 
-  copyright: ''
-  hash: 67c9f016fcf80f7a7bb55861e8547c42548312e7370fc73728b5274032f976b6
-  license: ''
-  license_text: ''
-./doc/posix-functions/cbrtf.texi: 
-  copyright: ''
-  hash: 803d4a7e0a751e168dc18cd98d0f2c41155e2c26493040183d792e4024515762
-  license: ''
-  license_text: ''
-./doc/posix-functions/cbrtl.texi: 
-  copyright: ''
-  hash: 43de9ac1aa9e5cc0d8bd8702ede4d1aa16e6dcef3ad574242605a0c8bbec94cd
-  license: ''
-  license_text: ''
-./doc/posix-functions/ccos.texi: 
-  copyright: ''
-  hash: 8fa59bae0d8f0c675e9ef48de43de0b4c10b0507a31cd2d81550f52d9712cff0
-  license: ''
-  license_text: ''
-./doc/posix-functions/ccosf.texi: 
-  copyright: ''
-  hash: 2eaf3ff8e1a7a5cbb0233238640c6a1134ae3cc80acc412585115fd63358bf61
-  license: ''
-  license_text: ''
-./doc/posix-functions/ccosh.texi: 
-  copyright: ''
-  hash: 8acf4ecf1abbec6b25ab0cc53f8a452f4ddb32bd61ff4a6ff94c16a5602ec2ab
-  license: ''
-  license_text: ''
-./doc/posix-functions/ccoshf.texi: 
-  copyright: ''
-  hash: f30beb9e547118702e7f30525f258e4cf50a5195e03fb66554802fe0a580f7c7
-  license: ''
-  license_text: ''
-./doc/posix-functions/ccoshl.texi: 
-  copyright: ''
-  hash: eb9e28e48f625d3e2eb5e13e96cbbe361b852162d3d90ba26a5837e1889af495
-  license: ''
-  license_text: ''
-./doc/posix-functions/ccosl.texi: 
-  copyright: ''
-  hash: 3d9df8f9f71f802e5d84323b16351e60dbabdbb3cd0abd9bc862b3e291439694
-  license: ''
-  license_text: ''
-./doc/posix-functions/ceil.texi: 
-  copyright: ''
-  hash: cf8b5752573720cc25bec831c538c1394b14f3b1460f5cc3a2e16ac7016e0497
-  license: ''
-  license_text: ''
-./doc/posix-functions/ceilf.texi: 
-  copyright: ''
-  hash: e13c58fd23e0ed41d99a7bd4d0e8d7849bd2da76d7ce095fdaa587ccb3839d6f
-  license: ''
-  license_text: ''
-./doc/posix-functions/ceill.texi: 
-  copyright: ''
-  hash: c9b79f28ab9283d893f155d1f25c8e75cb360e0d04af0b245bf3e1d009217a5a
-  license: ''
-  license_text: ''
-./doc/posix-functions/cexp.texi: 
-  copyright: ''
-  hash: d3f7892298fdf378f2828a6b51fe4805c92d3a2a217a3e38d4bed5f7c4cc3da4
-  license: ''
-  license_text: ''
-./doc/posix-functions/cexpf.texi: 
-  copyright: ''
-  hash: 09f585a4aba129816d1cb526a14f28ff83ca3fa54016e7bf8b8c08494c2db323
-  license: ''
-  license_text: ''
-./doc/posix-functions/cexpl.texi: 
-  copyright: ''
-  hash: 883e3b88e16b87337802472c75c00fa5b35462c0b8573f7ef558e9a4c0e4faf9
-  license: ''
-  license_text: ''
-./doc/posix-functions/cfgetispeed.texi: 
-  copyright: ''
-  hash: 14c4e6e62c223931253fb497e69a93dad3a1c6a51fca15f3e63337795107bea5
-  license: ''
-  license_text: ''
-./doc/posix-functions/cfgetospeed.texi: 
-  copyright: ''
-  hash: c2519db2b4f519fd3f66640aabd8e497ba1ce5892d23c916a38576bbb580361e
-  license: ''
-  license_text: ''
-./doc/posix-functions/cfsetispeed.texi: 
-  copyright: ''
-  hash: 3b3d21a8f207d8e41d3c912c4a0083264a6fa411c2da6c3f604d7050dee0fed8
-  license: ''
-  license_text: ''
-./doc/posix-functions/cfsetospeed.texi: 
-  copyright: ''
-  hash: c20afc895be661df0733a8dc75794fa7293263468d39678a301ff494d2c87109
-  license: ''
-  license_text: ''
-./doc/posix-functions/chdir.texi: 
-  copyright: ''
-  hash: 53aded6f64b0941116e51303b73ac8e6e9278e3f201af7c6ad326820b5e2e3f6
-  license: ''
-  license_text: ''
-./doc/posix-functions/chmod.texi: 
-  copyright: ''
-  hash: 3a349653c163fa2e3564b1e31ed14ab490934bba7fd3d0096f0d7b1efded7348
-  license: ''
-  license_text: ''
-./doc/posix-functions/chown.texi: 
-  copyright: ''
-  hash: fb9f116f87fc01e4ef30e188f7c9360ac6f517f9eb1370ae2491f5246ed6fef0
-  license: ''
-  license_text: ''
-./doc/posix-functions/cimag.texi: 
-  copyright: ''
-  hash: fd22dd26750766a15751078eb653fdc2ddde0ce0fbd929b258c9fe161e04170e
-  license: ''
-  license_text: ''
-./doc/posix-functions/cimagf.texi: 
-  copyright: ''
-  hash: 76a569fc520aa0eb83fadc9a9e735b2a0a5f3f6daeeeaab322bac1b697554888
-  license: ''
-  license_text: ''
-./doc/posix-functions/cimagl.texi: 
-  copyright: ''
-  hash: c881d444238f5203c0d3b0087372957be2f909c63037c1d14ee0a916707a9c6d
-  license: ''
-  license_text: ''
-./doc/posix-functions/clearerr.texi: 
-  copyright: ''
-  hash: 5fed5a649725e8940e5adb12d4fbf3f5af27aade47daa719911b155f7421149d
-  license: ''
-  license_text: ''
-./doc/posix-functions/clock.texi: 
-  copyright: ''
-  hash: 71e1ceb2d0f5f512ab4a9a0fb2ce9e895457e1b6c7425130bf8ba7896980978a
-  license: ''
-  license_text: ''
-./doc/posix-functions/clock_getcpuclockid.texi: 
-  copyright: ''
-  hash: e72acf21acf80e70335aa212455e60bf1f9815caa0e8d1bf2d2d192c9e337803
-  license: ''
-  license_text: ''
-./doc/posix-functions/clock_getres.texi: 
-  copyright: ''
-  hash: bf955ddbae540035a89e35302304365a2a775aabb9ae7fccbc9c66948de3619e
-  license: ''
-  license_text: ''
-./doc/posix-functions/clock_gettime.texi: 
-  copyright: ''
-  hash: ac68c2fc02227f916df88dfa46f6b2dfbe111860e20dfa605934d149550ef2e2
-  license: ''
-  license_text: ''
-./doc/posix-functions/clock_nanosleep.texi: 
-  copyright: ''
-  hash: 59ca36060acae6a447a4111243c638108a3a98fcf1b53dd7681aaf989698df2a
-  license: ''
-  license_text: ''
-./doc/posix-functions/clock_settime.texi: 
-  copyright: ''
-  hash: 297b8d0066f505aa8c21939c73612aaf536cf0e4f977f1edbb2c4f242d2c5a3b
-  license: ''
-  license_text: ''
-./doc/posix-functions/clog.texi: 
-  copyright: ''
-  hash: 47702f69c3982416c0512a7bd4025df239fefbe4a2f1707cd4745b9fdb500379
-  license: ''
-  license_text: ''
-./doc/posix-functions/clogf.texi: 
-  copyright: ''
-  hash: 2e2bd1295966040f14759ef405f2038a279e164148b402035e9f0633e8e9f49e
-  license: ''
-  license_text: ''
-./doc/posix-functions/clogl.texi: 
-  copyright: ''
-  hash: d40dfa8fa5b96d52d881955e61b8f0cedd381b1e8ca3d7b5ab72c35fb5cdaf55
-  license: ''
-  license_text: ''
-./doc/posix-functions/close.texi: 
-  copyright: ''
-  hash: cdb920f0119a8df783e378bc05571ee2ca4308b3f841b50ca48bd1a3a592ecdc
-  license: ''
-  license_text: ''
-./doc/posix-functions/closedir.texi: 
-  copyright: ''
-  hash: 7e1885ff9368f59c6f2b55a3f04b6ff7a6aa6b2ca796b91c3c88c5c8ec50eaf7
-  license: ''
-  license_text: ''
-./doc/posix-functions/closelog.texi: 
-  copyright: ''
-  hash: 30ca3ffe1cf65500c3bcc3580781dcc34252bea949f3270ce75ad084a281b055
-  license: ''
-  license_text: ''
-./doc/posix-functions/confstr.texi: 
-  copyright: ''
-  hash: 2ce3fc57057be6a24091d7ea399f22cba994b4346cef4ad9e0905d51edb913bb
-  license: ''
-  license_text: ''
-./doc/posix-functions/conj.texi: 
-  copyright: ''
-  hash: 0eb7d2bbdb99c6fd78b92c2b7914b2877cf9e69c4ba5b330f498ef280b11e362
-  license: ''
-  license_text: ''
-./doc/posix-functions/conjf.texi: 
-  copyright: ''
-  hash: 11074f4091f08fd28a9c95b2c7dba4bd66f6fffe7db41e961cfc565ec2d5e960
-  license: ''
-  license_text: ''
-./doc/posix-functions/conjl.texi: 
-  copyright: ''
-  hash: 2c89f05a72f75624bbe8a6c3541f8d3907e91507537a6a5fa75fdceab2a35963
-  license: ''
-  license_text: ''
-./doc/posix-functions/connect.texi: 
-  copyright: ''
-  hash: 122c3713f1fc98b41082aeaf30a2698ca66f35c223d70b97b76ef1b622c58db0
-  license: ''
-  license_text: ''
-./doc/posix-functions/copysign.texi: 
-  copyright: ''
-  hash: 93dede54d4a068e03c2a790b968101fcce78809d3aa2353f8cf98fda60d7c269
-  license: ''
-  license_text: ''
-./doc/posix-functions/copysignf.texi: 
-  copyright: ''
-  hash: 936705fb4bcc082135aa1afc2248b7cfc45cf37f22d002866acaa14c654baaff
-  license: ''
-  license_text: ''
-./doc/posix-functions/copysignl.texi: 
-  copyright: ''
-  hash: 5540cb65bb917d842bc6d0e81dcce0f16f2d1a6d0a8bb9add553a8c9559fabe7
-  license: ''
-  license_text: ''
-./doc/posix-functions/cos.texi: 
-  copyright: ''
-  hash: 80045abb71f4e33aea591a9a33a90bef9af7125bbb532ff6e163c7c900307481
-  license: ''
-  license_text: ''
-./doc/posix-functions/cosf.texi: 
-  copyright: ''
-  hash: 6a11bab0ddf9d06df138b7698cf452d382efa0ac3c383bf36c1b2932b9e8f892
-  license: ''
-  license_text: ''
-./doc/posix-functions/cosh.texi: 
-  copyright: ''
-  hash: dcd6e2553d7fcd67f7d7ac4b296e0b86c27791599a33b0f849b7b6b9ae783102
-  license: ''
-  license_text: ''
-./doc/posix-functions/coshf.texi: 
-  copyright: ''
-  hash: ac511adc238f0fc43aee913691ce5b4d5758b02ba0edc1f377f07bc2b24b427d
-  license: ''
-  license_text: ''
-./doc/posix-functions/coshl.texi: 
-  copyright: ''
-  hash: 10b1339882714ecb27f3595789ff7e57531e1394b8047b6a66d9784f909f0a64
-  license: ''
-  license_text: ''
-./doc/posix-functions/cosl.texi: 
-  copyright: ''
-  hash: 29fb7a5e98a754431e7f3a277096efe178611cc623d9e14b592014d367fd3c58
-  license: ''
-  license_text: ''
-./doc/posix-functions/cpow.texi: 
-  copyright: ''
-  hash: c196fd3e6b5e82b2df412700bd551e90fdcb006566259e526e52d5066a7f136a
-  license: ''
-  license_text: ''
-./doc/posix-functions/cpowf.texi: 
-  copyright: ''
-  hash: 20082274ab3053bb9211077523ac71a8564395068d111a99a4471e5bc315270a
-  license: ''
-  license_text: ''
-./doc/posix-functions/cpowl.texi: 
-  copyright: ''
-  hash: 0aa484e5a20be1692c9b64d6039dd16438e77e2176ec0f54625f67c854b498b2
-  license: ''
-  license_text: ''
-./doc/posix-functions/cproj.texi: 
-  copyright: ''
-  hash: 4f7a4e43573aea662d11b57f91b99a7039874efc4c3cc6de132223a6dc634f3b
-  license: ''
-  license_text: ''
-./doc/posix-functions/cprojf.texi: 
-  copyright: ''
-  hash: b964a10e871a0bf9d13731339a259aa619636a7a3f618a002b287ff1ab07e402
-  license: ''
-  license_text: ''
-./doc/posix-functions/cprojl.texi: 
-  copyright: ''
-  hash: 7f382c38eb94bcc1fa720f6c78e14a0b20186f2f595d2c3894535797f3e52942
-  license: ''
-  license_text: ''
-./doc/posix-functions/creal.texi: 
-  copyright: ''
-  hash: 8079a8295b42f1edf95f7aeb2f5be551b970419bfdf820bbce90b95c10754e45
-  license: ''
-  license_text: ''
-./doc/posix-functions/crealf.texi: 
-  copyright: ''
-  hash: f25ddd8b33eb1c125e29e84ae98346e7e5bd73fe20ed9b18090e2080ef09f851
-  license: ''
-  license_text: ''
-./doc/posix-functions/creall.texi: 
-  copyright: ''
-  hash: 77e4a42b2d8f9df278e80f0af88cc71dd02401f1ecbddcca69cb825cab14f2cf
-  license: ''
-  license_text: ''
-./doc/posix-functions/creat.texi: 
-  copyright: ''
-  hash: d7c959e3c46a579a8bdeecfc246074e2c424686307d26c1a2210fb8317cb37c6
-  license: ''
-  license_text: ''
-./doc/posix-functions/crypt.texi: 
-  copyright: ''
-  hash: 624eda7840abf45802a77fc455c11da3a559654831f98db3d3f531ed87f2d5b8
-  license: ''
-  license_text: ''
-./doc/posix-functions/csin.texi: 
-  copyright: ''
-  hash: a3921e459decb8485fa5b129f122cef9545da177d143a848426285bbaadeb33c
-  license: ''
-  license_text: ''
-./doc/posix-functions/csinf.texi: 
-  copyright: ''
-  hash: 7d43a6e3c333aea75c123600828d0b90aa74bbded515c37a4db2b85ee38c126f
-  license: ''
-  license_text: ''
-./doc/posix-functions/csinh.texi: 
-  copyright: ''
-  hash: c1ec8076f91041ba9035541b53fa4ea34899663273fca8b5a1aa7bf0cb69a8a3
-  license: ''
-  license_text: ''
-./doc/posix-functions/csinhf.texi: 
-  copyright: ''
-  hash: 0e63f7261e62673ea3b38947c2a39fd9db130b5f5f6a331868887d540e142eb4
-  license: ''
-  license_text: ''
-./doc/posix-functions/csinhl.texi: 
-  copyright: ''
-  hash: 6fbfd0066984d87f0912c9ecdb72a51d186bc09e5c6ba6ae1e28384af1cf5d31
-  license: ''
-  license_text: ''
-./doc/posix-functions/csinl.texi: 
-  copyright: ''
-  hash: b007c3e190ebac0645cd770b5c59156ce9fefdd69d6efe8c4c63fb31f755e647
-  license: ''
-  license_text: ''
-./doc/posix-functions/csqrt.texi: 
-  copyright: ''
-  hash: 674aaf134efc75885dbf3a74d1b636639cb36e0a4184887474a94ebf2c2117a5
-  license: ''
-  license_text: ''
-./doc/posix-functions/csqrtf.texi: 
-  copyright: ''
-  hash: dee3f07a84edad6fe1c9fc858ddddbfde40e931e0eba9cd6ed4f129ddccb0c32
-  license: ''
-  license_text: ''
-./doc/posix-functions/csqrtl.texi: 
-  copyright: ''
-  hash: 6e5c675bdaa9c6de16b1437dee1a4578708ca2d94cad7ab22385916abcbf83e1
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctan.texi: 
-  copyright: ''
-  hash: b3788601cf4d71a0cd3e0f83b165f9556069a213808938b81f8762424ac4cde1
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctanf.texi: 
-  copyright: ''
-  hash: c6ade3600b8cb0d385042d424923b9aea79b8679bd9eb4572f88dbb02c6f7a90
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctanh.texi: 
-  copyright: ''
-  hash: bd520abfb5efe1fb710b0517325d5182e0545c9689b91778748c9412721b3620
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctanhf.texi: 
-  copyright: ''
-  hash: 3720fbb944a55cd90c0a1f0d77340b8cad30d78fe539987b1c69bd7413f11f76
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctanhl.texi: 
-  copyright: ''
-  hash: e113c1cf9ab21c84fa4c81d59985e973897534cc9e6665f558871d0cf03e73c6
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctanl.texi: 
-  copyright: ''
-  hash: c74871a8ab6020712b65b9fd9c94c489711ef5a70448492128fa827232d23241
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctermid.texi: 
-  copyright: ''
-  hash: 998eb7b4802db4cd5694a08d47f1fa146468dabeb663940c9a4cee7ea3eaf42b
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctime.texi: 
-  copyright: ''
-  hash: 876f9405ee65afc513f57061e6dfec1fb9574bf891461ba945785c568bfcd824
-  license: ''
-  license_text: ''
-./doc/posix-functions/ctime_r.texi: 
-  copyright: ''
-  hash: f61cab990b7729cbfa70832fec62258bdb1525389b98ce8812758d43f48f7209
-  license: ''
-  license_text: ''
-./doc/posix-functions/daylight.texi: 
-  copyright: ''
-  hash: 8d3098ea9ad8b8ef46605bc072c9331cbdea31642aadd1cba1c0b77dd2e26d05
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_clearerr.texi: 
-  copyright: ''
-  hash: 404719a3ea24ab08a483c2d52fbc4ce115c9f62356a612c8d5b37c6d2f88d935
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_close.texi: 
-  copyright: ''
-  hash: 6548f4878fe9cc6e0bc32b937fe1a6f124dc133cdccea8a9d5f35af09af63c2a
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_delete.texi: 
-  copyright: ''
-  hash: 6fdb38f85cb8686811b1f8d621bce24ae42e425900e214548bdefa3cc6580296
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_error.texi: 
-  copyright: ''
-  hash: ba9684e442829d2cd936d0401e6c75a9ae5c98c09272748d6d193d4e8bdbccd6
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_fetch.texi: 
-  copyright: ''
-  hash: 6d17b86b8c0819900bd8c5d9fe44d29e1107aae2add1a3e9439adaadab897c21
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_firstkey.texi: 
-  copyright: ''
-  hash: 7c66943240b0604d0884c80187d2009341aa20acb5992586bce538c60250e1c1
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_nextkey.texi: 
-  copyright: ''
-  hash: 907dd9d709bd00b11a2c1817ccf8cb6a99fa421dca171b04f45cb1fedebe38e1
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_open.texi: 
-  copyright: ''
-  hash: 1cc347d0c6a0be9a8e6d9dec70c02c6d3dedab0fb0d7fa81da905fc8acb78849
-  license: ''
-  license_text: ''
-./doc/posix-functions/dbm_store.texi: 
-  copyright: ''
-  hash: 9efc0b89e379c522dda1685b5f77dc8fe675d5322d86a80b109e1192448946e9
-  license: ''
-  license_text: ''
-./doc/posix-functions/difftime.texi: 
-  copyright: ''
-  hash: 84a0956c4c5dcddc035048c947ef6629a6e66095464de78530e27871000c15bb
-  license: ''
-  license_text: ''
-./doc/posix-functions/dirfd.texi: 
-  copyright: ''
-  hash: 2bd7841ff2afa0a70d616b84e1906017373f51418bdd86ca173a04dff6f34705
-  license: ''
-  license_text: ''
-./doc/posix-functions/dirname.texi: 
-  copyright: ''
-  hash: f40d32a5b09a2d3082bd21b2dbefb29e49487fff0e58e65aebf7684001a2cccc
-  license: ''
-  license_text: ''
-./doc/posix-functions/div.texi: 
-  copyright: ''
-  hash: 8abae0791655f93d6f27ab614e8aab52311af2f48ace39be233641eb023bbb54
-  license: ''
-  license_text: ''
-./doc/posix-functions/dlclose.texi: 
-  copyright: ''
-  hash: b7ad68ff89c49b30e1120badaca083df7a0212c4cd958724d2ea503699839ec8
-  license: ''
-  license_text: ''
-./doc/posix-functions/dlerror.texi: 
-  copyright: ''
-  hash: 18aa8e729144b1c85ed453e1836cfdcb36a51e27948f9be843a8fc5052273686
-  license: ''
-  license_text: ''
-./doc/posix-functions/dlopen.texi: 
-  copyright: ''
-  hash: 4c4b9aafdfdb94ad9522183dcc6e15ea6612ec8878d2cddc263b0c8fd1e525b0
-  license: ''
-  license_text: ''
-./doc/posix-functions/dlsym.texi: 
-  copyright: ''
-  hash: dd6299cfe6e25b4ebdd8c529c1830ec00c5aabce68fe16f83a0fad14d0266a6e
-  license: ''
-  license_text: ''
-./doc/posix-functions/dprintf.texi: 
-  copyright: ''
-  hash: 4751b081c02483b01d9b3b4340023c6f72f038c6686acaf54e22c02946547333
-  license: ''
-  license_text: ''
-./doc/posix-functions/drand48.texi: 
-  copyright: ''
-  hash: a1f797c389c3e5ec0aa1eb2c68a1c83aed789fe57d9bd614926f905fcd89e020
-  license: ''
-  license_text: ''
-./doc/posix-functions/dup.texi: 
-  copyright: ''
-  hash: b84bc5f93c7ef614338e0acaea061c144c4db4bef66e45640957a5f7d68ac292
-  license: ''
-  license_text: ''
-./doc/posix-functions/dup2.texi: 
-  copyright: ''
-  hash: 6828543830165fe771f033b863d748a69fe320dbeca8ddff166cb1cf61f4f12e
-  license: ''
-  license_text: ''
-./doc/posix-functions/duplocale.texi: 
-  copyright: ''
-  hash: 710286021da197a56a6ff757ea4b40eb32315d8cdd124b218fde41b477292cce
-  license: ''
-  license_text: ''
-./doc/posix-functions/encrypt.texi: 
-  copyright: ''
-  hash: ffff0c779c125a709762efbe2bbaf866da55f9ae8393e65bc5091fc7fa271658
-  license: ''
-  license_text: ''
-./doc/posix-functions/endgrent.texi: 
-  copyright: ''
-  hash: 4e04d52da59c5b86120124d10eaead06c5d849601c0086f6f9c834b8b2e49c62
-  license: ''
-  license_text: ''
-./doc/posix-functions/endhostent.texi: 
-  copyright: ''
-  hash: d4743bbdeecf932ce5f921a9697664b6e546fdc0ff5c1d0ce2bef461801ad3fe
-  license: ''
-  license_text: ''
-./doc/posix-functions/endnetent.texi: 
-  copyright: ''
-  hash: 35901299f3d5b96b44b5eb948d7487f22459c03c4727060ee906472a4e312adc
-  license: ''
-  license_text: ''
-./doc/posix-functions/endprotoent.texi: 
-  copyright: ''
-  hash: 9c3786c66c5d21c3c66fd8549c52c7e49d0d62e009874b2b7a793b928e1af183
-  license: ''
-  license_text: ''
-./doc/posix-functions/endpwent.texi: 
-  copyright: ''
-  hash: af0fe91d02a2753ca91f54afaf844c3707ced1d9be084ccac9e8cefb9ebe1b31
-  license: ''
-  license_text: ''
-./doc/posix-functions/endservent.texi: 
-  copyright: ''
-  hash: c85845c73056fb697ef3ae552c71cfdaccae39eb7773d0cc29e3bcd1e79c0ce2
-  license: ''
-  license_text: ''
-./doc/posix-functions/endutxent.texi: 
-  copyright: ''
-  hash: bb8a45f95293fa56ec75b28457798dd1b02c7b3182b15f58c4248cf7481d9e58
-  license: ''
-  license_text: ''
-./doc/posix-functions/environ.texi: 
-  copyright: ''
-  hash: e747cca924afc1250dbc590720b67ba9544e2a9cb2f94e82589b313e6a879de5
-  license: ''
-  license_text: ''
-./doc/posix-functions/erand48.texi: 
-  copyright: ''
-  hash: 9fc0f6ee76cd0df9c17bdfe1476a1988701d217815345d2e0c0b6c16a2f896ff
-  license: ''
-  license_text: ''
-./doc/posix-functions/erf.texi: 
-  copyright: ''
-  hash: 6a0bddafde57341e89aedc7b0c94be4d959ef1d17041a2ad94edd14eee8dd3aa
-  license: ''
-  license_text: ''
-./doc/posix-functions/erfc.texi: 
-  copyright: ''
-  hash: f7444fc988cc99e0fd5446db910fd6d7afcfa0c6d4af7f69a14279b5ab8764f7
-  license: ''
-  license_text: ''
-./doc/posix-functions/erfcf.texi: 
-  copyright: ''
-  hash: c7f88297596ece737d50e1ad13f8c91e74a1b527820e1af073e08acf85db5ae0
-  license: ''
-  license_text: ''
-./doc/posix-functions/erfcl.texi: 
-  copyright: ''
-  hash: 8ff05f100bfca3045397b764329527a06a324242fe3e7fb12e7ad7017e0a6415
-  license: ''
-  license_text: ''
-./doc/posix-functions/erff.texi: 
-  copyright: ''
-  hash: 94bddf50aa84764165cf1b5515a0d4822d31a78191c2fc058ad8dd11d6b87538
-  license: ''
-  license_text: ''
-./doc/posix-functions/erfl.texi: 
-  copyright: ''
-  hash: b9cea5650518bc063a5f516d263389c127b354ee95a6a244f63c139ee4aff932
-  license: ''
-  license_text: ''
-./doc/posix-functions/errno.texi: 
-  copyright: ''
-  hash: c0bff9e535b487ea1482ae7839b2e0beb289bcec626771844faf76f21a3b2333
-  license: ''
-  license_text: ''
-./doc/posix-functions/execl.texi: 
-  copyright: ''
-  hash: c6c83a0078524e270da3abf8c26bcc630b35e6fb919dfe39752ea97d562d72f8
-  license: ''
-  license_text: ''
-./doc/posix-functions/execle.texi: 
-  copyright: ''
-  hash: 07664367ccaccf55659cf34f6b7129c7f3f581aa26ce635c1ab013412e05ae45
-  license: ''
-  license_text: ''
-./doc/posix-functions/execlp.texi: 
-  copyright: ''
-  hash: ab00274de528810efb9aceee886685a863f27112315256f0480c1a4d8843371d
-  license: ''
-  license_text: ''
-./doc/posix-functions/execv.texi: 
-  copyright: ''
-  hash: e883433082ab1ac2be9bdf46989b074da82660c56db5ea58500bc26598ac89f1
-  license: ''
-  license_text: ''
-./doc/posix-functions/execve.texi: 
-  copyright: ''
-  hash: 24209843e836bcdf1137fd665736c2818b4315e9b506a39bb714d91e998bafcd
-  license: ''
-  license_text: ''
-./doc/posix-functions/execvp.texi: 
-  copyright: ''
-  hash: 289494b8493d01c6d99eab7016f77c2ab1571db2ceee8a9b02c5c901d7a056fc
-  license: ''
-  license_text: ''
-./doc/posix-functions/exit.texi: 
-  copyright: ''
-  hash: bad61c12c0e3e5dfabfd90405e72e5dd828138ca2d2e5261ade25edfd7c97bc8
-  license: ''
-  license_text: ''
-./doc/posix-functions/exp.texi: 
-  copyright: ''
-  hash: a1022846973af4a29037736d84104cc89ce1379a01df12b468890ef0474e0419
-  license: ''
-  license_text: ''
-./doc/posix-functions/exp2.texi: 
-  copyright: ''
-  hash: 8c017fc45146c3df6aea1366497a258bc3a4db0644f0bef6bacda5f4e4833266
-  license: ''
-  license_text: ''
-./doc/posix-functions/exp2f.texi: 
-  copyright: ''
-  hash: 6f2524530958b637f54013d885de946b49bc5b79b6d465436e1e03dcf1952f6c
-  license: ''
-  license_text: ''
-./doc/posix-functions/exp2l.texi: 
-  copyright: ''
-  hash: 7ef33c7a723390ab01411dcd5c5441a11362046a9e8b31ef68bbe4a4dc06a7a3
-  license: ''
-  license_text: ''
-./doc/posix-functions/expf.texi: 
-  copyright: ''
-  hash: 0b478085209dd93a9db5bbce385735bd59753036228a6dc21cdc955d74d5fcd7
-  license: ''
-  license_text: ''
-./doc/posix-functions/expl.texi: 
-  copyright: ''
-  hash: 72311a84d89f58e68fbec7f6fc2c9b9920c27de99832dc73a3424377bf28db52
-  license: ''
-  license_text: ''
-./doc/posix-functions/expm1.texi: 
-  copyright: ''
-  hash: 0a4624e622e7d4e617219004a6095aaa748dd6ec2dcaaf7133518448b81be4a8
-  license: ''
-  license_text: ''
-./doc/posix-functions/expm1f.texi: 
-  copyright: ''
-  hash: 6602aa751036b237ea9fc139d16405892a01d4d4738974a93671e2b24ece70a9
-  license: ''
-  license_text: ''
-./doc/posix-functions/expm1l.texi: 
-  copyright: ''
-  hash: 0107f0369e91579efd87610be8b2b738b16b1b95378d3588ec286cde144d0c42
-  license: ''
-  license_text: ''
-./doc/posix-functions/fabs.texi: 
-  copyright: ''
-  hash: c612c588a2cfffd96be4f47419e7ef786861c356100cc27616f21cbe5723eccb
-  license: ''
-  license_text: ''
-./doc/posix-functions/fabsf.texi: 
-  copyright: ''
-  hash: ea51158ca0b73c832f1bcbede534dabd7771f99529353e24ca24569a90965703
-  license: ''
-  license_text: ''
-./doc/posix-functions/fabsl.texi: 
-  copyright: ''
-  hash: d651616c3fb582db805e35c045e9bb8d0f0529f3aef35e96ff269fff414acae7
-  license: ''
-  license_text: ''
-./doc/posix-functions/faccessat.texi: 
-  copyright: ''
-  hash: 0a8c43215d15ff69db0e57a500af9439c420b21c2ee4cc491931e601edb3f308
-  license: ''
-  license_text: ''
-./doc/posix-functions/fattach.texi: 
-  copyright: ''
-  hash: 2335deee0d43aa46c1c3503f7feae75c7c142c535296827a8e6e183b18a7e756
-  license: ''
-  license_text: ''
-./doc/posix-functions/fchdir.texi: 
-  copyright: ''
-  hash: 8f0f8b4111a6a4dc2945e10940df05e54955ad67de944cb7c9fc3fd965ddcb61
-  license: ''
-  license_text: ''
-./doc/posix-functions/fchmod.texi: 
-  copyright: ''
-  hash: 9bfcb2e4f0142676a15392cad61a13121966364ba601e3e45ba4df6a4fddb283
-  license: ''
-  license_text: ''
-./doc/posix-functions/fchmodat.texi: 
-  copyright: ''
-  hash: 791d16ea744eadb81ceffa282aeedc529ee1432f726b782ba507c62a330259d1
-  license: ''
-  license_text: ''
-./doc/posix-functions/fchown.texi: 
-  copyright: ''
-  hash: 3f8e50fb78c4ca01b3c9d74c32d562d9309038b0aaf2a7ee22ddea159be69c5b
-  license: ''
-  license_text: ''
-./doc/posix-functions/fchownat.texi: 
-  copyright: ''
-  hash: e17fc8eff75380638ff191900612065d2fc77e8926e59ca860c6faad743650ef
-  license: ''
-  license_text: ''
-./doc/posix-functions/fclose.texi: 
-  copyright: ''
-  hash: b68bb8ad4e081e12205b3f7dcfa105c005cbe8fdb312880af5d87be355525e9f
-  license: ''
-  license_text: ''
-./doc/posix-functions/fcntl.texi: 
-  copyright: ''
-  hash: 17f3caf36d2c2f9a664acd0c737de34d5a64c6e6bdc186f325ca6867222adccf
-  license: ''
-  license_text: ''
-./doc/posix-functions/fdatasync.texi: 
-  copyright: ''
-  hash: 57f7709061810bd5896998adeb9f3d2fe72380a7f2dc09bded617489700ef2f2
-  license: ''
-  license_text: ''
-./doc/posix-functions/fdetach.texi: 
-  copyright: ''
-  hash: fd54a027b23acd7d79f8f796360b31949be6d6d99d77a21ee56cb0aefd2f4208
-  license: ''
-  license_text: ''
-./doc/posix-functions/fdim.texi: 
-  copyright: ''
-  hash: 387bce6ebad92e5ef48ffe946c26a2a42310baa9c69a47d7ff020f61b698899a
-  license: ''
-  license_text: ''
-./doc/posix-functions/fdimf.texi: 
-  copyright: ''
-  hash: 04e0f917203a56effba8c34a4541f6bc2a107f6d09b70e51af95a6473320fa02
-  license: ''
-  license_text: ''
-./doc/posix-functions/fdiml.texi: 
-  copyright: ''
-  hash: e4ab81e086d8a6b6633e26501eb964e8c5f9de428edd84b106ce690f7c8637c3
-  license: ''
-  license_text: ''
-./doc/posix-functions/fdopen.texi: 
-  copyright: ''
-  hash: e763566373aec112a9e84b961c32faf690c517c3db12d6eb5a6f839f42b765d9
-  license: ''
-  license_text: ''
-./doc/posix-functions/fdopendir.texi: 
-  copyright: ''
-  hash: 77c4e1f653c030b8389397c264b670095f530d9a4f131679c1db06dff8143cca
-  license: ''
-  license_text: ''
-./doc/posix-functions/feclearexcept.texi: 
-  copyright: ''
-  hash: b982ba6aeaedabf3354982f022c731c771f3cd82f055f6f59d666a8f1a57bcaf
-  license: ''
-  license_text: ''
-./doc/posix-functions/fegetenv.texi: 
-  copyright: ''
-  hash: 0899bacdfa0523a69893c4968ba4889363c79409c45e55c3ea8782351e3f9e16
-  license: ''
-  license_text: ''
-./doc/posix-functions/fegetexceptflag.texi: 
-  copyright: ''
-  hash: 34c0d1502982592c37c0e902a639dbc3ae01546f3c93ce70ca9f8c7d17e38156
-  license: ''
-  license_text: ''
-./doc/posix-functions/fegetround.texi: 
-  copyright: ''
-  hash: bcd175725d7173502ca62d3e7f40a23565add2e0d8a50f5e6b31d622a2f7c834
-  license: ''
-  license_text: ''
-./doc/posix-functions/feholdexcept.texi: 
-  copyright: ''
-  hash: 6a8976e6ff7285ec392afbd6d41c13756842fb99c799645ae85ce5c536aa1757
-  license: ''
-  license_text: ''
-./doc/posix-functions/feof.texi: 
-  copyright: ''
-  hash: 20663c1a2fa66678f13880eea8ab1c99980cdef004bdb5e2cb5f182a0654cbe1
-  license: ''
-  license_text: ''
-./doc/posix-functions/feraiseexcept.texi: 
-  copyright: ''
-  hash: 752c504ac8b81d058b11051349d0b2e4291fcc1c488ea6f29fdd111c97ce4ffb
-  license: ''
-  license_text: ''
-./doc/posix-functions/ferror.texi: 
-  copyright: ''
-  hash: 2cc317e89975e266a5d297a47d3cb2a9a147d5b82f9199535182f440b9008a81
-  license: ''
-  license_text: ''
-./doc/posix-functions/fesetenv.texi: 
-  copyright: ''
-  hash: 3d2f6a1d8b2e5939ba3ebdde32deb42cf59eb78c27ffbc6387f7c4e149d35097
-  license: ''
-  license_text: ''
-./doc/posix-functions/fesetexceptflag.texi: 
-  copyright: ''
-  hash: 97552023ee289a5ff8e84e60b3520a19fb0f9a4874de3c470657f10b0c6a8068
-  license: ''
-  license_text: ''
-./doc/posix-functions/fesetround.texi: 
-  copyright: ''
-  hash: 39499b13852e55ef8009ae3db5a7aebad2afc986a40f26b7c48c151b9e86fc24
-  license: ''
-  license_text: ''
-./doc/posix-functions/fetestexcept.texi: 
-  copyright: ''
-  hash: 4eac9c618c477726e112f8b26dbb7d2d4397be157969de91943c43742a390550
-  license: ''
-  license_text: ''
-./doc/posix-functions/feupdateenv.texi: 
-  copyright: ''
-  hash: 8b153cba36a94a6c2b66f6e421ecd4e2b9a46036392e2210785970e6ab34b8e8
-  license: ''
-  license_text: ''
-./doc/posix-functions/fexecve.texi: 
-  copyright: ''
-  hash: df29f2ca7c01d154444462d530e082f939e3151a011ef347587deb8f25a3690d
-  license: ''
-  license_text: ''
-./doc/posix-functions/fflush.texi: 
-  copyright: ''
-  hash: 9bcd03018a5e64e321e5da36fc16b1ac1c3247e6e8ffda3d7339b1d1e9fe8294
-  license: ''
-  license_text: ''
-./doc/posix-functions/ffs.texi: 
-  copyright: ''
-  hash: 21aa35d4426a78734a84676cb0d454c75acee469c9ffd615a5fbb9de9daa1a42
-  license: ''
-  license_text: ''
-./doc/posix-functions/fgetc.texi: 
-  copyright: ''
-  hash: e7c425a41e66d08ffac2b8d0222bf45baf73e2f9459b8795691411c4b5357659
-  license: ''
-  license_text: ''
-./doc/posix-functions/fgetpos.texi: 
-  copyright: ''
-  hash: 275859ced43d62e5be3273f8c7c7fa9442de1b8d1287714892e23f0087f467f9
-  license: ''
-  license_text: ''
-./doc/posix-functions/fgets.texi: 
-  copyright: ''
-  hash: 71414045cbbe67d9efb6b83bce606a8de25b97f9e08980d09d10444db31a02a7
-  license: ''
-  license_text: ''
-./doc/posix-functions/fgetwc.texi: 
-  copyright: ''
-  hash: a603a66a1e031dd3727b3b379a537e32014c54e932b01846b26200af8510ea94
-  license: ''
-  license_text: ''
-./doc/posix-functions/fgetws.texi: 
-  copyright: ''
-  hash: e396ca7cb9c9423e66bacf0c7e4aa69ff7b814a1bd5ebb0e6810220b55a68bb8
-  license: ''
-  license_text: ''
-./doc/posix-functions/fileno.texi: 
-  copyright: ''
-  hash: abc9e47b66277f9ba067894c61eef516a4cd6da18b0bd79671f5117ad7a9e37b
-  license: ''
-  license_text: ''
-./doc/posix-functions/flockfile.texi: 
-  copyright: ''
-  hash: ef8a277424e6a1aba4db3cfc8341fb0ce9acf254adb5691c66986e3462484cb4
-  license: ''
-  license_text: ''
-./doc/posix-functions/floor.texi: 
-  copyright: ''
-  hash: b07bf778811aac7f3e96a3af59c18dec2a8944c6a6b30082ff2eb0f6eebcd70d
-  license: ''
-  license_text: ''
-./doc/posix-functions/floorf.texi: 
-  copyright: ''
-  hash: ec2e982ab48eb54039f21f74d449bbd932bf6ce341f44ed67443841fafb99517
-  license: ''
-  license_text: ''
-./doc/posix-functions/floorl.texi: 
-  copyright: ''
-  hash: 4bd7c2e91d448d223f565886a273c53f07df96dce012d7afb8057de24dcbaf29
-  license: ''
-  license_text: ''
-./doc/posix-functions/fma.texi: 
-  copyright: ''
-  hash: e7afe0eb9016dee7ae95382952e183234e3d4e632950f62cde0cda8b3458feca
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmaf.texi: 
-  copyright: ''
-  hash: 92a275d7d2e32246725903039974adea241feae8587da17c6161230d307e4f8a
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmal.texi: 
-  copyright: ''
-  hash: d26907c96ceae9a7551c6a50ae32adddf5657735ec64d5ff3bc23301a1bc9440
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmax.texi: 
-  copyright: ''
-  hash: a45b7a4dd49c6ccb1d51374c51a37958f64f965be332e874b741671f00c6a2c7
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmaxf.texi: 
-  copyright: ''
-  hash: cc63ffb93e596bd2d86d82f3b3dd04626cc8683c8e919dc1f1868b6e8b549335
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmaxl.texi: 
-  copyright: ''
-  hash: f3a58f157499f078945af3bea4bdf315a104abb54df51e7b12dca522da70eba9
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmemopen.texi: 
-  copyright: ''
-  hash: 977725664c869f310611befaeafecddca0a4595deb9aa92b1e5edf38854a527d
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmin.texi: 
-  copyright: ''
-  hash: 00763f301200d7eac7d4ebc557feaf0901bc2efa0a1d7ed5b91dc3fa0edd8841
-  license: ''
-  license_text: ''
-./doc/posix-functions/fminf.texi: 
-  copyright: ''
-  hash: 3755886d1bb03aaec9755b2c34e4972ef0c8387c82b056d527b1afc61a5f0fb2
-  license: ''
-  license_text: ''
-./doc/posix-functions/fminl.texi: 
-  copyright: ''
-  hash: b5a0cc5a37fd46620b53cde5c2657ad4095f85f712ff3f0f414c4692a98489bf
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmod.texi: 
-  copyright: ''
-  hash: 5862ec5b61a832641dde66acb7eb859b7407994f7624cb83001e4e5411877b24
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmodf.texi: 
-  copyright: ''
-  hash: be9fb731e931317464eaadfa409ac9ba5fac8cf6f488f1dca04dfb25f4a87c9e
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmodl.texi: 
-  copyright: ''
-  hash: da2bd3cfd9d33b8218d82300d5863a329002ab59ee62c591df043c7cbc3e2bf5
-  license: ''
-  license_text: ''
-./doc/posix-functions/fmtmsg.texi: 
-  copyright: ''
-  hash: cda2c53b8e96e2e813629d5a07ee3ec6bae5dae9835cd30bfb79b5a6cd9809ea
-  license: ''
-  license_text: ''
-./doc/posix-functions/fnmatch.texi: 
-  copyright: ''
-  hash: 4be762a04e97a3e099e16422bcdf9db17a4385c25e71916c2dc8620cce12c689
-  license: ''
-  license_text: ''
-./doc/posix-functions/fopen.texi: 
-  copyright: ''
-  hash: cb37df82cdfc62d799a6208a0cb896815c99a21aa72e61ee66add9794bc0caef
-  license: ''
-  license_text: ''
-./doc/posix-functions/fork.texi: 
-  copyright: ''
-  hash: 47e401050fdd39055e37b7942ecf9e6acc2dd1b0ba893ca9efce7fbe07512f26
-  license: ''
-  license_text: ''
-./doc/posix-functions/fpathconf.texi: 
-  copyright: ''
-  hash: dc753382cbb40d381330cae488511d20499ac593648fdea05451978ec6236e18
-  license: ''
-  license_text: ''
-./doc/posix-functions/fpclassify.texi: 
-  copyright: ''
-  hash: 4f9658ae83ffe86a91686e050b951b3a779cff3a3d113b99a8d567580a71ce2e
-  license: ''
-  license_text: ''
-./doc/posix-functions/fprintf.texi: 
-  copyright: ''
-  hash: b9f426d7699941849d81c004ea41301049efff02e408a1dab1b04c5a33c2e1f5
-  license: ''
-  license_text: ''
-./doc/posix-functions/fputc.texi: 
-  copyright: ''
-  hash: b13cd308b550d7216762f444ad5ff6437fab475480073a7c372b42c0414e9568
-  license: ''
-  license_text: ''
-./doc/posix-functions/fputs.texi: 
-  copyright: ''
-  hash: f443e76ec0801cf0481eb89de8e604d424c93acc535cceb7a11050b2d602d617
-  license: ''
-  license_text: ''
-./doc/posix-functions/fputwc.texi: 
-  copyright: ''
-  hash: c69261284cad8a715adc606ac68ce522bfd1a94849d795d8289febf07cdad00e
-  license: ''
-  license_text: ''
-./doc/posix-functions/fputws.texi: 
-  copyright: ''
-  hash: a0056c49a80a1aa877213437ddd4cb5955ac2c462fa78f053a4c3a6f3782d334
-  license: ''
-  license_text: ''
-./doc/posix-functions/fread.texi: 
-  copyright: ''
-  hash: 203ffb455bb4140455e841f5fae6f63fea6055043808d00adafcc88b630cb01f
-  license: ''
-  license_text: ''
-./doc/posix-functions/free.texi: 
-  copyright: ''
-  hash: 5d242e3032ca93238450312616b0835cee0d16bdd29424c0a5b8d9e265e306b0
-  license: ''
-  license_text: ''
-./doc/posix-functions/freeaddrinfo.texi: 
-  copyright: ''
-  hash: 2a85ac5773ce37228a9b001b2f6102d2ccb5ee712dc6a104372a3caa7add64a3
-  license: ''
-  license_text: ''
-./doc/posix-functions/freelocale.texi: 
-  copyright: ''
-  hash: 8776a23dd2eca0e57d0e59149570dc4afb924e23c11ae4ac4d8e9119ef78334a
-  license: ''
-  license_text: ''
-./doc/posix-functions/freopen.texi: 
-  copyright: ''
-  hash: c5b8bff1922535abcc1fec969516b476b349e17b5f65b47484da8bfe7f3f823c
-  license: ''
-  license_text: ''
-./doc/posix-functions/frexp.texi: 
-  copyright: ''
-  hash: 692f49020a87b80d1037790d020971803bc0afebe14c158150a4e52031487353
-  license: ''
-  license_text: ''
-./doc/posix-functions/frexpf.texi: 
-  copyright: ''
-  hash: 331ce16fc8e4dc1d4b90dd42bc5e7ccb13e6190ee4286fb3fe9e4b6e78dc5bd6
-  license: ''
-  license_text: ''
-./doc/posix-functions/frexpl.texi: 
-  copyright: ''
-  hash: 2b05d97865d15965f7eaaf726466ca7938f8aa8a4fb5c3074b88296c6175fd8e
-  license: ''
-  license_text: ''
-./doc/posix-functions/fscanf.texi: 
-  copyright: ''
-  hash: c6cbb6eb2da370d053d700306d3f3d2fced6edb533846ce87c3eecd9f5b64d05
-  license: ''
-  license_text: ''
-./doc/posix-functions/fseek.texi: 
-  copyright: ''
-  hash: 44d940d7b3f70696e57564a133ec06b608f75eb80f823893cc8d791cf20858f4
-  license: ''
-  license_text: ''
-./doc/posix-functions/fseeko.texi: 
-  copyright: ''
-  hash: fce7c54e29aecbe63e018aa87b29db3cdc06947fed30a56dfdbb75ecffccfd68
-  license: ''
-  license_text: ''
-./doc/posix-functions/fsetpos.texi: 
-  copyright: ''
-  hash: 406badc26cb637f4a19da664e003024401fc353dff4fd1b141a6d824183d2d7a
-  license: ''
-  license_text: ''
-./doc/posix-functions/fstat.texi: 
-  copyright: ''
-  hash: 029d0fe3f92d95173e6f28cccdbe2fe0ea1ab1e62cda2da6da2602071242e5c3
-  license: ''
-  license_text: ''
-./doc/posix-functions/fstatat.texi: 
-  copyright: ''
-  hash: b452283c1ad4c7f6620b47e705c065d8ec9f7d7311e26521d50d978dde098b0c
-  license: ''
-  license_text: ''
-./doc/posix-functions/fstatvfs.texi: 
-  copyright: ''
-  hash: ea42e0f03ea940ad7488f661925d44bc715e874caff49d8cf4c755fb3afb9a0a
-  license: ''
-  license_text: ''
-./doc/posix-functions/fsync.texi: 
-  copyright: ''
-  hash: 8bf1bac4285f032b09e4f9c7087f3af31e559b5f52eca758141cbb391f5ac608
-  license: ''
-  license_text: ''
-./doc/posix-functions/ftell.texi: 
-  copyright: ''
-  hash: 7a09c5de0c501bb7cdeb65cf20f5582009c8ff539b59a7c5fee036acd65c1a78
-  license: ''
-  license_text: ''
-./doc/posix-functions/ftello.texi: 
-  copyright: ''
-  hash: 37cf02f3716a62b6bba4c06fcadb95b4edf7b6cc034cd29b5b4a9b90ae04ac54
-  license: ''
-  license_text: ''
-./doc/posix-functions/ftok.texi: 
-  copyright: ''
-  hash: 9c0bb158262d297799d36d6d588c26e3e41b95226a77dd4cf11cd992e4a9a1e6
-  license: ''
-  license_text: ''
-./doc/posix-functions/ftruncate.texi: 
-  copyright: ''
-  hash: f1e0566861d589db1bb60cda3d8b8317d1ff9520cc36f00549df03b3419b269e
-  license: ''
-  license_text: ''
-./doc/posix-functions/ftrylockfile.texi: 
-  copyright: ''
-  hash: e43223544d05c58b1bead69da882754ab20a449b9b600200c4ea8709b16fa01f
-  license: ''
-  license_text: ''
-./doc/posix-functions/ftw.texi: 
-  copyright: ''
-  hash: e978b2519b0f3806a7dab0e5e344fe47bca8fc2f523fde61b4dde209495588b1
-  license: ''
-  license_text: ''
-./doc/posix-functions/funlockfile.texi: 
-  copyright: ''
-  hash: 8b38246093f70a1e9599e3b040144aae94cf838305b81707500c579661d7f5ae
-  license: ''
-  license_text: ''
-./doc/posix-functions/futimens.texi: 
-  copyright: ''
-  hash: d1320304b274deef5c2d65cf3e1ffd0c50367a79176ef371756373ca29705fcb
-  license: ''
-  license_text: ''
-./doc/posix-functions/fwide.texi: 
-  copyright: ''
-  hash: ad8af32a87ba8df0b7982ed23d296cf78858b76463e35ad868d09fcc6cdd6653
-  license: ''
-  license_text: ''
-./doc/posix-functions/fwprintf.texi: 
-  copyright: ''
-  hash: 40435c2105f61e2dfae56b633e183a81a1d955f0d0d5e0a3cbfce5865fbaa133
-  license: ''
-  license_text: ''
-./doc/posix-functions/fwrite.texi: 
-  copyright: ''
-  hash: 0bc2efa6c28e32fe14ef25c64543ad9693dbb01be6f3fc8a5086a76ae6ed95e1
-  license: ''
-  license_text: ''
-./doc/posix-functions/fwscanf.texi: 
-  copyright: ''
-  hash: 0350aa62241649e46ebcc0a699ed578f770f8d8c4ab946f80522abc793281936
-  license: ''
-  license_text: ''
-./doc/posix-functions/gai_strerror.texi: 
-  copyright: ''
-  hash: 9fa1d09a15180298f0966016d7c07be6488b7d90ae0fabfb8bd7e41bc43f22d2
-  license: ''
-  license_text: ''
-./doc/posix-functions/getaddrinfo.texi: 
-  copyright: ''
-  hash: 14a705c905635f12d64464c1acf0d56577117e53d94fcb0d641b12f4913a4dfd
-  license: ''
-  license_text: ''
-./doc/posix-functions/getc.texi: 
-  copyright: ''
-  hash: 58714462b4f4187bd08744681c000e72e90a9431f84add6e9360050466fbbf17
-  license: ''
-  license_text: ''
-./doc/posix-functions/getc_unlocked.texi: 
-  copyright: ''
-  hash: 719010c698afd2db8d1b61b7885706a8940c7fc71fbd2a10a01468665a3ee895
-  license: ''
-  license_text: ''
-./doc/posix-functions/getchar.texi: 
-  copyright: ''
-  hash: 38cf4d3f15b593d55ec4c5968a96c38a6fbe440c9060e0ad506473175e94e95b
-  license: ''
-  license_text: ''
-./doc/posix-functions/getchar_unlocked.texi: 
-  copyright: ''
-  hash: be20adfbc37a9b00e3ff1dc74c54d3358c9fd38ac388e4818d22abcaecbd4ec7
-  license: ''
-  license_text: ''
-./doc/posix-functions/getcwd.texi: 
-  copyright: ''
-  hash: 17c216e7edd5cd839916fe367c97d27dd035e38e34a93c49bde48ea868c5296f
-  license: ''
-  license_text: ''
-./doc/posix-functions/getdate.texi: 
-  copyright: ''
-  hash: 79d3612b99d1e09b631440139db05273fe95959c259b5127693a9cb0223b3cee
-  license: ''
-  license_text: ''
-./doc/posix-functions/getdate_err.texi: 
-  copyright: ''
-  hash: f92239cab29da0644d61d19629631685b6abcbc7b621f1aba5179029e5a28f84
-  license: ''
-  license_text: ''
-./doc/posix-functions/getdelim.texi: 
-  copyright: ''
-  hash: efafb82e4876cff26df193267dcbd2a3a2f1f2fd97431a4ec5c761663a3886e4
-  license: ''
-  license_text: ''
-./doc/posix-functions/getegid.texi: 
-  copyright: ''
-  hash: b5b2f176703267d09132755529f870787751c23195ef12e2c9971d9a9c838a6d
-  license: ''
-  license_text: ''
-./doc/posix-functions/getenv.texi: 
-  copyright: ''
-  hash: 274cd2f5b8925d63386ac9c50ef8831a97f390e3e58e5977bf9785aae707cd97
-  license: ''
-  license_text: ''
-./doc/posix-functions/geteuid.texi: 
-  copyright: ''
-  hash: 5839ba963ace9183575af71a0ede6093646d1924b7d9e2db4fdebd83dbed9a0e
-  license: ''
-  license_text: ''
-./doc/posix-functions/getgid.texi: 
-  copyright: ''
-  hash: 39a7aed4f6ecf6142c9c4c9f46a2d8a17a802609c2b75dc92ec40c30e196196b
-  license: ''
-  license_text: ''
-./doc/posix-functions/getgrent.texi: 
-  copyright: ''
-  hash: 0596e2089898956df5fd5cae81e2c3a8891e10e1746e9f13a3c8357d7c9edcb5
-  license: ''
-  license_text: ''
-./doc/posix-functions/getgrgid.texi: 
-  copyright: ''
-  hash: e90d86643f77ea14655319e842600c5f9de7a54494abce14088dd53ea2931a25
-  license: ''
-  license_text: ''
-./doc/posix-functions/getgrgid_r.texi: 
-  copyright: ''
-  hash: ae21c2ca2f91e6e4083483a87b4dc644e670c029cd4cc1f1e1b14c0a0e0adedf
-  license: ''
-  license_text: ''
-./doc/posix-functions/getgrnam.texi: 
-  copyright: ''
-  hash: 7e47a3eaa33be90ec41d4856255adb5c1434663e691c7362ce1297d74ff858d2
-  license: ''
-  license_text: ''
-./doc/posix-functions/getgrnam_r.texi: 
-  copyright: ''
-  hash: 2e107e9b689d02131cfc4599989f420a227a95b4c35d4bca5774e73a2ff568e8
-  license: ''
-  license_text: ''
-./doc/posix-functions/getgroups.texi: 
-  copyright: ''
-  hash: dc11c7f3733247e37a0bc53249ea948e76d259d158544b2a5a082a1d111129e0
-  license: ''
-  license_text: ''
-./doc/posix-functions/gethostent.texi: 
-  copyright: ''
-  hash: a1ddf37deaf3136d395c6e2fc6bc008837e691f6b6c615c6bfbac8c2316ceb5c
-  license: ''
-  license_text: ''
-./doc/posix-functions/gethostid.texi: 
-  copyright: ''
-  hash: 75b6790bd3fd3e7bb67cc34c87a613cc4bfa446ce4e2a43a11e9788c583ed63c
-  license: ''
-  license_text: ''
-./doc/posix-functions/gethostname.texi: 
-  copyright: ''
-  hash: 77e832d8786df64fef14857e4611bc7324c762142a78e5a347f789b35d563a1c
-  license: ''
-  license_text: ''
-./doc/posix-functions/getitimer.texi: 
-  copyright: ''
-  hash: 35af7f4dc16bc874c784085e9bed6ab3be4728a30937389be5aa1e3026ce4f47
-  license: ''
-  license_text: ''
-./doc/posix-functions/getline.texi: 
-  copyright: ''
-  hash: cc4e1cdd660ad29d4fdf61fef17a363fd2de9ca8f2f9864e8a11fb14978e6715
-  license: ''
-  license_text: ''
-./doc/posix-functions/getlogin.texi: 
-  copyright: ''
-  hash: 1dcdcd176e1153b391bee72702dd8c20b7e79e32970b1db82044598c636350f6
-  license: ''
-  license_text: ''
-./doc/posix-functions/getlogin_r.texi: 
-  copyright: ''
-  hash: 7ad532d82f0519617a84dc82bf028aa4181ba189dda51b3ac511ab5648042f8e
-  license: ''
-  license_text: ''
-./doc/posix-functions/getmsg.texi: 
-  copyright: ''
-  hash: e67c2c51ff394f18250f43089b89a0820105195fe338f2b68ca2448fde73a130
-  license: ''
-  license_text: ''
-./doc/posix-functions/getnameinfo.texi: 
-  copyright: ''
-  hash: 7ce827533a3feb9e2f219bc867cb7dbf8f5d39dae596203b9425157ee79fa86c
-  license: ''
-  license_text: ''
-./doc/posix-functions/getnetbyaddr.texi: 
-  copyright: ''
-  hash: 4e93c87df34262cc9fe05be16d01964a06924666bc4513614053d626ae6b5ff7
-  license: ''
-  license_text: ''
-./doc/posix-functions/getnetbyname.texi: 
-  copyright: ''
-  hash: 52a931503da2c42cbd8f8be86549e2575e48ab5b65090fa85ec33f2910e00cb2
-  license: ''
-  license_text: ''
-./doc/posix-functions/getnetent.texi: 
-  copyright: ''
-  hash: b32da6dbd572fe5c7c653c8c600ebebe87b0f794b2758f02c7c175587c1b63ff
-  license: ''
-  license_text: ''
-./doc/posix-functions/getopt.texi: 
-  copyright: ''
-  hash: af7f8ffb87a9e53611a6c79fa27787cb8686d2fad31f999c12e345d89db483ae
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpeername.texi: 
-  copyright: ''
-  hash: 3da780655ab68f30fec710038214a4e109ad4247a561349954bb1b0cfde8d117
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpgid.texi: 
-  copyright: ''
-  hash: 0b7b188ca82fc0428055b148ff19fcb11abe7c13f97b23f913ec4afeed84e3e3
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpgrp.texi: 
-  copyright: ''
-  hash: db8b430ed2f111ddbd6fe64c6fed03b269ab342d0242b27ab145239c9281296c
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpid.texi: 
-  copyright: ''
-  hash: ac1bc30305416ea508f16362ec87cbe917851fdd1a598a828e711ede91b2d825
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpmsg.texi: 
-  copyright: ''
-  hash: aa2a70e33feb57d1e999ef4b424ecd3c44e308fc2b6446eae7418d25a30bb2c5
-  license: ''
-  license_text: ''
-./doc/posix-functions/getppid.texi: 
-  copyright: ''
-  hash: 6d2bf74d0a29e047baeb1ef37707f41406274cc3f248d75e8dc46781a6b68f69
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpriority.texi: 
-  copyright: ''
-  hash: e9c531e0f622d4d952957f619ff81ce3d19931316589b633ff0b611f43fd2843
-  license: ''
-  license_text: ''
-./doc/posix-functions/getprotobyname.texi: 
-  copyright: ''
-  hash: 963e8861ff62a9d05859487128caa20536bb577825ce96399658e741f7be3193
-  license: ''
-  license_text: ''
-./doc/posix-functions/getprotobynumber.texi: 
-  copyright: ''
-  hash: e805cea0486255ad0074dde515a503115e33ed43868aecacfb1a0ac558cf8b98
-  license: ''
-  license_text: ''
-./doc/posix-functions/getprotoent.texi: 
-  copyright: ''
-  hash: 551ad27d45a3a2173629a313fa52369ff33c06beaec3bbc2377baf67b8bd6a63
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpwent.texi: 
-  copyright: ''
-  hash: 68e520992b1a0489112d7282fd41decd194ca4fd35a4d9b802cc3c4f7668109d
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpwnam.texi: 
-  copyright: ''
-  hash: 998a0dbf244f755876f23b998c559ba89e13530dd2773a04938a04b5b4f4ea58
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpwnam_r.texi: 
-  copyright: ''
-  hash: 70f8d6647f1e66692bd073a00720fdd78908c840c5d79bfdc49a0f125598a275
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpwuid.texi: 
-  copyright: ''
-  hash: e8fe050b21b5adc384e3955d5ffd092c6a04e7f31d5a9f4812d4d928483a13b4
-  license: ''
-  license_text: ''
-./doc/posix-functions/getpwuid_r.texi: 
-  copyright: ''
-  hash: d44ef7b94c25b62423eedbe94c7a59721af5023d7f9798dcb6f9bca0b3188b84
-  license: ''
-  license_text: ''
-./doc/posix-functions/getrlimit.texi: 
-  copyright: ''
-  hash: 1741e65462f624b55fa08f6c137d5fef0491b29550153ff7b2298da4af716d35
-  license: ''
-  license_text: ''
-./doc/posix-functions/getrusage.texi: 
-  copyright: ''
-  hash: c9eeb4d92f5a2e7811c9223fd928527c6a5417e8594cbd9ea14eeefede635a25
-  license: ''
-  license_text: ''
-./doc/posix-functions/gets.texi: 
-  copyright: ''
-  hash: 9acd238c8a9d2d9c4330c312cafbdcd705e2429713392b36d2ce7c289b4e53ae
-  license: ''
-  license_text: ''
-./doc/posix-functions/getservbyname.texi: 
-  copyright: ''
-  hash: 3ecea5dc3404e1e38010cd73a8404324b1f9d1b54340701156549b8d5bfd01be
-  license: ''
-  license_text: ''
-./doc/posix-functions/getservbyport.texi: 
-  copyright: ''
-  hash: bcdebeab2eff4908ac4d0c1c82b94bf2d68700c98b4cd97a78214034f96b2ed3
-  license: ''
-  license_text: ''
-./doc/posix-functions/getservent.texi: 
-  copyright: ''
-  hash: c838d8a89540e74f6101898ed07696b8825936baf417b8f2832655d311f571b9
-  license: ''
-  license_text: ''
-./doc/posix-functions/getsid.texi: 
-  copyright: ''
-  hash: 431bb53ecff71e3d8b417174c16796f529609cd3acb88ebc10eb477a349185bb
-  license: ''
-  license_text: ''
-./doc/posix-functions/getsockname.texi: 
-  copyright: ''
-  hash: 31f2b7be44434718f4efc1d7b1eeab9bf763e3e363342fb0650f7dd2febe12b3
-  license: ''
-  license_text: ''
-./doc/posix-functions/getsockopt.texi: 
-  copyright: ''
-  hash: af2dad761ea7f44bcf81197c78bf3fcfb362822bad6f0ece6311338d86e3af08
-  license: ''
-  license_text: ''
-./doc/posix-functions/getsubopt.texi: 
-  copyright: ''
-  hash: aa4a53d47e730a1f992d7f1aa922e1aa79be10c34bfb255f50c46bfcb2f31234
-  license: ''
-  license_text: ''
-./doc/posix-functions/gettimeofday.texi: 
-  copyright: ''
-  hash: 92a496410d954f2a49525954f98a8b06037522f580f6c0db5ade027332d23bde
-  license: ''
-  license_text: ''
-./doc/posix-functions/getuid.texi: 
-  copyright: ''
-  hash: 19539881b0771df459953a324b6b357f9054362136b7bf9e0dd8765b028602e1
-  license: ''
-  license_text: ''
-./doc/posix-functions/getutxent.texi: 
-  copyright: ''
-  hash: 87341c2493c319192244895c4b3a8f0e235c13e0c6621010175a0c36db050f8b
-  license: ''
-  license_text: ''
-./doc/posix-functions/getutxid.texi: 
-  copyright: ''
-  hash: 0bbf1db488c0b8719e88a95cd605fa67768a93ef69ddd9169b67e61711ae1e9d
-  license: ''
-  license_text: ''
-./doc/posix-functions/getutxline.texi: 
-  copyright: ''
-  hash: d12b5dfe0bf0b375c1ca7848376ae825fc319ade3d15ad4eaef723461569e33a
-  license: ''
-  license_text: ''
-./doc/posix-functions/getwc.texi: 
-  copyright: ''
-  hash: 24a89fa271805bfe4e8cc573f5ca543254fe76dc9df6b5d9120d24be2e7e8409
-  license: ''
-  license_text: ''
-./doc/posix-functions/getwchar.texi: 
-  copyright: ''
-  hash: f75ad5d5c3cf53828966a82b52a7ef76b530dcdb646790e3e093dac8390a43f3
-  license: ''
-  license_text: ''
-./doc/posix-functions/glob.texi: 
-  copyright: ''
-  hash: 768db78c0332b8bc395ab0e47410eda2ecd7e7199d167bdda85c58ecc1aa45a5
-  license: ''
-  license_text: ''
-./doc/posix-functions/globfree.texi: 
-  copyright: ''
-  hash: 377e052eed5cf3a7e869b6b866cfeac8cd5ee86bcbdb7a7e8917773dd9409ab8
-  license: ''
-  license_text: ''
-./doc/posix-functions/gmtime.texi: 
-  copyright: ''
-  hash: 9066a6d0b686e0fd9eaf52c3daccffe11d300f0093beec88c8dea2637d591a89
-  license: ''
-  license_text: ''
-./doc/posix-functions/gmtime_r.texi: 
-  copyright: ''
-  hash: d899d0d3944063104a3a87bec32233cf8c8c5c00340d8a31c276be78149609b2
-  license: ''
-  license_text: ''
-./doc/posix-functions/google-ranking.txt: 
-  copyright: ''
-  hash: 6669619e4c21ebf3f0f0cfa39caf63574d638db746cee3ab5241ae4e8ab02dff
-  license: ''
-  license_text: ''
-./doc/posix-functions/grantpt.texi: 
-  copyright: ''
-  hash: ebd0e873fe02818ecf4ed2990c273103a39ad0f2043ff06acc9e07254bcd44f2
-  license: ''
-  license_text: ''
-./doc/posix-functions/hcreate.texi: 
-  copyright: ''
-  hash: 1f1de04c8b3137e208712afe58b67737a41e3c494046ea3632c2d6bebfdb5e08
-  license: ''
-  license_text: ''
-./doc/posix-functions/hdestroy.texi: 
-  copyright: ''
-  hash: 852046bda95f89dc1f65f887ebfcb271af87a79cfa85a2c30a2596dea55ffb6c
-  license: ''
-  license_text: ''
-./doc/posix-functions/hsearch.texi: 
-  copyright: ''
-  hash: 1c3dfdf5fd7c26d554eaa4394d12da4e71fb0ff8b6c6a7d956fbdf226e6db77c
-  license: ''
-  license_text: ''
-./doc/posix-functions/htonl.texi: 
-  copyright: ''
-  hash: 96da0ca2386362f2d4e4dd58a33905ddbd207738ec194c1f90078bb0176b923d
-  license: ''
-  license_text: ''
-./doc/posix-functions/htons.texi: 
-  copyright: ''
-  hash: 112e415883bc9b3912343a8c5535eab4ed1e5eb8e2a0cb6203b1b4c829c2ac10
-  license: ''
-  license_text: ''
-./doc/posix-functions/hypot.texi: 
-  copyright: ''
-  hash: 5916e7c5c00d00967198f74805aafa986ae5501cc50a0b6c535f859c4accae49
-  license: ''
-  license_text: ''
-./doc/posix-functions/hypotf.texi: 
-  copyright: ''
-  hash: dd7047f4fcc4c2890b72412ea78a97e134cb3d4b52b5eddb8523a2402c15fbd4
-  license: ''
-  license_text: ''
-./doc/posix-functions/hypotl.texi: 
-  copyright: ''
-  hash: f90a4791fa83d5bb2611a343ee4e76c4b640340bb22acf21f71a0d33ec9a80e0
-  license: ''
-  license_text: ''
-./doc/posix-functions/iconv.texi: 
-  copyright: ''
-  hash: f965f19658c91456314bbd0c675bd6052312f237295341335b35c38475791d91
-  license: ''
-  license_text: ''
-./doc/posix-functions/iconv_close.texi: 
-  copyright: ''
-  hash: 16082c1b0665d66075df97aca7dffc9193a3dd54469ce1e20fd61a7e65e01635
-  license: ''
-  license_text: ''
-./doc/posix-functions/iconv_open.texi: 
-  copyright: ''
-  hash: 49b9b82fed6c3b4bf87cd2443ef07037863a7832c4cb38eb16f75dd2c83a2826
-  license: ''
-  license_text: ''
-./doc/posix-functions/if_freenameindex.texi: 
-  copyright: ''
-  hash: 3409250e6643d5a9d763dad8f6d778213c5262060d57245d9969168b5717c8ef
-  license: ''
-  license_text: ''
-./doc/posix-functions/if_indextoname.texi: 
-  copyright: ''
-  hash: e0c658b26a0038f9e0d93a4e91f11249f2b4af91b6eea372a208a05cf161b2a8
-  license: ''
-  license_text: ''
-./doc/posix-functions/if_nameindex.texi: 
-  copyright: ''
-  hash: efe0055691b143943238c3973ce7a34ab9e1512434fad06838d9cb1579027e7d
-  license: ''
-  license_text: ''
-./doc/posix-functions/if_nametoindex.texi: 
-  copyright: ''
-  hash: ae69d6500c998134e95d763fd4d4d4b74f3b9a32ae8320f90da673dddd7082e7
-  license: ''
-  license_text: ''
-./doc/posix-functions/ilogb.texi: 
-  copyright: ''
-  hash: 18dbb833f6c37415f3c211e4872a95fea279a0c41a745edc0581e9ccfaea9bf0
-  license: ''
-  license_text: ''
-./doc/posix-functions/ilogbf.texi: 
-  copyright: ''
-  hash: 1c1c7486eb6998de905eda978324bfc91f9c1b8ba52fcdc6ce6b1d26f3aa0a14
-  license: ''
-  license_text: ''
-./doc/posix-functions/ilogbl.texi: 
-  copyright: ''
-  hash: 3b010d3a7060a6064b0717b3c0cb764eaab983dde75fe55e71e7775e15e72ede
-  license: ''
-  license_text: ''
-./doc/posix-functions/imaxabs.texi: 
-  copyright: ''
-  hash: 666ba73e5b2cde72e1e5b6bc0d407b8d52982031343e5627f4c7986c9f8ab588
-  license: ''
-  license_text: ''
-./doc/posix-functions/imaxdiv.texi: 
-  copyright: ''
-  hash: 138d9df51523cec7035dcf949fb2b46186fdbfc8e3f5d93e07abef452fe90ec4
-  license: ''
-  license_text: ''
-./doc/posix-functions/inet_addr.texi: 
-  copyright: ''
-  hash: 74b2fccbbd9d74392aa7fcb6c422f554038225e221802537f85556e3622f5b7a
-  license: ''
-  license_text: ''
-./doc/posix-functions/inet_ntoa.texi: 
-  copyright: ''
-  hash: 17301bd2cf66ebdfb65182b0dade44f1dae8345b2125ff8d9356dcf108d83fa4
-  license: ''
-  license_text: ''
-./doc/posix-functions/inet_ntop.texi: 
-  copyright: ''
-  hash: 2bfb9c3c48534a0ef693f09aa78498cebe4f1efdd5dc1287daffe91e312d3b46
-  license: ''
-  license_text: ''
-./doc/posix-functions/inet_pton.texi: 
-  copyright: ''
-  hash: 179d6b99ccbdec429d7b7be478695dc0d41e2340f79f6d9c5b5a693cba0489ed
-  license: ''
-  license_text: ''
-./doc/posix-functions/initstate.texi: 
-  copyright: ''
-  hash: ef35a8ba1f7a2c80bbc096e54a5309a312b91cc5cf46e6da71a3af2e92b733d5
-  license: ''
-  license_text: ''
-./doc/posix-functions/insque.texi: 
-  copyright: ''
-  hash: bd5c85638f4a8abfa676097f05367cf4a7a5c6df9e4814c7956a55497fd70cdd
-  license: ''
-  license_text: ''
-./doc/posix-functions/ioctl.texi: 
-  copyright: ''
-  hash: 0e9992e44abd4da7febddb076d29b2cbcd8d088f04d6a99e46d65446440a621c
-  license: ''
-  license_text: ''
-./doc/posix-functions/isalnum.texi: 
-  copyright: ''
-  hash: 7e8f6f0e1c5391eeeee418d3daba0ca9a8f1acc734524864a393b569cb4d9e7e
-  license: ''
-  license_text: ''
-./doc/posix-functions/isalnum_l.texi: 
-  copyright: ''
-  hash: 184b40cbdba1ef6f81331ed1f0dbb4e7bad0df440e0c8a0d7069ac1908d68897
-  license: ''
-  license_text: ''
-./doc/posix-functions/isalpha.texi: 
-  copyright: ''
-  hash: 21bde3d1e2fd36e6b70354be9db9d5b7bf8e1f1d4288c356e93cec01c117bca6
-  license: ''
-  license_text: ''
-./doc/posix-functions/isalpha_l.texi: 
-  copyright: ''
-  hash: 891b0a65e8c759c81c621ba0197e0f95e55ca090eee63dcaccba5faa52ca9077
-  license: ''
-  license_text: ''
-./doc/posix-functions/isascii.texi: 
-  copyright: ''
-  hash: 556beb2df9bb209f85e402d40e0fe3811644560424c74fb2b3ef07a8dd6d705b
-  license: ''
-  license_text: ''
-./doc/posix-functions/isastream.texi: 
-  copyright: ''
-  hash: 9eeda95fb91e67be24bb2e4b8ebcb41758144638e315c9b8a38e5f24c9c464a3
-  license: ''
-  license_text: ''
-./doc/posix-functions/isatty.texi: 
-  copyright: ''
-  hash: e2c2970db6e080721b6f59c180087535d30c7f0e6e49510851e8c56bbf62b571
-  license: ''
-  license_text: ''
-./doc/posix-functions/isblank.texi: 
-  copyright: ''
-  hash: 607aeac320bbcef0aff904e331fd9ba48021afb702586fadfb024e3c2399987a
-  license: ''
-  license_text: ''
-./doc/posix-functions/isblank_l.texi: 
-  copyright: ''
-  hash: 87c4aa73b132fb5e2406a64e6d5f4d9033fe4ccc616daf189d3d61ccaacaa732
-  license: ''
-  license_text: ''
-./doc/posix-functions/iscntrl.texi: 
-  copyright: ''
-  hash: 1bed23b3d80fa67f3d9c7863ae52969b33682335542e31bf5d3f1f2b64e25e09
-  license: ''
-  license_text: ''
-./doc/posix-functions/iscntrl_l.texi: 
-  copyright: ''
-  hash: b81253dfdbbc5302ec5dc376fb8351bff010960f66b6c07cf6c792dc6359808a
-  license: ''
-  license_text: ''
-./doc/posix-functions/isdigit.texi: 
-  copyright: ''
-  hash: a099acfd541a9eb34af0f26be1e535eb935149cd2a5947c165a62b70c9f185d4
-  license: ''
-  license_text: ''
-./doc/posix-functions/isdigit_l.texi: 
-  copyright: ''
-  hash: 1c50a0ff745432c67953ccf4c610ffac0bd4d4a3ee60e5dddb93be325738db84
-  license: ''
-  license_text: ''
-./doc/posix-functions/isfinite.texi: 
-  copyright: ''
-  hash: 8de73e1f76a93c11dd0144e087c5a5668d7a3356c4ad47b6a839386c6878abaa
-  license: ''
-  license_text: ''
-./doc/posix-functions/isgraph.texi: 
-  copyright: ''
-  hash: c587baa5d3ff8f02b0d039fea812685da5bf8e75c7fcbc88f2814e62835758c7
-  license: ''
-  license_text: ''
-./doc/posix-functions/isgraph_l.texi: 
-  copyright: ''
-  hash: 98888e1d5b988e61eaa41d7727524eaa67a1b20fc59aa4649d866b39630fb81a
-  license: ''
-  license_text: ''
-./doc/posix-functions/isgreater.texi: 
-  copyright: ''
-  hash: d998c4e8134e688b0dbd93c7f31be3bee6fa1c6ac588447dbaf04296b983fb45
-  license: ''
-  license_text: ''
-./doc/posix-functions/isgreaterequal.texi: 
-  copyright: ''
-  hash: ab4e53e9c3972f5aed62439cc18f494263bb0f880ef864045d24d0f02eb635cd
-  license: ''
-  license_text: ''
-./doc/posix-functions/isinf.texi: 
-  copyright: ''
-  hash: eba9361c1691fec1805dbb0caeef08b27f06567a49e51e510a778c2f95decf10
-  license: ''
-  license_text: ''
-./doc/posix-functions/isless.texi: 
-  copyright: ''
-  hash: dd004ed16bf5f26451a45799145ea12ee1a016fa0966fe3eb6290da0386db8eb
-  license: ''
-  license_text: ''
-./doc/posix-functions/islessequal.texi: 
-  copyright: ''
-  hash: 28e0f408e7dfce3c4fad65911c4558d2b2aa8aef2be00cf46c2bdae6383a8b1c
-  license: ''
-  license_text: ''
-./doc/posix-functions/islessgreater.texi: 
-  copyright: ''
-  hash: cd242279d55f7ff21ca138eb552ad88514e3806094a2158a4df3eac316e2c0cf
-  license: ''
-  license_text: ''
-./doc/posix-functions/islower.texi: 
-  copyright: ''
-  hash: 71c3f0e0c264095972634ce0074fd2083e8b2174467f9d894e5f4519dbed4cc3
-  license: ''
-  license_text: ''
-./doc/posix-functions/islower_l.texi: 
-  copyright: ''
-  hash: 96fcedded01879c7734672f03889e128a2f1dbc5f405b10d13627fc4b2523144
-  license: ''
-  license_text: ''
-./doc/posix-functions/isnan.texi: 
-  copyright: ''
-  hash: 5214ffd8e70b47877e52ef9490a41b22c7ed2e3a6bc37c7782a4ca5c3ac07f11
-  license: ''
-  license_text: ''
-./doc/posix-functions/isnormal.texi: 
-  copyright: ''
-  hash: 2dd1a3add6afd000b680d1c31a781dc539c9658de7d445da59004bfd50e0783b
-  license: ''
-  license_text: ''
-./doc/posix-functions/isprint.texi: 
-  copyright: ''
-  hash: bf8d5e33042f9cf87ecd8cc480294ad8a7646150ad9ef130c8358c3eae863a90
-  license: ''
-  license_text: ''
-./doc/posix-functions/isprint_l.texi: 
-  copyright: ''
-  hash: 5cff105ffadf19f833473bbadfaaa615774fe044e725fa630923a66b3e7f8707
-  license: ''
-  license_text: ''
-./doc/posix-functions/ispunct.texi: 
-  copyright: ''
-  hash: 4fb607609ae1049ee43f812ba62fbb60c3272f24017331383aed15bafd786cd1
-  license: ''
-  license_text: ''
-./doc/posix-functions/ispunct_l.texi: 
-  copyright: ''
-  hash: 18d2164678e563017b26a85fb23ec4d064c90da5a3e714113416b8c634505f4d
-  license: ''
-  license_text: ''
-./doc/posix-functions/isspace.texi: 
-  copyright: ''
-  hash: dfdacdcbfce11be693ae3ba8a9a7a3b61ca4817c0ebba178e618b4a6afa7110c
-  license: ''
-  license_text: ''
-./doc/posix-functions/isspace_l.texi: 
-  copyright: ''
-  hash: 9a9cbcf45014b1475014e6893b767c3bc3b8a2535e835a56cd748ae79bb7c131
-  license: ''
-  license_text: ''
-./doc/posix-functions/isunordered.texi: 
-  copyright: ''
-  hash: 627509cf98ac3516674b3f4b12aca1ab39c75bf3356a60c72c724751dbe27bd4
-  license: ''
-  license_text: ''
-./doc/posix-functions/isupper.texi: 
-  copyright: ''
-  hash: e5ecf479da300eaedb8c203077aa16f133a0d8b46870bf7575460ae23aa0eb86
-  license: ''
-  license_text: ''
-./doc/posix-functions/isupper_l.texi: 
-  copyright: ''
-  hash: 84dd39b30cb42e91a2527f26e9c643b49582f593536ff106a61f4827186690b6
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswalnum.texi: 
-  copyright: ''
-  hash: c88cc6395532271af8c31a1c5919f67010036b8dec37195a5de9c9e6fc4fe99a
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswalnum_l.texi: 
-  copyright: ''
-  hash: c7b749280c0d42ff34ec793f356734be117a43ede8aab61c3eac40296b8a8359
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswalpha.texi: 
-  copyright: ''
-  hash: b8a1133f56ec62b284a4d3b3779f7faa3a3e71a0882041311a4875fa886799ef
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswalpha_l.texi: 
-  copyright: ''
-  hash: e0a8c0ea63ecd10ff043c3b5bc68e731cb92ee02b8e1525a750ce6ca9b28712e
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswblank.texi: 
-  copyright: ''
-  hash: faf5a6047eaaa0b928dba0c8cfb5eb9a505c0e5bb25f687c7bf9a3563727d030
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswblank_l.texi: 
-  copyright: ''
-  hash: f8ab06e1ce64e0c1a05e484a4252a62ffe13629ac1abda44784530d4816cbdf7
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswcntrl.texi: 
-  copyright: ''
-  hash: e9ac01bd3a5328c6929e67d29991c8eabd27f30cefd73ba88b67f87383e0be83
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswcntrl_l.texi: 
-  copyright: ''
-  hash: 457ab57b3569fa9bd430130d48e2e2c8af2b63ba356bd0b53785e04957519624
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswctype.texi: 
-  copyright: ''
-  hash: ef1349d2e828e29feea41a7a9e7b876f1c93d47ec38be89d1529905da34176d9
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswctype_l.texi: 
-  copyright: ''
-  hash: c671724332e6cc92a3c3f170c366ec38aeefab3906b3e85e0d8f2b19e536dfac
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswdigit.texi: 
-  copyright: ''
-  hash: 0e822111a3da05620947869ae4f3b596526ba2375fc5f56696a7e7a1561ac12e
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswdigit_l.texi: 
-  copyright: ''
-  hash: 22f6b5c90a47f37efe4ba4db24bed97cae416e8e0c8f6933a1d288bcb1ca185d
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswgraph.texi: 
-  copyright: ''
-  hash: 896e84f517e4788236750a0615c2133f547aeba276f20c53c87c42d9c53dc4c8
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswgraph_l.texi: 
-  copyright: ''
-  hash: 10aee45c72cc14f9a99bec78b29aa44fe09e9c54a545008cc4b19baa4dec61a1
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswlower.texi: 
-  copyright: ''
-  hash: 1a9d7fa78a4d5d99b5fbff24e4e93ead4ecacf42a38182cdfd6fb45136f6e28d
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswlower_l.texi: 
-  copyright: ''
-  hash: 25b3f6605949010e6e24d0c2e1f7b3510e17cfd8745092c6def04ae7dc005143
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswprint.texi: 
-  copyright: ''
-  hash: 5e205ee334496a2f8d2c4d3aaf02ed2c1e8bc2afcf953ccfdc8615e0bb390b4a
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswprint_l.texi: 
-  copyright: ''
-  hash: 67681be4a107eb027c4062ff76d698c22b4ce822bd002dfa7a17b1493d54f45e
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswpunct.texi: 
-  copyright: ''
-  hash: d73020eb450cf8316c2be7df99c089c6fe0034ef0600f050d907760b2e6ff366
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswpunct_l.texi: 
-  copyright: ''
-  hash: 5e322758293c6c526a9eeb5a1b026d42b7faf671accd5638f9df410a04689eea
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswspace.texi: 
-  copyright: ''
-  hash: c67ec587b829ddefc9f19782b9e1029ecdc6ab6c00583aff4ccaf07e51564193
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswspace_l.texi: 
-  copyright: ''
-  hash: 0f4b7e4d958774500fae6e07482d9e57bd0da51d009cd74ccbd706e78ba58b08
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswupper.texi: 
-  copyright: ''
-  hash: 528d4efc9e63b92cc7d1d0c7e31b7c77e67763927eeb07b4788aecb640c11719
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswupper_l.texi: 
-  copyright: ''
-  hash: 6e31fe14738f6db822099564d598cf2f05446f077266420bf4d7422ef633ab38
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswxdigit.texi: 
-  copyright: ''
-  hash: 3526ec49ca1bd1d095e59320f1a32b5a218365abdedc5b43651cdb1be31176fe
-  license: ''
-  license_text: ''
-./doc/posix-functions/iswxdigit_l.texi: 
-  copyright: ''
-  hash: 9936301340cebe26c7bcd05652078bb16be4607552be00033b001521ab9d41a9
-  license: ''
-  license_text: ''
-./doc/posix-functions/isxdigit.texi: 
-  copyright: ''
-  hash: 52cb4c1aa9423d60ea39014291385b09505d50690e931fec03fdf135080b1bdc
-  license: ''
-  license_text: ''
-./doc/posix-functions/isxdigit_l.texi: 
-  copyright: ''
-  hash: d2ad8a517fc760eb3955762719d2090c1f9c1decfdc2887089f7eb266851562a
-  license: ''
-  license_text: ''
-./doc/posix-functions/j0.texi: 
-  copyright: ''
-  hash: 92c5c4686c56a6222dc04a17a722b38fcb07bfadefa01ec42f495d70a4d704ce
-  license: ''
-  license_text: ''
-./doc/posix-functions/j1.texi: 
-  copyright: ''
-  hash: bca6d61fb0a24dad8de3b48af62434780af39426be5adfa93dc9957532493814
-  license: ''
-  license_text: ''
-./doc/posix-functions/jn.texi: 
-  copyright: ''
-  hash: 5b29066ceb64fe7ad17eb38d78939fc0e5f67fb7b89c71269a590db08bf9bd26
-  license: ''
-  license_text: ''
-./doc/posix-functions/jrand48.texi: 
-  copyright: ''
-  hash: 5eccfdaf1fb9d042601589acec674823d983cebc21a085b5c12bb7119ed3040d
-  license: ''
-  license_text: ''
-./doc/posix-functions/kill.texi: 
-  copyright: ''
-  hash: 11e385ab05f5ce42cb6247de6ee659925b11ecc4aae8abd33e1c2c674a40fdf4
-  license: ''
-  license_text: ''
-./doc/posix-functions/killpg.texi: 
-  copyright: ''
-  hash: 22626f2cc60de026029ba237c7c48240d598b37acbd580a1b71c3c5928b73aab
-  license: ''
-  license_text: ''
-./doc/posix-functions/l64a.texi: 
-  copyright: ''
-  hash: 3a5a8f79a5d9f35a37ef6d7a789b7b472f3216854a7fcb47020cf74971354cb3
-  license: ''
-  license_text: ''
-./doc/posix-functions/labs.texi: 
-  copyright: ''
-  hash: c5d6a703807a85238752dd8f84cbce03bcd5814315c8604e89065b8a9f29f77a
-  license: ''
-  license_text: ''
-./doc/posix-functions/lchown.texi: 
-  copyright: ''
-  hash: 2a095b0a88ad06a14515b1dbde6ec7043620d305fc7b453723867cdf5ed0cb1f
-  license: ''
-  license_text: ''
-./doc/posix-functions/lcong48.texi: 
-  copyright: ''
-  hash: 88459cb0ea9ae0af730dd212d7fc277aea0a7c769e94d2f6b79199ce12b2a512
-  license: ''
-  license_text: ''
-./doc/posix-functions/ldexp.texi: 
-  copyright: ''
-  hash: d8b30651c56cc57e6184976bcd3f5cdc4337432a710df366e0f95f5859ba6449
-  license: ''
-  license_text: ''
-./doc/posix-functions/ldexpf.texi: 
-  copyright: ''
-  hash: d00bcb96e34e28360e66b5c978e0f9c1bb5b3bdb899b81fe0b02631ba7e84d4d
-  license: ''
-  license_text: ''
-./doc/posix-functions/ldexpl.texi: 
-  copyright: ''
-  hash: 829ada339592493a785909dc30d169fbeb9dc8ac27f6bf686b8ebe09d785dbba
-  license: ''
-  license_text: ''
-./doc/posix-functions/ldiv.texi: 
-  copyright: ''
-  hash: d0888e9dfe273c20f6b12c927742f3d6638da50b661f54f0ecc3a1d496153711
-  license: ''
-  license_text: ''
-./doc/posix-functions/lfind.texi: 
-  copyright: ''
-  hash: a9ab017bcc9e5a9fcabf969e05e09ca84876c73534d89e870d8a1f3d903f3f98
-  license: ''
-  license_text: ''
-./doc/posix-functions/lgamma.texi: 
-  copyright: ''
-  hash: 470520a61a348188fbde1ddb355db3ec98317bbbd5a4bbef6235b7529dc8fa2a
-  license: ''
-  license_text: ''
-./doc/posix-functions/lgammaf.texi: 
-  copyright: ''
-  hash: 3340ca1262b620b9ed75884a30a81db4835f22d9c860f0fdfbd49037ce37e709
-  license: ''
-  license_text: ''
-./doc/posix-functions/lgammal.texi: 
-  copyright: ''
-  hash: 5e5d8253d524d33f78063e3e074de5de4790d5287281de939f9ada54a6705852
-  license: ''
-  license_text: ''
-./doc/posix-functions/link.texi: 
-  copyright: ''
-  hash: 721fb6b25032be524f91ee20555d327e72ab7483675467a12a62292b15936298
-  license: ''
-  license_text: ''
-./doc/posix-functions/linkat.texi: 
-  copyright: ''
-  hash: ce3f61559a6101fa604cccc0a81fbe487ceb354cf4adb09a34aa00f85e7fc351
-  license: ''
-  license_text: ''
-./doc/posix-functions/lio_listio.texi: 
-  copyright: ''
-  hash: c1d08fd64ff293ccace2ccce4dfb34ec109f7090f89c52f2cb06db5c54a8cffa
-  license: ''
-  license_text: ''
-./doc/posix-functions/listen.texi: 
-  copyright: ''
-  hash: 03a2a6206b0bfcb7a04ed70467f6c79be8290cffa99530b8a9e039d33dbdd79f
-  license: ''
-  license_text: ''
-./doc/posix-functions/llabs.texi: 
-  copyright: ''
-  hash: 5704f5b51267973492147aeb77944c9ad0933fc1384a10a423b46df15b4901b5
-  license: ''
-  license_text: ''
-./doc/posix-functions/lldiv.texi: 
-  copyright: ''
-  hash: ee22224d40c7a02e5745932772fee532f233469cdfb89c246432ef992ebac66a
-  license: ''
-  license_text: ''
-./doc/posix-functions/llrint.texi: 
-  copyright: ''
-  hash: 3f862bfbf3caf84d717ca4155ee2f2ada393f410182a60fc56366f4925537dfd
-  license: ''
-  license_text: ''
-./doc/posix-functions/llrintf.texi: 
-  copyright: ''
-  hash: 83247aede57c3ef038725aecc9f342683fc1b1cfdb67b650ceace4bb856a26dd
-  license: ''
-  license_text: ''
-./doc/posix-functions/llrintl.texi: 
-  copyright: ''
-  hash: ab3eeef6cd1c1dc19abc2a4f396784418136ff2da2b0a6e6cd91e9d7b64d5b9f
-  license: ''
-  license_text: ''
-./doc/posix-functions/llround.texi: 
-  copyright: ''
-  hash: c748140ca47bdf7b93d2ddb245999ef7671f9e6329ae7386dd7aa9bdc0c0c61d
-  license: ''
-  license_text: ''
-./doc/posix-functions/llroundf.texi: 
-  copyright: ''
-  hash: a974d182d48cf3f4f1387914256124829fc72ced4b4f0e241a1d298a1e6ab17c
-  license: ''
-  license_text: ''
-./doc/posix-functions/llroundl.texi: 
-  copyright: ''
-  hash: 16c0786bf5b7bd64b25182d4c35925082061e14e27ab40c6203d0f5f7838d6cb
-  license: ''
-  license_text: ''
-./doc/posix-functions/localeconv.texi: 
-  copyright: ''
-  hash: d9b5bac65cb3629c70d7c2bbc8423d1181dd32c3fd8e7a9c3db48a7fc5f2e884
-  license: ''
-  license_text: ''
-./doc/posix-functions/localtime.texi: 
-  copyright: ''
-  hash: f55efabe8a9cc3efe0e97ec9cc7abd10fdd6b44ce79eabb8ba9494a170c44414
-  license: ''
-  license_text: ''
-./doc/posix-functions/localtime_r.texi: 
-  copyright: ''
-  hash: 18eff3ee8b506b64c19546e4585097687ef46c56cf3023f29bbb7c36549bc668
-  license: ''
-  license_text: ''
-./doc/posix-functions/lockf.texi: 
-  copyright: ''
-  hash: c7357159d3ec65d81d8ae3ae09048741deb17c3d24105341bb844ae4d6c68f75
-  license: ''
-  license_text: ''
-./doc/posix-functions/log.texi: 
-  copyright: ''
-  hash: be6326972647fb62ffadb5a669d7d58dde061bc0c584cdd502e09f1b939d4926
-  license: ''
-  license_text: ''
-./doc/posix-functions/log10.texi: 
-  copyright: ''
-  hash: 4bf234e16cce10eb06a07bc2c0c01211e19431dd14e99f073621a87a4c1fb68f
-  license: ''
-  license_text: ''
-./doc/posix-functions/log10f.texi: 
-  copyright: ''
-  hash: 811604f34b79d58d4d2b00f03dec4623e329696cae765555f7a016594f0310e8
-  license: ''
-  license_text: ''
-./doc/posix-functions/log10l.texi: 
-  copyright: ''
-  hash: e985c831bb6f56ba639b385c95b36fbff47864717facca550c8cac55e5055b21
-  license: ''
-  license_text: ''
-./doc/posix-functions/log1p.texi: 
-  copyright: ''
-  hash: 499f997d56262cd2f6418e1ec7e697e73874bf8fa3bf66d94d569994cc040c7f
-  license: ''
-  license_text: ''
-./doc/posix-functions/log1pf.texi: 
-  copyright: ''
-  hash: 850d0d4573c9bf0ffb16b33e910d10c99a45e0cd8d0eac98494724760c777cd2
-  license: ''
-  license_text: ''
-./doc/posix-functions/log1pl.texi: 
-  copyright: ''
-  hash: 6920d505b2ccd43777218043d90d6c4410d8c87997dd73b2f249bc2360d67582
-  license: ''
-  license_text: ''
-./doc/posix-functions/log2.texi: 
-  copyright: ''
-  hash: 72c0f561bdbe81af893f8e873ebd4dbe806bad530db44f519b19409199082887
-  license: ''
-  license_text: ''
-./doc/posix-functions/log2f.texi: 
-  copyright: ''
-  hash: 109ae05a1b36fa1174a4d4407fa99b2c5eaae2e7b9e30f59e3faab1178d9e85f
-  license: ''
-  license_text: ''
-./doc/posix-functions/log2l.texi: 
-  copyright: ''
-  hash: 98e4205ef799d4c24375f28e935eff27ccd0d67d86bd6779b8405677d11f0523
-  license: ''
-  license_text: ''
-./doc/posix-functions/logb.texi: 
-  copyright: ''
-  hash: 6d395e4ef941920f778506ad202ac5dcb235ae030c9ccfe916329e49a63c7b71
-  license: ''
-  license_text: ''
-./doc/posix-functions/logbf.texi: 
-  copyright: ''
-  hash: c732075e88b1628ef63b9205c9def17bcaf758d1e0c35992a2fafc3d2528655f
-  license: ''
-  license_text: ''
-./doc/posix-functions/logbl.texi: 
-  copyright: ''
-  hash: fca1988f0cb72ad80a0962568a412de015cffb28a4cbbb9a1a81db50e29f47c2
-  license: ''
-  license_text: ''
-./doc/posix-functions/logf.texi: 
-  copyright: ''
-  hash: 599a740ebf9dc12b8baa17e0e18aa126df9b8bc2ac51aa7c7a556693ceb61af2
-  license: ''
-  license_text: ''
-./doc/posix-functions/logl.texi: 
-  copyright: ''
-  hash: 96139ba06494cf8c9fdb20a21e11fe8877bb1c22c528f5f8fafc57131b5be12b
-  license: ''
-  license_text: ''
-./doc/posix-functions/longjmp.texi: 
-  copyright: ''
-  hash: 8037266751fc7a136b74fc698dde403a0fa71c5aaf9c84d2f4e0ae27994fd458
-  license: ''
-  license_text: ''
-./doc/posix-functions/lrand48.texi: 
-  copyright: ''
-  hash: 869c04b348c9b6123c213743a00e56a0f3c5b4140dd0c88b90af0677a594a7ac
-  license: ''
-  license_text: ''
-./doc/posix-functions/lrint.texi: 
-  copyright: ''
-  hash: 5e8f49fd176642d39b75ce85fa4883dd177ae6365bb3f7bc01d1adfe57137f05
-  license: ''
-  license_text: ''
-./doc/posix-functions/lrintf.texi: 
-  copyright: ''
-  hash: 08dafff5e7cdc373b185b07d2e59e50c6c21f34bba5297e4622267f3e5ba81bf
-  license: ''
-  license_text: ''
-./doc/posix-functions/lrintl.texi: 
-  copyright: ''
-  hash: b6b93015a9cd70a2b2a2d7f4f6c4e03b259a83dfb0e4850be2dbc5125557a3a3
-  license: ''
-  license_text: ''
-./doc/posix-functions/lround.texi: 
-  copyright: ''
-  hash: 7ce7fba4c411195fb1fd21ceab0c0087af9f72fa0c8582ecf336f7e485e1d50f
-  license: ''
-  license_text: ''
-./doc/posix-functions/lroundf.texi: 
-  copyright: ''
-  hash: d2fd89e04139885ec3fe722000f941fae649dc9a7e37e9e57651994f02c20e9c
-  license: ''
-  license_text: ''
-./doc/posix-functions/lroundl.texi: 
-  copyright: ''
-  hash: 921cf7eb1bc71b4502501b3ce8d15cdf97000bd44378a8c58f624e8b89f6d528
-  license: ''
-  license_text: ''
-./doc/posix-functions/lsearch.texi: 
-  copyright: ''
-  hash: 37eec18ff286f167792759b48ba4225deeb6aa273436f0b3dbbe0bdd23c4f2c6
-  license: ''
-  license_text: ''
-./doc/posix-functions/lseek.texi: 
-  copyright: ''
-  hash: 51e17228d34badd1144f78cdd1d398bd81f85ac3231f9ce3c1158f58e2cd98ad
-  license: ''
-  license_text: ''
-./doc/posix-functions/lstat.texi: 
-  copyright: ''
-  hash: ee413eccd9b78bf14988721a2eeb3e0ef1a0f352a9381743add4a0fde7d15484
-  license: ''
-  license_text: ''
-./doc/posix-functions/malloc.texi: 
-  copyright: ''
-  hash: e78d7433731db2f25215c9b85d86bab4074a9386c851e3e7652b3a773f9ffa4c
-  license: ''
-  license_text: ''
-./doc/posix-functions/mblen.texi: 
-  copyright: ''
-  hash: 6d48d1ed4b248c087c438895fc11497d19518e31fd66e3b62dfb31a82725fba4
-  license: ''
-  license_text: ''
-./doc/posix-functions/mbrlen.texi: 
-  copyright: ''
-  hash: 0ad799fbab5e5ba27244d58a868783bef00fefc119f78dc1e60bbd4798d4f51e
-  license: ''
-  license_text: ''
-./doc/posix-functions/mbrtowc.texi: 
-  copyright: ''
-  hash: 520568480543ec68eb430ac4973176f6b1b2d43c0e6e4d45ba73aef60a87eee5
-  license: ''
-  license_text: ''
-./doc/posix-functions/mbsinit.texi: 
-  copyright: ''
-  hash: 5df56fe636ad7622c7d031432f90eb3e4538ae9741ef0dae2b26dce74bf28c6f
-  license: ''
-  license_text: ''
-./doc/posix-functions/mbsnrtowcs.texi: 
-  copyright: ''
-  hash: 1e379a2b7e5692fee1cf2caa04b0f12222eb783c0aacffee63560278e24e6ecc
-  license: ''
-  license_text: ''
-./doc/posix-functions/mbsrtowcs.texi: 
-  copyright: ''
-  hash: 45316856d475ec5e2b93376b87b78c48f7f8d80439cd569005b87b8ae1d7f903
-  license: ''
-  license_text: ''
-./doc/posix-functions/mbstowcs.texi: 
-  copyright: ''
-  hash: 0ce649672c4e398cd8cf49a87e9b998673d368e3f9cccb224a05f172ce73e065
-  license: ''
-  license_text: ''
-./doc/posix-functions/mbtowc.texi: 
-  copyright: ''
-  hash: 715f7f61b6dea73f4e6db5662d9eb0d7117bf43a6e82afd979f2992d992de84d
-  license: ''
-  license_text: ''
-./doc/posix-functions/memccpy.texi: 
-  copyright: ''
-  hash: a6d645adccd00addeee11377bd0d94a9a49c5abc74697957704ef86ef88d7ecb
-  license: ''
-  license_text: ''
-./doc/posix-functions/memchr.texi: 
-  copyright: ''
-  hash: 3548b31bdafed633760e3d40a863cfb4b7eb601216d255a29de29bb5f7088f9e
-  license: ''
-  license_text: ''
-./doc/posix-functions/memcmp.texi: 
-  copyright: ''
-  hash: fb3797a49dc2164707d9ba379894b5b1e34d43b30e554e4bc3782e4509001f2f
-  license: ''
-  license_text: ''
-./doc/posix-functions/memcpy.texi: 
-  copyright: ''
-  hash: 271f9b21c10b20785135079403e037a4f52ad844b7602913211ff63f94564bcb
-  license: ''
-  license_text: ''
-./doc/posix-functions/memmove.texi: 
-  copyright: ''
-  hash: 0f200deaacb14c33d323ffa83873f3b54922ae9f6c0306fe66c0516671387261
-  license: ''
-  license_text: ''
-./doc/posix-functions/memset.texi: 
-  copyright: ''
-  hash: 493093091c332e7fc5a23362e072380e883d206806a2326770839b8e60f0d3ca
-  license: ''
-  license_text: ''
-./doc/posix-functions/mkdir.texi: 
-  copyright: ''
-  hash: 93475369c168cbc0c38f7b20835aee152d2ae281996e0d345aac4cbfa7abc331
-  license: ''
-  license_text: ''
-./doc/posix-functions/mkdirat.texi: 
-  copyright: ''
-  hash: 55a0d02781ba86cb46e9723bea32885e1790894fa991dc3c01e6506e5fae2f81
-  license: ''
-  license_text: ''
-./doc/posix-functions/mkdtemp.texi: 
-  copyright: ''
-  hash: 58eea11250f1276e5fd5c59cc33e1addcc62f6cd091dd15a83e428be08f7b252
-  license: ''
-  license_text: ''
-./doc/posix-functions/mkfifo.texi: 
-  copyright: ''
-  hash: 39b9fab073e009e8b6a169b2190d5572e513385c694e327e70bcf1db6a159b35
-  license: ''
-  license_text: ''
-./doc/posix-functions/mkfifoat.texi: 
-  copyright: ''
-  hash: 205800e3bc3436f4b16ce670afff063c55a0da3a798b107e364045fa4a967ed5
-  license: ''
-  license_text: ''
-./doc/posix-functions/mknod.texi: 
-  copyright: ''
-  hash: 3f6809f0a4fa73e85bc918802a632cd0192c1c5c2801cd7eaa1b2824469fd3a1
-  license: ''
-  license_text: ''
-./doc/posix-functions/mknodat.texi: 
-  copyright: ''
-  hash: 8e780cc65b29f438053a6cb070c21ca28168dc988f47fb72e9f3810c721768d8
-  license: ''
-  license_text: ''
-./doc/posix-functions/mkstemp.texi: 
-  copyright: ''
-  hash: 854e7e497a0388612e8d2d0c212c25f4fd94333ba825e1b9df90b94bbbff394a
-  license: ''
-  license_text: ''
-./doc/posix-functions/mktime.texi: 
-  copyright: ''
-  hash: 9948a151a3eb7c4b07a411a58f1bc5da74bdf24f291daae2f1262a0fdd044804
-  license: ''
-  license_text: ''
-./doc/posix-functions/mlock.texi: 
-  copyright: ''
-  hash: 3ddcd068484f0953b2b2583b4036fdd4d6ecb22893c51cacbb61a36f1493c6bc
-  license: ''
-  license_text: ''
-./doc/posix-functions/mlockall.texi: 
-  copyright: ''
-  hash: 2d15848617dd2c8c5b5d582ba37f8def1777193fefd8f521f1e8583682c62a21
-  license: ''
-  license_text: ''
-./doc/posix-functions/mmap.texi: 
-  copyright: ''
-  hash: bfee4ecb3ebec6d283db88b6cd390ef0301ce7a0937a80d25529c74f0b8f569e
-  license: ''
-  license_text: ''
-./doc/posix-functions/modf.texi: 
-  copyright: ''
-  hash: 36b354917e56d61e5900a08fab91604eaa9cc08e2d86e46267f8d898c818bf40
-  license: ''
-  license_text: ''
-./doc/posix-functions/modff.texi: 
-  copyright: ''
-  hash: f7b8c38291b91e6ad35e04c0ebfb9097945ce77ebda26a3c990bf2fe1aaea28a
-  license: ''
-  license_text: ''
-./doc/posix-functions/modfl.texi: 
-  copyright: ''
-  hash: 3b679719015e572d20de79124954057ab191f83370ed03edd791b794cfe6bc43
-  license: ''
-  license_text: ''
-./doc/posix-functions/mprotect.texi: 
-  copyright: ''
-  hash: 3d0e06eb9e85ed18105ac9c8f7ad12a98e74b8b3a67de5e954dc6154290cb58c
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_close.texi: 
-  copyright: ''
-  hash: a56bfb44d12f03e97f995b9a9c1633b24f89498f43ebbc542b4d352b1778cd08
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_getattr.texi: 
-  copyright: ''
-  hash: 8ac60fce24f63e597e3177997e50fb60bcc5fb27a291934c400a0648f9326552
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_notify.texi: 
-  copyright: ''
-  hash: e0ba4512bebe0e27c550f7b746e54cb1925f3b3db361afaa8f4ee31a7e528710
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_open.texi: 
-  copyright: ''
-  hash: 8849def00e0a469a4c36a935d2a9edacc7a8fca13afc8d0b189b1ab3a8c4a263
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_receive.texi: 
-  copyright: ''
-  hash: 41a216e485977c77bc0469b7caca4239d7b859ee983130f7cbb60df8b0c743e1
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_send.texi: 
-  copyright: ''
-  hash: 034db31411edca3bd8d9aa67b8dcebc8bda230d3dfe632da530c17bd4c4544d4
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_setattr.texi: 
-  copyright: ''
-  hash: e5a4f564cc977a25d0ee56ff5129950ab519621fa7e8161649ef772f72159396
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_timedreceive.texi: 
-  copyright: ''
-  hash: 8d49fce0e031fc61180b5352a420b1fe8ba491b8ecf4ccba972e3e9ebd6e7631
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_timedsend.texi: 
-  copyright: ''
-  hash: a79f94772aefae158a027486aea868c68d2fe9e08eaf409ec3540d187dc16f00
-  license: ''
-  license_text: ''
-./doc/posix-functions/mq_unlink.texi: 
-  copyright: ''
-  hash: 7b5dab50039e7c0b0f3170569e637158b1c1bf41c38e13d14986cea14f56c25d
-  license: ''
-  license_text: ''
-./doc/posix-functions/mrand48.texi: 
-  copyright: ''
-  hash: 77b10e37a5687d7495e536135140dd9e074b12afc20f2d3e3dd07073057b8972
-  license: ''
-  license_text: ''
-./doc/posix-functions/msgctl.texi: 
-  copyright: ''
-  hash: 46d3ee99b2282ef2910c1b2592050c0cf79178bff7eae0c92ca2ac2f7336b2a3
-  license: ''
-  license_text: ''
-./doc/posix-functions/msgget.texi: 
-  copyright: ''
-  hash: 58fc127eae240377ef7505629f2570cf4e3276d5d301994fcb171e5d6b367ffc
-  license: ''
-  license_text: ''
-./doc/posix-functions/msgrcv.texi: 
-  copyright: ''
-  hash: 88bf2464eb8f30cbb7678eb5f8582cf8d2c4644bc486f30146d77d2064e10c7b
-  license: ''
-  license_text: ''
-./doc/posix-functions/msgsnd.texi: 
-  copyright: ''
-  hash: 9f75f5e72c64235284ea705f9b5fe2e6f9aea288231af9bc5dfaf7f66a26fa7f
-  license: ''
-  license_text: ''
-./doc/posix-functions/msync.texi: 
-  copyright: ''
-  hash: ff9ca91d2e004f54a4b0ef17bb84d7b272507c512312101dae3bd3af1be33e90
-  license: ''
-  license_text: ''
-./doc/posix-functions/munlock.texi: 
-  copyright: ''
-  hash: f441bed9fcbcb0651991726777c715db07ca4847e81820ede03031a157d97c9c
-  license: ''
-  license_text: ''
-./doc/posix-functions/munlockall.texi: 
-  copyright: ''
-  hash: 550be841155556e1b32abab434902c90652e6a481f0e539fa6ad9f0342967900
-  license: ''
-  license_text: ''
-./doc/posix-functions/munmap.texi: 
-  copyright: ''
-  hash: 47168b653c372c13df047fa6fdb676f3064d2f2a0968c7e9dcd0383d16134841
-  license: ''
-  license_text: ''
-./doc/posix-functions/nan.texi: 
-  copyright: ''
-  hash: 0a369ac906fcd75126107c5a2079e19d39ac77c16fff7959d1283f3692f2d6c9
-  license: ''
-  license_text: ''
-./doc/posix-functions/nanf.texi: 
-  copyright: ''
-  hash: ddff9bef8fbddbb5702b052b2591f73ae516edafe27040fe81d4abbdbc0d2dd8
-  license: ''
-  license_text: ''
-./doc/posix-functions/nanl.texi: 
-  copyright: ''
-  hash: 55f965fb9e233ea8afdd9b3ef17ce5d14877c6ac793e0c9e8b160ac423075509
-  license: ''
-  license_text: ''
-./doc/posix-functions/nanosleep.texi: 
-  copyright: ''
-  hash: 74dbeddd80b4214c4974b632dae914216068c850827943c4904342e11ef8a2a6
-  license: ''
-  license_text: ''
-./doc/posix-functions/nearbyint.texi: 
-  copyright: ''
-  hash: 13393f4950af6047d63e095573a302430f81f67dc0c50408609af16e34d6e142
-  license: ''
-  license_text: ''
-./doc/posix-functions/nearbyintf.texi: 
-  copyright: ''
-  hash: 658e59bc27cd904e0cc47775321320c8377162f26b6d18de60806a40b96e1352
-  license: ''
-  license_text: ''
-./doc/posix-functions/nearbyintl.texi: 
-  copyright: ''
-  hash: 661f4dab520ac6b7bb2b11af811a20f3f94e1316de51decb0473347458399b8a
-  license: ''
-  license_text: ''
-./doc/posix-functions/newlocale.texi: 
-  copyright: ''
-  hash: c04df75e62461fd14ae6c3d3ebe84ee9df02879c42e5ec26e3badb347e8a822b
-  license: ''
-  license_text: ''
-./doc/posix-functions/nextafter.texi: 
-  copyright: ''
-  hash: 23887e9fbefc390b519abbea6463ab6aa11624d06486049a55f9027ab63e0297
-  license: ''
-  license_text: ''
-./doc/posix-functions/nextafterf.texi: 
-  copyright: ''
-  hash: a0739a1545689a8a038e7f98cb5da84b0c2e4c668767cc241f669e1704194921
-  license: ''
-  license_text: ''
-./doc/posix-functions/nextafterl.texi: 
-  copyright: ''
-  hash: d20c3001ccd5e5ce8d6ef61d92bfc6ecf9e9bca011df94ced795f48cf3dc789f
-  license: ''
-  license_text: ''
-./doc/posix-functions/nexttoward.texi: 
-  copyright: ''
-  hash: 837e8d7788c026deb3665bb845b6da33504cb7b33b457b86b2b8ec0916d1947a
-  license: ''
-  license_text: ''
-./doc/posix-functions/nexttowardf.texi: 
-  copyright: ''
-  hash: bb03bf44dad18e6e2a6f1c7a066871d7a89d2fbeb520bf1399522c9d7b35ba98
-  license: ''
-  license_text: ''
-./doc/posix-functions/nexttowardl.texi: 
-  copyright: ''
-  hash: 082ca469237887b3be9e6ddbe4ae66c7f5eed2f7fb7062b0459ab448bd830692
-  license: ''
-  license_text: ''
-./doc/posix-functions/nftw.texi: 
-  copyright: ''
-  hash: 7fc01f24b0225147ab2c52dc7481fb2663bb13253c9fc0a485991f3bc872b472
-  license: ''
-  license_text: ''
-./doc/posix-functions/nice.texi: 
-  copyright: ''
-  hash: 58412f950c076fdb2593a0a7f2cefa1a80d9d131fb4c3052ea7ef9dc859fecf5
-  license: ''
-  license_text: ''
-./doc/posix-functions/nl_langinfo.texi: 
-  copyright: ''
-  hash: 8cf67efe07150e73545ca1afa1ae02d47bff384e876aed78f1b75998dc918249
-  license: ''
-  license_text: ''
-./doc/posix-functions/nl_langinfo_l.texi: 
-  copyright: ''
-  hash: 46d1682b37126005dcf251b40c854bbc8203ebdd0e7574f91535b4bfa8be7ead
-  license: ''
-  license_text: ''
-./doc/posix-functions/nrand48.texi: 
-  copyright: ''
-  hash: e36c51acdcb113964729a4a2eeb0ac143221961015efa80b42f2cd34f7270f66
-  license: ''
-  license_text: ''
-./doc/posix-functions/ntohl.texi: 
-  copyright: ''
-  hash: 84d74eeaededb546d305d99930dcbdc1ec3918999eb3fb851e28a2e7e37774c2
-  license: ''
-  license_text: ''
-./doc/posix-functions/ntohs.texi: 
-  copyright: ''
-  hash: 346b0124f78840014b5262a674e22a0703994c64c3adb0382afd49fafd802917
-  license: ''
-  license_text: ''
-./doc/posix-functions/open.texi: 
-  copyright: ''
-  hash: 9e866007c32b3f629186f32bce84b0a2a3e8cc628147c7d200325bd60e5b530e
-  license: ''
-  license_text: ''
-./doc/posix-functions/open_memstream.texi: 
-  copyright: ''
-  hash: 4afd28eeda8db17ab5af1f4571340f1593a74742069e35c8cf025d3e3edabb55
-  license: ''
-  license_text: ''
-./doc/posix-functions/open_wmemstream.texi: 
-  copyright: ''
-  hash: ab0f60c7c0a5d80df458598941a4f36408ebce2fc18455086a89a587a8b6e310
-  license: ''
-  license_text: ''
-./doc/posix-functions/openat.texi: 
-  copyright: ''
-  hash: 80fc53551f0a774542028faa3cd7dd7f257f96517e5a3bbf7f15d60c3fcab7ec
-  license: ''
-  license_text: ''
-./doc/posix-functions/opendir.texi: 
-  copyright: ''
-  hash: 409c08736bec42c21409505d8b5549e441a5af2426e3bd68dfcc7c0b5880f4f2
-  license: ''
-  license_text: ''
-./doc/posix-functions/openlog.texi: 
-  copyright: ''
-  hash: 40e398533022603918e1db1621467abcac006a911ad223ea5ea7b80d98a69100
-  license: ''
-  license_text: ''
-./doc/posix-functions/optarg.texi: 
-  copyright: ''
-  hash: e9113b3f78a586f104d7a7e3bdce30cec774d7049394ed1c71473825b52c869e
-  license: ''
-  license_text: ''
-./doc/posix-functions/opterr.texi: 
-  copyright: ''
-  hash: ddda71a2c3fda560885aaf6c435efd85469d21bcb910f55e513971e25fb01fd2
-  license: ''
-  license_text: ''
-./doc/posix-functions/optind.texi: 
-  copyright: ''
-  hash: 192b89c39131f5ac56cb1a3d9199545cfee9c6fe3a13676980cf647c873d9124
-  license: ''
-  license_text: ''
-./doc/posix-functions/optopt.texi: 
-  copyright: ''
-  hash: d9f81d4c490100d92492662b974e59f12d07be11c28dc993037a84dfb37fdc0b
-  license: ''
-  license_text: ''
-./doc/posix-functions/pathconf.texi: 
-  copyright: ''
-  hash: c0dbda6dd42136873beaddaea136fa8d5e46596bfdc335e578a88f1954718794
-  license: ''
-  license_text: ''
-./doc/posix-functions/pause.texi: 
-  copyright: ''
-  hash: 7be4007b12a3aa330139297e66ae074f67ed9e19f3efa28582619f8c071c874a
-  license: ''
-  license_text: ''
-./doc/posix-functions/pclose.texi: 
-  copyright: ''
-  hash: 4361d8543ae29315a5c5e958d4db37667ba5317d2a3b334cc611046b77e73a7c
-  license: ''
-  license_text: ''
-./doc/posix-functions/perror.texi: 
-  copyright: ''
-  hash: b652cbfe9d21d2bbd3ee7784a6a707d27fc1e60293c59183002538640dc279f3
-  license: ''
-  license_text: ''
-./doc/posix-functions/pipe.texi: 
-  copyright: ''
-  hash: cb47c3d1e90c0d73c702255148b3c20889270387c041db34e9c41b29920f90dc
-  license: ''
-  license_text: ''
-./doc/posix-functions/poll.texi: 
-  copyright: ''
-  hash: f05ad8c422fac0e80c3ae47f256e275d4a2f386ad1a8c258b3a40f16337f8dbe
-  license: ''
-  license_text: ''
-./doc/posix-functions/popen.texi: 
-  copyright: ''
-  hash: 4c7662a6c9a1f5fec49e1ed88fe924f8ba389ced30dc44570469332009095c20
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_fadvise.texi: 
-  copyright: ''
-  hash: ea8c8e4c81a8ad7a313cb6d2071239f26e453d6034b32cad4214ea95e4536247
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_fallocate.texi: 
-  copyright: ''
-  hash: 96ba33b3301a1d3b05885d284a49dcbeb84b73adc39ac1b7752f694e0f2eeab2
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_madvise.texi: 
-  copyright: ''
-  hash: 98abbcde99ca724ebecd7393f0bdc2f4425d743cdd8680118aa3df87c6d3fe81
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_mem_offset.texi: 
-  copyright: ''
-  hash: d18ab511cf764975dd21a03e966791ffe4e4f7352616a030dcaeca77dde7fca9
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_memalign.texi: 
-  copyright: ''
-  hash: 02a09479dd9153ce72aaa2dedefd1dd8b5e57f2b88e5f8d303f49dc60e4b3246
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_openpt.texi: 
-  copyright: ''
-  hash: 0f0fb194f87d863cb37d2585c3b4f6bde4369d1319d5d306c27d39d61844d363
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawn.texi: 
-  copyright: ''
-  hash: e8116c7284d0ec8e3dc77be2760763dd4af6ccb6994f2021dd212cdf8e8ada0f
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawn_file_actions_addclose.texi: 
-  copyright: ''
-  hash: 5828164a4deeee9c954a4136871b3177b6eecfce75506176eb6cf3a4a9a62b21
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawn_file_actions_adddup2.texi: 
-  copyright: ''
-  hash: 23e93dc2b98cc5650771f750cd28d8a2c3cfa59af0b565de46c712cf0b06ecd8
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawn_file_actions_addopen.texi: 
-  copyright: ''
-  hash: 522057f36d8f4a88c26630242bc87528fe3805438388b44c93d97243e5e86ee4
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawn_file_actions_destroy.texi: 
-  copyright: ''
-  hash: 0320d879a8c7e3d36619bfb1f542513ab285a601fc716bcab9fdea8764842984
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawn_file_actions_init.texi: 
-  copyright: ''
-  hash: 9c12cdbb6ac1e39ce5f80f8dacd02b40fdce55904a2e4d3273598a7f1bffe25b
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_destroy.texi: 
-  copyright: ''
-  hash: 385601a0adb59e6a946cc5ae70ad2121a0fc1f9cf9bde84bbbf7067ec3c2cc3b
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_getflags.texi: 
-  copyright: ''
-  hash: 695f28460ef4a0e41614dff4ca0af1d3a1198c9ef166951ba33c8c1c6b9b83fb
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_getpgroup.texi: 
-  copyright: ''
-  hash: 26c66e902b05529bac72419304ce248d35a25c40c99998b6cd93e4ea45cf0df7
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_getschedparam.texi: 
-  copyright: ''
-  hash: 3e2294ef0ab8ac17b6d863152ba655db225f70152c455f422c01d3f765dea9b0
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_getschedpolicy.texi: 
-  copyright: ''
-  hash: dd9c3f74a80529c49eb3962334b976c600292f50854c2eac240b32cdc573d28d
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_getsigdefault.texi: 
-  copyright: ''
-  hash: 3e7e418f2d92c3196aa025cc49aa12be6db364564c10b87d44627ef5fb4f2807
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_getsigmask.texi: 
-  copyright: ''
-  hash: 26b824db4f09a65050f6350b6971cbf95f99ad40d1c7659764abde3e54fd3227
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_init.texi: 
-  copyright: ''
-  hash: 05f5786c234980a42a111d033f5130bc683e09bd9cd420dbb993e0db4223241f
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_setflags.texi: 
-  copyright: ''
-  hash: c3de08bb23b2e056a9d1fa457d78be2d64717b957d66d6f7705215017389224b
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_setpgroup.texi: 
-  copyright: ''
-  hash: 548430de694da18955230250c1034b6b515fcf30129079d539a13f426c9fe22c
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_setschedparam.texi: 
-  copyright: ''
-  hash: af7be1846ac7bd0fc6d107f8399458067710b5e221a3b728512b6a6204c21913
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_setschedpolicy.texi: 
-  copyright: ''
-  hash: 3adfc655a7b0cf55cc89761c9d64309a2cbf0adc724701cd3e2b2bd9a51f09ff
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_setsigdefault.texi: 
-  copyright: ''
-  hash: cb24fc7291758ad7f30bad7a96cdd26f0defa4f28fec0be8d02a1e2ed6bc20a0
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnattr_setsigmask.texi: 
-  copyright: ''
-  hash: 3661e1c23a65c97c9af7008e3af513555234a91aaaeffc6e801f0757067618d5
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_spawnp.texi: 
-  copyright: ''
-  hash: 55d59c76213c7914c86b8a3fb623b4c073d49641d72949547638acb49c9019d7
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_destroy.texi: 
-  copyright: ''
-  hash: 26c37bafe4af14e0a6c567e810277b9b5847122cf0f87cac16ff94a8b8e214be
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getclockres.texi: 
-  copyright: ''
-  hash: c6df2399c6ebb47e6328cf303b80492f9748c8a4f167ef2f563cda59860e2cfd
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getcreatetime.texi: 
-  copyright: ''
-  hash: 0bba6eb668452771990a8c1dfff7134f74e136d9f8618c4228b9f56cdd51e442
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getgenversion.texi: 
-  copyright: ''
-  hash: 3494fd0e404cc8a99e72fc28c50d13b44d0438785ac74292e84c20347da5a40b
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getinherited.texi: 
-  copyright: ''
-  hash: 9c3dc2682ee4f8efbe8238a459642164bd53c4a73c5054f8cdc73dcb152db424
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getlogfullpolicy.texi: 
-  copyright: ''
-  hash: c6e5f0d91562ec40cc54987dbb2c567e9c66d6c87ac0954dca87d52b5b9f8e60
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getlogsize.texi: 
-  copyright: ''
-  hash: 04803d6d78b225f53aa3c6147bba5367f18ba362fcb9b9b55fba0719c8d75776
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getmaxdatasize.texi: 
-  copyright: ''
-  hash: c25ba97d572d5ca4f69629f2a78822d6aff93b73f4da397cf43e16e3b61a6aac
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getmaxsystemeventsize.texi: 
-  copyright: ''
-  hash: b0a2f0041320b5b3ad358757b24ed4fa1e016672af6746d8933e84075d33360e
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getmaxusereventsize.texi: 
-  copyright: ''
-  hash: 52791fc875f1f82253f29df6b7455f7e038f106efc716777d0f6fa70436a9822
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getname.texi: 
-  copyright: ''
-  hash: 37e62b2df1671442499b27356f9b6d3b77eb20ee5016cd5b4b15952e434d472f
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getstreamfullpolicy.texi: 
-  copyright: ''
-  hash: 08910c37877f7e37e6eb305bbefb233cdc16865ebbb89081846a042134cae954
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_getstreamsize.texi: 
-  copyright: ''
-  hash: bcc8352edee634fdc1577f4039f78bd777f7964032fcd36127a7251536f3cd8c
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_init.texi: 
-  copyright: ''
-  hash: a2e83a06a534390b4974622a6b4d2ac1c637e52b91cf34d49576569d44148323
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_setinherited.texi: 
-  copyright: ''
-  hash: 15dd2776c5a4bae1ff25c0388da2c6fe92ff206b9cdbf3c29544d97f2ba7465c
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_setlogfullpolicy.texi: 
-  copyright: ''
-  hash: 6123eeb6328f6381169708420c2560630406f4964acc3c260c358ed4f9a68cda
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_setlogsize.texi: 
-  copyright: ''
-  hash: b25853b00b814a81dd0c5814c1d42f14d70347723160104fcd5d43ddd8d42077
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_setmaxdatasize.texi: 
-  copyright: ''
-  hash: 6bdf3f85571c822f319ac0ff9e310fa9bfcf584558103f79368e262095a9c6ab
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_setname.texi: 
-  copyright: ''
-  hash: 64e32d78a18d51e8bfd3b23f91878fb761b87cff345ed77fed1d753114b50c10
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_setstreamfullpolicy.texi: 
-  copyright: ''
-  hash: 7123836aad4e0fb02113ade7138723da2ba36370a18b5b0751b1efbceb8f444c
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_attr_setstreamsize.texi: 
-  copyright: ''
-  hash: 5e25d2adbc668b88bbd5d7a0ed7d0aa2c96a97c05f31f042fb5da5d54131db92
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_clear.texi: 
-  copyright: ''
-  hash: 246ba5555dc290c8b1e1320450b1caf1e1557a92ffaa798ce663c95dfda7e0e4
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_close.texi: 
-  copyright: ''
-  hash: f8b48c02b26295e68c4219cd771eb0485349083c7fd45d6fa34e4dc34e5adba5
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_create.texi: 
-  copyright: ''
-  hash: 7fcab2cefac75343564f45dbea419a5e305edbbcdf582d145a6314dc15a79296
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_create_withlog.texi: 
-  copyright: ''
-  hash: 60662414b3106f8d3a4ca1c75fc0484fa0d8d79d90421b817b18d77f2b516f7a
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_event.texi: 
-  copyright: ''
-  hash: f60fcf4bc32cf69788ea0b35884a8fdacd82591cbd0161391ff5eb298baf6cee
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventid_equal.texi: 
-  copyright: ''
-  hash: e98ad15e6d288cda7cd84504ad757be753c58e981254126a7013557aea9fd9c7
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventid_get_name.texi: 
-  copyright: ''
-  hash: c7596250743fd190cad5213006d0b9666c3a936be1dcebe04bdbe171a6cd0749
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventid_open.texi: 
-  copyright: ''
-  hash: b0962f6ecae87f4770e047b7d06cbf279151b4e50c6379241b1313e47e552d0a
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventset_add.texi: 
-  copyright: ''
-  hash: 1a546240a8fc1faa3f949ef383a67908b8070463825c543c0a4279b1ca25f784
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventset_del.texi: 
-  copyright: ''
-  hash: 972884e849006cdfeb74f21d360284b7f8c194ecb4114409b8a0d6ce7784242e
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventset_empty.texi: 
-  copyright: ''
-  hash: a8873a5c14dd2b52a595ecdbad9fde48f9b8d1cd659a88e899e4b3806908eeed
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventset_fill.texi: 
-  copyright: ''
-  hash: 4aa69e4079390a52ce6a9d3e70c0b2e66e884db7cdb9dd8836333ec31ef6ca8b
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventset_ismember.texi: 
-  copyright: ''
-  hash: b2bcb139cf0f406f68a7da6a050f50a20ce76053be2cf598d5ce01720859938f
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventtypelist_getnext_id.texi: 
-  copyright: ''
-  hash: 8168eab83a8019726c73e5a3eafd53fb848cb20f17bfb391eecef7f726781423
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_eventtypelist_rewind.texi: 
-  copyright: ''
-  hash: a8b698cb04bae7452a1aa92c9af23fb6bb24d78a4de08d7f6e7b2b6774769be9
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_flush.texi: 
-  copyright: ''
-  hash: 6adfa76be6079e6353cd3606c896b41897072e16923d73b136f08cbadc2a571c
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_get_attr.texi: 
-  copyright: ''
-  hash: cdb6cef8bf0e98eb4ed074289005960626c82293df0ab4a32ea5527680c8e6de
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_get_filter.texi: 
-  copyright: ''
-  hash: b4e182e8a9af7d9168dd35eb4290462fb40be47f09e99710f4b84431a626f2c4
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_get_status.texi: 
-  copyright: ''
-  hash: 71d6651b8f05644b9a642980d8e8b1a2923ae9dcfd58048c81e91f82c3356f7c
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_getnext_event.texi: 
-  copyright: ''
-  hash: 49bead6bca4c38a5341f86b18485d77660b93f22e7b56d9f034ac4a8636f5b5d
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_open.texi: 
-  copyright: ''
-  hash: fc529d52215c5e0f770f104bdbea24af448b43f1e793ade2b64d70205443868b
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_rewind.texi: 
-  copyright: ''
-  hash: b3eff434d8501389631044c23517d57d12b9a80e0bdb7cac5b15fe1fee7b3bb1
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_set_filter.texi: 
-  copyright: ''
-  hash: 4d7f6ea838ed6c51adbe31fa219a22b5df80e697e4814dbd9ecc8f269cf762ea
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_shutdown.texi: 
-  copyright: ''
-  hash: 9293a9916aeabb2c74c1bc62ccf37cbae78dc1276a9a7276ac61ca129a5843bd
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_start.texi: 
-  copyright: ''
-  hash: f96fc628919e2fb8d1f0b687a9bf7590eb610167571abd2fafa736c37cfe9570
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_stop.texi: 
-  copyright: ''
-  hash: bdea8f560c0aa039862bbcf7dd669b6e17cbf3df5ffab49eb84d322a646fa644
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_timedgetnext_event.texi: 
-  copyright: ''
-  hash: e02e2628db360e9552151ea3cfdbe0d7cb10d05f5084c82be6fceac00c12fffc
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_trid_eventid_open.texi: 
-  copyright: ''
-  hash: c90234d6928930eb571c09a335c80e685e6188844d6032c5cb4f08d1d346c4af
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_trace_trygetnext_event.texi: 
-  copyright: ''
-  hash: d73011efa2346a98ca0b075ad9ca871f92a3a336c550aa614c44dabed4cbf0ef
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_typed_mem_get_info.texi: 
-  copyright: ''
-  hash: c1ffc2cdb081c341c855a6166079e907b5f30d2bbd089fcdf3d4a5efb4c3e8a8
-  license: ''
-  license_text: ''
-./doc/posix-functions/posix_typed_mem_open.texi: 
-  copyright: ''
-  hash: c0923dcacc2e10d19cde0116b916900ee58bee17184540c4fc0fca56cf27afa5
-  license: ''
-  license_text: ''
-./doc/posix-functions/pow.texi: 
-  copyright: ''
-  hash: 3588200be9beae88172c588ed3166f06aeaa63d7f7708b709e51179849668047
-  license: ''
-  license_text: ''
-./doc/posix-functions/powf.texi: 
-  copyright: ''
-  hash: 2c20228be41c7ae06e16f334a350ecd67e67d780f15ab1ace0b981472ff76e5a
-  license: ''
-  license_text: ''
-./doc/posix-functions/powl.texi: 
-  copyright: ''
-  hash: ec73f774d4f9e2730678a99849d7e449fa33553a4e00aa301eb3c37dee018529
-  license: ''
-  license_text: ''
-./doc/posix-functions/pread.texi: 
-  copyright: ''
-  hash: 94344ff20d9188dff7bcce1466828d3d8e19d41207d8c20e5eda87fce1752780
-  license: ''
-  license_text: ''
-./doc/posix-functions/printf.texi: 
-  copyright: ''
-  hash: cc1b5932488eafd7041e224c3c5f101cd6d45de4c770de8eb00c90ce7f61f056
-  license: ''
-  license_text: ''
-./doc/posix-functions/pselect.texi: 
-  copyright: ''
-  hash: 2d26ab5240ac27a518b2e987ba8d79e7b2c2528bc6a94093db97760c1cd30f9a
-  license: ''
-  license_text: ''
-./doc/posix-functions/psiginfo.texi: 
-  copyright: ''
-  hash: 110101075e0eb4d997d3fcf1818bff6cd029be26a916d95148d0b02c9a3823a1
-  license: ''
-  license_text: ''
-./doc/posix-functions/psignal.texi: 
-  copyright: ''
-  hash: 2c42cdb7d36d4524202363bbc6c21af4dcf480f7996acbb464831b3501bb2401
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_atfork.texi: 
-  copyright: ''
-  hash: bd6f0ab6ff93e450c2bc4ca3c2863c21a3fe0696083d275cb1a9d1605ed02eed
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_destroy.texi: 
-  copyright: ''
-  hash: d033d6af41be3237328cbc28811f8e729e3d295b2e92e0c7f5051a73cfffdbf0
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_getdetachstate.texi: 
-  copyright: ''
-  hash: 6e2a3ef0f6207878bb09ad68185f8e07bc1b0d23b1c7551d5445d9439f63cadb
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_getguardsize.texi: 
-  copyright: ''
-  hash: dcc2fc4b9fa5d43877dbdae216c9a782af6ddd21b4cc251c6f0884d6ead8ddcf
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_getinheritsched.texi: 
-  copyright: ''
-  hash: a6a1f044119243f02220493504aea24e555e10d684d75f76be7703cdc7907117
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_getschedparam.texi: 
-  copyright: ''
-  hash: acf2bc407210fd0a87ea5a8bc8aca6ba382914a2ad8788c13589d65f5efb4662
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_getschedpolicy.texi: 
-  copyright: ''
-  hash: 6568aff8a62e24e659319143e01e108068eb82ecb1d73e9305ba8e3af43f1dbd
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_getscope.texi: 
-  copyright: ''
-  hash: 53127e6a0846038a197f491f7d9d4486cbd9e0d92e23182eca4a23643b7c7987
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_getstack.texi: 
-  copyright: ''
-  hash: d55b1da7b04008428ba631234be9cfb38b53312aa69c148e116b682139eaf108
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_getstacksize.texi: 
-  copyright: ''
-  hash: 345f3ee43d1e0f2efa8d4fab2b196d824b44868ee55bf828d4135653b9cb64e1
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_init.texi: 
-  copyright: ''
-  hash: 5ac9b50be719d7ce090e57f14970fbaa0109b04968d270e9f52a9c3d9e8508ea
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_setdetachstate.texi: 
-  copyright: ''
-  hash: d78b76b4ed5cfe55a6f5e4ed77d137e8f317ea2d8f6eb5b160a72f7c5567e411
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_setguardsize.texi: 
-  copyright: ''
-  hash: e7fac577329d9a3b6446d353473c83fd01c59f7e8548ad31cd292354304ac6f9
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_setinheritsched.texi: 
-  copyright: ''
-  hash: cf31a0c5775bfd82489898e7c3f8c5b1bcf03787ac97d313de504a9f1a640463
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_setschedparam.texi: 
-  copyright: ''
-  hash: a01e60c15e39cbd05318117c6a353663a658cff4c0060c732552bc0735e1a0b5
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_setschedpolicy.texi: 
-  copyright: ''
-  hash: 28c89cdb4b18dfaab2c400b96220600365c448c666125d97cc54c888ee6d4623
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_setscope.texi: 
-  copyright: ''
-  hash: 546a917a46a49835d47fb7f4b9be526e27c99339c85e86b332417f39456da902
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_setstack.texi: 
-  copyright: ''
-  hash: 3218b205686cd35238646c3f6be7ce58a9283171a1a242eb6d7949da02576197
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_attr_setstacksize.texi: 
-  copyright: ''
-  hash: 15ec368b367a6144ee7d39b56b4a4e994ccc0fc231413484a5bc5596417964b3
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_barrier_destroy.texi: 
-  copyright: ''
-  hash: 6431e7465c2f611d477e2e0bbed31e7cb6dfa1f57afed483e3de3d06fbabc55d
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_barrier_init.texi: 
-  copyright: ''
-  hash: 2ccf8776f1720db644b2e40f5e45b2accd8e3a5134f9f5446d6ac243729f7ad7
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_barrier_wait.texi: 
-  copyright: ''
-  hash: c1b386eae130fb603d2f6d476958efcf09387fb73ce297e459e6d81e0dd9b133
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_barrierattr_destroy.texi: 
-  copyright: ''
-  hash: 913c8f495efff25824dbd8dc5faf2526b5b0e5160b1faae28f67452b3aee6936
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_barrierattr_getpshared.texi: 
-  copyright: ''
-  hash: 8e4afc65315f8b2e25d2c5b9e859363fd9ee7371eb7247d6112773c642337f6f
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_barrierattr_init.texi: 
-  copyright: ''
-  hash: 45369e6ac6f2f62e775581d3694e1c9ab726b910790ef4b5da5efe94778e2e49
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_barrierattr_setpshared.texi: 
-  copyright: ''
-  hash: 34825fd8bf5a6ae16e5b7a0ceaa60428e8ead85b8e0ada77345f10600eeec249
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cancel.texi: 
-  copyright: ''
-  hash: e8ba2f30835e3adf32710558d20f30e1cede0f548e4cc612f0aa36cefd207619
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cleanup_pop.texi: 
-  copyright: ''
-  hash: 56219e3c4261a24f8ae5c345420375bfed930edd72fe9de1145ad9bb6c8981b4
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cleanup_push.texi: 
-  copyright: ''
-  hash: a198aceadab367b9b5ec5528e6d9eb7071b44e88ba80d7505b07e86ed47b3799
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cond_broadcast.texi: 
-  copyright: ''
-  hash: 027f86eba7dbadc497e225c26b709124f8d27d3720f641e9a16d6e244f2e9999
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cond_destroy.texi: 
-  copyright: ''
-  hash: 700b1a47bb870ae67a0829d45bbe702d4e2d5c068f21338fe743c5f781a79b41
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cond_init.texi: 
-  copyright: ''
-  hash: 1aac869c309f1e1259d594533ca99cbcb409ae20698e04313ecb76af8f586125
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cond_signal.texi: 
-  copyright: ''
-  hash: a3a421ae49ccf251516d0a9d806441c29c08782dec6a949f1b4132722924935e
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cond_timedwait.texi: 
-  copyright: ''
-  hash: b554412ccdd6610c8224a5828fc0cbed66e33dcf855b76bece44c72854f4b9fa
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_cond_wait.texi: 
-  copyright: ''
-  hash: 69b9ed912a9a849f38ef59137cf08ef99807a0e560af5baa98a843186838f299
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_condattr_destroy.texi: 
-  copyright: ''
-  hash: dc71cdaf1bfce2c599af6d02608e23a7a1a36b35773b61a9352930193521ceb6
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_condattr_getclock.texi: 
-  copyright: ''
-  hash: 4f39462a8d0cccfa468c219ae84735d0e4959170660ddb5335d4d0e58a310952
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_condattr_getpshared.texi: 
-  copyright: ''
-  hash: fd9bb140a4bb9d1596e1a1db77d9fc3e265aa7cbfeae2d7b82c203a3933a4aa2
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_condattr_init.texi: 
-  copyright: ''
-  hash: 644aa43dccb6aaa12b07b5af03bbaa07a2ce79c14e11441ffcc89e2980b45fbf
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_condattr_setclock.texi: 
-  copyright: ''
-  hash: b5413f0e67888a8c5591631a2e7fc8f9d5940b4295d578bc47c5f6b392fe5775
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_condattr_setpshared.texi: 
-  copyright: ''
-  hash: 18c18d1442e96df08c95dff4c476f839a9bf33f67fc7cb2d318af1f7a5129452
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_create.texi: 
-  copyright: ''
-  hash: a7e377395df018ad7be35a051f5a0cd6cd2c76118befa1e9d53a2023bd751923
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_detach.texi: 
-  copyright: ''
-  hash: e80c073a363c91dbc7080f7a4e511f7b648bd28f030c4f98faa1490086d52a32
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_equal.texi: 
-  copyright: ''
-  hash: 6e2bd3ef9f0cae069ffd29ff4fba0879fbbcdd9cfbaf39327b389d27c0d21dc0
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_exit.texi: 
-  copyright: ''
-  hash: 232c5cf778c2cfd1e637aee54d72705efcf3dbff8f7164240c1a171d0cdc7d8f
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_getconcurrency.texi: 
-  copyright: ''
-  hash: da08fbe0f6fd2e342e8e5de796f98166968f5292462c2b0bde472cc2cd27aebf
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_getcpuclockid.texi: 
-  copyright: ''
-  hash: 5189825a695d0c00cc9f0275ad6f2d9c949771c1d65c1f33eefbf58f45da4e30
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_getschedparam.texi: 
-  copyright: ''
-  hash: 6fb7f3364b7723dcfe69708e696f958421113a542fc16c23d6b437c61c3ebe69
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_getspecific.texi: 
-  copyright: ''
-  hash: 24418f9959f93b40084233797e9374b3d70eca2260a775e1abdc744d43b0e72b
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_join.texi: 
-  copyright: ''
-  hash: 9039ce2feb029a58d9fbd965e0d2f4cee351059727f82a85c67059c0319bf525
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_key_create.texi: 
-  copyright: ''
-  hash: a1cb1a3db0f8853edb4e810872d4337be4fe45284107e1fb1fc3811fd3b4559c
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_key_delete.texi: 
-  copyright: ''
-  hash: 7a66f0931de9d103c2dd8e413f396dae4cd106a88c96ad695cd60bd31febd79e
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_kill.texi: 
-  copyright: ''
-  hash: f08bf3510c8f593d3dd76d9a59eac31ac729ba9d94dc75958d0e904f5c9c98a5
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_consistent.texi: 
-  copyright: ''
-  hash: b6e43d57f04c939eeeedf83aceb7a105ca5067531ea8db38d44306ebe8e9fd4c
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_destroy.texi: 
-  copyright: ''
-  hash: fd4bde78e9fa8b117ae2482b8597dddc097527885e32cacbf6730f38ca8e06ef
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_getprioceiling.texi: 
-  copyright: ''
-  hash: 2a9d8cf7cc4fc5e2fe50656bf10493668ed1c6a1a0e8cdebcb14f4a3fc762e88
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_init.texi: 
-  copyright: ''
-  hash: 0e842a0e38c78b48dff33e93b8092d7977b5e64e398a246dbcf508bd957d2d61
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_lock.texi: 
-  copyright: ''
-  hash: c6d6b927e067c0c74541aa777d5aca52d14f124a01c458da4e0c465d2a535fc5
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_setprioceiling.texi: 
-  copyright: ''
-  hash: e3a36023a14d9b48e692ccf929e1848ccb1c04cb2570216858055dff256c6a62
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_timedlock.texi: 
-  copyright: ''
-  hash: 140fb1fb8fe999687fe6799e7169f0dd2973de5387296d1d31033f527570ee9c
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_trylock.texi: 
-  copyright: ''
-  hash: 20faf9cb662d153f4c93433660e024c693a1211a5181532029be3d28bce03e6d
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutex_unlock.texi: 
-  copyright: ''
-  hash: 7110cf9b01daabfcf76bd06905a56f819033d4d7a93c89b05800b79171d38e19
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_destroy.texi: 
-  copyright: ''
-  hash: 1290c79fa1c38da5e15fedcbf354d4a3a0e1481df5bd5433387c1d96f2baac32
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_getprioceiling.texi: 
-  copyright: ''
-  hash: 449f95217262c8abc79143cb2459f618a5967e7af42b2ac3981a442ddb9a9c06
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_getprotocol.texi: 
-  copyright: ''
-  hash: 9f9268d4333f759584749fd1605652f4186d5f0b5acc680b39bdb7061b54f48c
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_getpshared.texi: 
-  copyright: ''
-  hash: 295bd74fc073a734721873fa72a22a174e18783e9deeec13f06517f689eacd22
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_getrobust.texi: 
-  copyright: ''
-  hash: e0610f724a55de771fe504907799acfe94fb6ba3c67d0ce579d759ab973d19e7
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_gettype.texi: 
-  copyright: ''
-  hash: d12236caf122faf894bb50228a5472f020d954e207cd9dfd0e577ee8c8383f71
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_init.texi: 
-  copyright: ''
-  hash: 3b3ecf6261d6da298805c4cc95962a3ad36890bb77ff6b7b6f3132086e051167
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_setprioceiling.texi: 
-  copyright: ''
-  hash: 1ece8317019dd82c5e318b4d9b5882802ea01045a409297cf8dd440ad9d3103f
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_setprotocol.texi: 
-  copyright: ''
-  hash: 5e6a366266f46a0357684749782e6197e1809fba9a2d513688406e49ad31d2d3
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_setpshared.texi: 
-  copyright: ''
-  hash: 2fb993d88e4bbc911842803392deba53e3813c527c52d905c948b73bb4925286
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_setrobust.texi: 
-  copyright: ''
-  hash: 6bcbd7ab232100484cccf5e34ae17399d7c916a5acc23f403e0a0a844cc3e4ff
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_mutexattr_settype.texi: 
-  copyright: ''
-  hash: fd9b09b6caf5b9d30b13ad9e48dc4603f3ed94da2f8183e721cddb1ccc436dcc
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_once.texi: 
-  copyright: ''
-  hash: 263f7917fd13b0a74ac2ac702382080845565de894f62c71a2ac5a00ade097a0
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_destroy.texi: 
-  copyright: ''
-  hash: e474fee400949358c98c0d2eb0e85c3467fc0ca4bdb4fcc639ed9f36abe8fd82
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_init.texi: 
-  copyright: ''
-  hash: db1cb2523554cd336286ed884dc68f8f79b1558822da6d7872998801edbde3cd
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_rdlock.texi: 
-  copyright: ''
-  hash: 0d60cb0bd577699f1938cb35e9d4d33c4fee07c9b066bcdb6827770477de24a8
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_timedrdlock.texi: 
-  copyright: ''
-  hash: 3599fc1e125134eddc84887d08f98a66259a161a2e20d3eb6aeaa56e388c0c49
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_timedwrlock.texi: 
-  copyright: ''
-  hash: 2b1fcd9f3b9fa43c87a6c4e253ab9f0d59c266668fa4f8bf951ba0c9ef16d66c
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_tryrdlock.texi: 
-  copyright: ''
-  hash: 42205ebc500b32d14edfe041eda18f6ab7ca80e145b0b5f39ca6012f2cf1bab4
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_trywrlock.texi: 
-  copyright: ''
-  hash: 4a1dfb6ad7aeb5bb915ca30df282fd851dd2b7924ddced7c4855bfe9c520b2bd
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_unlock.texi: 
-  copyright: ''
-  hash: f87d3a230966b3d5b888d51b96f49074ee121a4c6f0b44cc339c281aac4fe6e3
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlock_wrlock.texi: 
-  copyright: ''
-  hash: 615fd6fce3bfa2157552bbf3a06e7840653a17f0f5f5a23268553002b5871983
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlockattr_destroy.texi: 
-  copyright: ''
-  hash: d650c45f94e3f7cb29c19693d46694c3b1d965e41bf6db7f4490611eee0a1c89
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlockattr_getpshared.texi: 
-  copyright: ''
-  hash: 3b9cf0c4acb7572f4c5ae44b36365c60d1a3ef364d683ba6d741c60c30cda433
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlockattr_init.texi: 
-  copyright: ''
-  hash: 749ddd92db56e96ecaadb08122546a3cc441cbca68fd274de2de3c69514cc95a
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_rwlockattr_setpshared.texi: 
-  copyright: ''
-  hash: b91d04b919f5d05dbda7c3530244929f89f83ebbdba05fffc494820d2a853842
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_self.texi: 
-  copyright: ''
-  hash: 13a7ed58caa8e8ed5afd05a4866c5a149f397fc180ae483191be4f2bbe1e873f
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_setcancelstate.texi: 
-  copyright: ''
-  hash: bf779426dbcb25c40780822d1af78c8c245730481c02b2f663b25c06032cc1ea
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_setcanceltype.texi: 
-  copyright: ''
-  hash: 21d2905f71f6a29504e1e41139d61d4c2c30ebeb03d8315cdc5e4a92e4d2b80c
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_setconcurrency.texi: 
-  copyright: ''
-  hash: 3a0aabbee0c7c7de01d8e594d7585d2f80b108a9824299253f41979ab4dbfb82
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_setschedparam.texi: 
-  copyright: ''
-  hash: 6420aa34f4afee0ebe566288a398a735322e438b631ce128637752bc8e8820be
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_setschedprio.texi: 
-  copyright: ''
-  hash: 9354214523a1c7e37170ac1a21531f009477b6c148aaa0a251544066c31aa78f
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_setspecific.texi: 
-  copyright: ''
-  hash: 154fa05dbb23ec8136e52430b633c487de9c68431f8bdd889864189f88b4d946
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_sigmask.texi: 
-  copyright: ''
-  hash: 5f84be77ac9a94d39f9890e0d6fc55981fdce2afa262726750e4bb8b08d930fc
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_spin_destroy.texi: 
-  copyright: ''
-  hash: 9b80cbaf20504167e3cee0833877632e1cb5cec0ec848e17e6e92911498e12ab
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_spin_init.texi: 
-  copyright: ''
-  hash: a3726f0acaefef327cb10544fdff423af698b5f1cdabe0a26b27c4b5d8d80521
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_spin_lock.texi: 
-  copyright: ''
-  hash: df22dcb8f68c58da23c21856c108590d8b7be072110595e1db0cc8f04a431ac0
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_spin_trylock.texi: 
-  copyright: ''
-  hash: 322d6baf08a723f11fa1176b4877d385268cf6390c885ef2cd4defda8e7767db
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_spin_unlock.texi: 
-  copyright: ''
-  hash: 14e1ef4681b04777a2effa8cc09f6b9f54df272574e33f41a53c61fdce370242
-  license: ''
-  license_text: ''
-./doc/posix-functions/pthread_testcancel.texi: 
-  copyright: ''
-  hash: ed23a37d1c2d0cd758558e27f966f24f80c536576d6fcdca1253c41b23f3edaf
-  license: ''
-  license_text: ''
-./doc/posix-functions/ptsname.texi: 
-  copyright: ''
-  hash: 1b5c93eea933da86b4d3af086ecdd2d1251250a5ea58a3a65f293562e0e8a336
-  license: ''
-  license_text: ''
-./doc/posix-functions/putc.texi: 
-  copyright: ''
-  hash: 5d141e589a84fd6b8317e39d3fc5aab79d8b46f53d544ff312902a7b91ab26ed
-  license: ''
-  license_text: ''
-./doc/posix-functions/putc_unlocked.texi: 
-  copyright: ''
-  hash: 37f5c73db32107b5c76b4cba44714c31abc9c138e1073d8c4925179e2cfd6c5e
-  license: ''
-  license_text: ''
-./doc/posix-functions/putchar.texi: 
-  copyright: ''
-  hash: d34911f284b53c744d1adaff6fd19a42a32617bcf3680978cc05a4eefe594d45
-  license: ''
-  license_text: ''
-./doc/posix-functions/putchar_unlocked.texi: 
-  copyright: ''
-  hash: fe7ef6645bdf1963d78a2b5127e040bde49dc0e5025aaa9b7dfbbb6260da429b
-  license: ''
-  license_text: ''
-./doc/posix-functions/putenv.texi: 
-  copyright: ''
-  hash: 1225f20a845f37cd71a9e0bced02458df4fb6c6f115771fbbe61fea3b4780848
-  license: ''
-  license_text: ''
-./doc/posix-functions/putmsg.texi: 
-  copyright: ''
-  hash: 75b6e41c21c6f36a1fdbc2b4c6e03a8c887088897174ec890231899889f30172
-  license: ''
-  license_text: ''
-./doc/posix-functions/putpmsg.texi: 
-  copyright: ''
-  hash: 3903ad394832d99822a9c28af39ea21eee403b16803d11d6480024d27d06bec2
-  license: ''
-  license_text: ''
-./doc/posix-functions/puts.texi: 
-  copyright: ''
-  hash: 0c3315db7f98e899502f5a99bd2659f35187abd17e2e6a8cee77f243ce622cce
-  license: ''
-  license_text: ''
-./doc/posix-functions/pututxline.texi: 
-  copyright: ''
-  hash: 66c8ffbb27d2df0fdd75e0c8c96790e18a16ed8b4f6bb78fc388232254be3a95
-  license: ''
-  license_text: ''
-./doc/posix-functions/putwc.texi: 
-  copyright: ''
-  hash: 6c60fa1822603d2c92c59f1e5e591e1af2b89112396c238d847a4b696eb5f93a
-  license: ''
-  license_text: ''
-./doc/posix-functions/putwchar.texi: 
-  copyright: ''
-  hash: b09cb7a268544b361a6518977d0cbb34f145881c66588f7a4834577e439bfe17
-  license: ''
-  license_text: ''
-./doc/posix-functions/pwrite.texi: 
-  copyright: ''
-  hash: c9bd2a13a91714d5752f09ef6f92b210e7e5e7df7f7ae6ad069e2705e8560aa4
-  license: ''
-  license_text: ''
-./doc/posix-functions/qsort.texi: 
-  copyright: ''
-  hash: eccfafd811e895dab2d612139558414963994ad85641a831a19ac92054427b1b
-  license: ''
-  license_text: ''
-./doc/posix-functions/raise.texi: 
-  copyright: ''
-  hash: 9168fc29b1d48f00797fd8aa7575ace765b3f20cb4ff6df9c81e2c5a7f75a505
-  license: ''
-  license_text: ''
-./doc/posix-functions/rand.texi: 
-  copyright: ''
-  hash: fbbf8b1aa9c9585a1951e87f039d4335f526c24c0e78e219db3192d1135cd0d8
-  license: ''
-  license_text: ''
-./doc/posix-functions/rand_r.texi: 
-  copyright: ''
-  hash: 59c958eb67399b934750dc9454b7bb7fb2fcdacdcd793765b49f2de183a98292
-  license: ''
-  license_text: ''
-./doc/posix-functions/random.texi: 
-  copyright: ''
-  hash: 1ac28c8bc3664266beda4e1a8bedddfe6e9a2b9d922712df684fce6a569d57c7
-  license: ''
-  license_text: ''
-./doc/posix-functions/read.texi: 
-  copyright: ''
-  hash: c0772bc36f187c182877807725aef9e66db5d39de1fd4ba4fb0f3e1d1b104499
-  license: ''
-  license_text: ''
-./doc/posix-functions/readdir.texi: 
-  copyright: ''
-  hash: 8acd1c9966f71ead4b10ca70d897276aa12fbc5a41f1ad088cfe1e1849f09d32
-  license: ''
-  license_text: ''
-./doc/posix-functions/readdir_r.texi: 
-  copyright: ''
-  hash: 0b985cea57ac53aacdc262c142dc6836da7ea2f6805a75a52c6badba2a1edfb7
-  license: ''
-  license_text: ''
-./doc/posix-functions/readlink.texi: 
-  copyright: ''
-  hash: 289041e8eac3117ecaa306f00b03008b7ed1f7f7e8e458edb64e3658d2a78df8
-  license: ''
-  license_text: ''
-./doc/posix-functions/readlinkat.texi: 
-  copyright: ''
-  hash: 8e82d14041b87e19c1298c597787ddb51fb2c6d4f3aba4087a064ff6db8445e2
-  license: ''
-  license_text: ''
-./doc/posix-functions/readv.texi: 
-  copyright: ''
-  hash: 3a5a744fc3b388558d7a6ce32e3cd2409238e7c1de9877ef421916a0a0dc41ff
-  license: ''
-  license_text: ''
-./doc/posix-functions/realloc.texi: 
-  copyright: ''
-  hash: f0e891898abaa0a80d3cda3e3bfd9d8ba9d886fe03eeac0524b958a62e9910cf
-  license: ''
-  license_text: ''
-./doc/posix-functions/realpath.texi: 
-  copyright: ''
-  hash: 31d1d7d2fbb89b8b73a9f8c9233c47944c665081515957cdf622af70b157dee5
-  license: ''
-  license_text: ''
-./doc/posix-functions/recv.texi: 
-  copyright: ''
-  hash: 8a15266da832a4a27bba9fc686336216b9e0f53e3039ae3c90803932b0bd6dda
-  license: ''
-  license_text: ''
-./doc/posix-functions/recvfrom.texi: 
-  copyright: ''
-  hash: 5b8c576d3b7631a1252a36815ca4dbc99a02857999908fd47132065297ba5145
-  license: ''
-  license_text: ''
-./doc/posix-functions/recvmsg.texi: 
-  copyright: ''
-  hash: 6954352174e93bc859b4f4cb4d2f3108621106dc0eac7cce11fed1a3bf900d34
-  license: ''
-  license_text: ''
-./doc/posix-functions/regcomp.texi: 
-  copyright: ''
-  hash: 467aa5c6a5b8e8746e54af135c6a20a7db4192236b82e8aae0fea24c3bf6f04d
-  license: ''
-  license_text: ''
-./doc/posix-functions/regerror.texi: 
-  copyright: ''
-  hash: 851681f9c2f6d3b714a4821fa8b8221ccb948088c6a6a676321ede8ecb6e9985
-  license: ''
-  license_text: ''
-./doc/posix-functions/regexec.texi: 
-  copyright: ''
-  hash: 71275ebcea7b64e5b5a339139d33520241c8f6f2cc2ca66861b663729e14e128
-  license: ''
-  license_text: ''
-./doc/posix-functions/regfree.texi: 
-  copyright: ''
-  hash: 546e9045c4a3cd6c27e6d0587177908f4858d68ead5d3956c561ee5a6ae56a59
-  license: ''
-  license_text: ''
-./doc/posix-functions/remainder.texi: 
-  copyright: ''
-  hash: 9048696feeff04cd557d5d0dedca4a672700965097384662d135b754e54b7fbc
-  license: ''
-  license_text: ''
-./doc/posix-functions/remainderf.texi: 
-  copyright: ''
-  hash: eaf831bc14b2dcc900fa892a2e14ba7617b1e6ab61f619f0cd6f7e14d41acd88
-  license: ''
-  license_text: ''
-./doc/posix-functions/remainderl.texi: 
-  copyright: ''
-  hash: 14d1ff2d407b0012762b50554da703265c6294096c17d5ae4b14bdc14fc8596e
-  license: ''
-  license_text: ''
-./doc/posix-functions/remove.texi: 
-  copyright: ''
-  hash: 3ede2b0a88caf86dc972a636e28b9ba38caf6de6256e0e3bceba9beea59854d9
-  license: ''
-  license_text: ''
-./doc/posix-functions/remque.texi: 
-  copyright: ''
-  hash: ba75b73c8d591b696fcd813c3ef76bf5c44770df9c6fbd9ae87c697481437522
-  license: ''
-  license_text: ''
-./doc/posix-functions/remquo.texi: 
-  copyright: ''
-  hash: ea3584c21d497ada4dae115741acd1194efd92211942117063c080ae68d3615a
-  license: ''
-  license_text: ''
-./doc/posix-functions/remquof.texi: 
-  copyright: ''
-  hash: 0f8f9fedc0e9bfe935f7ff6c31311da4900518eab1a3495c3adff52fdd073454
-  license: ''
-  license_text: ''
-./doc/posix-functions/remquol.texi: 
-  copyright: ''
-  hash: ee10dc1ef5a7800459907dc568a7acc6c3cf233713b3dbefffca813daf3a8576
-  license: ''
-  license_text: ''
-./doc/posix-functions/rename.texi: 
-  copyright: ''
-  hash: 12e0eb4b7f2d1ab2b06996c40987438ed9f8b4ca2e3bd0798e28a9bfd0aabbfe
-  license: ''
-  license_text: ''
-./doc/posix-functions/renameat.texi: 
-  copyright: ''
-  hash: c6dc7142536a2a805bcece8b9c0f15fcf548fed2410b817fad4b8d005496bed4
-  license: ''
-  license_text: ''
-./doc/posix-functions/rewind.texi: 
-  copyright: ''
-  hash: 7e31de0009419f05734b5d6a322389c5e103c5cd40a060f49efd1f68da2cabb0
-  license: ''
-  license_text: ''
-./doc/posix-functions/rewinddir.texi: 
-  copyright: ''
-  hash: 42b2c06301ed85a0dfdfd8ef098bdcd6f8cf4a5198eb5fa3f0231f63e14d3ee7
-  license: ''
-  license_text: ''
-./doc/posix-functions/rint.texi: 
-  copyright: ''
-  hash: 0bdbf8e00f3fb2386cfd9a6ef340864607e19f553ea1a84aadaf6f352b8eec33
-  license: ''
-  license_text: ''
-./doc/posix-functions/rintf.texi: 
-  copyright: ''
-  hash: 04b86653c1aebb521570910a97edd79efcfb3d9d4ce5ee36b0bc12caefc93feb
-  license: ''
-  license_text: ''
-./doc/posix-functions/rintl.texi: 
-  copyright: ''
-  hash: 3cdf8671de573e8aa145192d0e4b51bdb9813c54328232493738ee146c15f55c
-  license: ''
-  license_text: ''
-./doc/posix-functions/rmdir.texi: 
-  copyright: ''
-  hash: f46fa6bd3452720b41ce3c646a159d837c815958bdb713632742c746227a658e
-  license: ''
-  license_text: ''
-./doc/posix-functions/round.texi: 
-  copyright: ''
-  hash: ad1fac248f0027fffeb846b4bcbb10d65dbb8ee2814bf99ca320dc6b76d3591b
-  license: ''
-  license_text: ''
-./doc/posix-functions/roundf.texi: 
-  copyright: ''
-  hash: a93f03fd0a866d50dae90b7ed84de5e54ee93a776770d19334d918c68e937352
-  license: ''
-  license_text: ''
-./doc/posix-functions/roundl.texi: 
-  copyright: ''
-  hash: 34c9077c2dec24f5eac8f86ac817d972e19810b75227e4b638cff1c10952f098
-  license: ''
-  license_text: ''
-./doc/posix-functions/scalbln.texi: 
-  copyright: ''
-  hash: 20b33ecc23fc5311a3eb8423dfb90ed0acc8f5e0a27ce08b33548700dcfd087b
-  license: ''
-  license_text: ''
-./doc/posix-functions/scalblnf.texi: 
-  copyright: ''
-  hash: 721d2584694f2c17e701b77dafb1a4a0fce1b4cf75e67286c1de9b3d2bc5fc4d
-  license: ''
-  license_text: ''
-./doc/posix-functions/scalblnl.texi: 
-  copyright: ''
-  hash: e29e5eab4e9e4a6a341613b203cb7b6c05be7c3ad6119e0e5b069d8019bbb4e3
-  license: ''
-  license_text: ''
-./doc/posix-functions/scalbn.texi: 
-  copyright: ''
-  hash: b98ad8538407e08879d31e648dcf8eacc0c0c187ac2cba1dcec79b87a7d8afe0
-  license: ''
-  license_text: ''
-./doc/posix-functions/scalbnf.texi: 
-  copyright: ''
-  hash: 6c2dfea485571431562f1b51e5920eb4bbe8499512abd58d46fb3e842ea6af67
-  license: ''
-  license_text: ''
-./doc/posix-functions/scalbnl.texi: 
-  copyright: ''
-  hash: ad72f6be73a435b5d81d01a8b5849eb4531c88a21370bcb2ad87afb73047e436
-  license: ''
-  license_text: ''
-./doc/posix-functions/scandir.texi: 
-  copyright: ''
-  hash: 19a5e174895872d8102d75603b1f0491cc13b1da4c7c4e4dd0efb3c3c64887ce
-  license: ''
-  license_text: ''
-./doc/posix-functions/scanf.texi: 
-  copyright: ''
-  hash: 7dfd669e166d9e21af87270f3155e7f1df47d71fd39bcc8b13bccc6b14baace9
-  license: ''
-  license_text: ''
-./doc/posix-functions/sched_get_priority_max.texi: 
-  copyright: ''
-  hash: 11f5ff6c55fdb90459f2389d7c1a7818fdce76b58ad1f2b38daea990e1ef5038
-  license: ''
-  license_text: ''
-./doc/posix-functions/sched_get_priority_min.texi: 
-  copyright: ''
-  hash: edadeaea746bd2c08a9d041afbd07ec8efeae648a41e6360339affd3dd164930
-  license: ''
-  license_text: ''
-./doc/posix-functions/sched_getparam.texi: 
-  copyright: ''
-  hash: 84f8a1c27e8b95d02bcf6537325ba48127e03e6b84a85899c04754859e6bb9de
-  license: ''
-  license_text: ''
-./doc/posix-functions/sched_getscheduler.texi: 
-  copyright: ''
-  hash: effbc16e72658dd54d3a4dfda735c9a847b984cac1770d3a69e21b18e3295643
-  license: ''
-  license_text: ''
-./doc/posix-functions/sched_rr_get_interval.texi: 
-  copyright: ''
-  hash: 28dde9d502544175d3e577faf43edfc9cdebc23ad5698817f93739b89eaa30ae
-  license: ''
-  license_text: ''
-./doc/posix-functions/sched_setparam.texi: 
-  copyright: ''
-  hash: 72b52136de2d388c0b20b342359f6341550f2f169138066f6506aef13dc568a0
-  license: ''
-  license_text: ''
-./doc/posix-functions/sched_setscheduler.texi: 
-  copyright: ''
-  hash: 09602d1144a443906cd95a7abc7338702e87e3a31a3d97685a073899186cb3d3
-  license: ''
-  license_text: ''
-./doc/posix-functions/sched_yield.texi: 
-  copyright: ''
-  hash: d2d8c8ac69459f6402005138854b6d4056187e0de6abcf753e292102ea96d34c
-  license: ''
-  license_text: ''
-./doc/posix-functions/seed48.texi: 
-  copyright: ''
-  hash: 28bdf259829fb9387b78e51eab714e073170bbcea61949755e114d1604be8e25
-  license: ''
-  license_text: ''
-./doc/posix-functions/seekdir.texi: 
-  copyright: ''
-  hash: 4f3fdb7b17387addc89235b72cd26b1de5f0bad70b0e7b33bbd312857128967b
-  license: ''
-  license_text: ''
-./doc/posix-functions/select.texi: 
-  copyright: ''
-  hash: e9ce5f847344b7fb8a70e7c53420b8235ed385d3d43466db2d604a4b87e8c5f7
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_close.texi: 
-  copyright: ''
-  hash: ac874d36dada463ddff2c441e9b401348f525c81472a7913b9f056732453f98b
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_destroy.texi: 
-  copyright: ''
-  hash: 358f0ff417eb0b678c15aa7d2c4c5a230bf8442a78f36e8ec075e0d7c6d21037
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_getvalue.texi: 
-  copyright: ''
-  hash: 9bcf8c054cef77229c7f601724f90759b075f4360424fc988f0eb35527e37c5f
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_init.texi: 
-  copyright: ''
-  hash: f8c33d28ce23da0f1f9468414b072f0cafd5a250a437f9e67217d0aa46d606f5
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_open.texi: 
-  copyright: ''
-  hash: 535b9d92fa34b5d3a942d1d0c71d5b1cb895b1b3d1a0e1a40976b1aa8369eeef
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_post.texi: 
-  copyright: ''
-  hash: 33572c6870717902841189ed2faa2f22e870317e232b8a0df96ca7f464d55a3b
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_timedwait.texi: 
-  copyright: ''
-  hash: a6440ffe149ca3730afe7d0809bc0df9069248efb58db6d2a78ef3a95cce44d4
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_trywait.texi: 
-  copyright: ''
-  hash: 4ceedb230b907d2689613064f8e6d5f7d1ef7d3d3671f98c73cc49e62ded6ebd
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_unlink.texi: 
-  copyright: ''
-  hash: 0ee14f8c63cb4f610209419ac2a952f0baa08190ba720bd498efa60cb4813ad2
-  license: ''
-  license_text: ''
-./doc/posix-functions/sem_wait.texi: 
-  copyright: ''
-  hash: ef6661da464b7311b32b8ecf0428d6ade99f613ecf710a160c964cf9da984909
-  license: ''
-  license_text: ''
-./doc/posix-functions/semctl.texi: 
-  copyright: ''
-  hash: a727b206d89f2f607838a05121a9ac9fb8bbbf2b261fec2b53405bade9fc0e8a
-  license: ''
-  license_text: ''
-./doc/posix-functions/semget.texi: 
-  copyright: ''
-  hash: 3f7d131455914cf554feafcf7c52b429e71825175d3554a71018da6cbd964bfc
-  license: ''
-  license_text: ''
-./doc/posix-functions/semop.texi: 
-  copyright: ''
-  hash: 1174ca67c0eb6ca2cacbe0fbf7493c05e89c9479194549f198df5c92e8c6b935
-  license: ''
-  license_text: ''
-./doc/posix-functions/send.texi: 
-  copyright: ''
-  hash: 17bc1f1b9e840a2c9d5faeb78362adfb9876d3b22c19eed265a563b48712ba65
-  license: ''
-  license_text: ''
-./doc/posix-functions/sendmsg.texi: 
-  copyright: ''
-  hash: f483c1453c90cde160dee58c7e1cbbb5710ae07f304e0ebb96b04d68d1040e21
-  license: ''
-  license_text: ''
-./doc/posix-functions/sendto.texi: 
-  copyright: ''
-  hash: 9e49433726ffd274b30a586229b8e7b56b963711aa9363f3fde85e68eeaeabcf
-  license: ''
-  license_text: ''
-./doc/posix-functions/setbuf.texi: 
-  copyright: ''
-  hash: c1b80b2010ab858159853eb49c404f80e62c63fcf5efa4f8b361656ec17d8acb
-  license: ''
-  license_text: ''
-./doc/posix-functions/setegid.texi: 
-  copyright: ''
-  hash: 4eb55b5c084cfe20710d1e8373c22fa6391501c1f03ffb45c8a65a67cdce44a2
-  license: ''
-  license_text: ''
-./doc/posix-functions/setenv.texi: 
-  copyright: ''
-  hash: 9c4d89ace2b70d38c942c3f8944928cccef4db906dd979b8657e523b25e949d0
-  license: ''
-  license_text: ''
-./doc/posix-functions/seteuid.texi: 
-  copyright: ''
-  hash: 11065f33239479b6f7e52c623212e0e108290ba7a2f225b2fe71d52257a5054f
-  license: ''
-  license_text: ''
-./doc/posix-functions/setgid.texi: 
-  copyright: ''
-  hash: 780d6ade51dbdac0c12016d3fbf16bb2421e62eb4aa70a733b243488d132023c
-  license: ''
-  license_text: ''
-./doc/posix-functions/setgrent.texi: 
-  copyright: ''
-  hash: ac27d566a363f416471a065bb4b80dfbb1b3d72c6f44d262c47b9bebc5db0069
-  license: ''
-  license_text: ''
-./doc/posix-functions/sethostent.texi: 
-  copyright: ''
-  hash: 725baa41c0d9b152ca68a043ff588e0e6db3c11f5ef2b9a7b7628389905bb4d2
-  license: ''
-  license_text: ''
-./doc/posix-functions/setitimer.texi: 
-  copyright: ''
-  hash: 3852bfb85fac9dc66769defed010733ef020845a51b59b8d8ec679dd20aa2d81
-  license: ''
-  license_text: ''
-./doc/posix-functions/setjmp.texi: 
-  copyright: ''
-  hash: 22af0a92b03cbb7a563685898895441b261083b6684d0ee9a48f47ed26891ea4
-  license: ''
-  license_text: ''
-./doc/posix-functions/setkey.texi: 
-  copyright: ''
-  hash: 240a7ea97fba8b9ff6d9a47fa42c31b3e28640d0e8e5981f317b1d9b720e73bb
-  license: ''
-  license_text: ''
-./doc/posix-functions/setlocale.texi: 
-  copyright: ''
-  hash: 817b6e7446ec7a47293c021378b27a59878f207483191864702dda72c8b57585
-  license: ''
-  license_text: ''
-./doc/posix-functions/setlogmask.texi: 
-  copyright: ''
-  hash: 765d03a247b4621b0d48e4590dedcc6a0d2ec29510e0404540bc61421ae9e253
-  license: ''
-  license_text: ''
-./doc/posix-functions/setnetent.texi: 
-  copyright: ''
-  hash: c2c9917076799c5935791b59d9d3ac025ed0ab177cd6b2dbfc31693ec9dd0ed6
-  license: ''
-  license_text: ''
-./doc/posix-functions/setpgid.texi: 
-  copyright: ''
-  hash: 7c2356192fa6799002224dc1a24029063c4cc90586ebfc253e3559145369bb56
-  license: ''
-  license_text: ''
-./doc/posix-functions/setpgrp.texi: 
-  copyright: ''
-  hash: e51777dacdd7dc22f04da87cbeee294893c758828e56420309995df635994374
-  license: ''
-  license_text: ''
-./doc/posix-functions/setpriority.texi: 
-  copyright: ''
-  hash: c87be1e3b56994f1042308d42e8bdc660f03f0e69c82ee6783262e448151014f
-  license: ''
-  license_text: ''
-./doc/posix-functions/setprotoent.texi: 
-  copyright: ''
-  hash: 884e72272c0ebda015c9d69e01182a99e021068f7839b75d276086d994d0fbea
-  license: ''
-  license_text: ''
-./doc/posix-functions/setpwent.texi: 
-  copyright: ''
-  hash: 9396b76d7feb617576732f7d10cbf77a866f72f161546b7662bad0b1a54081a9
-  license: ''
-  license_text: ''
-./doc/posix-functions/setregid.texi: 
-  copyright: ''
-  hash: 6bcd6d07ac44360dc656876796a21f972bb05480d9bf57323e40fc5ca550dae3
-  license: ''
-  license_text: ''
-./doc/posix-functions/setreuid.texi: 
-  copyright: ''
-  hash: a2894c1abc3680e75c9c62fe31090120166f9edff985537da0b3b07621a7b130
-  license: ''
-  license_text: ''
-./doc/posix-functions/setrlimit.texi: 
-  copyright: ''
-  hash: 5958d803819871762a9194cd467efc0bf2d71ad529a8dbc42aeb3e56d18ef353
-  license: ''
-  license_text: ''
-./doc/posix-functions/setservent.texi: 
-  copyright: ''
-  hash: 4140e3b3d42a1e14ceb0d81d7204b6f59b76655866b6693950bfecdae9605d99
-  license: ''
-  license_text: ''
-./doc/posix-functions/setsid.texi: 
-  copyright: ''
-  hash: 5420e9cae04273dfc040f5832b9174b5564f4b38e482b274ecc0e0a8b17bc2c5
-  license: ''
-  license_text: ''
-./doc/posix-functions/setsockopt.texi: 
-  copyright: ''
-  hash: bd5dd31491d9fba4a723fbc708f0f984a77f61bacefaf2fc2ca396fcafc0fe34
-  license: ''
-  license_text: ''
-./doc/posix-functions/setstate.texi: 
-  copyright: ''
-  hash: 7b70df59e5d17161587200bda69c41606bc0d74689c8ebe00a6fe3d6b89e534e
-  license: ''
-  license_text: ''
-./doc/posix-functions/setuid.texi: 
-  copyright: ''
-  hash: 6d8ea2173f4dd28ad1e91fef87b91f4b37f312d94ecde8c2ea7a1def4b20af2c
-  license: ''
-  license_text: ''
-./doc/posix-functions/setutxent.texi: 
-  copyright: ''
-  hash: c888acebdd69ac6f546bde407b3b5ca347fce9a4abc3738e52bf16116e4782ac
-  license: ''
-  license_text: ''
-./doc/posix-functions/setvbuf.texi: 
-  copyright: ''
-  hash: fbfcee6cf17813046c5d7770e3e28de66747fae03b99febcc83a7afd709adb1a
-  license: ''
-  license_text: ''
-./doc/posix-functions/shm_open.texi: 
-  copyright: ''
-  hash: 711cb8029e21657fbc064d404ae7c2ef07e04ac28a7d26aa81a85561f93282bb
-  license: ''
-  license_text: ''
-./doc/posix-functions/shm_unlink.texi: 
-  copyright: ''
-  hash: 35c8021da60f69c9ebcff71354f190dd9ee08ceb621dfcf03648e74f82ff0abd
-  license: ''
-  license_text: ''
-./doc/posix-functions/shmat.texi: 
-  copyright: ''
-  hash: af47252558f36f307c6ce55289a619bde06542814c0df5fe5c6eee825741498c
-  license: ''
-  license_text: ''
-./doc/posix-functions/shmctl.texi: 
-  copyright: ''
-  hash: bbdc41b3831e90eb39d93d9959b3a97aebd44e0ad7838445371d377f11831af0
-  license: ''
-  license_text: ''
-./doc/posix-functions/shmdt.texi: 
-  copyright: ''
-  hash: b232456ce946eab53cb5c9dd93b637d707efd563a3002b96feae52b49bf35788
-  license: ''
-  license_text: ''
-./doc/posix-functions/shmget.texi: 
-  copyright: ''
-  hash: 1d43d652e94e8910fa095f710d53122c2eb95d2f07f9b0d0dcba635a7c51ec84
-  license: ''
-  license_text: ''
-./doc/posix-functions/shutdown.texi: 
-  copyright: ''
-  hash: 29fd2d2990cf30cf14c302f76697e11d96f31a9d4e14073f070bd38a84a0bdda
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigaction.texi: 
-  copyright: ''
-  hash: 3cdd81c159f9d0dba0a772d6ee39c302d310b9bc0c05293ff05fc4a08daadf1d
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigaddset.texi: 
-  copyright: ''
-  hash: 87d0a09d5c3d0fa0a9ad87967175e1c39afbf2d4bb335cdae4e557454163fd5f
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigaltstack.texi: 
-  copyright: ''
-  hash: e8985e3e771fbc1c26d97574a451d0a10395aceb70a1d365d4144ca3045b4de4
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigdelset.texi: 
-  copyright: ''
-  hash: 6ab4bcad934cc4107635ba22f4edbec51c53bd010e628837c8a794db9106befb
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigemptyset.texi: 
-  copyright: ''
-  hash: 14e1a070f0a75d6ed8d5d0c03a87fb88c716371c984180c7bff89e802c58c46b
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigfillset.texi: 
-  copyright: ''
-  hash: 3b2a1a255cefe69a417f80a0edf260888c0db54bfdd3d12424bb30b31df0c59d
-  license: ''
-  license_text: ''
-./doc/posix-functions/sighold.texi: 
-  copyright: ''
-  hash: c28922c54cf2987fd419a7e53c1c070521cdcf17e4c18b7cd7dcb213e7f6006c
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigignore.texi: 
-  copyright: ''
-  hash: 3ccf3776aadb2d683f46c2e2259b1059bf8f109cbf6322bd4534dbfb315a472c
-  license: ''
-  license_text: ''
-./doc/posix-functions/siginterrupt.texi: 
-  copyright: ''
-  hash: 3349e08d5be99e38c5a03fe7b7d459078dcd284fd0149a41c075402bbfb7c405
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigismember.texi: 
-  copyright: ''
-  hash: 49eccb6e25f6f97abb2511bd20e9d3e01769d0bd25e1401230b3a252e95c213f
-  license: ''
-  license_text: ''
-./doc/posix-functions/siglongjmp.texi: 
-  copyright: ''
-  hash: 24a32bca7cf45f9d1b12aeeda5dcb11dd4fd66f53d74c27d12bd42e474c9d1d0
-  license: ''
-  license_text: ''
-./doc/posix-functions/signal.texi: 
-  copyright: ''
-  hash: c518a9f0387ab90d8b170e72d3583f762ac4a05461790508d01beab9ab3d8558
-  license: ''
-  license_text: ''
-./doc/posix-functions/signbit.texi: 
-  copyright: ''
-  hash: 9e6a47f6d9259e813d6797c19a71415f8e4647438247ff24e8e2424a0a565702
-  license: ''
-  license_text: ''
-./doc/posix-functions/signgam.texi: 
-  copyright: ''
-  hash: 3ef7a55a9465be68ba43768332914144bd6c2c173b9a7a9a2e4b07f33121c7ed
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigpause.texi: 
-  copyright: ''
-  hash: 90fce48a0d49ab718dd652a5a5a87668ce9617dad7ff70874f4b1f7460432841
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigpending.texi: 
-  copyright: ''
-  hash: 2de6219e44b909caad92df6778f831f8b2a15b1ccf7e05f729d33dd54c5fc27a
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigprocmask.texi: 
-  copyright: ''
-  hash: 7811aa27382f44d47c7d149b3806ae14f1198c12a3dd63ebcf6f243a6558b74f
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigqueue.texi: 
-  copyright: ''
-  hash: 9c5d6f633c6f30e8fc0156ab80d63f803626e6f8bb5643e76ab141df5110c706
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigrelse.texi: 
-  copyright: ''
-  hash: 65be3cf6a9cbb69df7b4747865bd7efa29653d3e971d39e3aa1419deb39a80ea
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigset.texi: 
-  copyright: ''
-  hash: 817f69cc205c41f70b80ea90ab05062b190f96036502febe7c854c33b17a253a
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigsetjmp.texi: 
-  copyright: ''
-  hash: cc4ca79a3fb359807d0b9b990ec85be94f2c178350a771f908b5256c556a8817
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigsuspend.texi: 
-  copyright: ''
-  hash: 9f9cff8e739048a9f60008555c57b52b49ef7d90ca097e08f8988d24a4c1a8a5
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigtimedwait.texi: 
-  copyright: ''
-  hash: 0d47c3fdba144dd0c0aa13adc6924d3275b3cfec99c840ed982482cc8d729c12
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigwait.texi: 
-  copyright: ''
-  hash: 6dddd4ba0f84a96575d582a6ff6afe6edf8ed9f95b14fa5a75a0e30525066682
-  license: ''
-  license_text: ''
-./doc/posix-functions/sigwaitinfo.texi: 
-  copyright: ''
-  hash: 8519df8c6af7a55c5e9a477e0ea273270f47ecec2e180025c7e26a2992b94378
-  license: ''
-  license_text: ''
-./doc/posix-functions/sin.texi: 
-  copyright: ''
-  hash: f676105dffa7de8f92a0b6f8f57abef62d5cd3185cfbbb94f4dcc80a1d2a0170
-  license: ''
-  license_text: ''
-./doc/posix-functions/sinf.texi: 
-  copyright: ''
-  hash: 6b533d6508b0c237bc96b621b1f7e8f506f848ceff578dc4c25a0739ff026e70
-  license: ''
-  license_text: ''
-./doc/posix-functions/sinh.texi: 
-  copyright: ''
-  hash: eee78b2f05fd0d6a7ca4c90460bb0440ce78fa090a075e3ec74f104b18b887f1
-  license: ''
-  license_text: ''
-./doc/posix-functions/sinhf.texi: 
-  copyright: ''
-  hash: 15948ac5234b4e3f9763f212e52c490c8d917e214e3314f63e42d48a96c66721
-  license: ''
-  license_text: ''
-./doc/posix-functions/sinhl.texi: 
-  copyright: ''
-  hash: 4ee1ad6e044636412b8f958d57116513ef7412caaa45b936796b888f154f96e9
-  license: ''
-  license_text: ''
-./doc/posix-functions/sinl.texi: 
-  copyright: ''
-  hash: 10f6d3e1420c92efabdee4ff2ec16a1c2a547530c24cd0a0fd564d70e751838e
-  license: ''
-  license_text: ''
-./doc/posix-functions/sleep.texi: 
-  copyright: ''
-  hash: 4cee9d14a9da82cb86de0e74f1bf4ba2a685783e472474fcef506b8a3a209ff6
-  license: ''
-  license_text: ''
-./doc/posix-functions/snprintf.texi: 
-  copyright: ''
-  hash: 6c65c8fb2c2be3898412015204e121e2d318c68b72bb30da42e1e97638cfc92f
-  license: ''
-  license_text: ''
-./doc/posix-functions/sockatmark.texi: 
-  copyright: ''
-  hash: 920043e499988efb4a6ecd649dee0e51423706cdf1b627d287ee498e733a5e9d
-  license: ''
-  license_text: ''
-./doc/posix-functions/socket.texi: 
-  copyright: ''
-  hash: bb5c8946b1533c378b8b51008463815ff926bf3edc8d434945008788336605e6
-  license: ''
-  license_text: ''
-./doc/posix-functions/socketpair.texi: 
-  copyright: ''
-  hash: 770e250df219be1c39ad0bc54906007f1364594d855db008855fd5027ed6fd17
-  license: ''
-  license_text: ''
-./doc/posix-functions/sprintf.texi: 
-  copyright: ''
-  hash: adef99bf429ec5dc65bbb09f6b18391699c7c0b404cf95ba34bb4db35c474dc9
-  license: ''
-  license_text: ''
-./doc/posix-functions/sqrt.texi: 
-  copyright: ''
-  hash: 7bd904a48d9461c5ab7ec22f185475d3849dd2b798f72cb54986fec482103eec
-  license: ''
-  license_text: ''
-./doc/posix-functions/sqrtf.texi: 
-  copyright: ''
-  hash: 440a2d8390eee454a3f25219d743c8e847045e11fc366fcf2ab6272bff843532
-  license: ''
-  license_text: ''
-./doc/posix-functions/sqrtl.texi: 
-  copyright: ''
-  hash: 527035958e9ce2e375b8e03b8d1d37300c3da351d34b8c0eff9e1aba9b15ff54
-  license: ''
-  license_text: ''
-./doc/posix-functions/srand.texi: 
-  copyright: ''
-  hash: b21bd4917b432b6818ebe2f3cbadd1ecb2903b11d0158f2a2af18294b9026cc8
-  license: ''
-  license_text: ''
-./doc/posix-functions/srand48.texi: 
-  copyright: ''
-  hash: d80029584212c15658a5fd5e7e068068dfdf634b4f7e0411b2ef09a698ee7b3c
-  license: ''
-  license_text: ''
-./doc/posix-functions/srandom.texi: 
-  copyright: ''
-  hash: a10bfc704c425ab26485a296899f84e820bede1c112a19af796ee0bdce64d078
-  license: ''
-  license_text: ''
-./doc/posix-functions/sscanf.texi: 
-  copyright: ''
-  hash: 639cf4a9a282985958da828fe209b80969230cb51e066f6f4fdaf79063d373cc
-  license: ''
-  license_text: ''
-./doc/posix-functions/stat.texi: 
-  copyright: ''
-  hash: 8d8fe8d3a054025b09c15989283e7d4754db8266583f7eb712f079efc1893db4
-  license: ''
-  license_text: ''
-./doc/posix-functions/statvfs.texi: 
-  copyright: ''
-  hash: c157e04fe064fb845027f0118a7978e9efb42c003ebd892582269ef5f45d64e4
-  license: ''
-  license_text: ''
-./doc/posix-functions/stderr.texi: 
-  copyright: ''
-  hash: 7632aaef92a1ca4ce28394d00756b3e8919b15817cbf548d8402404408cce9e7
-  license: ''
-  license_text: ''
-./doc/posix-functions/stdin.texi: 
-  copyright: ''
-  hash: a2f171d9774add6803c2df2f4d78912d32460e395041035c75c15c3216501ae2
-  license: ''
-  license_text: ''
-./doc/posix-functions/stdout.texi: 
-  copyright: ''
-  hash: 1820d40f78e54bd1362377e4b2d5f8f9a9da71a37a5e7cb5888e97a455e2b8f9
-  license: ''
-  license_text: ''
-./doc/posix-functions/stpcpy.texi: 
-  copyright: ''
-  hash: ec7fba60db1ae08ec7e335c879369c5952909faa0b097d50f883bf4067adc92b
-  license: ''
-  license_text: ''
-./doc/posix-functions/stpncpy.texi: 
-  copyright: ''
-  hash: 594dc6a1a62217496f0a4a517ccb4d256911977cf21ad5649ae9ae2c5cb260ec
-  license: ''
-  license_text: ''
-./doc/posix-functions/strcasecmp.texi: 
-  copyright: ''
-  hash: 7f49d3eceda3f51eb6ede418807164200915a15c26aabee9e3c678f79455ccfc
-  license: ''
-  license_text: ''
-./doc/posix-functions/strcasecmp_l.texi: 
-  copyright: ''
-  hash: 2d4cf5c896e1982e35fb0a9e338fe2e67c0c87e9eac900de5045c1af7035bbb7
-  license: ''
-  license_text: ''
-./doc/posix-functions/strcat.texi: 
-  copyright: ''
-  hash: a0407da6c606d87607b8e64140519deb5030ee90004ac26fb72a067c9c0cfbd8
-  license: ''
-  license_text: ''
-./doc/posix-functions/strchr.texi: 
-  copyright: ''
-  hash: 91fade2e19fa83ad5590281a8e15b2056505d2812d8c5741760a5ad0dbea0bff
-  license: ''
-  license_text: ''
-./doc/posix-functions/strcmp.texi: 
-  copyright: ''
-  hash: 7fbbcf029f56138b09c72dda4b9ef0fecc39fbed9deff9b401c58a58d9a0666d
-  license: ''
-  license_text: ''
-./doc/posix-functions/strcoll.texi: 
-  copyright: ''
-  hash: ee188da4f400e65ed26ff9866ff2b8bc30f430eb0512b332087ea2c2cd7a5a7f
-  license: ''
-  license_text: ''
-./doc/posix-functions/strcoll_l.texi: 
-  copyright: ''
-  hash: edfafaa4cc6ba9b3a175802811fc246df5f91d0e63ab0790111490fde6c12719
-  license: ''
-  license_text: ''
-./doc/posix-functions/strcpy.texi: 
-  copyright: ''
-  hash: 2b0a1e8d63a747c6e10fdbdea6ebb0c24d6c6ca2a7c397a53b918eeb2ef6ff3d
-  license: ''
-  license_text: ''
-./doc/posix-functions/strcspn.texi: 
-  copyright: ''
-  hash: 94cc29735d1e83beac880fb97a531b0c6f2a2783f478fa86e97ed03beb2b9920
-  license: ''
-  license_text: ''
-./doc/posix-functions/strdup.texi: 
-  copyright: ''
-  hash: 045dfd18a8b270e77e36277809c55abff0128a0b9029d4decc6afaeed460a08b
-  license: ''
-  license_text: ''
-./doc/posix-functions/strerror.texi: 
-  copyright: ''
-  hash: b8b53ff22e7edfdd1ffa1e448407b39e80470f5bce87c775e406765a97263fe7
-  license: ''
-  license_text: ''
-./doc/posix-functions/strerror_l.texi: 
-  copyright: ''
-  hash: a02032d1af6e599476219e5ff404c30bede78cee58da6ccb0197d0c5e7d9c5a6
-  license: ''
-  license_text: ''
-./doc/posix-functions/strerror_r.texi: 
-  copyright: ''
-  hash: 62874d18f06f58af8ef7a84e900cbf6a0912c558dfd0a20144dc6cc45bfb2c48
-  license: ''
-  license_text: ''
-./doc/posix-functions/strfmon.texi: 
-  copyright: ''
-  hash: 9ee64b73d67aa190bec10ff662e522af5c95efa58b091cf0b6b95ab6dea7f54c
-  license: ''
-  license_text: ''
-./doc/posix-functions/strfmon_l.texi: 
-  copyright: ''
-  hash: 951fbe0fd04da1ac6ec3e5d5e9e25a1ffff8cfbe2af8461f983b46a8b8087809
-  license: ''
-  license_text: ''
-./doc/posix-functions/strftime.texi: 
-  copyright: ''
-  hash: 2179be9ea7f8728eb9666e1eaf244afabb1776e0aa5cfa301eb494dda908f72c
-  license: ''
-  license_text: ''
-./doc/posix-functions/strftime_l.texi: 
-  copyright: ''
-  hash: 2b951eeeafdb7d06f61bd455bfbe223cb6aa0dd8c6bbe1f207dd5d52d07b13a4
-  license: ''
-  license_text: ''
-./doc/posix-functions/strlen.texi: 
-  copyright: ''
-  hash: 9d334c502f628671c63c034801c7e852a2e7800124aa68628543bdb69ecc5684
-  license: ''
-  license_text: ''
-./doc/posix-functions/strncasecmp.texi: 
-  copyright: ''
-  hash: e5148eae134f9d79ab3966b17c5120ad16132967ed193205abdc9f704ab59d6c
-  license: ''
-  license_text: ''
-./doc/posix-functions/strncasecmp_l.texi: 
-  copyright: ''
-  hash: 3b874f7e054f2f3d2998d2cce8ffd7973b63dab2a40949e464bfd1d728459114
-  license: ''
-  license_text: ''
-./doc/posix-functions/strncat.texi: 
-  copyright: ''
-  hash: 654e14224e9e3ed7ebad2de0510dbed9efce12256abd7259258bec7ae5c780b0
-  license: ''
-  license_text: ''
-./doc/posix-functions/strncmp.texi: 
-  copyright: ''
-  hash: 2c3a13c7830cccc3f0be728c0540ddb7ff29f8351df316dfb24b4f1f921aea7b
-  license: ''
-  license_text: ''
-./doc/posix-functions/strncpy.texi: 
-  copyright: ''
-  hash: 4c05ddf672725788270b9d16711cdbddf4f81bbd16e806664314c222a0a8ecc0
-  license: ''
-  license_text: ''
-./doc/posix-functions/strndup.texi: 
-  copyright: ''
-  hash: ec1c126888ea4ef0b27a3f98df47b67a5ec5102a51b9885ba7336ee6784fc6b2
-  license: ''
-  license_text: ''
-./doc/posix-functions/strnlen.texi: 
-  copyright: ''
-  hash: 354bc895a0b87fd89bdd8ee323c4d2ec021252f194ef630ec03cc4d8a1fb7554
-  license: ''
-  license_text: ''
-./doc/posix-functions/strpbrk.texi: 
-  copyright: ''
-  hash: 9557cbb965eb68e1a8e3a75904d406cdac427d63f8d312e48f06b63112641189
-  license: ''
-  license_text: ''
-./doc/posix-functions/strptime.texi: 
-  copyright: ''
-  hash: ef3417cc5487eadb9fc54afbab9f4462fdae78770f52efe81eb8c9362b1a8e11
-  license: ''
-  license_text: ''
-./doc/posix-functions/strrchr.texi: 
-  copyright: ''
-  hash: a4a53fda2b5af669b4617b1bdbcafe0fe580a8fb9d5d8d9d5de32baedcd16e80
-  license: ''
-  license_text: ''
-./doc/posix-functions/strsignal.texi: 
-  copyright: ''
-  hash: 58c763d79113d00d2daf87b0ea1ca853653533082ecf927ef77d737ebb214c96
-  license: ''
-  license_text: ''
-./doc/posix-functions/strspn.texi: 
-  copyright: ''
-  hash: 47c5ad5b37dcc46737f8b28f1398366d4240315e8f53ece412d032dc9bc7b440
-  license: ''
-  license_text: ''
-./doc/posix-functions/strstr.texi: 
-  copyright: ''
-  hash: 51205fda2f8406dc3daf66d5ea624d5963fe65610dfab99e46a1785fca95ec46
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtod.texi: 
-  copyright: ''
-  hash: adba58dc750ac05f63ccdc0320c3ea4c0880205e3336a5666aa8cbdbc5fb5cf1
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtof.texi: 
-  copyright: ''
-  hash: f83812681f499b58973a270204a0b5d82f5efe872f0ddc2ffe61902c91845a14
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtoimax.texi: 
-  copyright: ''
-  hash: b479a9a1a65dddbcd340e536ac8bf12ab8474dec475b665594875c836c7b0c7b
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtok.texi: 
-  copyright: ''
-  hash: 76ae3da669ccced4bbe8c116203fe16def6351c6762a852bbf1a5f130e1b71aa
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtok_r.texi: 
-  copyright: ''
-  hash: 5532819e105838ee4483b268600ad0ab59dbff5a536f814ad80c711e8f0fdaac
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtol.texi: 
-  copyright: ''
-  hash: 478cd81757360e8ff9c6d66c0d859402961adac17a3166c02d8291432b546cc3
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtold.texi: 
-  copyright: ''
-  hash: cc0d00fe20a006116f837e389883fd2c3bedef7c16b2e55d8f379052aa8f33af
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtoll.texi: 
-  copyright: ''
-  hash: 3aa3df77f158c0f7cc3a99994f2281a6a5ba800aa43fcdbdbd265c4fb4bab884
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtoul.texi: 
-  copyright: ''
-  hash: fa2e866b9953be91e9970e632d9eb90cf63d61c43c2f431084379e169bd72bb1
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtoull.texi: 
-  copyright: ''
-  hash: 7672cc8ef139fb96545da9219cbb7e967b8365abd92d12f235ead6afddfdea98
-  license: ''
-  license_text: ''
-./doc/posix-functions/strtoumax.texi: 
-  copyright: ''
-  hash: 5d686d899707d3f7ed00e8545527d6cb3334bddbf769f422c9077c9c908c59f7
-  license: ''
-  license_text: ''
-./doc/posix-functions/strxfrm.texi: 
-  copyright: ''
-  hash: 38eb4167ca28913e09d1aa3cebce875f918b4004b3def72276795b854da15103
-  license: ''
-  license_text: ''
-./doc/posix-functions/strxfrm_l.texi: 
-  copyright: ''
-  hash: 5877b7bc3ae18925e11da5490d2bf91124f91afffa86d7adbc9daee59b9ce3b8
-  license: ''
-  license_text: ''
-./doc/posix-functions/swab.texi: 
-  copyright: ''
-  hash: 5f1b9e4cd038dfa4ba9b6cced84f7ca4a093bcc874734b7308a6c9f908e2a979
-  license: ''
-  license_text: ''
-./doc/posix-functions/swprintf.texi: 
-  copyright: ''
-  hash: 05d43b5965871120633aaa8e07db8b65e0b5c76f32a79209886f5cd9808d9574
-  license: ''
-  license_text: ''
-./doc/posix-functions/swscanf.texi: 
-  copyright: ''
-  hash: bdb33f918f65de4079d17d12db4ce89974b98874586b5239708ca87ea604bf47
-  license: ''
-  license_text: ''
-./doc/posix-functions/symlink.texi: 
-  copyright: ''
-  hash: 8ab46669c8aa3f1a94011e96ead35ad94b6b860acfdf93045e2f5fcb4abe68a5
-  license: ''
-  license_text: ''
-./doc/posix-functions/symlinkat.texi: 
-  copyright: ''
-  hash: 74823e16d2e2127a2cea8f8012bde6f13eb46e16b92b95378e44ff1ccdfbe489
-  license: ''
-  license_text: ''
-./doc/posix-functions/sync.texi: 
-  copyright: ''
-  hash: f3254dc3fe6e69ccec6ed1fabcc4a937b762d47399b42417b4602600f7a74e02
-  license: ''
-  license_text: ''
-./doc/posix-functions/sysconf.texi: 
-  copyright: ''
-  hash: 7fa91e5905cb666480886ed1fbfcc8bd6143aa15ad991c50e185713932e3954d
-  license: ''
-  license_text: ''
-./doc/posix-functions/syslog.texi: 
-  copyright: ''
-  hash: 3fa7a8bce58b4fc35d8de2b7f83302751a10774cd9c47317a649594a412d85a7
-  license: ''
-  license_text: ''
-./doc/posix-functions/system.texi: 
-  copyright: ''
-  hash: f2f18381b4fc011d3e3ff57014455b7ad72095ab5dfcd5110c38ad243b1a574a
-  license: ''
-  license_text: ''
-./doc/posix-functions/tan.texi: 
-  copyright: ''
-  hash: 2548baf13b89054a685577793dcb420503cb01784088d0b67f0b8d4ebef7619e
-  license: ''
-  license_text: ''
-./doc/posix-functions/tanf.texi: 
-  copyright: ''
-  hash: a1ccbad3ea8fc17a79b7965bd07071f3f7a644b3ac32045136f0e3d23ec6da47
-  license: ''
-  license_text: ''
-./doc/posix-functions/tanh.texi: 
-  copyright: ''
-  hash: 323d1753b2bff97aa6a4d046eb95e878347cfbcce6759c4063bcb2a2700fcac6
-  license: ''
-  license_text: ''
-./doc/posix-functions/tanhf.texi: 
-  copyright: ''
-  hash: 585f42d0c0f485ddd0481ca748825a4c1120748889c8bf8cfb92d8e2896045d0
-  license: ''
-  license_text: ''
-./doc/posix-functions/tanhl.texi: 
-  copyright: ''
-  hash: 78a63792dc3fb91f708b6fee2002e2f3cbfd37e4de31be1eb5788e483f6db288
-  license: ''
-  license_text: ''
-./doc/posix-functions/tanl.texi: 
-  copyright: ''
-  hash: 506a2a087c69a32413365c5cc59a894210da81f58ffa38d9342524d45ac84243
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcdrain.texi: 
-  copyright: ''
-  hash: db2ff21ff51f9c0ea21890eafa4e14d4cdcae60837f9aad0aac6d5ef96f769f5
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcflow.texi: 
-  copyright: ''
-  hash: 2cf29c5dda1ad174414674a2cf89d10e0da61f1bde45d97c7b529e04fcbc41bd
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcflush.texi: 
-  copyright: ''
-  hash: e8023b50addee8b28e96ff5b5fa800c3d112d7fe5954fd200142697499fe9a31
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcgetattr.texi: 
-  copyright: ''
-  hash: 4df9e953232c6815dc79daf79e34deec796ff7d1a571df03a7286e75ac5bf9f2
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcgetpgrp.texi: 
-  copyright: ''
-  hash: 929a9e3c434cd83961f1091fd879ec9319832d9a1dcc32cee93a0a2e113a1fd2
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcgetsid.texi: 
-  copyright: ''
-  hash: 51246de9b6b65dcd29ae45a202226470a5c414dd3d410f555ddd4843cd7f4300
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcsendbreak.texi: 
-  copyright: ''
-  hash: 75192304ee0383d9d9794c92e1a21890b0f0b483a5728e8c855fd8465e3e405f
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcsetattr.texi: 
-  copyright: ''
-  hash: 6cb8777002ba2e5fa4ee6b5b5b24bb8f26d030711132e546d4024dca56f3143c
-  license: ''
-  license_text: ''
-./doc/posix-functions/tcsetpgrp.texi: 
-  copyright: ''
-  hash: 5f5d907f551275116726385beb40b9a93cc627d3ec22cc80438ab198ef99b131
-  license: ''
-  license_text: ''
-./doc/posix-functions/tdelete.texi: 
-  copyright: ''
-  hash: 743411155abe9d4d6ea3db338cb01d5793ca8941833126cf12c40c7a1a62fba6
-  license: ''
-  license_text: ''
-./doc/posix-functions/telldir.texi: 
-  copyright: ''
-  hash: 11cc06c4ebed4b75dd250b1e0d7f6c484c5efd024f99cc72605dee3dd4e37289
-  license: ''
-  license_text: ''
-./doc/posix-functions/tempnam.texi: 
-  copyright: ''
-  hash: 5374a2d9bda620f20d7b0e7ff1338996187c94b68069775c6843bec9cbd83307
-  license: ''
-  license_text: ''
-./doc/posix-functions/tfind.texi: 
-  copyright: ''
-  hash: ae8afd2eeb59398111a80bc961cca20e8d133a9bb048511d1f4306337d1c6cb7
-  license: ''
-  license_text: ''
-./doc/posix-functions/tgamma.texi: 
-  copyright: ''
-  hash: 5ca38955dab4ce6bfd9f61431c2c951e0a15408d7badaeb3a6f04de57a479c8e
-  license: ''
-  license_text: ''
-./doc/posix-functions/tgammaf.texi: 
-  copyright: ''
-  hash: 99ee30fd4ccc81ec31d37b8c92e5f73f72aa25df0ecc6a890e333694d95aa450
-  license: ''
-  license_text: ''
-./doc/posix-functions/tgammal.texi: 
-  copyright: ''
-  hash: a34594b5d992fbd9d2ee3d630e41c30a2933670fc3c919693b58fe75eb281688
-  license: ''
-  license_text: ''
-./doc/posix-functions/time.texi: 
-  copyright: ''
-  hash: 16c2fb4377781ee1d83d384004670abaaa5b4340f5a5d3fa90b3a5e75a552f88
-  license: ''
-  license_text: ''
-./doc/posix-functions/timer_create.texi: 
-  copyright: ''
-  hash: a78b5d9fddb3b0e38eb12f1ad442e64b16db90732893875b4d6bae5341152518
-  license: ''
-  license_text: ''
-./doc/posix-functions/timer_delete.texi: 
-  copyright: ''
-  hash: 2c2e487fad74e481ec0ef80f805bc04993d69f6b50c2f97c3757b2b29573dc61
-  license: ''
-  license_text: ''
-./doc/posix-functions/timer_getoverrun.texi: 
-  copyright: ''
-  hash: 23232ec05fbd7834bad0c5dad506c88ebe2c884fd8c303b913f79ba31c76fc6f
-  license: ''
-  license_text: ''
-./doc/posix-functions/timer_gettime.texi: 
-  copyright: ''
-  hash: 7e92301a5ff64562c7cd009453b91b9be29abf75c1ef65daefc14ff865249300
-  license: ''
-  license_text: ''
-./doc/posix-functions/timer_settime.texi: 
-  copyright: ''
-  hash: 8bfaf4e88066cc93846df1a23d788fabf61c3be89fdd3195f934c2479e16123c
-  license: ''
-  license_text: ''
-./doc/posix-functions/times.texi: 
-  copyright: ''
-  hash: 4b480d61e6dcfe3f0b24cb82dc5d20be0bb6d167ec66c561c37255751821f969
-  license: ''
-  license_text: ''
-./doc/posix-functions/timezone.texi: 
-  copyright: ''
-  hash: b83ab677215817b1528836ef12de7773c8adbdbb48e495ef2c7a1ab5dd616c7b
-  license: ''
-  license_text: ''
-./doc/posix-functions/tmpfile.texi: 
-  copyright: ''
-  hash: edbab21902041e8d278c6745d0290e1659e7d0a29f3f0b6583bc7b860136e14a
-  license: ''
-  license_text: ''
-./doc/posix-functions/tmpnam.texi: 
-  copyright: ''
-  hash: 9f8cf065941f401bc1e26df99d907d69353ab52d98c46fc54127b405a144a3a9
-  license: ''
-  license_text: ''
-./doc/posix-functions/toascii.texi: 
-  copyright: ''
-  hash: a97da9d9fd148dad24bcad63d57d69efb5d18fb115eab3e85e04f1a5c4d51e4e
-  license: ''
-  license_text: ''
-./doc/posix-functions/tolower.texi: 
-  copyright: ''
-  hash: 196548b9522eb8b3c56f209a99d1e13daf87f5f7f2dcd8a1b88eaa49180bbce9
-  license: ''
-  license_text: ''
-./doc/posix-functions/tolower_l.texi: 
-  copyright: ''
-  hash: ea6dc968b7beb65776cd2184cf2b9b1504f25b58bbcb22ba1c8ae30e387cfe08
-  license: ''
-  license_text: ''
-./doc/posix-functions/toupper.texi: 
-  copyright: ''
-  hash: e2defa72d3095d58b3ba26fce4a0aa35b98f40a3f1e08be65e7490c9ed2dc142
-  license: ''
-  license_text: ''
-./doc/posix-functions/toupper_l.texi: 
-  copyright: ''
-  hash: 20eedfcf323d2479bb4dbbd241cc190f8ff601fe0516815011c12011b4574cbd
-  license: ''
-  license_text: ''
-./doc/posix-functions/towctrans.texi: 
-  copyright: ''
-  hash: 8a1e03793aab23ee1d7076c4d9319a4f1b361362e121fa37248bd3503d4a4665
-  license: ''
-  license_text: ''
-./doc/posix-functions/towctrans_l.texi: 
-  copyright: ''
-  hash: ce31c960b403299b70c3a391016c626884a941aa1cbfcce216840436bf7b7b37
-  license: ''
-  license_text: ''
-./doc/posix-functions/towlower.texi: 
-  copyright: ''
-  hash: edd5f5eb25dfcebf7dc296ba43b616d3b4002387d649c2abaa1a044b20643a8d
-  license: ''
-  license_text: ''
-./doc/posix-functions/towlower_l.texi: 
-  copyright: ''
-  hash: 0ba70fedd9ed1733360ed322e14367f432080bf314f87bc6e83649fc9f7e2326
-  license: ''
-  license_text: ''
-./doc/posix-functions/towupper.texi: 
-  copyright: ''
-  hash: f46446812e0e4d98a8fbf546a8bf40e189b7fab597162b8ada7ec247311c4fe3
-  license: ''
-  license_text: ''
-./doc/posix-functions/towupper_l.texi: 
-  copyright: ''
-  hash: 3a01be213186f9daf15f189b511d432b1929134741e4e08800b2394700cfe591
-  license: ''
-  license_text: ''
-./doc/posix-functions/trunc.texi: 
-  copyright: ''
-  hash: 2c7faf7f86690c2de6fef3d76f0688aad0b11e1eadce8e1ee31e3963ae357601
-  license: ''
-  license_text: ''
-./doc/posix-functions/truncate.texi: 
-  copyright: ''
-  hash: ad6988f2a3cf922df9d441be49aceaf0213a6ef329c5e192db4736ae321057a7
-  license: ''
-  license_text: ''
-./doc/posix-functions/truncf.texi: 
-  copyright: ''
-  hash: de12f43f978664b351f577e9a5daef41a3fc84222f4f5fc9262f8db26b0f3f25
-  license: ''
-  license_text: ''
-./doc/posix-functions/truncl.texi: 
-  copyright: ''
-  hash: d6a3a1679bb8e28f9a3a76b46add1afd31d4ca16e9ba4f3f695ae8d4e2393119
-  license: ''
-  license_text: ''
-./doc/posix-functions/tsearch.texi: 
-  copyright: ''
-  hash: f6916106a56867ee562714e2d11a56ee7e62ba2a5b044f890f5950fc751ff1ac
-  license: ''
-  license_text: ''
-./doc/posix-functions/ttyname.texi: 
-  copyright: ''
-  hash: 3a53e9dbfb459ef95a6ffd1bd907d0bcd515b0307761cacb5721be060046a0e8
-  license: ''
-  license_text: ''
-./doc/posix-functions/ttyname_r.texi: 
-  copyright: ''
-  hash: f6cbfb6ecafbe6dfdb5f40882b617419be277fa894414db40639a726aec47b7e
-  license: ''
-  license_text: ''
-./doc/posix-functions/twalk.texi: 
-  copyright: ''
-  hash: 90a77428e374001fd58a522352dbfa4286280c931b9524ea5a2723f8899129ef
-  license: ''
-  license_text: ''
-./doc/posix-functions/tzname.texi: 
-  copyright: ''
-  hash: 0441a989ad0b47a309a27221970489ae177f7356e8eb7363d67c878656b54452
-  license: ''
-  license_text: ''
-./doc/posix-functions/tzset.texi: 
-  copyright: ''
-  hash: 7231d68420d2e952b405f8b492d785b0bf45c997a872cf32b108435420f627ba
-  license: ''
-  license_text: ''
-./doc/posix-functions/ulimit.texi: 
-  copyright: ''
-  hash: 328ce2059c0079cf2abc56052da27d917f58ab3422f811cf714d9e423fd04c2a
-  license: ''
-  license_text: ''
-./doc/posix-functions/umask.texi: 
-  copyright: ''
-  hash: 8a2f402496200e1fc0c0fd2e0bccccf52b3dcaa6eddfbc48ae47d087deeeb0cf
-  license: ''
-  license_text: ''
-./doc/posix-functions/uname.texi: 
-  copyright: ''
-  hash: 6755bde328f8c8a2e26f8eab4760f1a7d572c5339449f2882fdad83f7ff92001
-  license: ''
-  license_text: ''
-./doc/posix-functions/ungetc.texi: 
-  copyright: ''
-  hash: 1c34639f7f967f2a66214ca4d0cecc7ff95302248f83b9a70f7e3c06e141669d
-  license: ''
-  license_text: ''
-./doc/posix-functions/ungetwc.texi: 
-  copyright: ''
-  hash: 0d06c6a96b420d7b9dccd98aabbd9baac8521acd967cae84e6022cdb8a31c2e2
-  license: ''
-  license_text: ''
-./doc/posix-functions/unlink.texi: 
-  copyright: ''
-  hash: 1958802de215f64594d391a7f9879329562d8ee7e6321902fc20d289e90a113a
-  license: ''
-  license_text: ''
-./doc/posix-functions/unlinkat.texi: 
-  copyright: ''
-  hash: 098fa59dd086b58401a4710af7fb3c3171a08c95cf2395f5307f02161cd88f5e
-  license: ''
-  license_text: ''
-./doc/posix-functions/unlockpt.texi: 
-  copyright: ''
-  hash: e50e8903ad77ab19f79c13a319ed068480f63ddd947f8dc15a13e534280ff990
-  license: ''
-  license_text: ''
-./doc/posix-functions/unsetenv.texi: 
-  copyright: ''
-  hash: 1541d212606cd33eb1679bcda974df45e99a82dfd665f7d33aac243662a838d7
-  license: ''
-  license_text: ''
-./doc/posix-functions/uselocale.texi: 
-  copyright: ''
-  hash: a1209e949b8c92d82a51dae8e2148b275f81c13b3dd348f543a0b62d47e94db2
-  license: ''
-  license_text: ''
-./doc/posix-functions/utime.texi: 
-  copyright: ''
-  hash: a24aa88412826d7b02bfe1f02fb6795c7b9a8a59b60ff0a975ec583740290792
-  license: ''
-  license_text: ''
-./doc/posix-functions/utimensat.texi: 
-  copyright: ''
-  hash: 173c9ec29703395497e840d32a3fa8155bc291e23d2efa0a7a54e4b42d86a219
-  license: ''
-  license_text: ''
-./doc/posix-functions/utimes.texi: 
-  copyright: ''
-  hash: 8d51beec714b4e3c4ad595e9be1b118696c5a12977fa12a42a629ad03f4669b1
-  license: ''
-  license_text: ''
-./doc/posix-functions/va_arg.texi: 
-  copyright: ''
-  hash: 2da6d5e606404f38325aec110f29032d73d826516de59cd65a1b0cc3e5ef1e9b
-  license: ''
-  license_text: ''
-./doc/posix-functions/va_copy.texi: 
-  copyright: ''
-  hash: 89c374aa138c4359ac2b7e0059a6884cc316ed6c9742a1889fcc910d71cfba01
-  license: ''
-  license_text: ''
-./doc/posix-functions/va_end.texi: 
-  copyright: ''
-  hash: 71e8d133b425de3bb999821a3f0e5b9939a9b340de8f85f096f86886c9d05d1b
-  license: ''
-  license_text: ''
-./doc/posix-functions/va_start.texi: 
-  copyright: ''
-  hash: 13ed783939fb33555b552e86b00411ec0032076a9d909a99b9812c75e0080654
-  license: ''
-  license_text: ''
-./doc/posix-functions/vdprintf.texi: 
-  copyright: ''
-  hash: 855f46947553e9d6e745ed76dd9fc96252202d5a7670d1f7edb31f897d59c866
-  license: ''
-  license_text: ''
-./doc/posix-functions/vfprintf.texi: 
-  copyright: ''
-  hash: ea7d201cdc68907be08bab243835a24441895b202d77e63b48559ddc9086c069
-  license: ''
-  license_text: ''
-./doc/posix-functions/vfscanf.texi: 
-  copyright: ''
-  hash: f0b4648d4126271ca14486c4fece1894aca7086f8db26508927cd4d246a2f77f
-  license: ''
-  license_text: ''
-./doc/posix-functions/vfwprintf.texi: 
-  copyright: ''
-  hash: 200c520c974f536a06bfb5ce702add69f502c35b3b57c25eac925fcde5db8f86
-  license: ''
-  license_text: ''
-./doc/posix-functions/vfwscanf.texi: 
-  copyright: ''
-  hash: 1468115a6058c2641c7ae1ca0a62944642b5841ba17513ad35c6c43fde79142e
-  license: ''
-  license_text: ''
-./doc/posix-functions/vprintf.texi: 
-  copyright: ''
-  hash: ee2fa0a176a8b7c847e9ec8b4a3bc56c77937cb49dc176fa078e41637967586d
-  license: ''
-  license_text: ''
-./doc/posix-functions/vscanf.texi: 
-  copyright: ''
-  hash: eca0bed937adee2b64abc9215eb27744f667f0d4eda4a232a7dad80995a36c1c
-  license: ''
-  license_text: ''
-./doc/posix-functions/vsnprintf.texi: 
-  copyright: ''
-  hash: 3e468e6f97b3571aee0963c7fc2871601b0e518e07a1df85fb873f8c25d6bcc2
-  license: ''
-  license_text: ''
-./doc/posix-functions/vsprintf.texi: 
-  copyright: ''
-  hash: 8a9b9edf7d98f987517cb3b7650a739a7d959ba37dfc9ead9527dc4f9257c2a0
-  license: ''
-  license_text: ''
-./doc/posix-functions/vsscanf.texi: 
-  copyright: ''
-  hash: a962e8a48ae62bf84f0ca9e7a5c3f1a5e9f96e855b3f79cff91032624d693a88
-  license: ''
-  license_text: ''
-./doc/posix-functions/vswprintf.texi: 
-  copyright: ''
-  hash: 705139250cb9f7e443a4dc17c4728cd63e8fd6e2c9414bca636536cda23fd758
-  license: ''
-  license_text: ''
-./doc/posix-functions/vswscanf.texi: 
-  copyright: ''
-  hash: e7a04f078ac79b1890e517f87e8d4694a6e45679b0fb48f236580d197a4e46ca
-  license: ''
-  license_text: ''
-./doc/posix-functions/vwprintf.texi: 
-  copyright: ''
-  hash: b72b770973a6ef5051e9ff66aa22bcbc8b58a2c6431543512147c1f22ff9c9a6
-  license: ''
-  license_text: ''
-./doc/posix-functions/vwscanf.texi: 
-  copyright: ''
-  hash: 923b5d92b22daf9ad2ccba87d91bfa15e157309420f4db651b8629ca43207c6d
-  license: ''
-  license_text: ''
-./doc/posix-functions/wait.texi: 
-  copyright: ''
-  hash: 7b072a3b82336d00ed25a885cbda48782e1b863c4c027836b77ce61763f3bcc5
-  license: ''
-  license_text: ''
-./doc/posix-functions/waitid.texi: 
-  copyright: ''
-  hash: f1062ba46c44cfd335b13fa64595732f330100537d8e9339af1abdd7571845d7
-  license: ''
-  license_text: ''
-./doc/posix-functions/waitpid.texi: 
-  copyright: ''
-  hash: 5676832d45eb43ebf1c1aea887bc4c019db4810fbbb16cce5cdc283748655ac9
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcpcpy.texi: 
-  copyright: ''
-  hash: adbf37b23fbedfbd3bef3f5c4c0088880a853cfbad97f9a7c943fef6cb366636
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcpncpy.texi: 
-  copyright: ''
-  hash: 89c94c9fc1d0bd17f9cdd12a4dc7fc1d510297fd642acbb2ea6f35e3e97c1572
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcrtomb.texi: 
-  copyright: ''
-  hash: 20040edab7d3f5b765282992f971d3c8adc2532ca47ffba40dbb3791f4a66dc0
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcscasecmp.texi: 
-  copyright: ''
-  hash: 66134fa29f6569f7caaa554bd0513520f1e5319669215d2b3edb1b5732391db9
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcscasecmp_l.texi: 
-  copyright: ''
-  hash: 92ad8bd9e265fce46bc834d14274050bb01214d2391ccdc3caf5d1961f54f444
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcscat.texi: 
-  copyright: ''
-  hash: fdccf8e9cbeccb400ec7d5a4539b3af4454602490af20dea7751c2dab2555a34
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcschr.texi: 
-  copyright: ''
-  hash: 23b351cedf83b8a8765000a2d21512ec922f12e2240a530bc21f41813933e27b
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcscmp.texi: 
-  copyright: ''
-  hash: 71ddccea8ca18d3fd9f2ae85027f8b97cf654fa0316334a151d284aeb63f2666
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcscoll.texi: 
-  copyright: ''
-  hash: aad7c92bbfe1458195cba400ceeedc2f972b53cc82943bb8d33389ebac5806cb
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcscoll_l.texi: 
-  copyright: ''
-  hash: 5586b954da59befd5f0ebe05d67197dae1dba49e676f9ce27dd5fbc99ca1ad34
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcscpy.texi: 
-  copyright: ''
-  hash: 8304e8f34e5dfb5355ee75b71b3d43120a60e068eb1ec43897ceb9a0256740a7
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcscspn.texi: 
-  copyright: ''
-  hash: 5ffbf9e0f0e2c1fc7d927eb8fd22d924e8d80327a3f0eb7fc61b3ab2d49b0cb7
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsdup.texi: 
-  copyright: ''
-  hash: 1e78bf9c90542816d00bba60747a68e20620b86c752a95623727f40ab7a51668
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsftime.texi: 
-  copyright: ''
-  hash: 0fd19a9a4993f2b17716c4eac56ccb29a09cdb415a4a84ca0923b41c94d020fc
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcslen.texi: 
-  copyright: ''
-  hash: e16a5c07a3374522e6426a1cc7e2905cb38bd08c629f2bc0d8edcda65b931dc2
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsncasecmp.texi: 
-  copyright: ''
-  hash: 5e9069b6210dd425da54820a9ac0d1e48fc54777a9053a5fbdf09a0ae91c47b9
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsncasecmp_l.texi: 
-  copyright: ''
-  hash: 623af56af0d98ff81b22a7026dc47dfb9c7c956abcfcf65b79de181098eb5cd9
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsncat.texi: 
-  copyright: ''
-  hash: 025d8c6060e4cf49fbb4d9773fea8a45f0cb32c6ac60d7cd5cf5c593de8a3098
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsncmp.texi: 
-  copyright: ''
-  hash: b2a701a27ef1cd29151fdd7695d90734d9c3263f9c90979e8139694b42f3cca0
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsncpy.texi: 
-  copyright: ''
-  hash: 680c88556c2891e79ba30e5426925cdf6237497b1db6cd6928f9db38175a4a73
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsnlen.texi: 
-  copyright: ''
-  hash: c88fc97c86b35cbaaafc72677673750e51c18d4839a2282280f51f3a7c94f29f
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsnrtombs.texi: 
-  copyright: ''
-  hash: 38e32313de6075fb014a419f95846e08fe3b6ef0232e974dda96524b9a58ce95
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcspbrk.texi: 
-  copyright: ''
-  hash: b7e3aae920e207a4ffa9c2d58154db777dab5c03956c90676b7f830dd32b1b9c
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsrchr.texi: 
-  copyright: ''
-  hash: 4827a5725f798d8548c1dc931b4c9ba1cdf0c28742d7023b2fd5648db4f166af
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsrtombs.texi: 
-  copyright: ''
-  hash: 20549abaf5995e8fc9e206506df36fa821bd6111c06f81f5643fbb9556b833e2
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsspn.texi: 
-  copyright: ''
-  hash: 9830a44067be9bad8959677dbe641b591b2b3af00a0615925af0d6d559879a34
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsstr.texi: 
-  copyright: ''
-  hash: d40e47110c8a0582ea5f8a83b11a33c806f3aa455de094b23a17e91b3363ebf0
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstod.texi: 
-  copyright: ''
-  hash: 842e8b42f92fd1208caa5feafd8ba211e1f8f809df69858f908c70071e535a8f
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstof.texi: 
-  copyright: ''
-  hash: 26784e4f1151882911d064b9fb4dd362386ae570fcba9ad669e3db39b5b8f189
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstoimax.texi: 
-  copyright: ''
-  hash: 6eea93e73c4f3194727b65b2224f65b4f2877fa01a29c2944b8199698cdfea74
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstok.texi: 
-  copyright: ''
-  hash: 557d0180fe43d4074b887b380e8dfe206bb8618788157779751fd3c3771a371e
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstol.texi: 
-  copyright: ''
-  hash: c5b9451a8dbe0bc8c7a11b2ca01b2900c65ca297d593f90d7c575237b9da6093
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstold.texi: 
-  copyright: ''
-  hash: 2c506830e10b71cbd323b5fbe08af43575e2d3f4551b080a61a87b6db385f690
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstoll.texi: 
-  copyright: ''
-  hash: a7464fcc6fe1de31cdd9f9ce1603fcc1f573603ea086e0eba7d70e59d86a77e0
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstombs.texi: 
-  copyright: ''
-  hash: 60461f3cad84dd817af8c419fd7b6bbd16d55c9f50e1e9d5736ed893fa558782
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstoul.texi: 
-  copyright: ''
-  hash: ea33073e6a7d43480d7024db4c22205b35d28c07f51b5b7bd7ae008c264ea608
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstoull.texi: 
-  copyright: ''
-  hash: 9cb3f44e0ecec8fcea7543b5267aa6e0c308d6cfad5d40e00fbb9e2bde0282cd
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcstoumax.texi: 
-  copyright: ''
-  hash: b565c0f20f9d2fb4e4cfb2fd9d0287cf65ea32a8914754d89b1b1084952f6dd1
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcswidth.texi: 
-  copyright: ''
-  hash: 896decdcde4828a47aa820a0fcb87b34d2c259ff5f12bfbbd366dc21f062ca2d
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsxfrm.texi: 
-  copyright: ''
-  hash: a225016ded36398af868e7a7eec2100ec87aa24295fe1b89569cef92ece2b497
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcsxfrm_l.texi: 
-  copyright: ''
-  hash: 79db8278300b2e6d0cd705e56a80b189b6cd6fefd07141570ad020c6b58ade06
-  license: ''
-  license_text: ''
-./doc/posix-functions/wctob.texi: 
-  copyright: ''
-  hash: a328a016c849d39aecc034af1289545c879261dd4d1c0397c13bc897fc1ba248
-  license: ''
-  license_text: ''
-./doc/posix-functions/wctomb.texi: 
-  copyright: ''
-  hash: 271fa327aba8172c6ff974324015b11eb97e362d59a82b5f708cf40f31a0ad77
-  license: ''
-  license_text: ''
-./doc/posix-functions/wctrans.texi: 
-  copyright: ''
-  hash: 777b5cc1977d214324ba2a17afb9e29ac1f236adb3d8d8d17105305d0b8d7428
-  license: ''
-  license_text: ''
-./doc/posix-functions/wctrans_l.texi: 
-  copyright: ''
-  hash: 542a8806218cda3159f88863801a4c1411528a8d93987683fcdbf4feccc4f334
-  license: ''
-  license_text: ''
-./doc/posix-functions/wctype.texi: 
-  copyright: ''
-  hash: 2774f59844136310c38578106f1ae858d399cea66f4120c2d61347d88187bea9
-  license: ''
-  license_text: ''
-./doc/posix-functions/wctype_l.texi: 
-  copyright: ''
-  hash: 33c31ade64fdf052f408f9cf8d3fe1537a19181f94ba7c7664bb3e3950f3258b
-  license: ''
-  license_text: ''
-./doc/posix-functions/wcwidth.texi: 
-  copyright: ''
-  hash: d006f3954b9dbe5f0f62725919a8f69247ee7b5d59027c6100ccdaa54b067c28
-  license: ''
-  license_text: ''
-./doc/posix-functions/wmemchr.texi: 
-  copyright: ''
-  hash: 0e16deaafb7a56b294ef7beac0845e67c88466e988628403b6ae76191929896f
-  license: ''
-  license_text: ''
-./doc/posix-functions/wmemcmp.texi: 
-  copyright: ''
-  hash: 7ef06384b1bd437f31fc61be3c8ca6f2cd44db4665392435161774ecebfe8cc2
-  license: ''
-  license_text: ''
-./doc/posix-functions/wmemcpy.texi: 
-  copyright: ''
-  hash: 371919a935508d67b755bcafdd62402723141e2fc181b84d0af55c3283d70566
-  license: ''
-  license_text: ''
-./doc/posix-functions/wmemmove.texi: 
-  copyright: ''
-  hash: c60c122626faea9445a6d85c423bd3943f18d9290dd31f23fb364dcb4a152a37
-  license: ''
-  license_text: ''
-./doc/posix-functions/wmemset.texi: 
-  copyright: ''
-  hash: 5926f9711c9be1d1a12776c1d5450ba89a635c7e8b333ba5ad91b9f3bc8cd935
-  license: ''
-  license_text: ''
-./doc/posix-functions/wordexp.texi: 
-  copyright: ''
-  hash: d8cf559a0d704061199c24c113cba50f0548d1daaff98b347fae58eeb7c4ad93
-  license: ''
-  license_text: ''
-./doc/posix-functions/wordfree.texi: 
-  copyright: ''
-  hash: f880186c7147a2fa91a929968c6a8d244d03f025699248b285ee838869ae12c4
-  license: ''
-  license_text: ''
-./doc/posix-functions/wprintf.texi: 
-  copyright: ''
-  hash: ee3d50061cb4af26c4e9465ec1754b86d3e04370f066ba326a62dd3010bd2d98
-  license: ''
-  license_text: ''
-./doc/posix-functions/write.texi: 
-  copyright: ''
-  hash: fd88455aac642a64b0861cd64659fe85a1ebd5e22959b03c07e1f66d655d2924
-  license: ''
-  license_text: ''
-./doc/posix-functions/writev.texi: 
-  copyright: ''
-  hash: f1a345feaf1b45dfce39b4541f67387416d39596695dfbe3591fb464ea2a7730
-  license: ''
-  license_text: ''
-./doc/posix-functions/wscanf.texi: 
-  copyright: ''
-  hash: ae71fd02dddd945d442c5db2676638828bfa5cbbab67e09eb6db357b58bd121f
-  license: ''
-  license_text: ''
-./doc/posix-functions/y0.texi: 
-  copyright: ''
-  hash: 101d5a5de97702c6a595b520995e10c8a5d87321309e9754faf260dc9b0dfe76
-  license: ''
-  license_text: ''
-./doc/posix-functions/y1.texi: 
-  copyright: ''
-  hash: de9c81ff2036effeba44607d218f61f4d1de6705ea1d44518df8f9a059045317
-  license: ''
-  license_text: ''
-./doc/posix-functions/yn.texi: 
-  copyright: ''
-  hash: ae6fd587065d1cfd4705b711d50b84951ad55d885acebe2da13ec077928f4c38
-  license: ''
-  license_text: ''
-./doc/posix-headers/aio.texi: 
-  copyright: ''
-  hash: b5feffffede6b90b47f211b2664652c4c6c256ce00066d8a019328535a217723
-  license: ''
-  license_text: ''
-./doc/posix-headers/arpa_inet.texi: 
-  copyright: ''
-  hash: ff625ebdd28615e9101d9db60bb98cc044314373a15ccd3f277781dcd9e47d6b
-  license: ''
-  license_text: ''
-./doc/posix-headers/assert.texi: 
-  copyright: ''
-  hash: f5dd70d9b33819f71ef223c8e8178c1f74c0844199442db3f1dc94fca17fd0c7
-  license: ''
-  license_text: ''
-./doc/posix-headers/complex.texi: 
-  copyright: ''
-  hash: 52bf5734bb5d06958672f56209d843d575a9159d0a403da67ea90323dc6e7a80
-  license: ''
-  license_text: ''
-./doc/posix-headers/cpio.texi: 
-  copyright: ''
-  hash: 4f3f64a0fee70498e119df8ea2b685d226a566fea46235d4f7ed474d78762abb
-  license: ''
-  license_text: ''
-./doc/posix-headers/ctype.texi: 
-  copyright: ''
-  hash: 2261b16ead35a385ba1290e174b81a5cdb6f21a6c43ca0d746830f02b6e75c8a
-  license: ''
-  license_text: ''
-./doc/posix-headers/dirent.texi: 
-  copyright: ''
-  hash: ae0c082fd86691f88441a0e699f09ecd8d56497a9d00c095f604702f69dd38b1
-  license: ''
-  license_text: ''
-./doc/posix-headers/dlfcn.texi: 
-  copyright: ''
-  hash: 7773db810790b9370b355e02d7fe355e0ff29986c349754aeae818578a77ca53
-  license: ''
-  license_text: ''
-./doc/posix-headers/errno.texi: 
-  copyright: ''
-  hash: e845a33891fb534504b0b538e7d614b4ba914cd3172289569843740bd7875ef8
-  license: ''
-  license_text: ''
-./doc/posix-headers/fcntl.texi: 
-  copyright: ''
-  hash: 9e1afcf5976af7bcc27cfa70afb8b20678e579392a2da17a15d5438d320af442
-  license: ''
-  license_text: ''
-./doc/posix-headers/fenv.texi: 
-  copyright: ''
-  hash: b84959cdb9de245d1918278e4308945ba58a8b530782338c4051c473614d81ef
-  license: ''
-  license_text: ''
-./doc/posix-headers/float.texi: 
-  copyright: ''
-  hash: bb06dd01d519ce57e4003bee2a6144e940f92705ccb07ddc48bac06e65e10d46
-  license: ''
-  license_text: ''
-./doc/posix-headers/fmtmsg.texi: 
-  copyright: ''
-  hash: c8d59077dd6ed5e479e80e667a322a69acdbe1d2c1bfa3477d800bc8f0dd83de
-  license: ''
-  license_text: ''
-./doc/posix-headers/fnmatch.texi: 
-  copyright: ''
-  hash: 8327e6d21c05ab578dc51d533e5fc009683e8ed5a66573d6e0c02c7daf46d516
-  license: ''
-  license_text: ''
-./doc/posix-headers/ftw.texi: 
-  copyright: ''
-  hash: b57fdf7c8aed07040361be0defb098f165954dbb516d650fe90cf30f503b9a25
-  license: ''
-  license_text: ''
-./doc/posix-headers/glob.texi: 
-  copyright: ''
-  hash: 93a0a84bb15d874aa8d300eff27f3b095d0865ce4ddbfb6da8df24b0fd884e82
-  license: ''
-  license_text: ''
-./doc/posix-headers/google-ranking.txt: 
-  copyright: ''
-  hash: 36d854034f1dcae0198af5e680acf7f643d6d4b9147571c430f0c755d007f46f
-  license: ''
-  license_text: ''
-./doc/posix-headers/grp.texi: 
-  copyright: ''
-  hash: e6a25df21268de19163d73313b9939f6da2173ed7200c4bbaf09ae3dc0c6b235
-  license: ''
-  license_text: ''
-./doc/posix-headers/iconv.texi: 
-  copyright: ''
-  hash: c55452ea875d46c50e54baea90b4886d24d2dd6a082a16ea14aa6d54f0e95f0f
-  license: ''
-  license_text: ''
-./doc/posix-headers/inttypes.texi: 
-  copyright: ''
-  hash: 4da04e950bd05c7c376371e68dd6cf709ebb220a80eaa28707cf8893d276f780
-  license: ''
-  license_text: ''
-./doc/posix-headers/iso646.texi: 
-  copyright: ''
-  hash: 9e67ac3c5beac4ffd5e496de5a3637d5ee7e8200a5a79afbf069e97151e1af29
-  license: ''
-  license_text: ''
-./doc/posix-headers/langinfo.texi: 
-  copyright: ''
-  hash: 779a37fb6afdfe4894daba2a8d910718aec86f46348d6dec2614db4cd0ca7476
-  license: ''
-  license_text: ''
-./doc/posix-headers/libgen.texi: 
-  copyright: ''
-  hash: 85d49c38bf9a2370252f10d007ff8458b6f69b38de05edfb0e12dc7d45de2487
-  license: ''
-  license_text: ''
-./doc/posix-headers/limits.texi: 
-  copyright: ''
-  hash: e634ce8670c851c54ad83b550cdb854c9d08bcbc9777c01c61e521974df770e8
-  license: ''
-  license_text: ''
-./doc/posix-headers/locale.texi: 
-  copyright: ''
-  hash: baee6e53c2544b87f7bfcabea0e3afc907ae0354856fc3ccda8776ec61ce2580
-  license: ''
-  license_text: ''
-./doc/posix-headers/math.texi: 
-  copyright: ''
-  hash: 3ea2c31002adb9a489426663a739c78120fbc5bf8c853b45679fe7d336a12977
-  license: ''
-  license_text: ''
-./doc/posix-headers/monetary.texi: 
-  copyright: ''
-  hash: a34c02edb7baef72752df520a8004292a877a4149eea0e6714305c5d497ea42a
-  license: ''
-  license_text: ''
-./doc/posix-headers/mqueue.texi: 
-  copyright: ''
-  hash: 9e26ec683c374aedfac424770de10bffb88d1fc1e35343906dd4971c3745b380
-  license: ''
-  license_text: ''
-./doc/posix-headers/ndbm.texi: 
-  copyright: ''
-  hash: 7c094880e953813e313ccc986d896808eec19926093dde5b77d0543593225871
-  license: ''
-  license_text: ''
-./doc/posix-headers/net_if.texi: 
-  copyright: ''
-  hash: 9d3f40aa662eebd30b64649ee11e1312f03d64ca3f113074154344985421b22f
-  license: ''
-  license_text: ''
-./doc/posix-headers/netdb.texi: 
-  copyright: ''
-  hash: 81efac0cde64e7933c49ca6ba20888bcc1e4d14e39943f3e514dfa6d33bbd1e0
-  license: ''
-  license_text: ''
-./doc/posix-headers/netinet_in.texi: 
-  copyright: ''
-  hash: e542809271aa2cd707d4719a1f8f8d7cbf8226bb1dfb72838ce89a452f2245ac
-  license: ''
-  license_text: ''
-./doc/posix-headers/netinet_tcp.texi: 
-  copyright: ''
-  hash: 23509502b23ef5cd9c39b8b860bfcbb7f18954a73524fcbe1e2f042b359a4d59
-  license: ''
-  license_text: ''
-./doc/posix-headers/nl_types.texi: 
-  copyright: ''
-  hash: eb08f2ce3f333f7bff7d2153a728b0acf4c4b28b52cef6ca33a13e76f65b5590
-  license: ''
-  license_text: ''
-./doc/posix-headers/poll.texi: 
-  copyright: ''
-  hash: ec7ca96e1a5c5ef8c863895984b85ecc85f6746c9c36a183628c9caa38b7cfd4
-  license: ''
-  license_text: ''
-./doc/posix-headers/pthread.texi: 
-  copyright: ''
-  hash: a5be7cd565626355b119c3b1e61b4f6ed8f98e31dda19ee0b4b93dc62385f1f5
-  license: ''
-  license_text: ''
-./doc/posix-headers/pwd.texi: 
-  copyright: ''
-  hash: d470a92661247c63368bbd26dc5049ffd6e0c107b2a613ac524295009eef284d
-  license: ''
-  license_text: ''
-./doc/posix-headers/regex.texi: 
-  copyright: ''
-  hash: b016c9a3b15736ba0b5699d0161a0f323aacab56bb4360ee7a9991d6a9f8f29c
-  license: ''
-  license_text: ''
-./doc/posix-headers/sched.texi: 
-  copyright: ''
-  hash: 8d21cf78b24cdf8383d5c5e1abde4f12e080f061aaa86706189afdb9471b492a
-  license: ''
-  license_text: ''
-./doc/posix-headers/search.texi: 
-  copyright: ''
-  hash: 4964471e3637333930dc8a6852075de64051c2a5d24d0c36cc52b0af772e0968
-  license: ''
-  license_text: ''
-./doc/posix-headers/semaphore.texi: 
-  copyright: ''
-  hash: 46f4edae0baf6b13b4db3f0de34e44d78f0580050e9053080262852035d475e4
-  license: ''
-  license_text: ''
-./doc/posix-headers/setjmp.texi: 
-  copyright: ''
-  hash: 57c43ae545a375c5a52a670a2bfd301f686d1c93025d59c6ac73c93e3e940fa4
-  license: ''
-  license_text: ''
-./doc/posix-headers/signal.texi: 
-  copyright: ''
-  hash: 62595715b74ae647915d4afa4fb949307b061f6c95b3ed52ee4522b67a94d7be
-  license: ''
-  license_text: ''
-./doc/posix-headers/spawn.texi: 
-  copyright: ''
-  hash: 035868e3075dfb31415e3611932d366e4cd17c744caf3973f3c2ce700041c92d
-  license: ''
-  license_text: ''
-./doc/posix-headers/stdarg.texi: 
-  copyright: ''
-  hash: 76bfda1aa2271dc3a394ffa60a359ab70eaee46995d95df2e459724a4f77b800
-  license: ''
-  license_text: ''
-./doc/posix-headers/stdbool.texi: 
-  copyright: ''
-  hash: 125bb0ccd0983b885486dcaebf4ddce35dad39e11a1a60c943646ae6a9361866
-  license: ''
-  license_text: ''
-./doc/posix-headers/stddef.texi: 
-  copyright: ''
-  hash: 997124bfc90ae125326493c1a5c47f183bb74423ce01fcf55f1601f534dd4617
-  license: ''
-  license_text: ''
-./doc/posix-headers/stdint.texi: 
-  copyright: ''
-  hash: cceffcda2dd894a5e695d4e67857815bade971288c965c84717203bef3c950cd
-  license: ''
-  license_text: ''
-./doc/posix-headers/stdio.texi: 
-  copyright: ''
-  hash: 0a4463d4d6a612e66896c384608312ebda0d44e646b2a9130cd7e17fc222c313
-  license: ''
-  license_text: ''
-./doc/posix-headers/stdlib.texi: 
-  copyright: ''
-  hash: 8ec58fc5ab8a7dab2c799d972b003a16eaa9ce993ade7447eb799b5495c106cd
-  license: ''
-  license_text: ''
-./doc/posix-headers/string.texi: 
-  copyright: ''
-  hash: 1e05fd8054a02aa18813a2afaedb80d990ab2762b21331032d6643a5d2bbc6ea
-  license: ''
-  license_text: ''
-./doc/posix-headers/strings.texi: 
-  copyright: ''
-  hash: c36bb3c4fd013835f3f170695cb65bdf9d9941a6a7c8a1ea473deb6c6304c3ea
-  license: ''
-  license_text: ''
-./doc/posix-headers/stropts.texi: 
-  copyright: ''
-  hash: 10ce7f6bd56eb5c087bfc1445d5d7d6c1a3a3ab49a46f6f5536f9abf99d0ea5f
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_ipc.texi: 
-  copyright: ''
-  hash: 987709fd9b281e1c72ecddc44b2260deaf8643078f674f0b8184e910c3ca940a
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_mman.texi: 
-  copyright: ''
-  hash: 19b6d15cb1e745b8e5b181dfb3cc8d33c73ef5963de3d9edce93f850082ade3e
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_msg.texi: 
-  copyright: ''
-  hash: 3cf9367fe2756d8bbf6a523719715cc088118e49d2c040a4ea03dffe9a7f05e1
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_resource.texi: 
-  copyright: ''
-  hash: 53065ace2cd2231da57a4083773882092b6706781e9d6613dc3f139612645100
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_select.texi: 
-  copyright: ''
-  hash: f1a346ce9d9da46a8ac1f06b73c709f9d438ecb6dbf91d537d3628cf1d1ffdea
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_sem.texi: 
-  copyright: ''
-  hash: 8c8f9fe68b61ca3c2d0075ac577c1541e33cc7e42e088659651cc7aa5a43f384
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_shm.texi: 
-  copyright: ''
-  hash: 7bcaeeb0859bf5db9953896a7dafdfb71b7dd1c278eab4da77097f2f1eba2850
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_socket.texi: 
-  copyright: ''
-  hash: ad3994d837d6fbde926d68dbd51a4ee1e670df6a7ce683df8f1afcd8f26b9b4b
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_stat.texi: 
-  copyright: ''
-  hash: 60dae061a3c75ef68ebb90a832c8d4fa057e5819930adbb7aaec240da84acb59
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_statvfs.texi: 
-  copyright: ''
-  hash: 384c0ac41e3f35d7e1ef9ebe2102866be29bb1d1881ee4f95226d7fd225365ef
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_time.texi: 
-  copyright: ''
-  hash: 195cc421036aa90abc0bc0c8e8c5727e61ecf1865acb542bdc289c5010dae9c6
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_timeb.texi: 
-  copyright: ''
-  hash: f6dbc92a61228daf56911be1d37146ecacd4df82501bead2009dd5f34f9e7488
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_times.texi: 
-  copyright: ''
-  hash: facec7ecb6acfc5ee08859c13f611d7009bf66d95b8f460cff2b71e52d315b77
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_types.texi: 
-  copyright: ''
-  hash: 2d7a9db00a00c36d5e166bbf043eb9069b477d61a170213f082f756088c8e4c2
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_uio.texi: 
-  copyright: ''
-  hash: a3f6385a4227f285dc37fb9ff1db96aa384fbff8a392a2d640bf005f152df908
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_un.texi: 
-  copyright: ''
-  hash: a27feb6784f4c51abd27d5667f986f4110373fe629966424d405c5a840342cee
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_utsname.texi: 
-  copyright: ''
-  hash: efbe687e091876e6c676db5a9533062a85adf3009dbf550c52a4d71a69989fb0
-  license: ''
-  license_text: ''
-./doc/posix-headers/sys_wait.texi: 
-  copyright: ''
-  hash: 44aee91fd4c85b72a8c966954ba061b965aaac1482f69a98aa61089579ff1bc5
-  license: ''
-  license_text: ''
-./doc/posix-headers/syslog.texi: 
-  copyright: ''
-  hash: 28ddc4c29384e0d9f34b7aa9cd25745fcaa0985a112d645b84a4f450cc484775
-  license: ''
-  license_text: ''
-./doc/posix-headers/tar.texi: 
-  copyright: ''
-  hash: cd109697e8a666ccea3d2f6b9996b60c898cf4c21568a8ef35a2cb8142f026bc
-  license: ''
-  license_text: ''
-./doc/posix-headers/termios.texi: 
-  copyright: ''
-  hash: 54b678c554704bf0a1177cbcf6d2db98edbe298e1bcfb6d7d820d268620cc09a
-  license: ''
-  license_text: ''
-./doc/posix-headers/tgmath.texi: 
-  copyright: ''
-  hash: 4eb1d7fef4d580e91df7a35edfa926ffd821f8636083b87b8a99413caecbaf13
-  license: ''
-  license_text: ''
-./doc/posix-headers/time.texi: 
-  copyright: ''
-  hash: 83887ff1ac780b4b176ca9e9a2836a3d28f0793b67904c221acf46cfc4252de3
-  license: ''
-  license_text: ''
-./doc/posix-headers/trace.texi: 
-  copyright: ''
-  hash: d7736e6e0e1a98fcc3b9870300fc691ed4c2fbfaf424f08eda8a19fab101bf66
-  license: ''
-  license_text: ''
-./doc/posix-headers/ucontext.texi: 
-  copyright: ''
-  hash: 2975ec1d3f351969dcc37b7d72d6c691a3136116a08ba38bb94723f101f3b069
-  license: ''
-  license_text: ''
-./doc/posix-headers/ulimit.texi: 
-  copyright: ''
-  hash: 641e0cae8c99f664100b54a41e03e453846ecc8fc889f91a93239c355e8c1ed2
-  license: ''
-  license_text: ''
-./doc/posix-headers/unistd.texi: 
-  copyright: ''
-  hash: 1e47066520002dbb14539e81acb50184d273f51d047815d246ba2e0a284d8ce5
-  license: ''
-  license_text: ''
-./doc/posix-headers/utime.texi: 
-  copyright: ''
-  hash: 0a7e8d03567fb3f77e998cf10c309e06154b4cf560909dfe3640b3ccc20f94ee
-  license: ''
-  license_text: ''
-./doc/posix-headers/utmpx.texi: 
-  copyright: ''
-  hash: 58a3f69e19d495d7189394ede301568c15bc5ee82908884671156bc5c4f1b052
-  license: ''
-  license_text: ''
-./doc/posix-headers/wchar.texi: 
-  copyright: ''
-  hash: c9e0acf5b953cdbb5d2a816fb831f55f3e2ab2b85b3793c61f6114b530134e7e
-  license: ''
-  license_text: ''
-./doc/posix-headers/wctype.texi: 
-  copyright: ''
-  hash: c5994d40b69ca8ae0d1bc6c2251fb7cb3b7ec5f64f7bef24fd40ee364b7cab9e
-  license: ''
-  license_text: ''
-./doc/posix-headers/wordexp.texi: 
-  copyright: ''
-  hash: 7027331cb789ce356e7d3e2b2313dd9b791f9b96444503905a2657230522a331
-  license: ''
-  license_text: ''
-./doc/quote.texi: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 9cc2b24f70ec69e8dbc53ef7d8100f87dbcf6e4f207d834ce82c872fbeed98bf
-  license: ''
-  license_text: ''
-./doc/regexprops-generic.texi: 
-  copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
-  hash: 953ea60aeff18a45851d07c4fd84c6d47156d1cb6056d2808293b45b3663d4c4
-  license: ''
-  license_text: ''
-./doc/relocatable-maint.texi: 
-  copyright: ''
-  hash: 1c95896b667fba221783ec193abf89b00a652dec4c76b849a14b605ed0c5abc3
-  license: ''
-  license_text: ''
-./doc/relocatable.texi: 
-  copyright: ''
-  hash: cb899ceab0383cc484f3b15b049b8386a304eb4b3680a196f042fcc2bea03139
-  license: ''
-  license_text: ''
-./doc/safe-alloc.texi: 
-  copyright: ''
-  hash: 3902a00303495772ce656b944dfff81237d6a421ad80d871254c12d04cc341ae
-  license: ''
-  license_text: ''
-./doc/solaris-versions: 
-  copyright: 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: bc33ea4cd4eb6126d5633cd3fa7e2adf36078fe37bd648e41612bea8614d2d12
-  license: ''
-  license_text: ''
-./doc/standards.texi: 
-  copyright: "@{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999"
-  hash: 758abab5b6cc5d66a433405b865acfbe95b4ea85d3de8e4f7810aa21cc026056
-  license: ''
-  license_text: ''
-./doc/verify.texi: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: d43e9fbb06bf63392263ab1163c57627f0091d17c88ef1ea645d7d77e2054335
-  license: ''
-  license_text: ''
-./doc/warnings.texi: 
-  copyright: ''
-  hash: 7d0b8720b49dad5ab65dc973fbdc274a1bece799f17f45b51ebdfbd71ea094a7
-  license: ''
-  license_text: ''
-./gnulib-tool: 
-  copyright: 2002-2009 Free Software Foundation, Inc
-  hash: 506eacbbefeba098819ee35b897a3ac4805d5f1f583b31e03a7513f912d9d7c5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/.cppi-disable: 
-  copyright: ''
-  hash: ed4ff8357c74f26ce7298059529040adbec140e2aff3512d6f0218a9df753e79
-  license: ''
-  license_text: ''
-./lib/Makefile: 
-  copyright: ''
-  hash: 2cd78169faa2196a45036c205f87158a07795f2333fdf1355032503b7c578f5a
-  license: ''
-  license_text: ''
-./lib/README: 
-  copyright: ''
-  hash: b8e700743605335681712b4fc41327c0e5ec1304558ae837865d0ef791afcf65
-  license: ''
-  license_text: ''
-./lib/accept.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 81e7c1c7a740ff4f41971972abd0fce7d0177c859d16af4f191136397a1d820b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/accept4.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 51542463f5bad636c373ba51c3b2ab426e33b3f939bcbabfcaf2d97af6165104
-  license: "GPL "
-  license_text: ''
-./lib/acl-internal.h: 
-  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
-  hash: eb885f58854359d77e7d3ecfc31a71a4df2476ec860d7e1a51aa30411c71e39e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/acl.h: 
-  copyright: 2002, 2008 Free Software Foundation, Inc
-  hash: 51d61a70672664344e91e265051c9409abd29da6e53bfaa37b774cad919a1b19
-  license: "GPL-3+ "
-  license_text: ''
-./lib/acl_entries.c: 
-  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
-  hash: 9f85cc40b290acec6fd2d1429421749158816b59818b6542d1058873b08fe6db
-  license: "GPL-3+ "
-  license_text: ''
-./lib/acosl.c: 
-  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
-  hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
-  license: ''
-  license_text: ''
-./lib/alignof.h: 
-  copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc
-  hash: 3462758dafa0cfd9ac5dbecc7fdd45d21f7b7f2a8e87ee35a5b37b251a4b1dca
-  license: "GPL "
-  license_text: ''
-./lib/alloca.c: 
-  copyright: ''
-  hash: 431aec7ca1324fce73e1038b2634ad070f21bb7fee11867cc153c883cbc9e178
-  license: ''
-  license_text: ''
-./lib/alloca.in.h: 
-  copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software
-  hash: b7dcd93bf4979e9478ae25207f011254c3ac6fa5173505035f727801905dc65d
-  license: "GPL "
-  license_text: ''
-./lib/alphasort.c: 
-  copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc
-  hash: d9acf3be813a3d6e39e7814ed4bf572e796559daad249c11b26c649d7e4cb68d
-  license: "GPL "
-  license_text: ''
-./lib/arcfour.c: 
-  copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software
-  hash: c8fed8d528f531f03939034fac2a66aa2101940d2e1a25ae81ecd33397aefd41
-  license: "GPL "
-  license_text: ''
-./lib/arcfour.h: 
-  copyright: 2000, 2001, 2002, 2003, 2004, 2005
-  hash: 9ac0e9cf9af5561f523190d722544db4ddbbb9e2bb40f47b34daf7cc45ac6f7f
-  license: "GPL "
-  license_text: ''
-./lib/arctwo.c: 
-  copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc
-  hash: 2ddafebd0cc6dd4d8ad0fefad69ae2c676755062511550843b130b44e6af00e1
-  license: "GPL "
-  license_text: ''
-./lib/arctwo.h: 
-  copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc
-  hash: 8ebc8bf993f2598e4a531b9c879ea30686307379e18170bb774a34814fab8ad4
-  license: "GPL "
-  license_text: ''
-./lib/areadlink-with-size.c: 
-  copyright: 2001, 2003-2007 Free Software Foundation, Inc
-  hash: 93cb0c93eeecd42ebcb6f5d41b313d8e54d6e85c97d872159053aadb4412cf8b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/areadlink.c: 
-  copyright: 2001, 2003-2007 Free Software Foundation, Inc
-  hash: 3358ac448b45959a1e867e7f73e753dc1a9c0c493a68e0ef9d43d26f412ec68c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/areadlink.h: 
-  copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc
-  hash: 2bd213824c6fa8c5380a7addae975805c2f1550a27120bef5cc9faeae3f6cbe7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argmatch.c: 
-  copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
-  hash: 76a31c441174aa08a151b841cc9b489075b3e0a4cd0edd4d36279854bdd463ea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argmatch.h: 
-  copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software
-  hash: 384958e174b369516cfd605f99dc3cbd78763d5df9ecd5a023704eb1009335a6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-ba.c: 
-  copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc
-  hash: 9661f51641633441a54245954be390ca3d303e3389349b0ff3a221abaa4b080e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-eexst.c: 
-  copyright: 1997 Free Software Foundation, Inc
-  hash: b9ad8bc0fa9a452f44ebb0fa9e15e43aba269cc76119db3a0ab3014d0ffaf8b4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-fmtstream.c: 
-  copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc
-  hash: 78c93c6002f45ab98bfcf9487cc421139dc415033d221d8f900454feeb878fab
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-fmtstream.h: 
-  copyright: 1997, 2006-2008 Free Software Foundation, Inc
-  hash: a9f5474e0d954582819cb3aec9d04b3ed039a5bcae81d5aff11a632693cf5949
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-fs-xinl.c: 
-  copyright: 1997, 2003, 2004 Free Software Foundation, Inc
-  hash: f42be327cb0f817cef2cf6b3f54ca487960053ff7e4f66a7b9179304f03270bd
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-help.c: 
-  copyright: 1995-2005, 2007 Free Software Foundation, Inc
-  hash: 5ca3499ee19a2ab145823797673107b2eb288d217a9a1f500e6d77b1eb29bbe2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-namefrob.h: 
-  copyright: 1997, 2003, 2007 Free Software Foundation, Inc
-  hash: 3aba78e59efd19a0514f4d27c434803bbc7b7b67ce6a9a26e257ea726b0f88a8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-parse.c: 
-  copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc
-  hash: 09167da5bae9280333ff29c12986e2e0ef0d0c761efc54d26ae78f4393d0b24f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-pin.c: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 136b821e9b1fcec0809ccd1714aba2e4e7d17cc22ec9f7fda27b53c926aff858
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-pv.c: 
-  copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc
-  hash: 3a9ac90d20dda74af5afcc874cbb8f69eb81cd80c21009d94815d6ac64ff79c1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-pvh.c: 
-  copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc
-  hash: 9bf839864fb8929972b914067dca6bcceb4f05776fc9ecd4d4225356e01042bc
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-version-etc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-version-etc.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp-xinl.c: 
-  copyright: 1997, 1998, 2004 Free Software Foundation, Inc
-  hash: 55403221c704ff78de0f4fedde5c49143077592a946456cd1dc707caab2ccc94
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argp.h: 
-  copyright: 1995-1999,2003-2008 Free Software Foundation, Inc
-  hash: a47d0da1b66595eecbf61c738d5cbcb2c66cb38f2ff958466b5bdaad40e8ce79
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argv-iter.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argv-iter.h: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
-  license: "GPL-3+ "
-  license_text: ''
-./lib/argz.c: 
-  copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc
-  hash: 1c24aecbfd5cd788fc849e7d534c75f86f4e42acb16bc7a18d23e00ba251da74
-  license: "GPL "
-  license_text: ''
-./lib/argz.in.h: 
-  copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc
-  hash: b5f8d15d436b04bc7e91bc0a133e8ef45b4a70906bd0a4aba412c9ba1bf1a924
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/arpa_inet.in.h: 
-  copyright: 2005-2006, 2008 Free Software Foundation, Inc
-  hash: d921498b43bfc8b6c8bd8bc3af58f20194194561344fb042169b9aa720c2dd7f
-  license: "GPL "
-  license_text: ''
-./lib/array-mergesort.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0b6a5a731180bd7f2271e98ae120c9b01c751899c685fe91ed94efdc215557b0
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/asinl.c: 
-  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
-  hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
-  license: ''
-  license_text: ''
-./lib/asnprintf.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 8e81f2c3c535f505added072b5281fa5c590144c3aa3e083dad0c3ed52b45aa0
-  license: "GPL "
-  license_text: ''
-./lib/asprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 2045ea0ccc9c1e33818278aae4f856ccbec17f95c16ed6b1264dbc5f98df421c
-  license: "GPL "
-  license_text: ''
-./lib/at-func.c: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 6123fbee08097fe452caf222c168f32e36f7b9a10d815c8679e22fd0c1fea90f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/atanl.c: 
-  copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
-  hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/atexit.c: 
-  copyright: ''
-  hash: 9dfd71e9081a0d0955d144016b832253b840f16f0bfe5144f72ad0ce5a13525c
-  license: "*No copyright* Public domain"
-  license_text: ''
-./lib/atoll.c: 
-  copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc
-  hash: 43af4461379692b1d5e3db98d3b75cf38757d5cd3b2e0c26efb0287da4ef034f
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/backupfile.c: 
-  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
-  hash: de3f6f972c0d97e43fda93581b76623a6314b9e5cab5c0559f0b6622d0425874
-  license: "GPL-3+ "
-  license_text: ''
-./lib/backupfile.h: 
-  copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free
-  hash: 08b55cc0243fe8a455eda4a2ce69f879623f6fadfaf004386062e4c15e9a24dc
-  license: "GPL-3+ "
-  license_text: ''
-./lib/base64.c: 
-  copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software
-  hash: a4fedb1d6d2bee5c7d6100ab2f73c5a24e0cd932921577dd9bca74b57e97c0ff
-  license: "GPL "
-  license_text: ''
-./lib/base64.h: 
-  copyright: 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 92f71847fff2b46fe5623f1da8199c223944384bfe92cf9d66710d17b2969583
-  license: "GPL "
-  license_text: ''
-./lib/basename.c: 
-  copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free
-  hash: ca4490814d70e42aa42de5259bc7f9535664c76469f4ad8a5b741bd738171b78
-  license: "GPL-3+ "
-  license_text: ''
-./lib/bcopy.c: 
-  copyright: ''
-  hash: 141099f203ec7aabf4aefe89031c9d7194ecbcdb85a1f49f18068aaae4da74f5
-  license: ''
-  license_text: ''
-./lib/binary-io.h: 
-  copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc
-  hash: ea71f7a3ab4b4dbfdbe578a2bedc51341a632fae63edc9687ddb301a8e88db6b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/bind.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 345fb14e8ab45ff32e86d497f729743b9085d3924d0dcd8dcc4f9b5d28cb843b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/bitrotate.h: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: bf4e90d06ff8a7eb32a59c54394204b84741046fa15f0ee9dfd0cec19cc2cf25
-  license: "GPL-3+ "
-  license_text: ''
-./lib/btowc.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 4c263e1c7b7add699324c83acf27490eae484d98e3ec75ec8abfe89e50e4c3e2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/byteswap.in.h: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: bd089dcccc601992343eadc9ac5d1173fe47adaa6be9f554de9b56e0ada6ef30
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-ctype.c: 
-  copyright: 2000-2003, 2006 Free Software Foundation, Inc
-  hash: 3247e6ae86bda58108f0933bb516ac7092c6b972c747ebbe1ea530edf06c0793
-  license: "GPL-2+ "
-  license_text: ''
-./lib/c-ctype.h: 
-  copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
-  hash: 221f512fb0a226a9fe28608c4f065c4f1aea37664edc45787cf2b677d3347988
-  license: "GPL-2+ "
-  license_text: ''
-./lib/c-stack.c: 
-  copyright: 2002, 2004, 2006, 2008, 2009 Free Software
-  hash: 0fe02d3bbf8b73c2f3eea5841027b52860666ee94e2795b444dcc98ef79dc503
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-stack.h: 
-  copyright: 2002, 2004, 2008 Free Software Foundation, Inc
-  hash: a21e1759d3e498e26d93665fe500f7ac93027b38ee4c9413df473f6bbe8d0b22
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-strcase.h: 
-  copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc
-  hash: 700123f142dd7be6a02cb443ec2ec16c5e55412c9b767cb6fb5f41972f2986be
-  license: "GPL "
-  license_text: ''
-./lib/c-strcasecmp.c: 
-  copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc
-  hash: 5813026dcc5c543c5f539fe753092ea0f0419c3a0e5cd28271a66403efd66608
-  license: "GPL "
-  license_text: ''
-./lib/c-strcaseeq.h: 
-  copyright: 2001-2002, 2007 Free Software Foundation, Inc
-  hash: 41a44de05c8794489a85f495714c9ebe9b7e86bf93882e1157c7c29ef7e87654
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/c-strcasestr.c: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: a3ef7838539fb370edb6d04a09043224c3852cfa0eb88252705569d7194b217a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-strcasestr.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: fb9f0ccc3a0843600f8f3c546536dd03d882a1cce67ed06d95299307810a67c7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-strncasecmp.c: 
-  copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc
-  hash: 0f5960e9963b050aa381c57b2fb6d08ad32e86d833e906014b9f965a4f233b7e
-  license: "GPL "
-  license_text: ''
-./lib/c-strstr.c: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: c435d0a89670ee2ac73fad0445f0d15de13e09ddf466ebf15dc872d62b3b5f4c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-strstr.h: 
-  copyright: 2001-2003, 2006 Free Software Foundation, Inc
-  hash: a562f768d2d1e2f44652b98dca2e7ae58e2880eada876116a6d3bf342a312cc0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-strtod.c: 
-  copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc
-  hash: 40bcd0ae43e731e785caaf327c327c32e95074019aa23a02fd58c1af79beebaa
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-strtod.h: 
-  copyright: 2003-2004, 2009 Free Software Foundation, Inc
-  hash: d1d38e765e9bb24e6331acb59798291a42525d3d52b5945a06e04131fda2622c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/c-strtold.c: 
-  copyright: ''
-  hash: f2f3327044df634e0b933cb776f209274b8ebea5df3c977a51422befbd6db63a
-  license: ''
-  license_text: ''
-./lib/calloc.c: 
-  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 813b2807d1779eccdc16e52eaa6272c8d2cad79b90dcd1a121c59fccbd7db54c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/canon-host.c: 
-  copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc
-  hash: 6e769abcb94fe823344005341e9d566650fc3f05e22afeb853cd498391890071
-  license: "GPL "
-  license_text: ''
-./lib/canon-host.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 15c3b5a2570e4d2b2501c12ea7f690cd76be7a4271c9f620df17b9e24574ff2d
-  license: "GPL "
-  license_text: ''
-./lib/canonicalize-lgpl.c: 
-  copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc
-  hash: 31572bb94d292f1be2374999e03d2ca1ff506f643e889f1211ad4ec9e42709c3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/canonicalize.c: 
-  copyright: 1996-2009 Free Software Foundation, Inc
-  hash: 317fb2484d6a487a7ab5c964f7fd86fa711e1ab1ab3fd34518c6d6ae7eb77f6d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/canonicalize.h: 
-  copyright: 1996-2007 Free Software Foundation, Inc
-  hash: 8946ae555e9b6d4173814e28c850eef63233d5026e291074af2d999e567e3303
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ceil.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ceilf.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ceill.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/chdir-long.c: 
-  copyright: 2004-2009 Free Software Foundation, Inc
-  hash: 9bfeec4664bd8ea174475e5c7ca4f26bee69370881752dacddb6aeed908600c7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/chdir-long.h: 
-  copyright: 2004, 2005 Free Software Foundation, Inc
-  hash: 43c6066052ad511d0bbc773ab569ed70bfe41a4e8f0168495d53f289d3b8292c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/chdir-safer.c: 
-  copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc
-  hash: 7fb9baacfff6082c7a5913c4aae0557ff60cfb3e65bd0c09ebd438669d66a570
-  license: "GPL-3+ "
-  license_text: ''
-./lib/chdir-safer.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: e3232b6124ac91a0910daf805e412816cd3a6ee5a8268acdaa366f4c35f9ed51
-  license: "GPL-3+ "
-  license_text: ''
-./lib/check-version.c: 
-  copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
-  hash: b9147d6cca01ee62c2de29c59777283b45be1735a457fb9a748256b9f9cd8f43
-  license: "GPL "
-  license_text: ''
-./lib/check-version.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: eb1e24d6d5f441f55ca7b9ad07249b71a8056ba2eb91ad6584428f97a5a836b5
-  license: "GPL "
-  license_text: ''
-./lib/chown.c: 
-  copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc
-  hash: e72dbae39e506979332040aa02e82336372fc710944efc83f3da40c5c09ca7a6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/classpath.c: 
-  copyright: 2001-2003, 2006 Free Software Foundation, Inc
-  hash: d1d34ae2c6f3915f1a22d0399df01102840772c8733b3782ccd4fe220e819b6a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/classpath.h: 
-  copyright: 2003 Free Software Foundation, Inc
-  hash: 9b2071cc61bb9c5fc67562c4b2ae4270c0e61235f0052a91e63542ed1c161ff1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/clean-temp.c: 
-  copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc
-  hash: 36bc4ff5220f99fef224ee81984f458a050b76097c5a2e5fe8ee40d5d84e1bf4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/clean-temp.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 7fb51e989292b9fee1580dc431185ca8ee300709983c7ab0137bfc372d6a2b18
-  license: "GPL-3+ "
-  license_text: ''
-./lib/cloexec.c: 
-  copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 1f7579bc9888a0a5a4eb18a6a04be6dea54324e346baa4a0c76b240f01ed3329
-  license: "GPL-3+ "
-  license_text: ''
-./lib/cloexec.h: 
-  copyright: ''
-  hash: cfe5843e2e0ac5ad5fc12a47d962d9f8305a2542693105f25917b8f36614b582
-  license: ''
-  license_text: ''
-./lib/close-hook.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ec1354c985be7435887fe9b514e9777b573cf13b674dc55eeffbbf2b6f738034
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/close-hook.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0bd92bcbb0e461e75824497facbf3a66e7ae7d8eaf7cc4b91fa7dcb0b827b504
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/close-stream.c: 
-  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free
-  hash: 5b1b946e2cdae710a10239f75e632eaac2c083ad0a895384be7a76254efcdb42
-  license: "GPL-3+ "
-  license_text: ''
-./lib/close-stream.h: 
-  copyright: ''
-  hash: 827172f355991afad504e0cbf0ca7bc6df709d57f14b498de472fed1cff3c71d
-  license: ''
-  license_text: ''
-./lib/close.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: bb1b7ca07113ae43ac558dbd9ba9c62ccef65d984ff7a462df394ded1e8e5a4c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/closein.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/closein.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/closeout.c: 
-  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
-  hash: 0208f6e721c11f8964c3a52a6e8c4bd6f19d35db790e2a5815dfea345d7444eb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/closeout.h: 
-  copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation
-  hash: 2b48405fde7535d4e60a3e539a77ab974fd3e372cf97d8c0ed3a82991c3b9cbe
-  license: "GPL-3+ "
-  license_text: ''
-./lib/concat-filename.c: 
-  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
-  hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
-  license: "GPL "
-  license_text: ''
-./lib/concat-filename.h: 
-  copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc
-  hash: b84d2c6c2e5a8307529fe2a1345949b40a55aee7271142bf3e56ec008231bc0e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/config.charset: 
-  copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc
-  hash: 6f0998e29a63e3fcb8c4e044840a073a733d777ab343c1a3f045ce6ab2e9ecf9
-  license: "GPL "
-  license_text: ''
-./lib/connect.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: e9e4f3ca46ee356688d1d58e5eba96562c3850b470cc266856bae4cfc7ef5372
-  license: "GPL-3+ "
-  license_text: ''
-./lib/copy-acl.c: 
-  copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc
-  hash: 40c730e383e47065909dd9b5cfabcdf662f5ca1d3491528c2726551c49d88e49
-  license: "GPL-3+ "
-  license_text: ''
-./lib/copy-file.c: 
-  copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc
-  hash: 8d79873160d6735d8e50841f62ddb06b8a12bb54fc4ccaa29e8fd4c8009e7ce9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/copy-file.h: 
-  copyright: 2001-2003 Free Software Foundation, Inc
-  hash: b83fade95166bced102f06075d40d1b52c09d72aa62e313053f297f2e89e05e4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/cosl.c: 
-  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
-  hash: f94441c30759bff7b800832d4a5ca7f10ab4fdec07fa304c2a367ee6814a1ada
-  license: ''
-  license_text: ''
-./lib/count-one-bits.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 9bfc5b555787364b6d14caddb1e35b0c076627938d3049c7b0d3d0b411409e10
-  license: "GPL-3+ "
-  license_text: ''
-./lib/crc.c: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 444a38281c2c920f7e54307e2fb960e7e045a71ede5a7793c8b59d19dd42fecc
-  license: GPL GENERATED FILE
-  license_text: ''
-./lib/crc.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: d20e1f1c17cf2ef4fe9383e09809c60590708ecadd57cf6d967c5634c968eea0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/creat-safer.c: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 675f74818da9e9543301afdb0bacc0922294d33b13d7411ff97044bc83ee5186
-  license: "GPL-3+ "
-  license_text: ''
-./lib/csharpcomp.c: 
-  copyright: 2003-2008 Free Software Foundation, Inc
-  hash: 60500489341e803a1e684450bb9cb161aa03e3d71fd8c469f1bb47b9e5ddcbf4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/csharpcomp.h: 
-  copyright: 2003 Free Software Foundation, Inc
-  hash: ed80ee1bdd6a323445877e7988c969b8b4a0699bb70bea8a8f6fd2e98df2f9a2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/csharpexec.c: 
-  copyright: 2003-2008 Free Software Foundation, Inc
-  hash: 9c8d0cf212dcaf02bcbd13a6f9fc04f6bde9b26961bcb6b84c8d613eccedbe40
-  license: "GPL-3+ "
-  license_text: ''
-./lib/csharpexec.h: 
-  copyright: 2003 Free Software Foundation, Inc
-  hash: b52a0f9c1967e21f490cb0a86d5d0910af3e34b693c1937e965561bbe2b01916
-  license: "GPL-3+ "
-  license_text: ''
-./lib/cycle-check.c: 
-  copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 42e37d48e8e2bde63e12bb394fa4c50a6209ed1b592e6c236411dd339e0756a1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/cycle-check.h: 
-  copyright: 2003, 2004, 2006 Free Software Foundation, Inc
-  hash: 42b5265fff4a67fad7b32708c5ffe9ecb8ee2edac006073355fcc563d9cf7e11
-  license: "GPL-3+ "
-  license_text: ''
-./lib/des.c: 
-  copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
-  hash: fd7196b6a2a037973cfc74df6861f31d3ca3a201113252ddc69f6d49843296df
-  license: "GPL "
-  license_text: ''
-./lib/des.h: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 0657bba6a068db36353ae4fc668777b7948049ea563a6e04d5643878c73c0553
-  license: "GPL "
-  license_text: ''
-./lib/dev-ino.h: 
-  copyright: ''
-  hash: 389d203acc8519fb2e74b471a247ffd831d6dd93ff076a42ee47a8a48b4f821a
-  license: ''
-  license_text: ''
-./lib/diacrit.c: 
-  copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software
-  hash: 8fe4fbeca6533f94fe5e22b403d4e9659a74a43af7777951d616971cb58a2865
-  license: "GPL-3+ "
-  license_text: ''
-./lib/diacrit.h: 
-  copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc
-  hash: 1e18e6c700599854713425ac91ef20e1dc1b48d3842826f8ce12c5b8777f6cac
-  license: "GPL-3+ "
-  license_text: ''
-./lib/diffseq.h: 
-  copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free
-  hash: 8e10c66c285feea8e568e48fc868abfd29fca86308f93231c42016b821f5473d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dirchownmod.c: 
-  copyright: 2006, 2007, 2008 Free Software Foundation, Inc
-  hash: c257ba60a2b1e58c04bdd873d5f000f1f03c6f2f364bd25f3f6bda2ce19bf4b7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dirchownmod.h: 
-  copyright: ''
-  hash: 2377b01e9bac7aabe4b35b4ee9493ca91cf6d0edae1905934deb6462f7dfcdb7
-  license: ''
-  license_text: ''
-./lib/dirent--.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 07dc0881d2aaf744a41393f3eecee439192d76eb2eb03c62fad51514dc6ffb35
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dirent-safer.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 6fa32838fa81f1b4a4e1df89282bd0493df71361847142562db0ebb79c0349da
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dirent.in.h: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 6826b90dd9abb410dd4949515a1d15f184e8db441b5ad50f12c2eaf4f6f542c6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dirfd.c: 
-  copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc
-  hash: 3d93cdf70fd7be9fc29911d59fe09cb189e040224aaad98a8c9e83309e9c7bc5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dirname.c: 
-  copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software
-  hash: e875ed57e50a82603de0ee7a830a6d495673d3cf95ad330deed4ec9cc540fd7f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dirname.h: 
-  copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc / (((unsigned int) | ('a' - 'A')) - 'a' \ / ( == DIRECTORY_SEPARATOR)
-  hash: 5ecde11db04080822441842ce9cdf1c7d12872412af9305e768bfc5c867e3000
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dprintf.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dummy.c: 
-  copyright: 2004, 2007 Free Software Foundation, Inc
-  hash: 3afbebab4922858335d8687bdd39bf0881f6eea6ed63f9d8d2999e9010b6704c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dup-safer.c: 
-  copyright: 2001, 2004, 2005, 2006, 2009 Free Software
-  hash: 37fd02f35d9bbe9b3673b9681de76101a235e4a0fc4d7c630773aabe959455fa
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dup2.c: 
-  copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software
-  hash: a27cbfd58d5eb3c2d99b2a053764f3f1085841d3f29434c0a8001d845d1387c8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/dup3.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5a1a146029856f33980e0ca9fb03df16e17c36957b8af8c5f19839cba93b392d
-  license: "GPL "
-  license_text: ''
-./lib/eealloc.h: 
-  copyright: 2003, 2008 Free Software Foundation, Inc
-  hash: 14128ce1ce8fbad4f7358db50d4b6d6ce1c9c524e4ea23b6e266f36b39a82695
-  license: "GPL-3+ "
-  license_text: ''
-./lib/errno.in.h: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: fe88fbd6fac6eb6acc5b84e204ef7b20b5968de6725682e3694d1f027bcf3b32
-  license: "GPL "
-  license_text: ''
-./lib/error.c: 
-  copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc
-  hash: 759532401c6333a4e942e57b2d1ec3efe68990086230f50dfc8018148c6241a9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/error.h: 
-  copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc
-  hash: c14e8a46030c1ac6f69b89a732b7b3a0c35ab78d550419c08c02a626010c3073
-  license: "GPL-3+ "
-  license_text: ''
-./lib/euidaccess.c: 
-  copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006
-  hash: 88c401261238a10e8eb01df632a0149146590e3692034046262b614e176b7677
-  license: "GPL-3+ "
-  license_text: ''
-./lib/exclude.c: 
-  copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003
-  hash: d841af1f422218e8e2c99fbda36b8626a810eae7a5e2be71c587bf33ecf2a895
-  license: "GPL-3+ "
-  license_text: ''
-./lib/exclude.h: 
-  copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005
-  hash: 2b13111b63be6c6ecb81a5e34429097b34c88b4a889ea6a41ef41309a6ef3ca5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/execute.c: 
-  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
-  hash: fada894c258c01aed0dcacdb27e67b8302428f122a9a80bd346df99e5e29b461
-  license: "GPL-3+ "
-  license_text: ''
-./lib/execute.h: 
-  copyright: 2001-2003, 2008 Free Software Foundation, Inc
-  hash: 4e56a6cb0389acc2d1a3f91209fd3781803a0acfeb907ff3d0448286af4e35d9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/exitfail.c: 
-  copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 5a9a124a57c5dacad4bf2b5e021b77a42a33ee35872481ff71c4e0cd00afc2ec
-  license: "GPL-3+ "
-  license_text: ''
-./lib/exitfail.h: 
-  copyright: 2002 Free Software Foundation, Inc
-  hash: 877a42c98a8a8b7975c4a116bcc0afead63f92402e05649936af61e72493f252
-  license: "GPL-3+ "
-  license_text: ''
-./lib/expl.c: 
-  copyright: 2002, 2003, 2007 Free Software Foundation, Inc
-  hash: f570f9a7eb0fc19acf0bd0b30e1482a7ed8ba594dc26eb7951dd8a8f119be46c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/faccessat.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b11aa6f0dacf29b21357e6fc7694c750c8a7b4d6601f5fbc8b869d1f7c1cfff5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fatal-signal.c: 
-  copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc
-  hash: 2439def8a904b9fec75774ba5e8dcc0c4df0ac24598e0395fa54277e258bcaf8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fatal-signal.h: 
-  copyright: 2003-2004 Free Software Foundation, Inc
-  hash: 161abae5aa433aa22b95dbeacf7abe6b3813df0983bbc3e90d1ac806b398dcdc
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fbufmode.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fbufmode.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fchdir.c: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 1cff01be35d904c715c02a565711422784c3ab81ba68517b8d166ed3fdc8172b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fchmodat.c: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: cb14ca8efe705c5d31767cda4078b03e79cb5401098cd07215414b4af7ccda80
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fchown-stub.c: 
-  copyright: ''
-  hash: 01f08654cdc736f611bedc64897d6cde20db20238576d2e399050a59b54b6609
-  license: ''
-  license_text: ''
-./lib/fchownat.c: 
-  copyright: 2006-2007, 2009 Free Software Foundation, Inc
-  hash: f4ccacb449cfd52c9bb32d38c9282f9eb6db3e21bb40fe343f32361e2f2eee4b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fclose.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: b9ff3e698a5bc176cc516f2d1bc0f1caeb31ce6ef5bc03a59f86d41f8c9a061a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fcntl--.h: 
-  copyright: 2005, 2009 Free Software Foundation, Inc
-  hash: 3b7416a86275dcfa8f78d2f70ac320e95583cb68a3c2710dfd3d0c0ad79674f5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fcntl-safer.h: 
-  copyright: 2005, 2009 Free Software Foundation, Inc
-  hash: 1b38a5c280f10b1be082ade7aa7a7094e8e48ad6610748a54b3e1e463c6955ec
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fcntl.in.h: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 8f4cd6edcf635c7f343e2b03cd1b7d40d742b57ea937a23b4acbac9f79deb464
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fd-safer.c: 
-  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: fe1b4e960de5e5b3af0103f56e2cb6654a051d17aee26df93bda76176ba04d00
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fdopendir.c: 
-  copyright: 2004-2009 Free Software Foundation, Inc
-  hash: 6fa3102cfff5b57b78e4709b2c03cdcb8dc5519c9889f635ba73c34887212a84
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fflush.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 2622273e90952bfaa2fca8364132393c33b80f90a66a35c6b75240af7e94606c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/file-has-acl.c: 
-  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
-  hash: 2f4bae0d818e2fcf56e772e9c9caa2310f7f7dc7d3cd3556335b0d04d46964a2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/file-set.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 45dea5f9b0a95afa2babe22d9de18010fe4078005351697ce25c587c75173b3a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/file-set.h: 
-  copyright: ''
-  hash: 4bacc096f8105ab71d14c90967bb7855d2ad8da0afc132d32c8df03d2eb427dd
-  license: ''
-  license_text: ''
-./lib/file-type.c: 
-  copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free
-  hash: 9b360c9dba47a27fbcdcfa7c880672f23094a4332459655d5a06abaf75724544
-  license: "GPL-3+ "
-  license_text: ''
-./lib/file-type.h: 
-  copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software
-  hash: 33f7ce18b9037520c8a1d64bce9ba5ccfccc1ac39b4b08510f2f2caab56064b9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fileblocks.c: 
-  copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software
-  hash: 15debca15418300f226a883a5ce4e98d3b687ef448b5b30e08247e56908be2ae
-  license: "GPL-3+ "
-  license_text: ''
-./lib/filemode.c: 
-  copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software
-  hash: 169a543533dec3c22ffde0c0391528ea49b2440c80bc3ffde47196967ad49af0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/filemode.h: 
-  copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc
-  hash: 6439a9bafba8f71ce6dd51c897b653f713d013a8496413a19361cac6f515dcaf
-  license: "GPL-3+ "
-  license_text: ''
-./lib/filename.h: 
-  copyright: ( == '/' || == '\\') / tests whether C is a directory separator character / 2001-2004, 2007-2008 Free Software Foundation, Inc / ( == '/')
-  hash: 4f53c064d5d3411085081f0e8d109ed3132ab4333b1eefff9c22a968fa751ad8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/filenamecat.c: 
-  copyright: 1996-2007 Free Software Foundation, Inc
-  hash: d956c0d319ac571bc4c8d3e7d5be91e47dfbe356a8f4c2c64abe944b8e094af8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/filenamecat.h: 
-  copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc
-  hash: 6ddfa3af34686669e746d1cb478b10753b7d450b3097c4b856230acdf11a5a6a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/filevercmp.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
-  hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
-  license: "GPL-3+ "
-  license_text: ''
-./lib/filevercmp.h: 
-  copyright: 2008-2009 Free Software Foundation, Inc / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
-  hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
-  license: "GPL-3+ "
-  license_text: ''
-./lib/findprog-lgpl.c: 
-  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
-  hash: f142976d34ef0acffd72143865aadaacf7318c9391ac036941d725be41fd1424
-  license: "GPL-3+ "
-  license_text: ''
-./lib/findprog.c: 
-  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
-  hash: 0dfc19e772afe61de75fb5844aec46027116c8e89e71b3d1da85482635daf928
-  license: "GPL-3+ "
-  license_text: ''
-./lib/findprog.h: 
-  copyright: 2001-2003 Free Software Foundation, Inc
-  hash: 52461483d830d7ff18633a15addd92530f4b6d1632f3cb1dbf15de8092a7758f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/float+.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: e0f837de3dc39e0b747f0927653fa501e3e873bdfe1c26b0961519fd8dd897b4
-  license: "GPL "
-  license_text: ''
-./lib/float.in.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 0c19c5ab4c8e1d8499f9edd1fd44d287083f329b75ec2b54100b101310e88ab6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/flock.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: c4837f3ed93fcac221405077e40e31648eda752325afe74b7b28d32928fbdec3
-  license: "LGPL-2.1+ "
-  license_text: ''
-./lib/floor.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
-  license: "GPL-3+ "
-  license_text: ''
-./lib/floorf.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
-  license: "GPL-3+ "
-  license_text: ''
-./lib/floorl.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fnmatch.c: 
-  copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009
-  hash: a1023b214fa5f3433ca30359a6857be416dc1dade27370bdbd7100857341f56c
-  license: "GPL "
-  license_text: ''
-./lib/fnmatch.in.h: 
-  copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003
-  hash: a5c8c5adbf49f1404d18740af34363323265ef6c7588387425b5797518dd9317
-  license: "GPL "
-  license_text: ''
-./lib/fnmatch_loop.c: 
-  copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
-  hash: 5351dffc7f21918d5a731915aca1c452c091beb8a7df2ed78acf823afad6d785
-  license: "GPL "
-  license_text: ''
-./lib/fopen-safer.c: 
-  copyright: 2001, 2004, 2005, 2006, 2009 Free Software
-  hash: 2c3a39bc70dada2b591df7cbf00ccc0ceed6e2f66c08fd5e01c7f70cc55eade6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fopen.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 0eae410e55fc3de8810a3f68d37626df92ba75bbadf58269f8e802be2c05310b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fpending.c: 
-  copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc
-  hash: af0350b9abdd28ebb8e56a842c10a760620a22b242a6a2f74402ee4222dcc8a2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fpending.h: 
-  copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 01eea55927650242b2ec6a6293963c43ab840f135e5d4e9895c43aaff5d529a1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fprintf.c: 
-  copyright: 2004, 2006-2008 Free Software Foundation, Inc
-  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fprintftime.c: 
-  copyright: ''
-  hash: 2f439ed60059d2a1a96bdb1e19ca32c81fdcced639c884f1deaf416f4d750e84
-  license: ''
-  license_text: ''
-./lib/fprintftime.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 4f0efdf4cf65af56c865a1cf73b3314360fe7b326a00eb9994ba12a5bb0d2920
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fpucw.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: e47878db46d7035debf5275a50634b563f90405b938fb8721ade14b526fc4738
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fpurge.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 979d16d694737fea189e9bf8d29a91f31305bc10386618604a2efd317703b257
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freadable.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freadable.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freadahead.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freadahead.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freading.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freading.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freadptr.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freadptr.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freadseek.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e5dad14d411c6ebf4122bb8b36c186dc7c6c396d1a13b24aeea84bd19679c098
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freadseek.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: c7545f90ba5bf8bba37c297551a1a35b4c1814f8cf6d6c3f8d57b2e56ebaba0c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/free.c: 
-  copyright: 2003, 2006 Free Software Foundation, Inc
-  hash: b573f5b5fea990902e68d85f02b015cf9320100fe56678f14e732f90cf83e473
-  license: "GPL-3+ "
-  license_text: ''
-./lib/freopen.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 58204a89790d1470a883e67f10cd0ddd7153655334e185ca64530467b797a4f9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/frexp.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 91c12c41ce9b83e5cb3b66a32ee07dd6c30c8d24dd94f452238c006a0322287e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/frexpl.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: c03c58defe40517c302193125927eacad08dcda5bf4f49afaec567a5729e3a3d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fseek.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 0047d7b482dad80bda7de91feaa9d092a02a2a7fdcc852df3c8dc2f9c4bd0191
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fseeko.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 7b2541be24bdcf54f417ab2189fb821a645f6a4f06a21adaff8f058594862194
-  license: "GPL "
-  license_text: ''
-./lib/fseterr.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 7db3706c69835761a78a456fd39fb66f59d80b7ec061c6c204cceb4ac8cc5094
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fseterr.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 59926523da017089371d4894c0e5bccd77843a75a6a837ab203c875d993393fb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fstatat.c: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: e4dee1ca9774aa96627d99386e03d3a973f79dd331825b6d818b8f50a77bd65d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fstrcmp.c: 
-  copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008
-  hash: bfca8347502966f7b7e533a47fc2545366b589adee21a653689f4503158b2e5e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fstrcmp.h: 
-  copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software
-  hash: affd05fb827a563d7f36a218fddb5aabf27be47e86157d97d850ff3f98ef74e1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fsusage.c: 
-  copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009
-  hash: bf6546df7e894ec6855dfb9c9548dae4acbe9b4d69acde87b3c3d5deb1534091
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fsusage.h: 
-  copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software
-  hash: 0fbfea12b9dabb5987b88390bdc84d23c2dcd6a435f842f44d26c0a985a490b7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fsync.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 3d47bf5b981a180ca9cc8a052b84b52744342a9cc13c1c814274b04ed0ccce99
-  license: "LGPL-2.1+ "
-  license_text: ''
-./lib/ftell.c: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: bdacd27661da79a67395f4c109a4ca358cbf5f7708013ac8b4597e1748cb866c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ftello.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 8eb3edb3ac0a89c7d9fbf79c0f5b80d54bf4ba9150f30175b5c00d56b78da476
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ftruncate.c: 
-  copyright: ''
-  hash: 7e7eb364e0c33931844842e8432d1ba9a9f8b8dd506599b01ab206d1a414039f
-  license: "*No copyright* Public domain"
-  license_text: ''
-./lib/fts-cycle.c: 
-  copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: fc1d44a722404dd98d94914dab1b5ec263ac0d9749adcb8eadab0455348c1b8e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fts.c: 
-  copyright: 1990, 1993, 1994 / 2004-2009 Free Software Foundation, Inc
-  hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
-  license: "BSD (3 clause) GPL-3+ "
-  license_text: ''
-./lib/fts_.h: 
-  copyright: 1989, 1993 / 2004-2009 Free Software Foundation, Inc
-  hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
-  license: "BSD (3 clause) GPL-3+ "
-  license_text: ''
-./lib/full-read.c: 
-  copyright: 2002, 2003 Free Software Foundation, Inc
-  hash: 8a27da95d11da5cac1d6d93a7c5408ac9e9e9b84c727c9d6426d536d74329533
-  license: "GPL-3+ "
-  license_text: ''
-./lib/full-read.h: 
-  copyright: 2002 Free Software Foundation, Inc
-  hash: d4d3d1e43b305e2074d6ceb67dfc077058f73fa50b9188c61e3322de4c84a156
-  license: "GPL-3+ "
-  license_text: ''
-./lib/full-write.c: 
-  copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-  hash: 14aac294502e565d0475a4605c4fa84cd3ba3b006dc9f31359bd20cd01d223fb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/full-write.h: 
-  copyright: 2002-2003 Free Software Foundation, Inc
-  hash: 6fc92b2c6f57f68ee664efc58bd464d3694584a11c7895b3e10d073f7463e4eb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fwritable.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fwritable.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fwriteerror.c: 
-  copyright: 2003-2006, 2008 Free Software Foundation, Inc
-  hash: 1a1137f1f41c92585bea0ad15c2c294253d8d496638763318511930ddc34559f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fwriteerror.h: 
-  copyright: 2003, 2005-2006 Free Software Foundation, Inc
-  hash: 57d77b30a81499334eeb50f7dfc84fa69ae4232ff0670018e7d4544f670e33a0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fwriting.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/fwriting.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gai_strerror.c: 
-  copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 6fa8c98c6159a1bc336cc672906d02a7c2b14a0db56b900ebd375c79e93e0a51
-  license: "GPL "
-  license_text: ''
-./lib/gc-gnulib.c: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
-  hash: a1a6cd40081db989deb6d637777e1ea5e616b3d6a283a7a7f4a9d5e09291c419
-  license: "GPL "
-  license_text: ''
-./lib/gc-libgcrypt.c: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
-  hash: 17a44f44fe9aa32fa885740126dc77e9789d91af8a7b6481c1c03a99b378b010
-  license: "GPL "
-  license_text: ''
-./lib/gc-pbkdf2-sha1.c: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 2286c6ae2cbbc15032408e0ab1b986db3f9ba1b141f1a542dbddcbb50c8dce4c
-  license: "GPL "
-  license_text: ''
-./lib/gc.h: 
-  copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
-  hash: a4f94bdf9e032840c9e93a7a9da02fd788642e5def0abcfa0107c6a129f2f4b8
-  license: "GPL "
-  license_text: ''
-./lib/gcd.c: 
-  copyright: 2001-2002, 2006 Free Software Foundation, Inc
-  hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gcd.h: 
-  copyright: 2001-2002, 2006 Free Software Foundation, Inc
-  hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gen-uni-tables.c: 
-  copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
-  hash: aad2b45b19beca4f2ac5d5f5bb9edce6d0afc88e1b7b9d1047748f876a287f4a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getaddrinfo.c: 
-  copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
-  hash: adc75b9ed0c95c54930e8aed577992958efb7d055fee5326a497b8abb69d0316
-  license: "GPL "
-  license_text: ''
-./lib/getcwd.c: 
-  copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc
-  hash: 5875b69c2fe815331158284d7517251ab1bf88edae205ac42d739b529a6d4873
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getdate.h: 
-  copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software
-  hash: b9389accd94ac78a67232edb3c527f3f70ee67ad6f01602d68b55ba4fbcd0dba
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getdate.y: 
-  copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-  hash: b5fca8ba27d142ddf8675e4f97a669f215e388619b18a6be948a2fb748066a5c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getdelim.c: 
-  copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007
-  hash: 992ace4fcbea4653a4c94a5e3161682e707b458f19befe7a2efe9b6d0536c45b
-  license: "GPL "
-  license_text: ''
-./lib/getdomainname.c: 
-  copyright: 2003, 2006, 2008 Free Software Foundation, Inc
-  hash: 49d9ff73b25a4e25ab534f038da03ecc6bd4f1e55511d312f3e3652d79e561f3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getdtablesize.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 51191e642c33bb0d979044844f6eff55029ec458cd21474f85bb0b0d51eb1353
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getgroups.c: 
-  copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software
-  hash: 0f0b9f4b7e5c2b88b951017ee86711bfeafe90b04b0b610061b888563f4fdded
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gethostname.c: 
-  copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 08b8fc75fb3ab4c65596a95988f9a243016039c6a6d58db033df382b3e85ef91
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gethrxtime.c: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 1cec40c1dcc320f69be6e1c805d217f9abab323dfc4d321daeb53e6d8a47b7d8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gethrxtime.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 0f5ade662a7551e4b033ef5d892a59fa220a1ca1e4fca8feb3778e6102444739
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getline.c: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: db509c33815c26829232154304e781d89be477ad3f316afe1d06f654877e7697
-  license: "GPL "
-  license_text: ''
-./lib/getloadavg.c: 
-  copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994
-  hash: 2d24f7a43c161425aa87eff2a7f2fb2bc4a9a1f84761f74178139d04c1fece2b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getlogin_r.c: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 71342da5c9fce5ffc521819fbf5ea380288d8dd31a5a80d9272b7f75b422173c
-  license: "GPL "
-  license_text: ''
-./lib/getndelim2.c: 
-  copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free
-  hash: 9ee7610ebe6f8a37f5a5a68a7b3449214c14a38ff0d7dd572812bb7859df98f1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getndelim2.h: 
-  copyright: 2003, 2004, 2006 Free Software Foundation, Inc
-  hash: f5045e0d348580d1368f95e10cdc98ef5dc5cb756ace0005aa8ea0b4b3ec3c44
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getnline.c: 
-  copyright: 2003, 2004, 2006 Free Software Foundation, Inc
-  hash: bbdd86a205f27f15ef28fbde34d1623b507bb2453e631af80a1afab6cd8981ec
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getnline.h: 
-  copyright: 2003, 2004 Free Software Foundation, Inc
-  hash: 03573e9a526808be4f0f78b44449e9d23df1f24379e10ec2ba8ca76d47a3c4a6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getopt.c: 
-  copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008
-  hash: 4d0fd46f29bb8073586f8ec6d6970bb6076904b387b4ba39b52e67f894fad2ac
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getopt.in.h: 
-  copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007
-  hash: 85fd6cbd9bf519076eb2762b34c713e170afc8e197126defee267fedcee58ff4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getopt1.c: 
-  copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009
-  hash: 40109d2a58167504326aad2cb1b61592e621cfc075c9499cc9fc8c4428517863
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getopt_int.h: 
-  copyright: 1989-1994,1996-1999,2001,2003,2004
-  hash: 54606da8ebed47f74fd89143417b60de590aa10ec0620f8a7a78ebd0c36557e3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getpagesize.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: cc8c7a17126f58bdff2c354feec2eed60d44ff713caa57dc3075bc3f136601ba
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getpass.c: 
-  copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software
-  hash: 3c4602671b814d6de906dbab501db462e449060ec3b662a3cc813158469c1c41
-  license: "GPL "
-  license_text: ''
-./lib/getpass.h: 
-  copyright: 2004 Free Software Foundation, Inc
-  hash: 715da55d6addef9aba7f35a6d79bf776995ba58b92e85e1355038b36d4dd757c
-  license: "GPL "
-  license_text: ''
-./lib/getpeername.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 3a2f22e1c404ed3915fd5dfe38a6d499d2cb70e1fd51eaa0dd53aadc7b7be703
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getsockname.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: db4f104421692ccfcaec0efbeefb8abf3170e8e83c3f80d16d4088a9570c0747
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getsockopt.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: cfa28503953c834f7db8e9d1e3113792201bf64a0b7ef2ef1e4f2cbb56b5ac98
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getsubopt.c: 
-  copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc
-  hash: ec9a4323b51dc83a8a3dab5470517e58f1bb6eade183c6dc3eba458312ab0d3e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gettext.h: 
-  copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc
-  hash: 136f1ff682700ad9f5fb60428eeada20f160e6ed38a19ad78bd1dc4e440f55f0
-  license: "GPL "
-  license_text: ''
-./lib/gettime.c: 
-  copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 77086b931aa5e0345ebf249afe25b980450af522098b0dc7db39c72cda600702
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gettimeofday.c: 
-  copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software
-  hash: cde7080c035c43c360bf0a39981d8e1f56a5745a9f0857f3fab617c0414c9aa6
-  license: "GPL "
-  license_text: ''
-./lib/getugroups.c: 
-  copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation
-  hash: 270b3c42be956bed158bfc6996f80f6ea8860856d9d24ce150bc04e2d49c0cb4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getugroups.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 5a293b9aa238d490fa967e3b2edb180d4e6dc234cc662fd796ebefe226ef0c7d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/getusershell.c: 
-  copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free
-  hash: 1fd7fb9cb095692b1bf2300b27d245389e99a34347ace403e72b60d4bf3dd633
-  license: "GPL-3+ "
-  license_text: ''
-./lib/git-merge-changelog.c: 
-  copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
-  hash: 1eb639ccc3a04697cdb5744ebbcb63f90893e0de7ec866b6dd449e350d28915f
-  license: "GPL-2+ "
-  license_text: ''
-./lib/gl_anyavltree_list1.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anyavltree_list2.h: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anyhash_list1.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anyhash_list2.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anylinked_list1.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anylinked_list2.h: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: ebec01e1e27b8f47a348c6c8aab61a6cd8a6d756d7af2d6af0fb0717ebac9699
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anyrbtree_list1.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anyrbtree_list2.h: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anytree_list1.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anytree_list2.h: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 40c2faf4dbc261cf4e9ef93bd5c202d96530b5ad6198c8421f85b2d5c9e841ef
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anytree_oset.h: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anytreehash_list1.h: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_anytreehash_list2.h: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_array_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 0c25ceacf9c0bdb5aab3741b0cb9cda44011e1dc5d268cbc8bf5101e0acce283
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_array_list.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 863f801e67908ee9891c3f0dcb4f8ce0e131de5453303e2a7790b0bd3958ca0a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_array_oset.c: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: c819d4f4a184e90641f6cefcacbf6b02abed3b6e38373b86c138dea7cac916ac
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_array_oset.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 019de04fadf81baec6bf31de9ff73bb78d4ad248796b60a6875b604a8a4fbaa7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_avltree_list.c: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_avltree_list.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_avltree_oset.c: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_avltree_oset.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_avltreehash_list.c: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_avltreehash_list.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_carray_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 1231124fa2b6eb2388f59849dfadbcc1121ac93c1498182180307abef125f81e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_carray_list.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 69dc4efd9c2c04954ad4b58ec33e4e452068e7afc4bd466a824816dc6a94dc82
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_linked_list.c: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: ed7862364a0ad9a0b599013e8efaf9a1bd4ca2fee8ca914048d25296fa8a55af
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_linked_list.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_linkedhash_list.c: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: 0ac3aac0adac6ac1565820f39242ce8abaf6ce35fe9f110d5bda696eb80db47f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_linkedhash_list.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: dd97ead793ac89798799ec721b21cc9e52051b5bf68d0c4b5a0437b938a30069
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_list.h: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_oset.c: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_oset.h: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_rbtree_list.c: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_rbtree_list.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_rbtree_oset.c: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_rbtree_oset.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_rbtreehash_list.c: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_rbtreehash_list.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_sublist.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 73915aa3876fd8f8947afe4eea6a3383db1680e283ed8da437d4ce635e8148d5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/gl_sublist.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 6b2c4954c29b3c4f64ecfc9ea385e7613778fe57581326d0bb0865f30f47bdf2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/glob-libc.h: 
-  copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc
-  hash: b8ac91c8cae0271efb81ee15e750224494a993f3198db3e110c2affbe1dbbf6d
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/glob.c: 
-  copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-  hash: f71e836c564095b672ee61d58fa2acf0272842c03360d1642e7ada6d132305a0
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/glob.in.h: 
-  copyright: 2005-2007 Free Software Foundation, Inc
-  hash: 6064b1858ef6f12b46d80c41a6c8e25567a40c42ea0a9e7712fcbf75d7d1b499
-  license: "GPL "
-  license_text: ''
-./lib/glthread/cond.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: d5641ae46998e1a8654c5e3549b9c7b3db1d3ca85dd8fe7f311bc8e674cb71e2
-  license: "GPL "
-  license_text: ''
-./lib/glthread/cond.h: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: b3332b7fa3f32abab59fe03fbc119d02861b28da6534ce9ad1f3469f070f0971
-  license: "GPL "
-  license_text: ''
-./lib/glthread/lock.c: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
-  license: "GPL "
-  license_text: ''
-./lib/glthread/lock.h: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
-  license: "GPL "
-  license_text: ''
-./lib/glthread/thread.c: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
-  license: "GPL "
-  license_text: ''
-./lib/glthread/thread.h: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
-  license: "GPL "
-  license_text: ''
-./lib/glthread/threadlib.c: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: 2294600f29fbe5bce62a905bfe009f89a1c37bd29adcd4b57528e33d3e793a06
-  license: "GPL "
-  license_text: ''
-./lib/glthread/tls.c: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: 23dde3cdce3671ccb6ea2e6d89bad99e9b6be9e40ad0295a2bc4025aa4e99f07
-  license: "GPL-3+ "
-  license_text: ''
-./lib/glthread/tls.h: 
-  copyright: 2005, 2007-2008 Free Software Foundation, Inc
-  hash: ed954c215d967d813727cef3ec96b920dbfecedb4774907236526505e9fc97ac
-  license: "GPL-3+ "
-  license_text: ''
-./lib/glthread/yield.h: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: 2bcbee6893754730a99361ac72c8b8af2bcb514f7ee153772ff69c10a6ad7ea7
-  license: "GPL "
-  license_text: ''
-./lib/group-member.c: 
-  copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software
-  hash: 8474fc86e2ee602d1afb18ec7ebbae7f9f83d113d63848cfb4df91f6b741bbad
-  license: "GPL-3+ "
-  license_text: ''
-./lib/group-member.h: 
-  copyright: 1994, 1997, 2003 Free Software Foundation, Inc
-  hash: 563dcdfc1c58f40bf17d5ab635d790c0c7844c61ccd6e496de34fa33a2b3dd40
-  license: "GPL-3+ "
-  license_text: ''
-./lib/hard-locale.c: 
-  copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free
-  hash: ac46d3e77162a575cb9cd0c05179c4a69489214f6bc3c02f037007dfca33d5eb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/hard-locale.h: 
-  copyright: 1999, 2003, 2004 Free Software Foundation, Inc
-  hash: ecaf6cfa27e7cf1f1d6352bb186bc8e4e65b5fdfcb09c13e99ef463705a8fb0c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/hash-pjw.c: 
-  copyright: 2001, 2003, 2006 Free Software Foundation, Inc
-  hash: b468ec2f4a022e97eaf348f80c034c2e2e60123e1ac7e7616870d776d32f223d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/hash-pjw.h: 
-  copyright: 2001, 2003 Free Software Foundation, Inc
-  hash: 102a798ca5da9f9351c39aa2c91082bf9d774f1a330d81b924966f58543eed81
-  license: "GPL-3+ "
-  license_text: ''
-./lib/hash-triple.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: fbf36f90dc1c8954ed95b4cccf669147164280573695a4286b79f36dc4c1c4ec
-  license: "GPL-3+ "
-  license_text: ''
-./lib/hash-triple.h: 
-  copyright: ''
-  hash: 96088774b989d1fc41e81f6377fbe2c1a17baec684be47bbca7ec9a7c0071c04
-  license: ''
-  license_text: ''
-./lib/hash.c: 
-  copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007
-  hash: 4062f069a5ed949dfecf5ed42bddd98a48a5090946d9b54d800d6fa02c4c611d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/hash.h: 
-  copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc
-  hash: f6f040c23d292aacf272c2311ed2e73b4e442125219242180ca61b8a8b8a01c1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/hmac-md5.c: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: ed5bd8c5068d05ebc413d1374482c55577681191971dbfd83a866beb78da5152
-  license: "GPL "
-  license_text: ''
-./lib/hmac-sha1.c: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 4bf9541934465ef6d67baa91aceb2287bc67777ed6f7c25c0952c43c6ea464a8
-  license: "GPL "
-  license_text: ''
-./lib/hmac.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 567a64cdb7bc0339a02d4df869ded8aab7a23849fbd9e981af8a9a9acfa0d215
-  license: "GPL "
-  license_text: ''
-./lib/human.c: 
-  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
-  hash: e32265ab4d043a7abcb8f615e2cc58a500928f0421d37ecc9d774895580c1e4d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/human.h: 
-  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
-  hash: 9cecd9075608ba01827d4b74ea741b74eeb0b933f1a8850b7163cbfefaeaf456
-  license: "GPL-3+ "
-  license_text: ''
-./lib/i-ring.c: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 04cc3226eee4b74df051e43d1b1131567b9837369d3dd9f02a53ebc685f1607d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/i-ring.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 83d5e547a1b2282a81722d24d3fd7ab460d6d5d9062532235e0030df6de1bdb2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/iconv.c: 
-  copyright: 1999-2001, 2007 Free Software Foundation, Inc
-  hash: 3059e46d2d2c44be2ae300d27f485ee07d544f254865f96ebf86dea813b4fffa
-  license: "GPL "
-  license_text: ''
-./lib/iconv.in.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a0c00abb098262610f94109af9bc3bc9f27219dd9f3169ad081a47cd9228d1ca
-  license: "GPL "
-  license_text: ''
-./lib/iconv_close.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 4871e1d8a40deb9c674779c24cf93e04b326ab61be8bcb4cc8e739d22ba70961
-  license: "GPL "
-  license_text: ''
-./lib/iconv_open-aix.gperf: 
-  copyright: ''
-  hash: 6da2acfc8d64cb160d117fcf2ae6ff0c1074e75e98ec00cebcbcd25c91ff6c71
-  license: ''
-  license_text: ''
-./lib/iconv_open-hpux.gperf: 
-  copyright: ''
-  hash: 1af956e948c4e74ae425bc40a8df179820746ac4407e809a8c2c83971c8e0f6f
-  license: ''
-  license_text: ''
-./lib/iconv_open-irix.gperf: 
-  copyright: ''
-  hash: 828615fa97c1771502ef557a7aef007676e378822a93f914e2b67b5ec3ce3912
-  license: ''
-  license_text: ''
-./lib/iconv_open-osf.gperf: 
-  copyright: ''
-  hash: 2c9f609f72f0c386bfbcac0e2f65cd6624a1279429fae6d38e4c2fb91bb4fa2b
-  license: ''
-  license_text: ''
-./lib/iconv_open-solaris.gperf: 
-  copyright: ''
-  hash: 855843d24b44701480c504188b9c91b3b602d6c134e3b450cd8573fd92b35ca6
-  license: ''
-  license_text: ''
-./lib/iconv_open.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 9ed1da2147b3e675bbd6775a42ab67d25e2fe781f6cdf15eaab5c231273ff0e7
-  license: "GPL "
-  license_text: ''
-./lib/iconveh.h: 
-  copyright: 2001-2007, 2009 Free Software Foundation, Inc
-  hash: 67e4aaef11864ffbdc1e1f005051bea04babd77da24011ef95dbb4d36320570e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/idcache.c: 
-  copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007
-  hash: b9013a2865d4a3daaca3b55f2be4ed9e3a20a075a05ea60d26ea660978090977
-  license: "GPL-3+ "
-  license_text: ''
-./lib/idcache.h: 
-  copyright: ''
-  hash: be4efe8ffdf2e8d49697677451ff6b5db99c836286bace3d23e00fe57cf35725
-  license: ''
-  license_text: ''
-./lib/idpriv-drop.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 7f9a23470304193f0c1f172af0a8809eabc7b87a17c08a904e03e6f0e23c4412
-  license: "GPL-3+ "
-  license_text: ''
-./lib/idpriv-droptemp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 489bb045e6211eb0d6389cfc83518e2fe2ddc45fe2c192956d5403520ab12454
-  license: "GPL-3+ "
-  license_text: ''
-./lib/idpriv.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 46f34c0a8796bc8842508928d2398c9e0348051b305656e2e8a6b0a7b6f16b85
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ignore-value.h: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: b844f7425a0066e987565375e711d4932b9f502ff6f149a93c5ba9120c99ea63
-  license: "GPL-3+ "
-  license_text: ''
-./lib/imaxabs.c: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 4c3cd71956269b0c624236e9f02355a8ab08d726ee6663e731a88cb79a85330f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/imaxdiv.c: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 1c1e3f382e0b77378c6c8f9632d7c4635f390115c0897a74b6b7b22a3ac34be7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/imaxtostr.c: 
-  copyright: ''
-  hash: c5ccba8a9cadbb5e7d6bcb207caa40a490337d0f938712b6886792bb1c3f750f
-  license: ''
-  license_text: ''
-./lib/inet_ntop.c: 
-  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc / 1996-1999 by Internet Software Consortium
-  hash: bb85be451bd6abe2730ae9c900eca3d5dfeb58717a5fe8020fd32c3197efe395
-  license: "ISC GPL "
-  license_text: ''
-./lib/inet_pton.c: 
-  copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 33b53b62f48e6b8843c4109e0cb9632ed41cd3ff07ea81a3842fb24a3d42781e
-  license: "ISC GPL-3+ "
-  license_text: ''
-./lib/intprops.h: 
-  copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc
-  hash: 9e2808fa7e1039a775f0131499ed427895f2ae4376bf394d44e98dc59d256c3b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/inttostr.c: 
-  copyright: 2001, 2006, 2008 Free Software Foundation, Inc
-  hash: 1890559866d6095b73e83459b5eaca3ea71812c130099e512534096ef240c29e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/inttostr.h: 
-  copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software
-  hash: 7f7f2820aac6266245de58217005c72002285153e793b1bdbdbab45aea9b2234
-  license: "GPL-3+ "
-  license_text: ''
-./lib/inttypes.in.h: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: b572e765fe79d49fffbc38520ba9a41cf3b650f9078db83da161ddf1bd81d03d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ioctl.c: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: a838bb30b06340f3dd9a82218a003ea0bd38e4312c6342ae7f20c6bc1fef878b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isapipe.c: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: 457e1ad81d87c14336cc33a66c0a6470db91a5d315e83811d98e82aab1dfe238
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isapipe.h: 
-  copyright: ''
-  hash: 1e08bd60adc2a94f785eb57858cc60eee319d0250d409627b746953c9778a34e
-  license: ''
-  license_text: ''
-./lib/isdir.c: 
-  copyright: 1990, 1998, 2006 Free Software Foundation, Inc
-  hash: 03760bca801b4b55e9e0a1e0cf3b2df572ad1dc4a10cceac16254afd692ad1f2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isfinite.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 040962d83f2dc48a4f86e204594272a3a1345da3bf72f77a0141696c2e67670d
-  license: "GPL "
-  license_text: ''
-./lib/isinf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 8b36f7949b786a5b398b697020f0bae0094e677bc8237320acdf88dd784c4f27
-  license: "GPL "
-  license_text: ''
-./lib/isnan.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isnand-nolibm.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isnand.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 130313c72e69a6238a9736af813940f148965be7cd35509e7a7db5af4b502737
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isnanf-nolibm.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isnanf.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isnanl-nolibm.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/isnanl.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
-  license: "GPL-3+ "
-  license_text: ''
-./lib/javacomp.c: 
-  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-  hash: 5510a586bdbed690c0f58f407e86f128dd19f69e30f7b763fc80645dfdb5fdab
-  license: "GPL-3+ "
-  license_text: ''
-./lib/javacomp.h: 
-  copyright: 2001-2002, 2006 Free Software Foundation, Inc
-  hash: 7796f276d24731ee6d3c7f5294adfe566e8c046007020386e7f14820b6e0719a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/javaexec.c: 
-  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-  hash: d5c2f1711f1f3dd4c31a2579a9a93a3f361c1b1b03e78713f1935e5c360e3e01
-  license: "GPL-3+ "
-  license_text: ''
-./lib/javaexec.h: 
-  copyright: 2001-2002 Free Software Foundation, Inc
-  hash: fdd928324e8ecf1d026624ada4377dc47be047d3e38b42a0456e1dec3b50a51b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/javaversion.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: fdead42e957d45aad5a32be39fc000b965f101ba1255624f9b54cccc347dab26
-  license: "GPL-3+ "
-  license_text: ''
-./lib/javaversion.class: 
-  copyright: ''
-  hash: 2bee26b0b761a52a418a6488d94be8af824a30a3f87f50cb8d35f4b7a54a13a6
-  license: ''
-  license_text: ''
-./lib/javaversion.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 29a446b837cf48407147af943a7093bdb31bb10c00fc791eab8870a4acc0602e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/javaversion.java: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: a97b370d2fde64e69acc4e2896d1da82e09cbf28058f4565b2f61d6433088d72
-  license: "GPL-3+ "
-  license_text: ''
-./lib/lchown.c: 
-  copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free
-  hash: 953d98a6f7fe6ee1359d3d4946aa47ae6596a61298964fd3c03b359f351f0338
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ldexpl.c: 
-  copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc
-  hash: c540324ac2ca2517b41b719aad57bf1773ee104baf901c03daa8bbf5208d3e3c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/linebuffer.c: 
-  copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007
-  hash: d85578cc459795d236f48e817ded298d632fa6890aac27376aecf0c47a856fa8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/linebuffer.h: 
-  copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software
-  hash: 34656b0c4b8d689a203a09d7b36721f38b76bcb871571a8c4b0d923840a9fe58
-  license: "GPL-3+ "
-  license_text: ''
-./lib/link.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c0b30ef6d1e001b2928d2bb394b5762a98b6b6ede802eaa83c1319c2e03dce1e
-  license: "GPL "
-  license_text: ''
-./lib/listen.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: c6134f3762f75b62f22278b0c4dd5119a598c12d4e5c20957e32c6cd33314666
-  license: "GPL-3+ "
-  license_text: ''
-./lib/localcharset.c: 
-  copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
-  hash: 1548af2400728ae263f6a2bb0118e7778437b3639878649dc0257a527e4e0629
-  license: "GPL "
-  license_text: ''
-./lib/localcharset.h: 
-  copyright: 2000-2003 Free Software Foundation, Inc
-  hash: 119c2de543436735fe784154d840a118ae31756c5fbbbb7f30b1cd3e2b54616a
-  license: "GPL "
-  license_text: ''
-./lib/locale.in.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 208f60fb61b19efcd077917af5a61aad7ac1210ed158ba35d67c172ead537649
-  license: "GPL-3+ "
-  license_text: ''
-./lib/localename.c: 
-  copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc
-  hash: f6fbb8df7f52b6eafa7552a49d6e5eee9816b690a0d89c2b03462044652914d2
-  license: "LGPL "
-  license_text: ''
-./lib/localename.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6a79383773a37a8b6886c6d119e3890f98db4a414a013cc80eac6449b8e5fe4b
-  license: "LGPL "
-  license_text: ''
-./lib/logl.c: 
-  copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
-  hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/long-options.c: 
-  copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005
-  hash: 4365412d9fe5d790d7ad8e3e03649fe0e872a7e666491c956fbbdaded0030cc0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/long-options.h: 
-  copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc
-  hash: 4f9add7cfbe1ff66d2f74e25eefc73829aef3fb75c1d70eb1760a07c288b5a31
-  license: "GPL-3+ "
-  license_text: ''
-./lib/lseek.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 02f75754750c8263d25c4282d7b6167a2d40d0c8f8cf8a952486fc65dc812321
-  license: "GPL "
-  license_text: ''
-./lib/lstat.c: 
-  copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc
-  hash: 345ec037534ce5c96f9599c78e87c36be1fee4649a8ec187168445e6bb2d1cc7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/malloc.c: 
-  copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc
-  hash: 7754ece2820e7ddc5a364b370c2560187d53c00f4695409abd04ecedeff2aa94
-  license: "GPL "
-  license_text: ''
-./lib/malloca.c: 
-  copyright: 2003, 2006-2007 Free Software Foundation, Inc
-  hash: e0f9431b8801560a2ec9fecb1893f9c1443bd37ac24a4785196d0c03321f52da
-  license: "GPL "
-  license_text: ''
-./lib/malloca.h: 
-  copyright: 2003-2007 Free Software Foundation, Inc
-  hash: 56c3717d1d0f5f3cbdf6f2b581ad097dd47935c459a239db9ca84db9fd339f1c
-  license: "GPL "
-  license_text: ''
-./lib/malloca.valgrind: 
-  copyright: ''
-  hash: 93322a37edfb58a01aa98fa0cc0c4887861c816c873681286b20873bee36e170
-  license: ''
-  license_text: ''
-./lib/math.in.h: 
-  copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
-  hash: 1d71d3fe653ddb331f364aadd7e0db6e31fc0a63300b049925c39c9120777288
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbchar.c: 
-  copyright: 2001, 2006 Free Software Foundation, Inc
-  hash: 1b800acccc08b7bf9876ec834e26931f8cbc2ca5f69d788879010a196026a89a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbchar.h: 
-  copyright: 2001, 2005-2007 Free Software Foundation, Inc
-  hash: 419eac128ee022faceedcbce731388308f72bf42d570dcc74d67721645d9ad75
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbfile.h: 
-  copyright: 2001, 2005 Free Software Foundation, Inc
-  hash: f148ab5a88b3ab7847530f40507a08b257c44574da3e3824feca0501fc1ff87d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbiter.h: 
-  copyright: 2001, 2005, 2007 Free Software Foundation, Inc
-  hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbmemcasecmp.c: 
-  copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc
-  hash: f5ab326ce04660d7c088d2589429beeb7310d839bd0559a3a37f42497870f830
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbmemcasecmp.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 85c672759815348bfc4928739797c22787d4f55386d3bb5effd4685cd12f7496
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/mbmemcasecoll.c: 
-  copyright: 2001, 2009 Free Software Foundation, Inc
-  hash: cab139308f71e0434b70aeaf0f3dbed1381ead7271c0d992e00b93438c1d6499
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/mbmemcasecoll.h: 
-  copyright: 2001, 2009 Free Software Foundation, Inc
-  hash: 746e4714316afcd2eb3d13bb38d3c2776496e6f2f77b745a1d694e53a6f74a61
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/mbrlen.c: 
-  copyright: 1999-2000, 2008 Free Software Foundation, Inc
-  hash: 34f5f51edaf35ee0284c34df8f8288a04625716cf5817d6eefc9c8dad9b06473
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbrtowc.c: 
-  copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc
-  hash: 76ee0ca75066f435d593cbebd63b7abab83e289e38af89d03f5fbba1a1b9ca8a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbscasecmp.c: 
-  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
-  hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbscasestr.c: 
-  copyright: "2005-2008 Free Software Foundation, Inc / TOLOWER "
-  hash: 067b762668e77d779287cb9e16e0d9d0d54425834153a41df667fe96abe6d5ea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbschr.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 0400e89b869bf824f778a6860325c96dbf6fc811f1872770a0bd662a5af0f847
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbscspn.c: 
-  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-  hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsinit.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 295fe542f5ad6e27ca5816217b9805d2428ea1aabd57962bdb2d3306a6c769fb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbslen.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsncasecmp.c: 
-  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
-  hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsnlen.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsnrtowcs.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbspbrk.c: 
-  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-  hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbspcasecmp.c: 
-  copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
-  hash: 07f7fe969a7c752b56b078f855dce95806287b22873440d798b831f5629d3589
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsrchr.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: aae99e9b396b908d7c7fcd21ce6bcb2e4aaef1810a36771e91c2436918d26978
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsrtowcs-state.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: c1ee8e5f9ff539152510bee610b85b5129447259bd0740852310fbe0aa05dcfb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsrtowcs.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbssep.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: e91f2687c32b2d7fbb211e0e114d331fff93022b0c657cc6b2a6a934cb3b67b4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsspn.c: 
-  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-  hash: 96a736a43629e5ae2f508a50e854f65078635e6552ac998e4b72d981b4de9333
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbsstr.c: 
-  copyright: c / 2005-2008 Free Software Foundation, Inc
-  hash: 05f8fd03123cf70b50e8a4ca02b2bef23c41c488ce1f33530c0e5b912b20898c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbstok_r.c: 
-  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-  hash: 1f180b2d8a6c65bfff77cd72bec0837f16a2a39411db702acaeeddcd0797a7cf
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbswidth.c: 
-  copyright: 2000-2008 Free Software Foundation, Inc
-  hash: 20f724a9c2c1b2039071c36cc6fa2828284e3561211957e7800e0275df016a16
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbswidth.h: 
-  copyright: 2000-2004, 2007 Free Software Foundation, Inc
-  hash: f66eede184bcac83a9639c243acc2e81ac0b5c2ce302a8ef776ce3896ab69682
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mbuiter.h: 
-  copyright: 2001, 2005, 2007 Free Software Foundation, Inc
-  hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/md2.c: 
-  copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
-  hash: 04204819baa32da88084b2206ea067ea6a78cde426759ad1eaf12598747f9715
-  license: "GPL "
-  license_text: ''
-./lib/md2.h: 
-  copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation
-  hash: 1635bb2eff1d6c4202462a1493aa8fa1122f0b8c628f9d5e1a1bd1b959fdab11
-  license: "GPL "
-  license_text: ''
-./lib/md4.c: 
-  copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
-  hash: 0862a8a513fa370cc94a968cac68ab365d1c9a3648137d2af8aaf5c719a4b737
-  license: "GPL "
-  license_text: ''
-./lib/md4.h: 
-  copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation
-  hash: dcc57d0ac574c78b51a7293f7ad573d8a4c524cf2988b283d86fc5ff1b5f57bf
-  license: "GPL "
-  license_text: ''
-./lib/md5.c: 
-  copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008
-  hash: ffa2dd5235fc5bc1cff6f871fca1f3804da0f74bbdcfa48050479b24225ac1e6
-  license: "GPL "
-  license_text: ''
-./lib/md5.h: 
-  copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009
-  hash: e0f5a2253099054a9a71d12e1df625a6f7afa5bed4c53400f687e1b319bd0f95
-  license: "GPL "
-  license_text: ''
-./lib/memcasecmp.c: 
-  copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
-  hash: 807b6ac25ddd6d8ae26a583a2ae26a3a1cfb85acd6c8c70fd81e0dcbb30b7905
-  license: "GPL-3+ "
-  license_text: ''
-./lib/memcasecmp.h: 
-  copyright: 1996, 1998, 2003 Free Software Foundation, Inc
-  hash: 18edc330f64fe3fe7683e14bcb89316afede0ebbf8ce49bc0abcd324eaecdf41
-  license: "GPL-3+ "
-  license_text: ''
-./lib/memchr.c: 
-  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008
-  hash: 1b3448d898ff7ee9149e469a0d1dfaa91777ad13ac93aeca526c1d7534006686
-  license: "GPL "
-  license_text: ''
-./lib/memchr.valgrind: 
-  copyright: ''
-  hash: c4d33a28f691c84b723d8efc9fcdf251c64affe0008457a7b2fe246c1493dff7
-  license: ''
-  license_text: ''
-./lib/memchr2.c: 
-  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006
-  hash: f8a8a07596253d814b66f51a219b27446056819948a185735c326a34032971de
-  license: "GPL "
-  license_text: ''
-./lib/memchr2.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 5b2e0321ef5edf4284193b2bb4a6b3837d05ba4d909864b2faea89fa327027c0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/memchr2.valgrind: 
-  copyright: ''
-  hash: 44d9292cd45aeb29569397844ca468602c6e200a76dcba52f4f852fd64fab480
-  license: ''
-  license_text: ''
-./lib/memcmp.c: 
-  copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software
-  hash: 115e253d20ce838f3f9a7b7bdb87ca7bc9c5f1cfb6217d3659c62d22b284250f
-  license: "GPL "
-  license_text: ''
-./lib/memcmp2.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/memcmp2.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/memcoll.c: 
-  copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc
-  hash: 45afdae44d3da5345c4e1ff5bbbe23a35f6c8f04d1f7913937376f96d3927dd6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/memcoll.h: 
-  copyright: 1999, 2003 Free Software Foundation, Inc
-  hash: ceebe2fe05b83b4b212dc4dc72283ab2d56ca2e8778bd92fd1867d9df2c2b1ba
-  license: "GPL-3+ "
-  license_text: ''
-./lib/memcpy.c: 
-  copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
-  hash: e77f76fb0280fc06e306294c9d397a3319c397fa293104c6f3c231c149ae3597
-  license: "GPL-3+ "
-  license_text: ''
-./lib/memmem.c: 
-  copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
-  hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
-  license: "GPL "
-  license_text: ''
-./lib/memmove.c: 
-  copyright: ''
-  hash: bbdc865dae97e17c0683fdb3a8eada83f89acfb60003bfa558dc1a7bb63fd59c
-  license: ''
-  license_text: ''
-./lib/mempcpy.c: 
-  copyright: 2003, 2007 Free Software Foundation, Inc
-  hash: 162deb5da2eb01183cd1ea3c6c29887ff8f634735322780be17607aa892ec4a5
-  license: "GPL "
-  license_text: ''
-./lib/memrchr.c: 
-  copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005
-  hash: 7df103a286eed4dd6f31836264675378b140d030d4dcbb3e810f24d122227d43
-  license: "GPL-3+ "
-  license_text: ''
-./lib/memset.c: 
-  copyright: 1991, 2003 Free Software Foundation, Inc
-  hash: 40655652ef5140299df50fcd8dbb02a23d78c3961e6078fcf866232c481752b7
-  license: "GPL "
-  license_text: ''
-./lib/memxfrm.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 925c125df6e81f5c5be0eee6a767546cf977fc4e55b5712c490cd84f80061da8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/memxfrm.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 8fbe3c5f0271469b59387f418cf5a7a39d02a67082c24952d53ad9e12e1ff3f2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/memxor.c: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 95bea5a33c7fc7fa109f69789827d4274d5f8f8b0d8ad5e195fcfa3df0838ac5
-  license: "GPL "
-  license_text: ''
-./lib/memxor.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 8b8f42a17c5880f430a23152165a2a48a1d9ce6f523fcc08cf0fa013d207820c
-  license: "GPL "
-  license_text: ''
-./lib/minmax.h: 
-  copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc
-  hash: fc14ab477958a0d028d651e94f71938ac898148d7a4fb3641065e97ffc0033ac
-  license: "GPL "
-  license_text: ''
-./lib/mkancesdirs.c: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: fbf7223604ae868a286a8b7782520dcfecf8871450373ce6eddd4231d6987d86
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mkancesdirs.h: 
-  copyright: ''
-  hash: a956611cade93a9ab7ab7b3a953fd1555ed37d0bf625e985bf66067e1b158431
-  license: ''
-  license_text: ''
-./lib/mkdir-p.c: 
-  copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005
-  hash: cca87ad7e743252b92404f484d9be69bc26ebc17de6d3091edfe804910f54529
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mkdir-p.h: 
-  copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006
-  hash: bf444d5e7cf40b933757ee95b2fb1d8348f6c03d75afbb4b093609ff4cc6d27a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mkdir.c: 
-  copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc
-  hash: e036cb236f6cf2b150e76519fa45b1e2d5a887bf7d45803e686f5a302b0f4e66
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mkdirat.c: 
-  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: e9de0eaf6cda53b633eb6f3b637d1a89e21ee06ea81e2578412a0a1f4f33a0ae
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mkdtemp.c: 
-  copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 90c1ed532e82f71aea40266d94df8e15d52ef9622ee699ae2a3358ba9e0fa5db
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mkostemp.c: 
-  copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mkstemp-safer.c: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 5dfad6cc702f2dcd88df092b3ebee11ef4795e45592e03d7f1c7841a9a5e48e2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mkstemp.c: 
-  copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mktime.c: 
-  copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 1a80cec494e14569464c9c913b8d639fde5ca46a2ad8b19c097398be567c3987
-  license: "GPL "
-  license_text: ''
-./lib/modechange.c: 
-  copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005
-  hash: 04c294fd66aee3490b759ca54e9bbc039f30063774f91b695f200425413f52cc
-  license: "GPL-3+ "
-  license_text: ''
-./lib/modechange.h: 
-  copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free
-  hash: 9e926e58af501dd9da1d504389fed35d905b66bccc24a4ab3a30e0e2eb6d8d5b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mountlist.c: 
-  copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc
-  hash: 8131b2bba35b93115b79375a032a364f5821a6773dbee18aa26a24e896829459
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mountlist.h: 
-  copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
-  hash: 19c16002f5ad4f33a7ebd8c726e357e18d9a7f2f8ae6b1a42459ecb2eba2e0c8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mpsort.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 754a18c37e339daeaa3129f85d1e11a2e8eb04ce0b9b382d25a02b40dee33112
-  license: "GPL-3+ "
-  license_text: ''
-./lib/mpsort.h: 
-  copyright: ''
-  hash: b88563a5eb4834d0691531bdfead0f4a1c6441fb83fca6b4d49b862ca6d4e651
-  license: ''
-  license_text: ''
-./lib/nanosleep.c: 
-  copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free
-  hash: 2fb5279d8f37cfd3ec3a500d9127e805131b37d39fa15187a82bfefb3b7fbe77
-  license: "GPL-3+ "
-  license_text: ''
-./lib/netdb.in.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 313d83faf1e58b363f56df9abd41c694cc877655a1f383b9c96c52f2b5492090
-  license: "GPL "
-  license_text: ''
-./lib/netinet_in.in.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: ba843c9c4800f24e66a3b94aefe21730afdc0233254175a20b3f503b12b022a1
-  license: "GPL "
-  license_text: ''
-./lib/nproc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
-  license: "GPL "
-  license_text: ''
-./lib/nproc.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
-  license: "GPL "
-  license_text: ''
-./lib/obstack.c: 
-  copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997
-  hash: c51f2b4012075fb4a6f199dc311d6a80a6da3a59080e65c78ab906d198fa52c8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/obstack.h: 
-  copyright: 1988-1994,1996-1999,2003,2004,2005,2006
-  hash: bec03a89fef72b0110d29ed4efaa664fc79fd03132e71c57e2088432a3af65ba
-  license: "GPL-3+ "
-  license_text: ''
-./lib/obstack_printf.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: ec3b6ee4cf323b218382e7b0b4c647e67f88d44b9bde87ad0faf1004fa480c69
-  license: "GPL "
-  license_text: ''
-./lib/offtostr.c: 
-  copyright: ''
-  hash: 97beafafd8e31c4c52db5355eb0acef1fa5771aa4b21e8d75e9355494786978b
-  license: ''
-  license_text: ''
-./lib/open-safer.c: 
-  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
-  hash: f5c5c83637f90b3f8e7310337390ff817b1c3eb020f5f944b7d2cc04f809f581
-  license: "GPL-3+ "
-  license_text: ''
-./lib/open.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 1700deda821715bdbac72d0da2e09c3ce1dc34279381170e21eab9187e142c63
-  license: "GPL-3+ "
-  license_text: ''
-./lib/openat-die.c: 
-  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
-  hash: c32e1b799da53de52b5bee09ffcbbe4f2b4b4db28ef45bbcdf0af0346fee99c8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/openat-priv.h: 
-  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: de3bc79756c38bf4c0d3930bd43e5559159edaff0ee82652ee068d1f3ce3507a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/openat-proc.c: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 5adc0d5b70d50bb5b44d3de2819622c2e2f6ebbb06b868b4013b245d24e772e3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/openat-safer.c: 
-  copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
-  hash: 56934bd9aed0b0823c2ee17a8b46147af53d10daea72b9ca7c1a132ceead70d2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/openat.c: 
-  copyright: 2004-2009 Free Software Foundation, Inc
-  hash: 2cc87825fb5511fc2a3e5e700dceb67002be17775fa619eb19d96a15d8b5be2a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/openat.h: 
-  copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc
-  hash: aef33cd705f809a57238d48fd05fb4491c97687b372cecf7c69341cdcab2f654
-  license: "GPL-3+ "
-  license_text: ''
-./lib/opendir-safer.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2429dbf23e1213eb581af6196c671f69f35fed4b342c7fd3fff0d504356d93a5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pagealign_alloc.c: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 556403e976c41313f9325e500d34e5165c9f3173eeb22c7d1e80481b40a08425
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pagealign_alloc.h: 
-  copyright: 2005, 2008 Free Software Foundation, Inc
-  hash: eb99842218a16ee4d0c565f1ad99bb5143f4ee3a77e8dcce80a0bd95cf085cd5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/parse-duration.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/parse-duration.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pathmax.h: 
-  copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc
-  hash: c643310e04770fbcc160973a5552561f7c122f2a5e6a61adba5b1f6f6073596d
-  license: "GPL "
-  license_text: ''
-./lib/perror.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 9a22ceeb839da7e1b91e96f5d0812174c06aa7deb3f1312c1b9d137bbe191602
-  license: "GPL-3+ "
-  license_text: ''
-./lib/physmem.c: 
-  copyright: 2000, 2001, 2003, 2005, 2006 Free Software
-  hash: b06bd14f93155ac98d9a92df716ba22a1fa39c63b510a32beb9c06627c183012
-  license: "GPL-3+ "
-  license_text: ''
-./lib/physmem.h: 
-  copyright: 2000, 2003 Free Software Foundation, Inc
-  hash: 3a6cbe3d952eab59a5cd17b28b2b869ebdc9b8f19c1eded770524ea7c863270a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pipe-filter-aux.h: 
-  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
-  hash: dd7eec8d6ec8c14b97efee5589cb013a0d4bf682e94019d235b35fead5b42d07
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pipe-filter-gi.c: 
-  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
-  hash: 7b798dfae0edb799145d56afbab5ad04a9af74dfbe6bb5614fcf4f5357e51aea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pipe-filter-ii.c: 
-  copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
-  hash: 9049b5c7b4ed08a8c9dd5a090c5f0632c4f769691c9d0bc3abafd2ed205c449a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pipe-filter.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: cb4091cc5532a11d2184725fbafb495b5dc0e0e99d888529d15ec9f6ac8db90b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pipe-safer.c: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 8b0ecacdeacd13de295a1575a525fb82a56a4a6315081874b0c32cf2cfe958e0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pipe.c: 
-  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
-  hash: 4bad855b30e4735483d65e1b608087804110d24a67ba16cf7ed987c5f5bcd5c2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pipe.h: 
-  copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc
-  hash: 8e9240d53e76426a4087f6a35ebd4b865be3105da821c9139043bf9232c4c171
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pipe2.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 61562647025e035a2e08fcbba935557f0ce2b3a273ca93855a3184d523bdc97f
-  license: "GPL "
-  license_text: ''
-./lib/poll.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: 033d3d5afa8977c21203f543b7bac8bc53f51acf846088848087638d72ff8bf0
-  license: "GPL "
-  license_text: ''
-./lib/poll.in.h: 
-  copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc
-  hash: 75e680c286d79502b2c414e7b8929c31247c980612c852936f7ca1d1593362b8
-  license: "GPL "
-  license_text: ''
-./lib/popen-safer.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: da9c884b0efa4edd9844b332c14b060d0cab98c6049f38731a3d590b89a00d06
-  license: "GPL-3+ "
-  license_text: ''
-./lib/popen.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d7c25fe6b43efdd98d5042c3424eba51cd53ea80bb948f9a92a099fb8c02142c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/posixtm.c: 
-  copyright: ((unsigned int) - '0' <= 9) / 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004
-  hash: 4ba1c7c3e6714bb668acbece4b919082141b0a2736fb94262f2eb8e2598235d5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/posixtm.h: 
-  copyright: 1998, 2003, 2005, 2007 Free Software Foundation Inc
-  hash: 942d45b6994556544668951294f7b94af106ac8b0b2ce064003998679266d698
-  license: "GPL-3+ "
-  license_text: ''
-./lib/posixver.c: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software
-  hash: f931363ed3fde9bde1676789900417a39c317a4fd6dd869b69d1dbe7ff3a035a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/posixver.h: 
-  copyright: ''
-  hash: 36d1d0fffe2504bfc87051722c32887652d6719a80a23e93cc01daee61006134
-  license: ''
-  license_text: ''
-./lib/printf-args.c: 
-  copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc
-  hash: 12bb86c9307ecf947c3e487e6bf53531b56f83f43d5e9babf59a2a57cde92c7c
-  license: "GPL "
-  license_text: ''
-./lib/printf-args.h: 
-  copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc
-  hash: cf140b5cb22fa0718dbc5a41c94ab6327a7a447612d93e4b6c51016418701bc8
-  license: "GPL "
-  license_text: ''
-./lib/printf-frexp.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/printf-frexp.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/printf-frexpl.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/printf-frexpl.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/printf-parse.c: 
-  copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc
-  hash: e87d67950b9b8fd0411ed7bd3201b3ae9eb97549cf5d6255c2f6065e46d1aff1
-  license: "GPL "
-  license_text: ''
-./lib/printf-parse.h: 
-  copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc
-  hash: 1cbba74b564ba38b983e35311a8dcb098229112ee464a2940dae6abba3a12247
-  license: "GPL "
-  license_text: ''
-./lib/printf.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/priv-set.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/priv-set.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/progname.c: 
-  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
-  hash: 92661819f28e9fd0cb1b6c24c52d6f96e2746bf9eb417cf6cd6fb92a009d0fbb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/progname.h: 
-  copyright: 2001-2004, 2006 Free Software Foundation, Inc
-  hash: fb156ffb4593024e0b50a3bfa0f8e0c9d280dfe5cc173a7c2b3796e892b3243b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/progreloc.c: 
-  copyright: 2003-2009 Free Software Foundation, Inc
-  hash: babc96a49ada0b13bd47d6931240b971ddf7a571a2c9a989c351f1b54caec1df
-  license: "GPL-3+ "
-  license_text: ''
-./lib/propername.c: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 453584a838b6191dd3f10ed6858fbc73356af59689880952a06d1984c013e443
-  license: "GPL-3+ "
-  license_text: ''
-./lib/propername.h: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: b709e58dcf9e44473ab7139d39df8d4143a783b73be0b4b8e5f589e2f37ff33f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/pthread.in.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ef4cc2c979afda964299a12c9b1d50231399227aa30af97c27d6fad997de2255
-  license: "GPL "
-  license_text: ''
-./lib/putenv.c: 
-  copyright: 1991, 1994, 1997-1998, 2000, 2003-2008
-  hash: 17b29fb75137b2e5e475f2813253c186798f360d5711c1ac87ef1796680902b1
-  license: "GPL "
-  license_text: ''
-./lib/quote.c: 
-  copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free
-  hash: c4a8b48c291af2ee7a2a7f70e0a643b88950e3ade7d29053180a8e109d792efa
-  license: "GPL-3+ "
-  license_text: ''
-./lib/quote.h: 
-  copyright: 1998, 1999, 2000, 2001, 2003 Free Software
-  hash: 5d10e05c536ff1a439a2f8460f1e6ac91d61ba93ebf6280fe6ab090f9321d27b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/quotearg.c: 
-  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007
-  hash: aa0d608c0d77808b3ad8e91a0a3b802b9a13118b657be7df6bd43b7aec178ef0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/quotearg.h: 
-  copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
-  hash: 2e6f8072d5c251a83bae1fd9e1d85ed223633968bae640a6ab6e759963b50d0c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/raise.c: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 50b03c3b985400bc1e7f8910337b51a9ce593ebd8b792aa1f1a1788960c9c26a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/random_r.c: 
-  copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation
-  hash: 56ff6e2aaf2d55a023c78529f964988504c867e654d0df6993406e27656be439
-  license: "BSD (3 clause) LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/rawmemchr.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 45a83b9183090995a3bb18e9b251a511464e420d7fa99da1e03ce2d9bd3d4e6b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/rawmemchr.valgrind: 
-  copyright: ''
-  hash: f728bb18311f04d34ed0495880117ccaa59b4c6bc8ebaac82459903cfc3247c8
-  license: ''
-  license_text: ''
-./lib/read-file.c: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 51c7d95dd1381f2a59ceb5c375cfb7998aec903e9b91e27baa7da0afa5e8468c
-  license: "GPL "
-  license_text: ''
-./lib/read-file.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: ca324b683cf28737c1848bb23eb0b92cdc0044ee67094c57e91c08bdbf81f53e
-  license: "GPL "
-  license_text: ''
-./lib/readline.c: 
-  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: 1c45ecec189bf0ab208143e3b0965baabebfcccb8f2389c02fe5ba6b4b7648a0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/readline.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 4cafc96af802460b1d7f54218bf92ca62cf6b7cd0a2abffc02d7ea516d1d1946
-  license: "GPL-3+ "
-  license_text: ''
-./lib/readlink.c: 
-  copyright: 2003-2007 Free Software Foundation, Inc
-  hash: 4a11f960e0153527f36536d9b396257683b425331d992420cffc853dfec35ddc
-  license: "GPL-3+ "
-  license_text: ''
-./lib/readtokens.c: 
-  copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc
-  hash: ffc9a757ad67bba5dcce13dfac14da216892391e5879cee666b99d8154c49b0e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/readtokens.h: 
-  copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc
-  hash: 452dfbc07c636749aa830a30599c7c5bc109f4c51b72d8891b968640b102b9d5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/readtokens0.c: 
-  copyright: 2004, 2006 Free Software Foundation, Inc
-  hash: 8cb5713080fed145a957a71a48ce5c11d1d74bd0964b2f90d2d52f9e643a1db4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/readtokens0.h: 
-  copyright: 2004 Free Software Foundation, Inc
-  hash: fa2844a8aefa737f7d2630364652206697cebc7c5d15193fb3273257c1afa96b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/readutmp.c: 
-  copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software
-  hash: 6018c3b26e7b6cc70156a39368851213becaa215df3e58ef5966e9237d173463
-  license: "GPL-3+ "
-  license_text: ''
-./lib/readutmp.h: 
-  copyright: 1992-2007 Free Software Foundation, Inc
-  hash: e4edf9b2cd3b4a9662bd1a50b7a068f8dadee724d6b47e05b5c629cc890cb0f4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/realloc.c: 
-  copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
-  hash: b65d6b9cadf8e53a3ff901459826791ef77acce1f247a65f3759c647442f3de9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/recv.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 86a2667aca771f6d5c7502ac7cbddf51018f3dea268d5a1461b98f7b9af5f095
-  license: "GPL-3+ "
-  license_text: ''
-./lib/recvfrom.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 76c2990bcd168811c2511e685b811321ebc18fb7257375d1cb2f7d025d90dd34
-  license: "GPL-3+ "
-  license_text: ''
-./lib/ref-add.sin: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: 384e11c05bb265e3613f6e8b6c445f77d0cecc679e59cddac3c606015c6f5fc3
-  license: "GPL "
-  license_text: ''
-./lib/ref-del.sin: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: 55d01b01839af2472b2f966cda363787756440f9ac8024938ea8dfa8b2323862
-  license: "GPL "
-  license_text: ''
-./lib/regcomp.c: 
-  copyright: 2002,2003,2004,2005,2006,2007,2008,2009
-  hash: c2483b14cafcc8625bd4c467a5fd09efa0d50666fbb8a5fd38e2123b1ecb0945
-  license: "GPL "
-  license_text: ''
-./lib/regex.c: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: b01492f4d85ec55b5acc0f48cbe61e292c5b461a01bda985e49a53989594e947
-  license: "GPL "
-  license_text: ''
-./lib/regex.h: 
-  copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006
-  hash: c53492d2516ee161d8077ce24002a78d186df06b5c5941fa8401ef7998ac8375
-  license: "GPL "
-  license_text: ''
-./lib/regex_internal.c: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
-  license: "GPL "
-  license_text: ''
-./lib/regex_internal.h: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
-  license: "GPL "
-  license_text: ''
-./lib/regexec.c: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-  hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
-  license: "GPL "
-  license_text: ''
-./lib/relocatable.c: 
-  copyright: 2003-2006, 2008 Free Software Foundation, Inc
-  hash: 0d1858bafd12c7ab346742483ec5d97e6efbdebfd46524a7a8f231696f2a22ac
-  license: "LGPL "
-  license_text: ''
-./lib/relocatable.h: 
-  copyright: 2003, 2005, 2008 Free Software Foundation, Inc
-  hash: bcbac1b3bdd53abac5276b593b5ab4e22160d29de32e77245f5d9a04269770cf
-  license: "LGPL "
-  license_text: ''
-./lib/relocwrapper.c: 
-  copyright: 2003, 2005-2007 Free Software Foundation, Inc
-  hash: c167810a619a4782afbe8842f06bdd194461d73cc0a1f4c1dfc0e5c49815a107
-  license: "GPL-3+ "
-  license_text: ''
-./lib/rename-dest-slash.c: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: ef1b249ccdf7cb59741f8b296b4aad87ef269ecddf2d084a4d560b83e6a804e2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/rename.c: 
-  copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software
-  hash: 1f9e11ca836ae5b2fb8b9e66aed55f3d358c7e104a480df3fd71801eb0a0bb64
-  license: "GPL-3+ "
-  license_text: ''
-./lib/rijndael-alg-fst.c: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 49cc6c6e9d8de361675d0546671526e3109140364ce29855fbb8de575d6fee29
-  license: "BSD GPL "
-  license_text: ''
-./lib/rijndael-alg-fst.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 162ce649f0d069335d8228a612fdf65ceae6f3475f5dac1558ec29010f225634
-  license: "BSD GPL "
-  license_text: ''
-./lib/rijndael-api-fst.c: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: b99f158275dd4fe795b389f5caccddb053dff98d2b957da0f54453adbfd5a538
-  license: "BSD GPL "
-  license_text: ''
-./lib/rijndael-api-fst.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 5e47a11e8fa358f2f9d5b74032b2f486490674675a23560778ff639f0ac38985
-  license: "BSD GPL "
-  license_text: ''
-./lib/rmdir.c: 
-  copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free
-  hash: 018a558c35eb9dac411a0a1df8bc31f403fdd1d5de43451c3a4dfc748b0a4ed6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/round.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
-  license: "GPL "
-  license_text: ''
-./lib/roundf.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
-  license: "GPL "
-  license_text: ''
-./lib/roundl.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
-  license: "GPL "
-  license_text: ''
-./lib/rpmatch.c: 
-  copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software
-  hash: 55373da72f4e3da7649f19e32ad56f0c83c97a9d3259a237b8997c00ddcf5b9a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/safe-alloc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9844c4950cc5bf374ef430b7dc9b69be026b2120e88864e26aea2bbf2855ae62
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/safe-alloc.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5211b4e3531c33d28506f04532eeffb65e8df0d999c5b9a00e3f36d3fe7bf46c
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/safe-read.c: 
-  copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free
-  hash: d12efe172ef14861fdb86cf76cb61277327a60cabf2a7afdafc1ade15afb9187
-  license: "GPL-3+ "
-  license_text: ''
-./lib/safe-read.h: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 2667a28d26546c5be4bcaa1fca81b4e13cd518f9717d314db29d047fdd7494d6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/safe-write.c: 
-  copyright: 2002 Free Software Foundation, Inc
-  hash: 6aa76f15c5e0ee9a8e0b1be63deb69b31fe263a9d1c5c10ffb2e8fe6dcd7c0f1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/safe-write.h: 
-  copyright: 2002 Free Software Foundation, Inc
-  hash: 8179ca35d82597a466d03026c42e05761523d0036556a873fe42692f500476ae
-  license: "GPL-3+ "
-  license_text: ''
-./lib/same-inode.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 81b80979de8a7e53f45381e99597bc7390cfaa00e499dac502c31c58415b42a8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/same.c: 
-  copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free
-  hash: ce1a1ec04e3aec75a5006861db979396761bc69c62096f1996e7ba2f5f3bbba4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/same.h: 
-  copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software
-  hash: 01df5ca3af0102dba2561b287d19d5651e891876ac5c54f1dde91b7bd23bb64c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/save-cwd.c: 
-  copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free
-  hash: 422df5e09ad67e75a7c147e25f3da9a175fa80d7259241a3da6155c5ce96f539
-  license: "GPL-3+ "
-  license_text: ''
-./lib/save-cwd.h: 
-  copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc
-  hash: 4b0e13da5aef3208b1bce2ab1b10c453cbf1e370c969b41bac7be51e2b76e809
-  license: "GPL-3+ "
-  license_text: ''
-./lib/savedir.c: 
-  copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
-  hash: 928cfb9bf8e834b1b6ef7b1825e58d6b44fd5770a7cea787dd66589c84e8c274
-  license: "GPL-3+ "
-  license_text: ''
-./lib/savedir.h: 
-  copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc
-  hash: cfa56cb818e618c3fe57c975e9f0c5ba8723bc62e0de5473481cd5587cbe8350
-  license: "GPL-3+ "
-  license_text: ''
-./lib/savewd.c: 
-  copyright: 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: 587bc08918885aa18f980c1c6950d2dcd55e2ffa0c869d562185891b6960dc6f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/savewd.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 6d491cbfc2163751c419f2376a46d56cb899e625395ca51efb08dfeb6ad2b7ea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/scandir.c: 
-  copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc
-  hash: 2bea6e6d81d5f7fd79619df895eaf13e5823217eeabbf1ef38c343dc53d17b06
-  license: "GPL "
-  license_text: ''
-./lib/sched.in.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 5c835c4e5fd04776b804eab97562bd18f61757bfecab83a838e62f90997512b6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/se-context.in.h: 
-  copyright: ''
-  hash: e71efe13fc9c187c71a5f39e76a5a4e4c03a3194a14acf7b4af3fb81c3d879a8
-  license: ''
-  license_text: ''
-./lib/se-selinux.in.h: 
-  copyright: ''
-  hash: 70669262b44df770b656e06dd0607d4fa4e070616a4a93731d36d8254d0eb8bb
-  license: ''
-  license_text: ''
-./lib/search.in.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 98707f0a63adefec5733713c576243f083b682775057a7d5971cef4277fc8960
-  license: "GPL-3+ "
-  license_text: ''
-./lib/select.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: db938a6d1b5d591ba63dd3673bb2ccd0ecd9f8b9fcaad86d3c607368122268a8
-  license: "GPL "
-  license_text: ''
-./lib/selinux-at.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: e73ac0c418e767f09a8d77674df132f0b446c5448c43a1d9303e58907d17018f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/selinux-at.h: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 2e95007054f57abccc9c2dbc0df4520778025ef925f3b74873d5d58af819e36e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/send.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 47748f45a6a25cadf5542f9543f49778f7ea6b2c87fef1bf9926c8c66e7f5661
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sendto.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 634c06211e79ad265f869003e97612a84a67d40fa6d275ace86b12592b0a8eab
-  license: "GPL-3+ "
-  license_text: ''
-./lib/set-mode-acl.c: 
-  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
-  hash: e859e38ad22b32346c568c33be9a662b92a792f63402be0645020fe91e7a865e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/setenv.c: 
-  copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc
-  hash: 5927758c893aede52f8fdc5263d4117e4614fb619646a37d5464b249f19cc91e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/setsockopt.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 1fe9bb029b10267e47bbc61360ce31f9915584f8824b3da8569b084bba160c32
-  license: "GPL-3+ "
-  license_text: ''
-./lib/settime.c: 
-  copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software
-  hash: f3fef53696d8c8b81a746528ddebe430eabebc29f83bae24fefffef92380d23e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sh-quote.c: 
-  copyright: 2001-2004, 2006 Free Software Foundation, Inc
-  hash: 27a65b308d278b6fdef8dcaac9558d0d90b8ff6974551e8892d1767765097bc7
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sh-quote.h: 
-  copyright: 2001-2002, 2004 Free Software Foundation, Inc
-  hash: e049a481e491c1fd1433d5f930becd727d362737d16f575f5108daf88ed3e08e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sha1.c: 
-  copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software
-  hash: e6f4ad18bb6193ea3a3c57b7bdd4d4c371e65ba20e2af676b3fd8578c462c6e9
-  license: "GPL "
-  license_text: ''
-./lib/sha1.h: 
-  copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009
-  hash: 59bead7118f2949f37fdfa01470646bd275f2507e9be8ab76882bbe653057d9b
-  license: "GPL "
-  license_text: ''
-./lib/sha256.c: 
-  copyright: 2005, 2006, 2008 Free Software Foundation, Inc
-  hash: 3425dcf95c1f50702ebec678cc893f4d4c851054bf580de3d9a3f56bd0e01978
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sha256.h: 
-  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 66581e4bc70d286563b89d7bb632dc9f3591df5dc926494ef60ac5e1ffb478ab
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sha512.c: 
-  copyright: 2005, 2006, 2008 Free Software Foundation, Inc
-  hash: 2d33540040b9cfd894cfda268216acf3ba9cf967d1e536a8661ae9bbf6b2e4ff
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sha512.h: 
-  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: ee0dec75a513f6772789a0b6bf0ee1ead955abeb34696a489d19ec6e13e3388b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/shutdown.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 51160b16d7393090800e4bf94a60a1df431f62ec86b1ae2f26a6c51152458de6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sig-handler.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: dc43801fc9a9f3dc8ba0d661a7db3e864cb14324b7c2cb2196f3b59a89fd6159
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sig2str.c: 
-  copyright: 2002, 2004, 2006 Free Software Foundation, Inc
-  hash: ca70d2eda30326ad5a9d6cf9336be308827519fa3ec0a948ddb151f104506663
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sig2str.h: 
-  copyright: 2002, 2005 Free Software Foundation, Inc
-  hash: e5747ec456c7780cd6b05fbfd22631cbc4bd955a230a013649b51f33a60b8011
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sigaction.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 961a07c6f2a1fa494905a8c380725451d27e61e2cade6aff296fd560d9f41564
-  license: "GPL-3+ "
-  license_text: ''
-./lib/siglist.h: 
-  copyright: 1996,97,98,99,2008 Free Software Foundation, Inc
-  hash: 1f7435d5ada1229db0e79551b2d1ded46d3de7caa6030ade8ed1a9c8385b7475
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/signal.in.h: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: a49f6db94dacf94abe74624ea1ddddc7559f95c8feb120e671e0b4ff215382ef
-  license: "GPL-3+ "
-  license_text: ''
-./lib/signbitd.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 4fe9d03e71253b7cb6553e84b2c0c91449a1cac16afa810f0e5f1db489edd244
-  license: "GPL-3+ "
-  license_text: ''
-./lib/signbitf.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
-  license: "GPL-3+ "
-  license_text: ''
-./lib/signbitl.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sigpipe-die.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sigpipe-die.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sigprocmask.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 64a5bd137e4ffceed28ce56b1c3ebeebbf5a2bceb1dbf8274afb4563db1a856e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sincosl.c: 
-  copyright: 1999, 2006, 2007 Free Software Foundation, Inc
-  hash: 1772f687d81fd114abb5d80bbb46c95f407f818faa4b6c89cf9c0eb57f2e536d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sinl.c: 
-  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
-  hash: aec40ee7886ef37669c9218c5d8a5e07ad40fefa4fc7a1e4e48703d51124a9dc
-  license: ''
-  license_text: ''
-./lib/size_max.h: 
-  copyright: 2005-2006 Free Software Foundation, Inc
-  hash: 26c9e27b3895dc767fb1cd998cd3d2039f08bc4eb973ca8344a2957a21ea8d3f
-  license: "GPL "
-  license_text: ''
-./lib/sleep.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 648a1c7305e84d30515cb11664201e9544fe1f2d824adb21b4e66a75bbfaaf7f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/snprintf.c: 
-  copyright: 2004, 2006-2008 Free Software Foundation, Inc
-  hash: da7f665f0930c194dc67de8e3f84305d1d9efb6941fb0c1f75bfb3017e6e2501
-  license: "GPL "
-  license_text: ''
-./lib/socket.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 73aa233a19dcdef4826a6e9c76995947a86d2671e189f51b08cd39743b9395ab
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sockets.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 99bf26833d5e9d9cd2556408cf92c515c24d6f5473b27e278d51604655b38611
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sockets.h: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: 2c890a5e463ceb8ea9e9bbdb6f2a4a07c745c89fe71888191634079bd96b28d3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawn.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawn.in.h: 
-  copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc
-  hash: dd423bdec70d026b36d8aca617a940f03fe19b9a450e3981de91dfdad00e2a4a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawn_faction_addclose.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawn_faction_adddup2.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawn_faction_addopen.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawn_faction_destroy.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawn_faction_init.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawn_int.h: 
-  copyright: 2000, 2008 Free Software Foundation, Inc
-  hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_destroy.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_getdefault.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_getflags.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_getpgroup.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_getschedparam.c: 
-  copyright: 2000, 2008 Free Software Foundation, Inc
-  hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_getschedpolicy.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_getsigmask.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_init.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_setdefault.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_setflags.c: 
-  copyright: 2000, 2004 Free Software Foundation, Inc
-  hash: 7f583d13179aba639b22ec305fd749afdeecb96823d2c32cb4dd9294a51bdbd2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_setpgroup.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_setschedparam.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_setschedpolicy.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnattr_setsigmask.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawni.c: 
-  copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
-  hash: 62be6e45aaad94e9dbc02b27f7dba559de55fac508f2e3954479674ce637e015
-  license: "GPL-3+ "
-  license_text: ''
-./lib/spawnp.c: 
-  copyright: 2000 Free Software Foundation, Inc
-  hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sprintf.c: 
-  copyright: 2004, 2006-2008 Free Software Foundation, Inc
-  hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sqrtl.c: 
-  copyright: 2002, 2003, 2007 Free Software Foundation, Inc
-  hash: 755a6706b4cfafc6b498d6efa76315b826063474b7f91834ef5aac159f116c5e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stat-macros.h: 
-  copyright: ''
-  hash: 148738a233ce05f8eb8f7d34330ceb02c5bd65c8221d02bbab595257b813e2ed
-  license: ''
-  license_text: ''
-./lib/stat-time.h: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 9aba76bc91ed527925d4c43ee4224d8ef90fa0d21475d5e4fe2976cf797daa08
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stdarg.in.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: fed8bc6587d9b9b46807cec06b2104a0c7f4f4edd00f5c3104c86ab78d64722e
-  license: "GPL "
-  license_text: ''
-./lib/stdbool.in.h: 
-  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-  hash: e8683e07480c37941452e3970f57d5f5bbcd0d742248766ea32158872b843013
-  license: "GPL "
-  license_text: ''
-./lib/stddef.in.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f3ff9d2469e9e018bbfe1a8d85d2454f7a54673420acdb29aa429cd583e45834
-  license: "GPL "
-  license_text: ''
-./lib/stdint.in.h: 
-  copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc
-  hash: 31871000acd29901edf1cd726ea2f32b9837e497b9e19a49c00374e0291c1997
-  license: "GPL "
-  license_text: ''
-./lib/stdio--.h: 
-  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: 8c7711ff90032c75717f2f7363d9a7ee7e94afa86d29510878f66dba39bb3f5b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stdio-impl.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 1ab5922a50832223e0ffc2c70fc544f9d91a363ecb50bcdb55e55c991d88b33d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stdio-safer.h: 
-  copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc
-  hash: bcaf909a5c5f8071d1141fe63d90c50832df9f511b5934124b18613c2cc60631
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stdio-write.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: ef387fa21fd98ef04fd7a0c63399aecb0f271036efc4d192baeca9c964fb1b05
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stdio.in.h: 
-  copyright: 2004, 2007-2009 Free Software Foundation, Inc
-  hash: 90996147d8e36f5883486d804050c8256ebd75940339821fbe964fc12816a9db
-  license: "GPL "
-  license_text: ''
-./lib/stdlib--.h: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 6f719ffb3bd563d1191de42881829b2e53ac17d32dd1d6708c4c22b0c065181b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stdlib-safer.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: ad05b244170755ded620afdb4d6a499a61182625b45f4458df212dd48b9b05fc
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stdlib.in.h: 
-  copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc
-  hash: 0ffeef75662fb92247d373df32beb5d8dcc8d52845a1a0cf2e3afe0f75df2164
-  license: "GPL-3+ "
-  license_text: ''
-./lib/stpcpy.c: 
-  copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc
-  hash: e277a69ab969893f97dbf9b683e7462bd56bb4a3d83e01b3637c705a0b240b0d
-  license: "GPL "
-  license_text: ''
-./lib/stpncpy.c: 
-  copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc
-  hash: 63243814e0160f070d456614689aea5b26f421817aa249c25f3449b22bd82220
-  license: "GPL "
-  license_text: ''
-./lib/str-kmp.h: 
-  copyright: A macro that canonicalizes an element right after / 2005-2008 Free Software Foundation, Inc
-  hash: 6ebb0ef34e3af533dd72b1cac88faebfab78edf50fcbe16d66a8f53ad4da159a
-  license: "GPL "
-  license_text: ''
-./lib/str-two-way.h: 
-  copyright: 2008 Free Software Foundation, Inc / A macro that canonicalizes an element right after
-  hash: 333e7d492bb7a06bd7eceb738c5bbfaa45fd376cd1fa873159ae6c102fb5abe8
-  license: "GPL "
-  license_text: ''
-./lib/strcasecmp.c: 
-  copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc
-  hash: 9fac5af7b69ba93dda82ad7e40d81dce148b1b3805ad1f85e96ed8f361e75307
-  license: "GPL "
-  license_text: ''
-./lib/strcasestr.c: 
-  copyright: "2005-2008 Free Software Foundation, Inc / TOLOWER "
-  hash: df44f98303720564f510cd6080f83b2479ba81a607e0ff35a70065d332775e9d
-  license: "GPL "
-  license_text: ''
-./lib/strchrnul.c: 
-  copyright: 2003, 2007, 2008 Free Software Foundation, Inc
-  hash: 4f484d4cc0befecd8997334083c58252e9234ad7b53c9ed4e68dbb21366491ea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strchrnul.valgrind: 
-  copyright: ''
-  hash: 110d49dc4750f651d0f237887bbdd3ed01c2d8950db226835e552d195ad9dc03
-  license: ''
-  license_text: ''
-./lib/strcspn.c: 
-  copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc
-  hash: 9c6096a1c313c8363bc4fb7ea9c8670d50859635fa4fbf18354f17b98fcdf6e4
-  license: "GPL "
-  license_text: ''
-./lib/strdup.c: 
-  copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free
-  hash: 12e93fe471e7edcd885e207e311df99c6d850b7b9ca5c3b28e39e316c66fb2ab
-  license: "GPL "
-  license_text: ''
-./lib/streq.h: 
-  copyright: 2001-2002, 2007 Free Software Foundation, Inc
-  hash: 9830f7c0042519dd01e35295d2e694c760b032cd222a31f3855f44b1a526e12c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/strerror.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: f4503783120d3b66707b724877e32b0ea1eda13cbf9e79f4640b32e3f44c7019
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strftime.c: 
-  copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
-  hash: 7600ea0821aa8b38178ea32004b358cc84e69df14ea395dd865c955b8677c320
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strftime.h: 
-  copyright: 2002, 2004, 2008 Free Software Foundation, Inc
-  hash: 4c32312ac57884519ab011ab68c92dd237dd76c2f232cd5395e8d283f365bc1e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/striconv.c: 
-  copyright: 2001-2007 Free Software Foundation, Inc
-  hash: 5e8b516e5b0f28f80803a45eb2c6be6a4c0a2282bedc384d0c3b6324c3d0df55
-  license: "GPL "
-  license_text: ''
-./lib/striconv.h: 
-  copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
-  hash: daea9a49adb2283a8f85bb18fda76f59028c8bfdd046db63226ca0c0e0350702
-  license: "GPL "
-  license_text: ''
-./lib/striconveh.c: 
-  copyright: 2001-2009 Free Software Foundation, Inc
-  hash: 34bb63b9a451ec7185541467e05029b4d5fbd1cbf5a03d3fe84ac381843e053c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/striconveh.h: 
-  copyright: 2001-2007, 2009 Free Software Foundation, Inc
-  hash: 86eb681bccb0a53f2a391f680da5d74679c2482f39258d92ef8d6b0ef17ab474
-  license: "GPL-3+ "
-  license_text: ''
-./lib/striconveha.c: 
-  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
-  hash: 5cb3167be3296d381de5cc20753a6e13eb849c736c76cdf79875fa9ffa1a41ea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/striconveha.h: 
-  copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc
-  hash: d78d74cdfaacc28ecd3e6b1d1c1934ef42f23ffe6e6a940c2fd8b9f3396d78b5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/string.in.h: 
-  copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc
-  hash: 1136d0b98b57be6dd7253ef5cacf9f4da5f028f2d885723c8bbc35a3ab13745b
-  license: "GPL "
-  license_text: ''
-./lib/strings.in.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 10e5bc3121d2994aa8fc0890d99464664f2b9d6f3e67177e371d1f4c072bc250
-  license: "GPL "
-  license_text: ''
-./lib/stripslash.c: 
-  copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc
-  hash: ca9f072b31bf11e52cbb5c73957988d28de77f56c962b0785f07af77418be677
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strncasecmp.c: 
-  copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc
-  hash: 815116d5f75c679aca0d1bb421a8370e66e40168c384ed9dd6a98d3f5ca83391
-  license: "GPL "
-  license_text: ''
-./lib/strndup.c: 
-  copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007
-  hash: 493b47a8d6f269acc1510b98b35176cc820945e10980a25eff018b436ae1bcfe
-  license: "GPL "
-  license_text: ''
-./lib/strnlen.c: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 90b853a0e4af9628fcd17de3f30a70c1a406d6517e1d18a5f5b9413c856b1c10
-  license: "GPL "
-  license_text: ''
-./lib/strnlen1.c: 
-  copyright: 2005-2006 Free Software Foundation, Inc
-  hash: ca122eb96644afef5d06ddd05a5ee8d1672a9df41eb9dee6a04360b119d62dac
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strnlen1.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 150c8f3b97a0d8163ec53ce9eeac9922489186f5ca66d9250750116cb1f8a5c1
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strpbrk.c: 
-  copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software
-  hash: 96b98866fadc00e26886d758144724ccbbc594f237800fb4314473bede51c53e
-  license: "GPL "
-  license_text: ''
-./lib/strptime.c: 
-  copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc
-  hash: e7a81072f584025045e8cd27a8aed09e13a467c6a3a157eee758bd6613856191
-  license: "GPL "
-  license_text: ''
-./lib/strsep.c: 
-  copyright: 2004, 2007 Free Software Foundation, Inc
-  hash: af7bac86580b20527ae1d65b6b78a1b038b7b9e0b005a67835c2058a71215932
-  license: "GPL "
-  license_text: ''
-./lib/strsignal.c: 
-  copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc
-  hash: e182db866c03cb48b20804d461064af0a10923ccec042890b5604c9c43d228ca
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./lib/strstr.c: 
-  copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
-  hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
-  license: "GPL "
-  license_text: ''
-./lib/strtod.c: 
-  copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free
-  hash: 528883e0f68c192c7f4c418737f36efc6ede11ce51636f8145c70d1101163e8b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strtoimax.c: 
-  copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software
-  hash: 7973e7dce509583335e94002f1d80e0f651365102e54f37f6643260b5a0f3a11
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strtok_r.c: 
-  copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc
-  hash: aef52797442d97f89d26281a0226055638efc2009e04f911fb4bbbccf7671efb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strtol.c: 
-  copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005
-  hash: 9a28728b276103445a0aa97cad8332a2cc26aa2b9be2c964b2c166b56391b73c
-  license: "GPL "
-  license_text: ''
-./lib/strtoll.c: 
-  copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc
-  hash: ffeacd90d3869005c1cbaa8aa6090606681dd0ce4407a93a241510abba0719ea
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strtoul.c: 
-  copyright: 1991, 1997 Free Software Foundation, Inc
-  hash: be855c203200b5a984ae3290890f46d4580f377b4bdafd0266e7873dab9b1731
-  license: "GPL-3+ "
-  license_text: ''
-./lib/strtoull.c: 
-  copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc
-  hash: a844c45a1416b2420bd76bef0e85cb2d0a7e363cf88325e65d285bbf5882e58e
-  license: "GPL "
-  license_text: ''
-./lib/strtoumax.c: 
-  copyright: ''
-  hash: 20d59ba9f3d7a1001d08e6aab61d928dbae2fd051e69eab2867765f8663460b6
-  license: ''
-  license_text: ''
-./lib/strverscmp.c: 
-  copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc / ((unsigned int) - '0' <= 9)
-  hash: dd6243d19084dfaafaac9441be9a71dde27f33c595c685beee735da6b4158cf4
-  license: "GPL "
-  license_text: ''
-./lib/symlinkat.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: dcc854e76c58e26c2b9f652e67d1f4d656d1115d1dc966d5a8ac27025490d91a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/sys_file.in.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 868915ed2b23fee8738485eaf605b0f29674ea76f2f27fc0a330c7e40476e7e1
-  license: "GPL "
-  license_text: ''
-./lib/sys_ioctl.in.h: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 5a85be194ab973fc6eee2464d2f6043be6ca5a0e0ca50c24c8e1947d3ba9c366
-  license: "GPL "
-  license_text: ''
-./lib/sys_select.in.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 6385d79cdb0b4995cd2158dcdc2df844a99ee46a25909c5c4f1227065077e6a8
-  license: "GPL "
-  license_text: ''
-./lib/sys_socket.in.h: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: 362d22c2394c4e40e8e2f5184c97bbd879f5b56d4ee18b4d91e7c6e29b7deaf9
-  license: "GPL "
-  license_text: ''
-./lib/sys_stat.in.h: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: e70e9a10084c5f7be3fb6d2aa62228b6f5ded082be4afadd19c01d119c502415
-  license: "GPL "
-  license_text: ''
-./lib/sys_time.in.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 808d4417fc9f057d4ad55b6add3f133d03a5322fabe3dcfe925bd47d14616a66
-  license: "GPL "
-  license_text: ''
-./lib/sys_times.in.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 3cf5a711d1c92858d4b654284c43c7ecc25d06763f8418c2e54c3309c914a541
-  license: "GPL "
-  license_text: ''
-./lib/sys_utsname.in.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: fae5021bf23d69bd35dc0d59126fd5506a194d7b57a8c0ffca7d480f8843b12f
-  license: "GPL "
-  license_text: ''
-./lib/sys_wait.in.h: 
-  copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
-  hash: 3c64ce849ea907e265c1bb91f56556fa9f828395cf62f5192851eda0f62cf63e
-  license: "GPL "
-  license_text: ''
-./lib/sysexits.in.h: 
-  copyright: 2003, 2006-2008 Free Software Foundation, Inc
-  hash: 2f0fc879d2f3a165ed05292bd2ce8f091f60eced3a2fa6f8fc1445ed4548a5d0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/t-idcache: 
-  copyright: ''
-  hash: af02ece347f0cc0361537b092cba7066186fc98ab1a92c6d10435a9be9ec9f84
-  license: ''
-  license_text: ''
-./lib/tanl.c: 
-  copyright: 1993 by Sun Microsystems, Inc. All rights reserved
-  hash: 1f3518e0705fc06460c8a4c98999f4c188b0dacc611e78239f11c5deaaf35b27
-  license: ''
-  license_text: ''
-./lib/tempname.c: 
-  copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
-  hash: f8c04e91069ab576b32bf499cda2face1c55ff82a288717173934b8e70a4dc9b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/tempname.h: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 3c1441c47f4337bfb8d432fa03ee9b1ebaaa25a5dd874e64f37eb260e8c441ad
-  license: "GPL-3+ "
-  license_text: ''
-./lib/time.in.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 41f65ec87233a41b8ccfe9364732c124a99001f260b8ac3570402b0a1628a4e1
-  license: "GPL "
-  license_text: ''
-./lib/time_r.c: 
-  copyright: 2003, 2006, 2007 Free Software Foundation, Inc
-  hash: 5dd79182477034f96e494ee4d68c9e08f882485e73c1bd05f0a650f9a46629c2
-  license: "GPL "
-  license_text: ''
-./lib/timegm.c: 
-  copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software
-  hash: f8d8b41a303f3b09ee22b4a9a247f85ffa515b47569011d5abe2f205923fc4ed
-  license: "GPL "
-  license_text: ''
-./lib/times.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: ae2efd1b1623d1978cb2d18227edd02db9d9a9f47dbecc71fbf6806f8da628d1
-  license: "GPL "
-  license_text: ''
-./lib/timespec.h: 
-  copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc
-  hash: 9d3c4eda40d629233b24827f15f5dd80c40d897e119a01126bf867193d6be14c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/tmpdir.c: 
-  copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc / ( == '/' || == '\\') / tests whether C is a directory separator character / ( == '/')
-  hash: 9de08a71227a2821978be3e6919f6232ccf2022430447f39b22e612021217871
-  license: "GPL-3+ "
-  license_text: ''
-./lib/tmpdir.h: 
-  copyright: 2001-2002 Free Software Foundation, Inc
-  hash: 4b2eb7839ae3ddbdafca11312d499ac3f469953e05e927e65a57b2d9308792ef
-  license: "GPL-3+ "
-  license_text: ''
-./lib/tmpfile-safer.c: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: b6f4f570c8724d3c78e2c7ab73929f9b4a3b30aefc058105e71ec434b5d5fc89
-  license: "GPL-3+ "
-  license_text: ''
-./lib/tmpfile.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 5626c82fc49099877c1350e01f8a80e576b6fdc73ea57162c6989f956945259f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/trigl.c: 
-  copyright: 1999, 2007 Free Software Foundation, Inc
-  hash: 8b60f78b69de56a777043569a8e3ccbef997faaac10c41e5bc0f4b450c5a66ae
-  license: "GPL-3+ "
-  license_text: ''
-./lib/trigl.h: 
-  copyright: 2002, 2003 Free Software Foundation, Inc
-  hash: 449a860f004a88ea94a76732170e38c1a861ddabf4f12c537138efbb777195c6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/trim.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 44cefabd5123525fff9af425e47c2ddb0a6a20909271f557f7954ed07cedca92
-  license: "GPL-3+ "
-  license_text: ''
-./lib/trim.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 9bb7a015426b58554581d2f9b0de5a6befeeaa73d42329bcd2d57fe4dcd84b1b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/trunc.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/truncf.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/truncl.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/tsearch.c: 
-  copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc
-  hash: 2db46af0a909abf4d92d20a20556b8de4d7d625028def290071fe4974ed0187b
-  license: "GPL "
-  license_text: ''
-./lib/u64.h: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 691a491094cad62e2b863a76aeeed5899b9d8b7ecc6c6aef6ea2cbc1f4fd6dff
-  license: "GPL-3+ "
-  license_text: ''
-./lib/uinttostr.c: 
-  copyright: ''
-  hash: 2dc91a8e7841d85e1d053f04554487d1eb07a9f84f68af10180ba7b0d865ac01
-  license: ''
-  license_text: ''
-./lib/umaxtostr.c: 
-  copyright: ''
-  hash: 690d780ea9b95f6c5cdc34874b540dd5b1bb28599537659f46ace170d23ed219
-  license: ''
-  license_text: ''
-./lib/uname.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 68f248ca49d11bdb00b1adfa2bf6527ea340aed829064d91877566fc4841c919
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unicase.h: 
-  copyright: 2002, 2009 Free Software Foundation, Inc
-  hash: 5ee6233f3be7001239f84aacf30f5e5ca96631f010b6f91a16a9b6f877642fae
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/cased.c: 
-  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: c996cbcd82623c5036d89e080e6689b335915047febbe60fe2d10b98b4a99023
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/cased.h: 
-  copyright: ''
-  hash: dff874729fe88b9abf1df3a7e29d95060e758a13afe27f18862e9091171bac89
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unicase/casefold.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d0ff7d9648a8496f25c563ab8a2d7b0a1200cbcb64444b238f29606d4bfc6ecb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/caseprop.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: bf76e4707fab507bdb7069d1750d83c55e5e7e355a93af71fd735ad042068179
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/context.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 13a1c95eebeae5e2b3ff2ca41305b3524504304664cd71a17eaa832894493f23
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/empty-prefix-context.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 493f93cb9eabb70c693a5d984111996d190a98c2c7fe60a7c67fd984414df699
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/empty-suffix-context.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b55f2b593f51969d89f98c6e7c460af0afa6d588e8123971775b1e2629a44b0a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/ignorable.c: 
-  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: a8487e39b5d100c90eebc45fa11632191a89a473d5ec421ff55594e53de557bb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/ignorable.h: 
-  copyright: ''
-  hash: eebec1a20e857e920041811c16a084f7517860f172ebf6dbe93bc9e89b00de9c
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unicase/invariant.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2b5beb7dbf02de63e2b3d6debd2322c0d62a0c2d1f309f0cecfb6daa5de73437
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/locale-language.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 3add1adc16ce963dcff1fd7b7596b8aafaa5e33639dbaff0dcbc4074d86db3d1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/locale-languages.gperf: 
-  copyright: ''
-  hash: 95c56feb8187781fe9f326e97d88816e218edd31dfceee6446844c7d8009bfa8
-  license: ''
-  license_text: ''
-./lib/unicase/simple-mapping.h: 
-  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-  hash: 895a0e771188c08f6fd448c3cee007eb3cd4ffefa11bb366422bb261dd5c851f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/special-casing-table.gperf: 
-  copyright: ''
-  hash: a4b12e5d88d868cec05dd05e6bcf4f2484acfc55fde9c60a44d9f7bf345a9d93
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unicase/special-casing.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/special-casing.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/tocasefold.c: 
-  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-  hash: 703c9c241129843d8d359363451912cddac5124fd6767b3df0331f490d4cef0d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/tocasefold.h: 
-  copyright: ''
-  hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unicase/tolower.c: 
-  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-  hash: 6ea23704da935f20f2444eb5226c07f8a734da7cf55afdb1219395887e6848ca
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/tolower.h: 
-  copyright: ''
-  hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unicase/totitle.c: 
-  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-  hash: 7c2f4b5f520e8591e420340d3d582ec1ad48b0936da5b8893b4d7fb00243a9f8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/totitle.h: 
-  copyright: ''
-  hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unicase/toupper.c: 
-  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-  hash: b42a7680521ba55979491c693e3642382a98438c56de36812766067cc151d3b5
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/toupper.h: 
-  copyright: ''
-  hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unicase/u-casecmp.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: bb95e0aba8ef01b225a0c2888a95a322733d0b39d3206f21b44f00d2b11a430d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-casecoll.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d3d6b4ec932f80e78f2e81cc958dcc14ff902e2977a213c27ba521270864a873
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-casefold.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: fcee85a09cd481698f5296dae6dde1b8d84d33fb95ff41483cc4788c692812f2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-casemap.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-casexfrm.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1639cd4e229bbbf5df8d53b658e691f476f9d9485f16edcfe5d7cc148e86a497
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-ct-casefold.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a2275dea893b28c3fe92ae867de9c70a7fdf39001053d9ef2f4091a7497e9c1b
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-ct-totitle.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2570f24e1a280b6b4cb7de56c85279674319e4cea7c2ad984241975245e76226
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-is-cased.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b4e0b17776175ec6033c0aba5d535daa7c3667a42c53463114840fbf600d5cb9
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-is-invariant.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f6e201df57529cae6e7639242610ee3722e3447d1d3ecfd99c67f98811982a3a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-prefix-context.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 823e52633d441082aa1489c520794e4fb0ef899378e8e5f75838d66a448ae3a7
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-suffix-context.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9c7366f076df0f676f00acef4437ffea7f561447d007d2f7d5476e9e0fd6f74b
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u-totitle.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 245ae2aa6d16c22e82aaabe269a3759b3a45a50bf72453eccfcbd3162c57222b
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-casecmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 3a18bce5adf8c96faba2f53500087a79f62fc9e8e3dfe15ec13f0cb1f547f218
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-casecoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: cf6f8d7d407a05dee71fb2903a326d279bf99c7dcadbcce7dfe2753b99386a94
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 75f35ff374fbb2c36d1d0e23f4a52d96dc924835dea6fbd11181b714a8b9a88c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-casemap.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 7ca080531110c4bbc03962b55be3cc21200cdb8dce98b6a8b207c1295bb556d7
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-casexfrm.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2a3efd68520d13af88078b6294c4fb7eb225b0e8671c614ea31dd446d448278a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-ct-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 24f57fcc73e888d74a192de0090f47f428b35a680d6ad7c69c164dab39ff4c47
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-ct-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d7dd5fefe8bd374e2f5f46c7f77a2521bd272c6078ae4cc013e3d1fc65106b30
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-ct-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0a0527c17c90268b46de1096fbac12b53e7b60ee1e5077f6e34f7fdb6e648aee
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-ct-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 465b7179f665acb6d3c0e552e8d0d765089dce1ade88007d34a0b367f683f47e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-is-cased.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9ec0139d88d886ab48d1975d53ebd8a5a09332ce426b8febeb5dba0357f68f3a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-is-casefolded.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9d7f494e9dc39a744a34b4c147d142cbeebddff7b543829ad15cc13a9eb29cbf
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-is-invariant.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: dd5c520c3534286f4aa5e4327f9d4c303736f424c95627795342c46aeb781cd8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-is-lowercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 204472e2bec896b7e33430f737c98353a125ff880b31094642769f4b2f7577ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-is-titlecase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ee90d96cfa019ed4e11214211d2ea9730eb6f098dbff34c2db011a1757c91e87
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-is-uppercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 010d6156b827f55f04ceacc5bc59dcf08fab12f5db42c4636d41a15292ad1ce1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-prefix-context.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: da3309e1a77a472f5ade2ed85dc9271221109158157c6579b902e0756539b643
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-suffix-context.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d51c3f25e16b9bbd18428d84681d7a0acfd756fcce1c341bd472f1079da44f22
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 655b2ed28eeba9ad9c255747e307455643e2fc47b498a2e71e0178590b25d5b2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c4408b2dcc2c238f29f621912ecc12719d353ba1317d179d2224fe8ddb0322fe
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u16-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 220470c0e6a7cfd81d08f4c8f0b8fe5d574782bbd13f1c820af6ef70ed2b3385
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-casecmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1781408004da90c050ae9a5f6570946516817493ba3fe45afde124d51583089a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-casecoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 3300da7050c301689a45980d17099c391d7648b19c03c2d5f42557b804d061ec
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 45bb91d48e51b6cec99641778244ab581c70aeacdb122f32a74b8f243d2fda3b
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-casemap.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 247aa4ba2a663446dce07f5c913f40b60673b7f7e3ca19f403bee9d3a78ea93e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-casexfrm.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4ebb9b8760ba8a740ddfab863217d0868628faab7f9e24f26788741b48ea77fa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-ct-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 39bd9add0aed1db997be47956d8e91683fc6fc2db50d12228ef6b49d4c7b9c54
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-ct-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5e11cb2a0b6b64c1876630a435fb7c2f7d28d37bb656785b75d588cc9369ff27
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-ct-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5a1479bf7f4997033a317be5e2bece1df438b55cdbc1cb577fac817314f41fa4
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-ct-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e9e26cd78f76cc5a964f8528618e20cd2e3f6689754b5c753feab64e1b9b720d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-is-cased.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 37f54a0969d6155ec3c8bcd617764b5c3cc5188acd4f800693ce4cb905a50a26
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-is-casefolded.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 266206ce9a0daf342cd70f30bd761d5d4c4c3731299b5db880df0d77ac22effc
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-is-invariant.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 7c8f061345e51ebfdb5ce97958c50ba769e4082cb19dbc42e96981eb4db800b6
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-is-lowercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9dc638c9ad9f87b2be59801ccc280ad79b58577dad018f9749e0ca8438f7211e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-is-titlecase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d833857fc52a56d8c5c6b41b0170810ecf56c399611254909febef6150854139
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-is-uppercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e03ec24b3075004b438ab9007fb42afc786d694f1260409db1b8c963dc35be4e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-prefix-context.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2d3ebd1fe1ca9d551f7ea8c5ff3dd4eec61c67e8864a251143122304ac020169
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-suffix-context.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: de92f410f7f6c2f4f59fc279e266069f68bebb3cf25d821bde419d5ff8649b49
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 04e0d3c9e752bb842c5255065caa6fed1aaa7124bbc9872b4bc596b29b646b1a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ec057f66ee289c109f8b27dca03f86f335bdd05f950070280d61f2ba618646c3
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u32-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 606b4a302876209c7e238817387def24e5ab25c80234eb6fd6d0e4a996d4dc09
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-casecmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b41ef1fbbe478f5e3b1eb110e5e6b250c5979421502f6ca1b7dd19de6fa798b1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-casecoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 86360fb8c79bf57b016601bee20af58b883c31f6a04536ea4f395a228987d704
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a60314a48ef1bae6d56c720648375fb4e57db1acb91ae7b0c208b93ce8535cbd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-casemap.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 24edb83e00615db47ba7c0efec239390e1c2d9ed8f6b30e604adcd3a0c82d0f5
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-casexfrm.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 167f36a57e4c24ac18f4a6e9bc73d9257a39d3efa6b38bcbd186084501395295
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-ct-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ffad7b59d6730a4f76e99dc964df770e6014da0ee66c45206264d9f709e621bd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-ct-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b16f9a890b5817213de428b7f08aac3ffe1702b0821d98a0f0a3b56463e1c091
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-ct-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 7304bf1b4bac0c2ba21867f89287a0c478f7ac1b9d0ce1418009798468b69335
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-ct-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ba46d214f489da0c181c73148e83191840c448fd417a17161061a3c5be227066
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-is-cased.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2094cfba452dcdde8e0de5eb5b8a34860eccd1673f4f1ec34de86d8887f2deb2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-is-casefolded.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ad6836695e22fc1c621033a020438153a8389f1ea9c00c3aa7db503668e87b8c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-is-invariant.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 896e334b5f842024399c0bf0d0aede192f16c5503e6008659a286281e8d275d3
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-is-lowercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9ad379585ec68ebcaf3e6020e2874cb590ef8392bfabe67b0f415a36283d1582
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-is-titlecase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 40cddd86874cd3df35e51cf677bd29c84f0bdcfda6279263a149d4889018590e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-is-uppercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e6b62e7fa6784af5a99641078aa13cd2ed9636c64e9ca02ec2500c009aa90498
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-prefix-context.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2faad600e89a2f4df323bb0bce43f95d9c50c70477c783b5069bdcdcef2c823f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-suffix-context.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9b47dcd3d28b76b4c20ecb89edca813790c5587a53b66d811be0f119344dd512
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 3596157072c41f644c9922e9b8b776dda9a83aaad3b5ac6228db0c697dba7b22
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 6caca3f452e6e3d203e6b9753be9652b60beecad4fa92a0ece54e81814bea56c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/u8-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a6fb8d6fa933fd65fffc9ca374211407209be087c7009bde3a72a43024734e9f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/ulc-casecmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a14530498e0386b3448529dafb33fdce903ec4592d2be37361260862b2fa0f16
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/ulc-casecoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 6f77627a28abe40aea7d9b6d12d0402d8390fc1e9b01ef47f55c8b197544dc48
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/ulc-casexfrm.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 34c8a6903e645541b4faddf6fc29db8e42c13da1b6c136dd6f41caa01745f4e4
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicase/unicasemap.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unicodeio.c: 
-  copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
-  hash: 33aacdf0005527850dd4fb652e296df5c0c204a8054ea9ddcfa120866f3a0e9e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unicodeio.h: 
-  copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc
-  hash: 1e47f450b9b67595834d03f31709e694aa7d4ad6febfdbb6ecbaa1bec1cee139
-  license: "GPL-3+ "
-  license_text: ''
-./lib/uniconv.h: 
-  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
-  hash: 5e6e0f51341a6e53f0b352b8bb7db9465bb35a0e3cd37942b46076d0a7af3702
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u-conv-from-enc.h: 
-  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 188629e474bbbcd1229c8c6833219797032c420574e752902bca4747712a6d66
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u-conv-to-enc.h: 
-  copyright: 2002, 2006-2009 Free Software Foundation, Inc
-  hash: e0aa45049139d0368fd9cc0402cf2f6ac92e52d781ad1466a494513b14fb40b3
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u-strconv-from-enc.h: 
-  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 7be24e48ba83701cdbc39b85497b3fdb44b90463a283f46fb720f91ce2d7ae33
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u-strconv-to-enc.h: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7a46757983eda3f42167efe493ff5b1224b5fa378ccbb3ef3a54a34774fff733
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u16-conv-from-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u16-conv-to-enc.c: 
-  copyright: 2002, 2006-2008 Free Software Foundation, Inc
-  hash: 63cf6c42e78a055e4bc0152c66c81d9e677aca47430eeff2566e821608a1f937
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u16-strconv-from-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u16-strconv-from-locale.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: abbeae189b434069f8b5082a0b74cc1c0ef22496521de651ee804512ebbcf297
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u16-strconv-to-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 00764e134b95f7908e7ddd1a025d875ec6785ff8b6b69d9e92d37be3f23fa300
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u16-strconv-to-locale.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: f67645d89afa61a452bfd22d22f76fb39ef24abdd3e44667aade0ac4d78c1fac
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u32-conv-from-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u32-conv-to-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u32-strconv-from-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u32-strconv-from-locale.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: b5f98b5645d8b9d620808c54cbe34c5977a84043ce50fc58401924535f12208f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u32-strconv-to-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u32-strconv-to-locale.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: e1b205c9ed76dd104a13b1f6427ff0fedfe1ac06bc458fcd942d94557d74e437
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u8-conv-from-enc.c: 
-  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: f48ae3336f9571f13c2904bc2878141e7a9d272c1baf5d3a4688fd1f226f3546
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u8-conv-to-enc.c: 
-  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: c0e5b93ef7fa66fca4a5b9fbd7dfcabd13c1d87f9713fbaac56bcc56fa4137eb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u8-strconv-from-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: c9992a9820bc23e9834057a26dff394918e76ca830c2f5ac97e0d67c102baa7c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u8-strconv-from-locale.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 6da43447486f93c497947a213640c53bf620094b211a782c60138d9057455ecb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u8-strconv-to-enc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 0942490a0de4f7b06edd517c57084e60348a1d79142fec2f05c531689a4cb814
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniconv/u8-strconv-to-locale.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: e38b1c908eef1d22cb3bee0f7157cbc3b3a409ac8fda47c5f4f9c630687e934c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype.h: 
-  copyright: 2002, 2005-2009 Free Software Foundation, Inc
-  hash: b8e67dc9e906270547a47f99abb0a4b7b1f7b1acf607726786df995910314d43
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/3level.h: 
-  copyright: 2000-2001 Free Software Foundation, Inc
-  hash: ca73868d0849016e4c33c48ca11bccc77fda03863928d329ea03f644c3e4e020
-  license: "GPL "
-  license_text: ''
-./lib/unictype/3levelbit.h: 
-  copyright: 2000-2002 Free Software Foundation, Inc
-  hash: f1ad93bae7eab43736b46a51a2dc7303c2c4d8ad4563a2cd7e0740587a86880a
-  license: "GPL "
-  license_text: ''
-./lib/unictype/Makefile: 
-  copyright: ''
-  hash: bdab4fa6ea70dfa476e8e0bfb1a837bc7e67c3fb607376e6171cc27d23e66848
-  license: ''
-  license_text: ''
-./lib/unictype/bidi_byname.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/bidi_name.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/bidi_of.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/bidi_of.h: 
-  copyright: ''
-  hash: c2182d910737b90cff77f4bab4cc2b1567a8713202c2b24e55951bab986d6627
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/bidi_test.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/bitmap.h: 
-  copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc
-  hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/block_test.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/blocks.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/blocks.h: 
-  copyright: ''
-  hash: b6a9e5481a1b0ef31c2bcdeecce12f84a6b3107f42cda43d7b5490e51c7e6b88
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_C.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_C.h: 
-  copyright: ''
-  hash: 8e35c171e0730e196c1752e71128804f55f2ae84579e656cc0a6aa47a1eb35ba
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Cc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Cc.h: 
-  copyright: ''
-  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Cf.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Cf.h: 
-  copyright: ''
-  hash: 47db4afe1e094f7e2c2ef9d8189af3a3412ffc4705e0de359c9f1b921fd15e66
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Cn.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Cn.h: 
-  copyright: ''
-  hash: b39549af020761e1993a548f9b823c05ff2a6e49e6a537ce7fa343aeaa53b145
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Co.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Co.h: 
-  copyright: ''
-  hash: 99e430ef6329b9f7d5ebc51a76e1e2ca53c0507494d6c10546b784e6049bc663
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Cs.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Cs.h: 
-  copyright: ''
-  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_L.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_L.h: 
-  copyright: ''
-  hash: 8fc9e0984df0753aa0b9fad85007840415de5c70af85be4dfbe95bf520fb1385
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Ll.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Ll.h: 
-  copyright: ''
-  hash: 785b1fa8fec42960be4917a6e8f82b3c4c7525cadc22dd518aac0cb7bfcd958f
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Lm.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Lm.h: 
-  copyright: ''
-  hash: a37e7a248becadc97caf50c64c3a3e054194e5a71c4eb62054f56f24f2c97729
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Lo.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Lo.h: 
-  copyright: ''
-  hash: 65c339f1a109086f8d25277fa55fd83bf5aa46d2fc13004aecbc8ca503750a54
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Lt.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Lt.h: 
-  copyright: ''
-  hash: f78dca06ee53b82be63262113da2e6f5ddd027a997d069657b643daff281d7c6
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Lu.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Lu.h: 
-  copyright: ''
-  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_M.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_M.h: 
-  copyright: ''
-  hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Mc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Mc.h: 
-  copyright: ''
-  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Me.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Me.h: 
-  copyright: ''
-  hash: 19978c351a45dad43fc65cd804226182244c2b634a8a7e6541489ac1f174e000
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Mn.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Mn.h: 
-  copyright: ''
-  hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_N.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_N.h: 
-  copyright: ''
-  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Nd.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Nd.h: 
-  copyright: ''
-  hash: 645d0029c292be21c462e6bd7af2d005278ff9bc83122e0eeaacaadf94cd21d3
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Nl.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Nl.h: 
-  copyright: ''
-  hash: e884eada39c812b459e7b7e481b4419599b18f1af710bd8482a696c5cada155a
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_No.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_No.h: 
-  copyright: ''
-  hash: 0deece216789474ac445dbdb7296d6d5e8e7e5a8f95dfaf2e67a4c5711e18b57
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_P.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_P.h: 
-  copyright: ''
-  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Pc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Pc.h: 
-  copyright: ''
-  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Pd.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Pd.h: 
-  copyright: ''
-  hash: f547ebd71e710e45743883d9de8b47192f46dfc611373c5c89daf8bdaf5aca6e
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Pe.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Pe.h: 
-  copyright: ''
-  hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Pf.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Pf.h: 
-  copyright: ''
-  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Pi.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Pi.h: 
-  copyright: ''
-  hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Po.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Po.h: 
-  copyright: ''
-  hash: 26e8efe9bcc1419927bbca15527c8d81a1b903390185ff5e0b585341b94ad994
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Ps.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Ps.h: 
-  copyright: ''
-  hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_S.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_S.h: 
-  copyright: ''
-  hash: 81291c4df9432e81c35739340c26ef260186afb2e55916cadd9c6a52dc28dae6
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Sc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Sc.h: 
-  copyright: ''
-  hash: a172e78fd27a83c4692b30614cc4ebd009a1b0684b24bb6be9aeb769febacdd8
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Sk.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Sk.h: 
-  copyright: ''
-  hash: c15094a471ca185c4c200e38783cf9e759fa3e0e8fd07b81e3058a1a7ffd5f44
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Sm.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Sm.h: 
-  copyright: ''
-  hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_So.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_So.h: 
-  copyright: ''
-  hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Z.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Z.h: 
-  copyright: ''
-  hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Zl.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Zl.h: 
-  copyright: ''
-  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Zp.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Zp.h: 
-  copyright: ''
-  hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_Zs.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_Zs.h: 
-  copyright: ''
-  hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_and.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_and_not.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_byname.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_name.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_none.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_of.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_of.h: 
-  copyright: ''
-  hash: 2a28fb8f13c04a8d3e8f05dba59e8336dbb1c9fcd244a69729bda0d6cab7903c
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/categ_or.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/categ_test.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/combining.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 90adbd1167196894d026717b09dc16ead930ab4e0e79fc939f9b943b5444cb36
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/combining.h: 
-  copyright: ''
-  hash: 1344ff3ca3a44994d02dfae3bf4d2e1ef6b65e951856e19ba186eff2a5f3ddfe
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_alnum.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_alnum.h: 
-  copyright: ''
-  hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_alpha.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_alpha.h: 
-  copyright: ''
-  hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_blank.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_blank.h: 
-  copyright: ''
-  hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_cntrl.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_cntrl.h: 
-  copyright: ''
-  hash: c07f81242830a91177e15d05045170319602acc2f3494d6e1d6abc1ddd693c0d
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_digit.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_digit.h: 
-  copyright: ''
-  hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_graph.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_graph.h: 
-  copyright: ''
-  hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_lower.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_lower.h: 
-  copyright: ''
-  hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_print.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_print.h: 
-  copyright: ''
-  hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_punct.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_punct.h: 
-  copyright: ''
-  hash: cb1c5c1ff9e38b590896695c0436f5a583961a5aecf9ca57e76b27ba0a4e33c8
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_space.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_space.h: 
-  copyright: ''
-  hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_upper.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_upper.h: 
-  copyright: ''
-  hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/ctype_xdigit.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/ctype_xdigit.h: 
-  copyright: ''
-  hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/decdigit.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: dd98fdcdaa9cd24e7260ed5252c6393ca1fc1c32b1afef1b4a9b98e57eadc26d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/decdigit.h: 
-  copyright: ''
-  hash: 729a7ffd2cedc46ac857f670fadbd787a8bd1dae5b9433ebebda7916d18af8ce
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/digit.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 96f1f23423e02f86953ba94177173864040511deeb2b553746c503eedc69f695
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/digit.h: 
-  copyright: ''
-  hash: e354516c3c1294749f97668b7aecc4aba4cd72013024992226add61ca235a879
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/identsyntaxmap.h: 
-  copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc
-  hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/mirror.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: c8eb63b007266041de16a9e45bf7b8766d2016e3dd82e9b801920e7e8ee0b265
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/mirror.h: 
-  copyright: ''
-  hash: 4e47d47442a6953840583406acab5bcd285bb8c2d7356180dc28bb277e1e7953
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/numeric.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 14a734bfffede7c850c2263c2844a2f42a847a8fdb26c6f4940a825a35a672e2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/numeric.h: 
-  copyright: ''
-  hash: ba1e5ba6fcb88dbb798cd02e5cc119132bc31e49b5a24d8e19ae906ada5711ea
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_alphabetic.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_alphabetic.h: 
-  copyright: ''
-  hash: 99efc65e4f46e3ad0efe4f73de0fc1fd74196d0de0892e8640d57da681726ea2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_ascii_hex_digit.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_ascii_hex_digit.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_arabic_digit.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_arabic_digit.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_arabic_right_to_left.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_arabic_right_to_left.h: 
-  copyright: ''
-  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_block_separator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_block_separator.h: 
-  copyright: ''
-  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_boundary_neutral.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_boundary_neutral.h: 
-  copyright: ''
-  hash: cfee85fd908c11272a95f63abb54df22efd9342b5462d93c6b38df59fbd1ab71
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_common_separator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_common_separator.h: 
-  copyright: ''
-  hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_control.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_control.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_embedding_or_override.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_embedding_or_override.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_eur_num_separator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_eur_num_separator.h: 
-  copyright: ''
-  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_eur_num_terminator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_eur_num_terminator.h: 
-  copyright: ''
-  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_european_digit.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_european_digit.h: 
-  copyright: ''
-  hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_hebrew_right_to_left.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_hebrew_right_to_left.h: 
-  copyright: ''
-  hash: 66483e8eda823c6234a852450a0e3d7d1b26de2c6f4e7ed117dfd7a5f60b4eb8
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_left_to_right.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_left_to_right.h: 
-  copyright: ''
-  hash: cca189bf24e298f3c3f5f843ff18dfce8c007eed8233e52d0e6dd7f92c32a2bf
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_non_spacing_mark.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_non_spacing_mark.h: 
-  copyright: ''
-  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_other_neutral.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_other_neutral.h: 
-  copyright: ''
-  hash: 1e8e84691fd416f70f94e14f52604d742feb401a9e83a8f82c5c2610488e4849
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_pdf.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_pdf.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_segment_separator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_segment_separator.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_bidi_whitespace.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_bidi_whitespace.h: 
-  copyright: ''
-  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_byname.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: d40e7939956111bd30348da1dac41960fd3fdc6cf6f680cb8573e79ccbedc970
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_byname.gperf: 
-  copyright: ''
-  hash: b16f7907c490b5f7fb2747f5b6b19bd7f6792f0f901474152f7c7fc7b95b151c
-  license: ''
-  license_text: ''
-./lib/unictype/pr_combining.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_combining.h: 
-  copyright: ''
-  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_composite.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_composite.h: 
-  copyright: ''
-  hash: c768605f7580ce16b1f809ff6581158ff3026e0f7e626da4b880421c26f3f758
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_currency_symbol.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_currency_symbol.h: 
-  copyright: ''
-  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_dash.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_dash.h: 
-  copyright: ''
-  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_decimal_digit.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_decimal_digit.h: 
-  copyright: ''
-  hash: d43559860ba0321bc4126988b80b371e40fefd13543804b8cf1e2f323c2e6757
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_default_ignorable_code_point.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_default_ignorable_code_point.h: 
-  copyright: ''
-  hash: 10c6b0ae007cf9d8f016b4a35adc99a18c9253e20cb8212c2920cf601eee37fc
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_deprecated.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_deprecated.h: 
-  copyright: ''
-  hash: eaf7422b8873ab174df241ef321d8b1048a085432d4f6eef3b7e0549335dd9a8
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_diacritic.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_diacritic.h: 
-  copyright: ''
-  hash: c22e31f490d3c3010b02a8bd72e1f9d47cdcb168d70d30b805d732b343b511aa
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_extender.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_extender.h: 
-  copyright: ''
-  hash: 7454c1a8c7e88851161788171e398142fc47d8bd1c23e62960fa7d9c0c991b33
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_format_control.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_format_control.h: 
-  copyright: ''
-  hash: f060d73220f70a9073c426b53a1c1b77d83d62d53b2c20c8ed16a37dbec4466e
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_grapheme_base.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_grapheme_base.h: 
-  copyright: ''
-  hash: 61aa89df11fbca4b079e004f95edb176863f5f5bda22579d93489404b0f9a3bb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_grapheme_extend.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_grapheme_extend.h: 
-  copyright: ''
-  hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_grapheme_link.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_grapheme_link.h: 
-  copyright: ''
-  hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_hex_digit.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_hex_digit.h: 
-  copyright: ''
-  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_hyphen.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_hyphen.h: 
-  copyright: ''
-  hash: 1cfda6a60e4fbb2baa92f4c06e315f40f4b685e0d1330afe5788de693a79afdb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_id_continue.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_id_continue.h: 
-  copyright: ''
-  hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_id_start.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_id_start.h: 
-  copyright: ''
-  hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_ideographic.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_ideographic.h: 
-  copyright: ''
-  hash: 91d9bdf96ea6ddc4acbc5e4dba0610a5f9dd7cf5121431e1d34dafbe7e715f36
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_ids_binary_operator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_ids_binary_operator.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_ids_trinary_operator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_ids_trinary_operator.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_ignorable_control.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_ignorable_control.h: 
-  copyright: ''
-  hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_iso_control.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_iso_control.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_join_control.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_join_control.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_left_of_pair.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_left_of_pair.h: 
-  copyright: ''
-  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_line_separator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_line_separator.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_logical_order_exception.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_logical_order_exception.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_lowercase.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_lowercase.h: 
-  copyright: ''
-  hash: c49d818a753284b69b8292112ec7829b4973d7c33cabb0b264bc3eb7193f2e2a
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_math.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_math.h: 
-  copyright: ''
-  hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_non_break.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_non_break.h: 
-  copyright: ''
-  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_not_a_character.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_not_a_character.h: 
-  copyright: ''
-  hash: 69c1881b0d0172f2bd222a8d49636e2525f8c53af810fa281b7bf91d2cfaef79
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_numeric.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_numeric.h: 
-  copyright: ''
-  hash: e82cebb512f6ebca3baf39cf0cfb1d65899d1000520acb30b4c4c52fef800dba
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_other_alphabetic.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_other_alphabetic.h: 
-  copyright: ''
-  hash: 6eed9d08b80ef5850bc90bf4ec966d5e32a1f13697b484b978c1984ba200e200
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_other_default_ignorable_code_point.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_other_default_ignorable_code_point.h: 
-  copyright: ''
-  hash: 670e3738c51a7b91634167670f9f9f7d24237d3bc2d1def297357bed948de48e
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_other_grapheme_extend.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_other_grapheme_extend.h: 
-  copyright: ''
-  hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_other_id_continue.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_other_id_continue.h: 
-  copyright: ''
-  hash: 68dddcca5a9cf7a98b19f1dbcf36daedc23cbb189126ba3d560fc72cadddf7e1
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_other_id_start.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_other_id_start.h: 
-  copyright: ''
-  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_other_lowercase.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_other_lowercase.h: 
-  copyright: ''
-  hash: d5edc016b278de0f7e45c4b97282e69eeaa7e2dcf8ccdf80305e0631a2265331
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_other_math.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_other_math.h: 
-  copyright: ''
-  hash: 29e60ffb17e0d28d6faf0dabcb729b97f9ea2640083c733e9d5bb80550af024d
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_other_uppercase.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_other_uppercase.h: 
-  copyright: ''
-  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_paired_punctuation.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_paired_punctuation.h: 
-  copyright: ''
-  hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_paragraph_separator.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_paragraph_separator.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_pattern_syntax.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_pattern_syntax.h: 
-  copyright: ''
-  hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_pattern_white_space.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_pattern_white_space.h: 
-  copyright: ''
-  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_private_use.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_private_use.h: 
-  copyright: ''
-  hash: b579ae087c5f5d39920557ccb10ed9e3e85c9a37d1579f40c7e51b7442503680
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_punctuation.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_punctuation.h: 
-  copyright: ''
-  hash: 879fa687217ae7978e17cdb24937d63ed1b30c34acca5d08c249fb2aa2bec067
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_quotation_mark.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_quotation_mark.h: 
-  copyright: ''
-  hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_radical.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_radical.h: 
-  copyright: ''
-  hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_sentence_terminal.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_sentence_terminal.h: 
-  copyright: ''
-  hash: ba2398b9115f8b18f76d9aacaa96041ae918a63b2834f16d66e586276b3b6afd
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_soft_dotted.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_soft_dotted.h: 
-  copyright: ''
-  hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_space.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_space.h: 
-  copyright: ''
-  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_terminal_punctuation.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_terminal_punctuation.h: 
-  copyright: ''
-  hash: 8a1e71d67eab269ce9dc3e2893389f951c1c2a7c64c1f722df6206f210ee662c
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_test.c: 
-  copyright: 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 1f771b18097da3eb006ae20cb5d9a4088eae2d181a611500ba400e2d8ec2df5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_titlecase.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_titlecase.h: 
-  copyright: ''
-  hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_unassigned_code_value.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_unassigned_code_value.h: 
-  copyright: ''
-  hash: d60cbdaeaf6f4a9135cbd2ec2066e26df90bf74818e2fb55771b0ea03d148c4a
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_unified_ideograph.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_unified_ideograph.h: 
-  copyright: ''
-  hash: 4429500f5e5676e777499ce11cef619f91b5e880a9dabd1669bca41d0718d5f8
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_uppercase.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_uppercase.h: 
-  copyright: ''
-  hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_variation_selector.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_variation_selector.h: 
-  copyright: ''
-  hash: abe47e0d33a6fde0c278a443c6255038d6cea6574c38f56dd5d7c1a4fd4a91ec
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_white_space.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_white_space.h: 
-  copyright: ''
-  hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_xid_continue.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_xid_continue.h: 
-  copyright: ''
-  hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_xid_start.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_xid_start.h: 
-  copyright: ''
-  hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/pr_zero_width.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/pr_zero_width.h: 
-  copyright: ''
-  hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/scripts.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 3fcb47fc8c55790740bf21cdfc85cacb89c92805b7a0692b5d331d04839c7431
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/scripts.h: 
-  copyright: ''
-  hash: 909da48adc878aafd8b39b3ea48765c54e60373f9511c2132c27bb2108fccafd
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/scripts_byname.gperf: 
-  copyright: ''
-  hash: 2957f52be908b9f9a16d6385681ed2513485321c9f2d54c8d365790acb1236e3
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/sy_c_ident.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/sy_c_ident.h: 
-  copyright: ''
-  hash: 9a50ec74eda18bc573df963aa5bae900789cff2ac4b9193674828efc5b802f69
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/sy_c_whitespace.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/sy_c_whitespace.h: 
-  copyright: ''
-  hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/sy_java_ident.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/sy_java_ident.h: 
-  copyright: ''
-  hash: 0f004bb9bffa1f06d3a475612c9cd4f5f5df347a81109f243602e9360583f592
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unictype/sy_java_whitespace.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unictype/sy_java_whitespace.h: 
-  copyright: ''
-  hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/unilbrk.h: 
-  copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
-  hash: 2f408b704e7b02de9b9a8224c0bf0b93bedcb50b13ea7f824895f85f9c28eaee
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/lbrkprop1.h: 
-  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
-  hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./lib/unilbrk/lbrkprop2.h: 
-  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
-  hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./lib/unilbrk/lbrktables.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: 570dd537a8aad86cc9f03b3a187de16b187fa22f7de51a4c78b10bd8513b5140
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/lbrktables.h: 
-  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-  hash: cc2a66b6d3c60a6a4bc00cc2cacead4543035a5c9a1c2c1dcb6310525ad50d3f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/u16-possible-linebreaks.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: dcb291f946f60f8ce400b0cf6612abce1f55d7525d62c20de92e371964fa2a25
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/u16-width-linebreaks.c: 
-  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-  hash: 858930664890823e81d8b0e0713d7edc3770a87b4a54c5ea4bffc97ae40cf765
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/u32-possible-linebreaks.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: e5d81325f7140b2d7980081c9c1b1bfe027d481b42d41b84fa859e689614604b
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/u32-width-linebreaks.c: 
-  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-  hash: cb3f972142bc182e67f148e4aee254b9d86e402a8c980d6aced66aa70785fdea
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/u8-possible-linebreaks.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: e914e04b1abf7f5737295a9365605c4b321978c304d4f779fcbbb02c5ff1558d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/u8-width-linebreaks.c: 
-  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-  hash: 8250277a0f84de0b4416a1e30345251e466e2245ba64e63269d38d0ec4abdf7c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/ulc-common.c: 
-  copyright: "|| c_isspace )) / 2001-2003, 2006-2008 Free Software Foundation, Inc"
-  hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/ulc-common.h: 
-  copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-  hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/ulc-possible-linebreaks.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unilbrk/ulc-width-linebreaks.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniname.h: 
-  copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc
-  hash: 271fe75b63886d9af9730fc72bcecc8bcf121a97946be427032f4ed46d2d2711
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniname/gen-uninames.lisp: 
-  copyright: ''
-  hash: d28d41fa6a3eef2669af73aaeb8ce7e2479501eff9b820f3649344dceec287b2
-  license: ''
-  license_text: ''
-./lib/uniname/uniname.c: 
-  copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: 96556ea7962ce3b99d5e5559021018733e37096b261e513193d63a30e5ee4b2d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniname/uninames.h: 
-  copyright: ''
-  hash: 5cc016a12ea5182eb761959d10e5191aca3a76fa8980e231f2449ac38c1ea1dc
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/uninorm.h: 
-  copyright: 2001-2002, 2009 Free Software Foundation, Inc
-  hash: 811b4d2f8b8f36161342c743db5c5509ac8b0043c13551f7a52704c707f135c4
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/canonical-decomposition.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 87f0bcf9df0580072c9e56c9b085df3d8e09770d61475e329c904bc2b049e5cb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/compat-decomposition.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: be35616c47cb657687ee31b508418eb405d8e7175ea0c7ebda9c83d292ee0f76
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/composition-table.gperf: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b4aa8605984c2a64f166ac2137a7436cbcf969c067088baf3efc3099cd610685
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./lib/uninorm/composition.c: 
-  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-  hash: b056563f0bb123c409b7ebc8c15d83ff328c9f985c828e088794b6779686593e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/decompose-internal.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/decompose-internal.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/decomposing-form.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 34162fc9b81dddd60e3d1768a87407a9c58c7a4246f8131990655af950eb8fa6
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/decomposition-table.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/decomposition-table.h: 
-  copyright: 2001-2003, 2009 Free Software Foundation, Inc
-  hash: 7e5319f3d15b429b3ca981cb77d13a14e63eb6d91c87b6896bcb4b261f212864
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/decomposition-table1.h: 
-  copyright: ''
-  hash: 295f82a865c8d38feab20d2d0ef7c344f2af45d2a8a6e47aaaebfccfbb53cc24
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/uninorm/decomposition-table2.h: 
-  copyright: ''
-  hash: b855a154049268ffe6cdfea458537883ba134e854cf00d17be5ab3b2b3559f4d
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./lib/uninorm/decomposition.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/nfc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: afe74037d702264dada2f09f62b6bcd009116cbade5b92da86a092ec363709fa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/nfd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2c52442b51c53cae04d69af55fc465368ef6cdea78236bbd9e4ead35024be8aa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/nfkc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 7e203b8f3ad1ca16886b641a503c7ef40c63839f2c5013b377ee16191eda890c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/nfkd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 96fca2de089de494f5189cc1b6baba83a22050a2f73680251f883dbf4f29c4c6
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/normalize-internal.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: dc3a239e87668655e6ffadf04e4e625525bb77f3159f49970bfe1fdd1fb742ec
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u-normalize-internal.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 8948c5a1ae3c902f7399c23c670da87e46b5538a4e44cea25fe6092fc69e57f3
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u-normcmp.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a38204b457c2da606da593fbe185d2697622fc39dfa9938580cfc4d21f8fd9d3
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u-normcoll.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d15873e9d0f8361722b856cc6b5a4b141d8c153651a1cb1694c28c0be3fdf15e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u-normxfrm.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2995d01c87bd38694e454d2aa7acd9440bb01ef2fe3775c2ddddfd9a2055d354
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u16-normalize.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c4417f93ba857c0341ad56a963370ce1ac8690dc8d56ea8704d42bc0f4cd57d4
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u16-normcmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 70b5b38d00121704a5bdc8dec6c3510938a1ee773296c68bdf4770a9d3ad3ba2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u16-normcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b2a6a3dde9a5d277817a7bdf3a9da9cba9c5af84d43f02b8de59972c0efc6e06
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u16-normxfrm.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 6a535a6e2b2866d4d2f674604fdec7c48cd37a7d26d1b28aa56b1b55cff64d0c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u32-normalize.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 21948dd01001327d66a37ac6a8120566d704ef23efaf3a32134244e0e8b297db
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u32-normcmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 3aee963a47e892f820670cbdde9841ad7809e3cb739fe6fe4a4eb82b337fe7aa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u32-normcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e05b8dc2bc7995766bf46052c4718b74c0ffcae0cac15dd8135777dd379c34f4
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u32-normxfrm.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 6d8ff48fb188d7d15ae549430423f962ca47de75f2e3fa27d0c65099e653e5d8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u8-normalize.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b46220839acddb8068a99f781da004eeb988271397e318e6077f00e1b4d9eb99
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u8-normcmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 88af27918ea6a884ebb5ddc98c75a2f01462cc627d489ca3a0387b2337cfff01
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u8-normcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 781e09bd1453b3872c591e97c19b1855dc70cee271fded19eef00469baede34f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/u8-normxfrm.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d59367c5c15d6f235b1e68265d3e3a57fef210ab8796ed36a04f40d08f302e3f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uninorm/uninorm-filter.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: fde778aae106254be586328ae3ecb4ee2843b387fb9bd68bd6e8ebf8b7dfe8f3
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistd--.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: adf5345fbcb95c5bb36d54daf54a986985f38945478711e734fb90742f8a5262
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unistd-safer.h: 
-  copyright: 2001, 2003, 2005 Free Software Foundation, Inc
-  hash: f1b41b4d684751d4d0fd03bb4855a4ab9c168f72e25dbcab58fa5e7cf7edebf9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unistd.in.h: 
-  copyright: 2003-2009 Free Software Foundation, Inc
-  hash: a6926ba851d67cbfe9bc3f8f5c0a100992084e9d90ff1e51b25bd373b976d588
-  license: "GPL "
-  license_text: ''
-./lib/unistdio.h: 
-  copyright: 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 670451fad5381e7d81619f0268d7dcac2693a959612603a4fd77a67f102b98eb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-asnprintf.h: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-asprintf.h: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-printf-args.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: a27d294cbfad2286e039e9816ee9acb269f976fcc6f6c6f13a22d74056689600
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-printf-args.h: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: a6fe38b9879275d7c142bc95e0b7e4caed91ccce4714c11749fdd64ecf990bf5
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-printf-parse.h: 
-  copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc
-  hash: 429fb79a4fedd4e52cd53cd4e50638cd94893eecb1b7a62844d082be64efe0dd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-snprintf.h: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-sprintf.h: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-vasprintf.h: 
-  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-vsnprintf.h: 
-  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u-vsprintf.h: 
-  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-  hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-asnprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-asprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-printf-parse.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-snprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-sprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-u16-asnprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-u16-asprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-u16-snprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-u16-sprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-u16-vasnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-u16-vasprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-u16-vsnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-u16-vsprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-vasnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-vasprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-vsnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u16-vsprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-asnprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-asprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-printf-parse.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-snprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-sprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-u32-asnprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-u32-asprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-u32-snprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-u32-sprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-u32-vasnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-u32-vasprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-u32-vsnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-u32-vsprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-vasnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-vasprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-vsnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u32-vsprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-asnprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-asprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-printf-parse.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-snprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-sprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-u8-asnprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-u8-asprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-u8-snprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-u8-sprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-u8-vasnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-u8-vasprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-u8-vsnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-u8-vsprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-vasnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-vasprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-vsnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/u8-vsprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-asnprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-asprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-fprintf.c: 
-  copyright: 2004, 2006-2008 Free Software Foundation, Inc
-  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-printf-parse.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-snprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-sprintf.c: 
-  copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-  hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-vasnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-vasprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-vfprintf.c: 
-  copyright: 2004, 2006-2008 Free Software Foundation, Inc
-  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-vsnprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistdio/ulc-vsprintf.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr.h: 
-  copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc
-  hash: 13f5e38dabdfbceb3b445638bc8e99064f239e14e73d4e488187a92b7181157a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-cmp2.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 353c54ecf4321b660412e19cf505114ea8af7b940afc9fb4f817f32c73fe68dc
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-cpy-alloc.h: 
-  copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 33a2cf4d1751fb8b89c16c2e464679a25254a1da5aa823af5026981e3f9f04aa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-cpy.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-endswith.h: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-move.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-set.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: ad540bb3c29abee866d49045d7549895c69e88f9c7e421fc288f06e683371efe
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-startswith.h: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-stpcpy.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-stpncpy.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strcat.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strcoll.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: edd8e7309806a8c6748205b082becf74015ca7a86a99f4abfe90fd29cafc9bfe
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strcpy.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strcspn.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strdup.h: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 29b7da996418f450dc43ca85a629a13e9f41b4e0759a3d26dee1f0f570cd1fdb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strlen.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 5ab8a4c4f7df43b1ab702777309a99e463464ecbb02813a12c642b680564a3eb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strncat.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strncpy.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strnlen.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: c2287c09b8102ca5941250c212c3065bc5f0310d5047a6d4c540c3d8bd55c71f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strpbrk.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strspn.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strstr.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: c6fe6020affec0baee70c698a6c983e4924b5b578266c453a7aaf55cc23e2a1c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u-strtok.h: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 124e2d5c65832f8f2b09cb250453ac36538f42bc04e58097b83683954a9fd220
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-check.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: c5ae8c4ac9aa94462744b11f56b7d108a26665c45bfb27222547583236670660
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-chr.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: e3329f60b17e2dfcf738c0ab4d315772c23c15c736a185ef7c9dc9896095d74b
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-cmp.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: a178e2ef622d6775701cd298960a8dccafa331ca0d80c79fcaa4de012bd5b28f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-cmp2.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 2cb5dfa391e0c72cda11f0fb2350422ebde0432a2abf811e5941c06223b8cb67
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-cpy-alloc.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-cpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-endswith.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-mblen.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-mbsnlen.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 1cdbe9c2450930156e5c3b60065663d3280f3a42a62725b5208c39ced2b34318
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-mbtouc-aux.c: 
-  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-mbtouc-unsafe-aux.c: 
-  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-mbtouc-unsafe.c: 
-  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-mbtouc.c: 
-  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-mbtoucr.c: 
-  copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc
-  hash: 2b36b04649b3581ad0cc9161ab1e4715a48625e133a0ec6f539ed6e91dfcf628
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-move.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-next.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: bac4e802fa60437f5741d1488d912d2d731d12795334311793de72c042b1614f
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-prev.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 966105ec4cf71caa305c1b9bebab2829b77a48e5003424e4c013eeea374f9328
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-set.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: c5bb09f11189403180a6576abf7d68fb059968f7f39dc4847bc991ac3223f6aa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-startswith.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-stpcpy.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 6a2cb6d1b10aa92814ff9ed6e973f7c9a0fa2bc7f1465286ac1e39590cb45b73
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-stpncpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strcat.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strchr.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strcmp.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f617d544f7c4374c658b004a34b75f439c8492b5d53e032c89fef04f11982f8a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strcpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strcspn.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strdup.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strlen.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: a9ceaf1d9ede8791c7f986d76c2bba8ed75106e4a6bf10665a66b95683bac6f8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strmblen.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strmbtouc.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strncat.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strncmp.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strncpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strnlen.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 4eb212ed57eb468178f80781c20209a087129a621a86543b3c0ec39b4ad5d8bd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strpbrk.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strrchr.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strspn.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strstr.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 63d133e15b867e7895edd2352c173567fe0d265932e367156cf3be247cb76d49
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-strtok.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: b3612c8df3c80589505dff2b00de24316e2ec6ff9c42ea3e5d1b3d0520ca0b2b
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-to-u32.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: c888c31db109f599e0d02beb4ef0ce5f61c56ddaa3ece94bc5b9cc4b2516c852
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-to-u8.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 59a93e5bcafc66d68def3b14157e23f301775715a31659046cb4e692b8800674
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-uctomb-aux.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 02b5c6e86d0a8def7f78e1a70e0f104a3e283bb1d7a2de6223763bcde8845be7
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u16-uctomb.c: 
-  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
-  hash: 88d0197e480ceaa71d8fc9a34aaa68463f25d20524f758f55c023108338967d8
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-check.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 685489582302507fc4d2a831d903c752d9a900d2380f8bc33e8babeaf6a7637d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-chr.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 3d390e18ce2a42908d41cd6f2b9a9386775538654e35534760251a9e5528b952
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-cmp.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 7c6276b59ecfdc1dd63882769b6b4ccf919c844520679d75c03d00ef01610243
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-cmp2.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 57babbf34fd1be9100c5c49c352d468779d176c16711bf88df426bd0b0ecdeb5
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-cpy-alloc.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-cpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-endswith.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-mblen.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-mbsnlen.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: e2d35901a65cc0a9ef634e286369d131cd95c820698d2cff405423031ee4b9ec
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-mbtouc-unsafe.c: 
-  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-mbtouc.c: 
-  copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-mbtoucr.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 5f2b794282efb3b432d0c8a917dc1f4f498a1c2f89392970a62db00da6c71abb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-move.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-next.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7ba432d038ecd2515356b8e70fa519d4cdac9e76b0d6e93a8a537ef4fda17448
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-prev.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 1508e6ba9768221299556836be8fbc1d5791cc3115cf08850ac9bec8623c918c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-set.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 3dd041a6e485dbcd0ea0984b44bab7767b28a4665038ddf05b9955a2d6e6a596
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-startswith.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-stpcpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-stpncpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strcat.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strchr.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strcmp.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 6420d21bdaae7143502fa4278291a88e2834749b42928b0df438fbb4fc3b95a1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strcpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strcspn.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strdup.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strlen.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 050991d876a33888be18fc49d7ec4d1146ff674decd9c3b4a3f1a1f9c168e632
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strmblen.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strmbtouc.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strncat.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strncmp.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strncpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strnlen.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: e1a20f548b672e6d0aa8b7954bc31b9c2157c4204b1e7346a250ab8840e7e356
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strpbrk.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strrchr.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strspn.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strstr.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 96be8a0f8ea189120bfe1f5c10629c0b840b2f2e9f64c54df9fce677f701d887
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-strtok.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: dedd8fbb7d1265bba868dfd5099d076b6587298e050805ec6eaced0ab5faf332
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-to-u16.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: c34e87d4172d3339a781e39d59f8fb9132c09ef980f44c2b1574bfafa685cd66
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-to-u8.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: d5933d39852f021cbafa03fcd622fe179fbfa3d2b7160e25a2a0f9cf649b331a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u32-uctomb.c: 
-  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
-  hash: 34f3faef9d257a051c8d8272922f3e20f5fa880baea40b25ba02a9256e3b74df
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-check.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: eac2b052e4d9e60b9eb93ae9ec997c386e730de4bf3194fca888eba17a103f37
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-chr.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 42ec57a2ff9ac547a74c24b611b35ff9d2604edd08dc27f2eec1d887c295d1bd
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-cmp.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: fac6baf649d3fd3670f2fd9aa97dbd2dfa67d7311eba66c76fb96874a6a6f2b9
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-cmp2.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a93c38c1183febaf9ba16e653abf0df27e59ddad5f92762b2ba9e3f6deda64aa
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-cpy-alloc.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-cpy.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-endswith.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-mblen.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-mbsnlen.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: d777639cdf076ed27839f1eeaabd23eef4465185239d987ba767f2a866c300bc
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-mbtouc-aux.c: 
-  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-mbtouc-unsafe-aux.c: 
-  copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-mbtouc-unsafe.c: 
-  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-mbtouc.c: 
-  copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-mbtoucr.c: 
-  copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7eb628bfecb6088142dbddc04daeb302c95a2a16ab2f4ce7fe96ac6515d1f822
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-move.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-next.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 00d3e25ac3c18c5d77c1d250c8220544e99fc346a8015da6b43e3ffe5014baef
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-prev.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 3d57d758b00dd01225b001edc0a71b3e6a7dc55957f00b1a5bbc950ae037f281
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-set.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: bcb3f22a0098c66883640efdd098aed40903b82c9a5d62b7d1936a805148d2a1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-startswith.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-stpcpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-stpncpy.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strcat.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strchr.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strcmp.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9c5e8a7ef380723d07e0ad180fe59421bf9bf28e1a4d289d05263339cb4025d2
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strcpy.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strcspn.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strdup.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strlen.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 3f5efa4cf915f83bfdc9adfac2a13ca7d3c75c63c4fc993377e9dee1b36e9f13
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strmblen.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strmbtouc.c: 
-  copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strncat.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strncmp.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strncpy.c: 
-  copyright: 2002, 2006 Free Software Foundation, Inc
-  hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strnlen.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: e591a71a08b4377ef29017795f592adf1ebf56caa73d172428942ed3d8735e53
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strpbrk.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strrchr.c: 
-  copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strspn.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strstr.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 62e3171131f084bb524e8e4b7b677e51dc0a4ddd7920c791e861fc6209824057
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-strtok.c: 
-  copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-  hash: 70422453328ab4382d464bc5e573a7921b44d303c4da2e58aa0cd67c8285ba1d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-to-u16.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7743fd5caa826417f0cc0e0da91677000cd23088c2b345a21a27aa43b0b595f1
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-to-u32.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 7308a76a0f28176be9098511a4dc13f5625aa399c70a8bf9993f78ddf7b319ef
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-uctomb-aux.c: 
-  copyright: 2002, 2006-2007 Free Software Foundation, Inc
-  hash: 44e95c47ddf3343b1c02157c12c9a0a950852563cd543850488cb21944559e11
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unistr/u8-uctomb.c: 
-  copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
-  hash: 60d6859b731140e5420ea2e3093e3ac272522cc9685459a9eddbdf4909d79f40
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unitypes.h: 
-  copyright: 2002, 2005-2006 Free Software Foundation, Inc
-  hash: 0eaaeed4ca0138967cd6fe4e6956edef837fa8461248425e893e1fc2fa0cbfee
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk.h: 
-  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
-  hash: 43906fff693dfdb439dee0927665138c03553941b19dec5efbca942a96aaa603
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk/u-wordbreaks.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: fc09df77911b0e107a808ffff910b9e323519e9c45a98f3c013cf11a38865d20
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk/u16-wordbreaks.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b5dea0d0ecc05dcf54c0de70762cc9cde64ffa38e40aa9ddad0b8a84d01d2c5e
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk/u32-wordbreaks.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4e66094a2b8797f527af80fd87fed6a222d621c8b8acffe7f7bdd9684fd5ac24
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk/u8-wordbreaks.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 00a1587322d98dd8948a091a85b45d8ebc70469f9e8c58552e3ea591b1908786
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk/ulc-wordbreaks.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: 1f3d4b29e74270464b552516539bd93bb486915d5e06e59452e3f58b1732d324
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk/wbrkprop.h: 
-  copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
-  hash: d8007020c5f8a08911ff92b7ff5bfd74f9448c47e568b430f2f1ab7999fc0d87
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./lib/uniwbrk/wbrktable.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk/wbrktable.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwbrk/wordbreak-property.c: 
-  copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-  hash: 4265f2bbb6cd20db8b5b6034d1d7da59b5a2b943cc9543c158091658bb61a36a
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth.h: 
-  copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc
-  hash: e4c6ff2cb013a8b2de23e758533e34077d64fd62e6c4098af88169ecd9ca1425
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth/cjk.h: 
-  copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
-  hash: 6d886d39c5a9bed7c747138b4025cd035c6b59163b1632e3eff5be730f9db943
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth/u16-strwidth.c: 
-  copyright: 2001-2002, 2006 Free Software Foundation, Inc
-  hash: 25a3cc5a8562b7025075a92b2acd9499fb20191bfea045cdfbf6ab778fcd2130
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth/u16-width.c: 
-  copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc
-  hash: 6447db6c2460f0cc11bea62a47e273a6cc33ca44ecdca0e7c640756cad86fc70
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth/u32-strwidth.c: 
-  copyright: 2001-2002, 2006 Free Software Foundation, Inc
-  hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth/u32-width.c: 
-  copyright: 2001-2002, 2006 Free Software Foundation, Inc
-  hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth/u8-strwidth.c: 
-  copyright: 2001-2002, 2006 Free Software Foundation, Inc
-  hash: 5e92bd8858f143e5c3888e1890f467f6b2a077b1c6e5622e888cdba7922207fb
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth/u8-width.c: 
-  copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc
-  hash: 5992f0453d5de4d8a6ba85cd63b8090006ba2c0b148afd9e07ab6d5dc36dea0c
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/uniwidth/width.c: 
-  copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
-  hash: 8f8187cd1a09e3412e237881244e68c314bcfb39c5c851ec7f251e17742ab6ab
-  license: "LGPL-3+ "
-  license_text: ''
-./lib/unlinkdir.c: 
-  copyright: 2005-2006, 2009 Free Software Foundation, Inc
-  hash: c9c22134c02523e933f8d5d7ca013d594047f1ee23b58a5ae39377525f9f046e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unlinkdir.h: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 02cd119ca3d63148dd23165be0b728a05b4dc02618dbb0d81782d83029dcf4ae
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unlocked-io.h: 
-  copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc
-  hash: a68721dbc7b80415c8f613c429da32c306e587ca487707e3cc920e7e34ac13a8
-  license: "GPL-3+ "
-  license_text: ''
-./lib/unsetenv.c: 
-  copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc
-  hash: 0b078599d4ea56fe10c153183b0254ed4945619c4c08c9ce35d5b32019d920de
-  license: "GPL-3+ "
-  license_text: ''
-./lib/userspec.c: 
-  copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software
-  hash: 87e09ee21b48597c439740bea48e07ce2dfe3daee61e331c0fea028a4572f53e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/userspec.h: 
-  copyright: ''
-  hash: 8fc9e48846b3c4b567f7da8a4b872193d48989f6861b60277e4077a61585ad55
-  license: ''
-  license_text: ''
-./lib/utime.c: 
-  copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software
-  hash: 0200b3aa44e66773c0cde9fec4a180d0eb7111465207468fc42520867fb69e64
-  license: "GPL "
-  license_text: ''
-./lib/utimecmp.c: 
-  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 513c0e1f4b1f45d732838695ab385c411afac14ce1c8841ad8bcc3855d16900c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/utimecmp.h: 
-  copyright: 2004 Free Software Foundation, Inc
-  hash: 4f328c1b87b0637f3cbb0c01968bbc5ffc5350b420f90f7f51de75d6872837ae
-  license: "GPL-3+ "
-  license_text: ''
-./lib/utimens.c: 
-  copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
-  hash: dd356a50d7062392a2b51927c4e390f09e3cb059bf0c2702ace1865130b3f136
-  license: "GPL "
-  license_text: ''
-./lib/utimens.h: 
-  copyright: ''
-  hash: d065c418d4fc1dad24e122f61cd9c4d59db9b05a6dba7ec8c17a8fd0fd9d9472
-  license: ''
-  license_text: ''
-./lib/vasnprintf.c: 
-  copyright: 1999, 2002-2009 Free Software Foundation, Inc
-  hash: f826f12032ff66714226a5c720dd2dbd1d645ba0536b39dfbea651b792404c5d
-  license: "GPL "
-  license_text: ''
-./lib/vasnprintf.h: 
-  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
-  hash: 2bf66b7f11449085cc6395a5d6d60496f6f13b08aa0187a5f52e9252e6cab2fa
-  license: "GPL "
-  license_text: ''
-./lib/vasprintf.c: 
-  copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-  hash: 48c7f19d29a46ec6dbaf09a38b3ecbde38b8191f9bca32208ece53a6b2de08ee
-  license: "GPL "
-  license_text: ''
-./lib/vdprintf.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
-  license: "GPL-3+ "
-  license_text: ''
-./lib/verify.h: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: a231e15e8b20379f38be81f4674fec177045e91abec1cc68481b6eb081c51312
-  license: "GPL-3+ "
-  license_text: ''
-./lib/verror.c: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: 2d2abd16891d68fb47a4f777060632ab389041f3cecbb9b5cce131f889f0fa8a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/verror.h: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: bfd2d5bbe94db1c367a3e3e4348fa2597a1c980ef1f74c10b7082ae569d56fb4
-  license: "GPL-3+ "
-  license_text: ''
-./lib/version-etc-fsf.c: 
-  copyright: "%s %d Free Software Foundation, Inc.\"; / 1999-2006 Free Software Foundation, Inc / goes to the FSF. */"
-  hash: 2200910e2dfcad20e1ed7fa171431d1ee58058ddcf354bc54b58c6f812ece50f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/version-etc.c: 
-  copyright: 1999-2009 Free Software Foundation, Inc
-  hash: 54f16006d89e39c40e5de0ff2f87f3f8a0498e25d2032fb2ef3b3e5c8a7f8bae
-  license: "GPL-3+ "
-  license_text: ''
-./lib/version-etc.h: 
-  copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc
-  hash: 8fe8c52a2462c979791b9718376564da4abfb5e764de7bca57ec4ff85a97dfc3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/vfprintf.c: 
-  copyright: 2004, 2006-2008 Free Software Foundation, Inc
-  hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
-  license: "GPL-3+ "
-  license_text: ''
-./lib/vprintf.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/vsnprintf.c: 
-  copyright: 2004, 2006-2008 Free Software Foundation, Inc
-  hash: 2be1271317efe1b22a2d9f18376d0a225658aa69ce7d86064c5a767779711336
-  license: "GPL "
-  license_text: ''
-./lib/vsprintf.c: 
-  copyright: 2004, 2006-2008 Free Software Foundation, Inc
-  hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/w32sock.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 1fd87a23e6def0b721fd23be4572dc15592716c646eff400eb8fa64fffda4962
-  license: "GPL-3+ "
-  license_text: ''
-./lib/w32spawn.h: 
-  copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc
-  hash: 010dd0544b69c6f163c5243a3b721ac0e3d23cc3e1b9ce1a8a30fce6789b7e6a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/wait-process.c: 
-  copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
-  hash: 580ab33dd9e9ad4be37f0440dce7774cf758ac9eef6725756be9a2d08481b529
-  license: "GPL-3+ "
-  license_text: ''
-./lib/wait-process.h: 
-  copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc
-  hash: 9c746de4916059b6ca40492142d370bc7006d4b8f032ad0111f6db7b0f653306
-  license: "GPL-3+ "
-  license_text: ''
-./lib/wchar.in.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e2b50e5f1a1293246463b729146da631d3afced4d48e395e00d38ccef20ea230
-  license: "GPL "
-  license_text: ''
-./lib/wcrtomb.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 10ecd599d0542d9a8001cca8225ee9c13514679962f22a531c75270aede87343
-  license: "GPL-3+ "
-  license_text: ''
-./lib/wcsnrtombs.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/wcsrtombs-state.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 04a4e1633ad0400f2161a87e7cf9a6aed6f826572214e001af1c7dddc850d7aa
-  license: "GPL-3+ "
-  license_text: ''
-./lib/wcsrtombs.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
-  license: "GPL-3+ "
-  license_text: ''
-./lib/wctob.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: c1b08427605521353fd457e9a00f2c3c9b08f1b424e5a75a9186d803debec1b5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/wctype.in.h: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: af0dc33178ed26851e8f3cb509f0acd760c6d25a876e8dc19ddb362d74ea46cf
-  license: "GPL "
-  license_text: ''
-./lib/wcwidth.c: 
-  copyright: 2006, 2007 Free Software Foundation, Inc
-  hash: 0aa6edaa085279cd62d2af3087586c8d95c4a611a683295b382144145735fede
-  license: "GPL-3+ "
-  license_text: ''
-./lib/write-any-file.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 91ab05c6935f8e51a763879fb79b2f3e9a68d664409800351c677574461519ce
-  license: "GPL-3+ "
-  license_text: ''
-./lib/write-any-file.h: 
-  copyright: ''
-  hash: 3baee9b8366345680cfc53a87f5dee015146c4255cee16b96803bb3f26cc9d2c
-  license: ''
-  license_text: ''
-./lib/write.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 862d3fd531460e25f2438bd1a28cf38b2f681566dc0e6eb1870e0c903173909c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xalloc-die.c: 
-  copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free
-  hash: 29f127d04d8c8d1e5999b7a07f26a3c5a00f5162135417f5956adf7ef53b7578
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xalloc.h: 
-  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
-  hash: 671d0dba30c52a75befe251993cc88c9cd3c9d5c047bf49267ccf26b133b4fa2
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xasprintf.c: 
-  copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc
-  hash: 8f74172c8681a5c0982e04312d1ce3104bab1aef39016d11869f0176d5fd27ed
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xconcat-filename.c: 
-  copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
-  hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
-  license: "GPL "
-  license_text: ''
-./lib/xgetcwd.c: 
-  copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
-  hash: 07b391c85dc4337c756a55eec0eda78ec9cd0e0975b181a48c5029c172a023af
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xgetcwd.h: 
-  copyright: 1995, 2001, 2003 Free Software Foundation, Inc
-  hash: 291895105e1bb54b496008ad5954bc8163c0ac56b8287f27e49adbe54e9ed0cf
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xgetdomainname.c: 
-  copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software
-  hash: 088792dafaec8531ae554297ad6ae5d481593dfab6921835648a8bce17c0c116
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xgetdomainname.h: 
-  copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc
-  hash: b26e437c9a8e6901a5034314c104978730a0753855f02e620edac0428c35b0a0
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xgethostname.c: 
-  copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009
-  hash: 2c4e8d5075dbcfa989f2855a9f231d4c98065036c64acf489b1449f4a3af9c39
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xgethostname.h: 
-  copyright: ''
-  hash: e9a81c8fca91ef7a8fd72e8246a5fe6367dba77986f6935a318fe7d551ab1e7a
-  license: ''
-  license_text: ''
-./lib/xmalloc.c: 
-  copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
-  hash: 25035c1bcf6b0d4ab5f9894ec09f8312b715a2e72e95d7f56b4b9ce41f53aade
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xmalloca.c: 
-  copyright: 2003, 2006-2007 Free Software Foundation, Inc
-  hash: e84a48177ef61605b6eed93be0310de6dac9146bbaf454bd7fb6caa1beb416f5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xmalloca.h: 
-  copyright: 2003, 2005, 2007 Free Software Foundation, Inc
-  hash: b8589d4f03fc2e4441ee611dd5596e4a3ac0657bd6974d6b21e95d435aef8f6f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xmemcoll.c: 
-  copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc
-  hash: f6215d92c92b8dd0afcb4da7a17068eb6b7d997bd3b8f7a3cf6e3e0ae25ed83c
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xmemcoll.h: 
-  copyright: ''
-  hash: 06a32178ba593d8d983c9d741edf99f4a67fa37ba8e8b45cfe60e796fe6e9fcc
-  license: ''
-  license_text: ''
-./lib/xmemdup0.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 244bfde7ef2ec650951db25d48ca2a94b61b77db3692c001b316f58057af7d14
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xmemdup0.h: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 0d3d9d1a970022933ab73db3375f0cc46e5fbf23a16ad79242cbd6461110201d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xnanosleep.c: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
-  hash: 587481ebf1cf8ff5a01e7ce8889b66fa2be4a4c631fd020f2df12deb6322f814
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xnanosleep.h: 
-  copyright: ''
-  hash: dec8f8b2087a79c9bb77d7f89d934625f2b83dd66bbfda194299b351baa1a38c
-  license: ''
-  license_text: ''
-./lib/xprintf.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 53c512f199ddd3f96147026f3ec162d4a4795ba009341a77dc173cdb6652a06b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xprintf.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 6d16969445a022a51044c272fb9aeefd3fa1bce9b54006cd10226a704b05f6fb
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xreadlink.c: 
-  copyright: 2001, 2003-2007 Free Software Foundation, Inc
-  hash: 3cb513689749db6e11f0f29fbee0e970aa1b69b3b1c1ab4b7ebf35f70eb59525
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xreadlink.h: 
-  copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc
-  hash: 0137f3b154dfc2a56910915e2522eb83920cfa9dc1684b241d60fae327d93f9e
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xsetenv.c: 
-  copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
-  hash: b18f92f3404ce0f52b6536522986febc64c972fbea548ba151a12abd0550c875
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xsetenv.h: 
-  copyright: 2001-2002, 2007 Free Software Foundation, Inc
-  hash: 02f0e5d1c1bee87cfcc15ef5d22da97530a2213cce025f98bbd07440a9346aad
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xsize.h: 
-  copyright: 2003, 2008 Free Software Foundation, Inc
-  hash: af3fdcacfe8f3dbae26f9d806b0a9b2274f86ea7daed7117f09e29858b85d38f
-  license: "GPL "
-  license_text: ''
-./lib/xstriconv.c: 
-  copyright: 2001-2004, 2006 Free Software Foundation, Inc
-  hash: 42d740ec07e24b23ef7e205783f456e0ab80a5a2d716e4d045408b73365440a5
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstriconv.h: 
-  copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
-  hash: 07f01b89d3917786fdb52af236bc0007f98425b6167f083f2440d19e17dd3c5f
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstriconveh.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e35dae25c1d50a7d5d5b3df39059abf308145f43ae4e85ba73931745e7017995
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstriconveh.h: 
-  copyright: 2001-2007, 2009 Free Software Foundation, Inc
-  hash: f64f01e0d0569fa1f4c52371b10abc77b255d1a578f06d141d682561ee8c28bf
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstrndup.c: 
-  copyright: 2003, 2006, 2007 Free Software Foundation, Inc
-  hash: 0fb519e75e481ad8278a17ca05d2a40e377c265586ca996d18c4a56ddd4c2697
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstrndup.h: 
-  copyright: 2003 Free Software Foundation, Inc
-  hash: 41aeea4d051e789e9ee829206990c84da4e6ab74f5a5ebbf1e7444ecdb2e7093
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstrtod.c: 
-  copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free
-  hash: 7433646b920b02364625fd3d4b09fb30c050b37a3c73ee2c644d63ee95bca8c6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstrtod.h: 
-  copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc
-  hash: ace9d21f9ff0ac53904c27c990f62e2b8819a7776acbd67c3f05c6893dcaef4a
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstrtoimax.c: 
-  copyright: ''
-  hash: b2ce36a250657c54d51627b616310f70c9870fd5fc7941bf18d3924067f28563
-  license: ''
-  license_text: ''
-./lib/xstrtol-error.c: 
-  copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008
-  hash: 831f1f9013ce8fe06ea3685fd92d37cebc8125b91e0c87a93758fd5f4b17c47b
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstrtol.c: 
-  copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005
-  hash: 1de66c39110e53ed0f5d4cc2737b14547ef7657e0c6ff41b7d14bf71b617b792
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstrtol.h: 
-  copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007
-  hash: 03fe7afdcf7063d6f46436f0ca5dc6cd12a9f6bac186bc36f3af26dd745995d6
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xstrtold.c: 
-  copyright: ''
-  hash: 1a077cc54d4bfd4cee5ff0022623e5f8553d4eae977ca2f0bed5d0de5c51119b
-  license: ''
-  license_text: ''
-./lib/xstrtoul.c: 
-  copyright: ''
-  hash: bebc6e6916fdada92bda5d5fd7a22c71074205ca0b8476130d540d9139a83d3a
-  license: ''
-  license_text: ''
-./lib/xstrtoumax.c: 
-  copyright: ''
-  hash: 70b5ba83b8bfc540ad4dfead90cff12b8240919d0e368c0ded31a409271b5de6
-  license: ''
-  license_text: ''
-./lib/xtime.h: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 93ba493c1b4263ae9363cbeabfe1a8abe0959b8380c740b34e3c4b3909c9f26d
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xvasprintf.c: 
-  copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc
-  hash: 52187c5a41b1f31643add5fb4e3f204c74131d3030ce4b7668476584bc3075cf
-  license: "GPL-3+ "
-  license_text: ''
-./lib/xvasprintf.h: 
-  copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc
-  hash: 43236f9f154af870f714a7b11b1f4955a7e1e7a2e9f322608e5780e185014f63
-  license: "GPL-3+ "
-  license_text: ''
-./lib/yesno.c: 
-  copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc
-  hash: 89bdc0ba46060accf0008dc08a620a5629f006515f4bf5cc12a17775d448bfa3
-  license: "GPL-3+ "
-  license_text: ''
-./lib/yesno.h: 
-  copyright: 2004 Free Software Foundation, Inc
-  hash: f6ea7fda3622e6ce79f8737d3a6c12e11e9b077489cdbfe3a89e2105aa54493b
-  license: "GPL-3+ "
-  license_text: ''
-./m4/00gnulib.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 199b5fcd827c6451f70d8e1d1a64e314dbae7654c56b74f6588a5bdc54544e70
-  license: ''
-  license_text: ''
-./m4/README: 
-  copyright: ''
-  hash: ba4cd61e99798f7ea35082c20cc09f366c65ec5fccfd0fed9f9d155cf7e29bc5
-  license: ''
-  license_text: ''
-./m4/absolute-header.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: cd06c8f2c0e593aea317496f932d01531368be33ed202d8f67fa9d07f592d4e4
-  license: ''
-  license_text: ''
-./m4/accept4.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b3e97bc4b7996b0d54a8110f94d6eeb97c61532d392ee4edc10ac18bb4ecbea4
-  license: ''
-  license_text: ''
-./m4/acl.m4: 
-  copyright: 2002, 2004-2009 Free Software Foundation, Inc
-  hash: 2062b336b8b9acae4a5a7acd0bc88988e5d79d2868fcd2e28ef211ee2fa0844d
-  license: ''
-  license_text: ''
-./m4/afs.m4: 
-  copyright: 1999-2001, 2004, 2008-2009 Free Software Foundation, Inc
-  hash: 568ef913f651e507daaa7d5e2f78566ce66e4d1c1b275c229fbfe1810ea7e0b2
-  license: ''
-  license_text: ''
-./m4/alloca.m4: 
-  copyright: 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: 1c05b753d58a7541c6aabb8d0ae65e359233c6e0f6c660cee8edffbb50d0dba1
-  license: ''
-  license_text: ''
-./m4/alphasort.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ca5d108291340e87953a7da10112597eb36fe789578740fa3ce5266b621c777d
-  license: ''
-  license_text: ''
-./m4/arcfour.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: a5713df7392190ea048a75a71afb1588cabaa6e3d6c1417961eb77168f44eca1
-  license: ''
-  license_text: ''
-./m4/arctwo.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 36abc4a75d5117bfc913d1a8bf2c5e8e8a8bc6d7286f1303ce8880ee46be3431
-  license: ''
-  license_text: ''
-./m4/argmatch.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 4854bb865e261cec0fbb829700d2a7cd23fbebf0289ebf4a02f105691ccaedd9
-  license: ''
-  license_text: ''
-./m4/argp.m4: 
-  copyright: 2003-2007, 2009 Free Software Foundation, Inc
-  hash: 21e67baca54a3803f21fb63836804e99e202c709dcbc16d3ad6a7b7e272a3381
-  license: ''
-  license_text: ''
-./m4/argz.m4: 
-  copyright: 2004-2009 Free Software Foundation, Inc
-  hash: 07bb623d7aa89977ca15b1d78a201ca4b7b4762561dac92466c89d0a65c17336
-  license: ''
-  license_text: ''
-./m4/arpa_inet_h.m4: 
-  copyright: 2006, 2008 Free Software Foundation, Inc
-  hash: 50b6027adea6ea1c675d502272095e88d7dc11f7e5ceca51ec845c4aa15295a5
-  license: ''
-  license_text: ''
-./m4/assert.m4: 
-  copyright: 1998, 1999, 2001, 2004, 2008 Free Software Foundation, Inc
-  hash: 9939631ab7942c8ec4fe23d07695acdee8af208c98c7c15871b671dee73aaf8e
-  license: ''
-  license_text: ''
-./m4/atexit.m4: 
-  copyright: 2002, 2009 Free Software Foundation, Inc
-  hash: 8085939167e8cb64ea4d9d89a945f2cde32d6b68df8fc6153ed1d7b8d1512597
-  license: ''
-  license_text: ''
-./m4/atoll.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: ba4f896e8c9fb0a4bd310145ca06ec6cf35be47f96e9e6af01ba1eb817fa40b4
-  license: ''
-  license_text: ''
-./m4/autobuild.m4: 
-  copyright: 2004, 2006, 2007, 2008 Free Software Foundation, Inc
-  hash: f5a4a593a144c5649aecf131a8cd7921e8f6c6f5e7dbfba1343aaae61734bd59
-  license: ''
-  license_text: ''
-./m4/backupfile.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 08bbe11639a7958632ef367b118a0616b7375a316d87e5ef868c26ebe410ea2f
-  license: ''
-  license_text: ''
-./m4/base64.m4: 
-  copyright: 2004, 2006 Free Software Foundation, Inc
-  hash: f0a6ca66fe9b14a51cd93f1f25116d916ffe72477c4f6cc44ab0f660d9041459
-  license: ''
-  license_text: ''
-./m4/bison-i18n.m4: 
-  copyright: 2005-2006, 2009 Free Software Foundation, Inc
-  hash: 965fc67b33c005ee86dca5eecdd0a9497bbe1bd8b6720bc3909c72fea2e4ae5d
-  license: ''
-  license_text: ''
-./m4/bison.m4: 
-  copyright: 2002, 2005, 2009 Free Software Foundation, Inc
-  hash: 894a0216128f06bd77d174d18135624574366e95de47fbc8921d6d504eec8072
-  license: ''
-  license_text: ''
-./m4/btowc.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: a5eb4065f63412f6a83feb9e1f65a2a1f8e26da7c83823787165acbaf0137222
-  license: ''
-  license_text: ''
-./m4/byteswap.m4: 
-  copyright: 2005, 2007, 2009 Free Software Foundation, Inc
-  hash: c5aa765b7c6ccc3353870fb151665077a7e38babbeecd726d47c374b6030c142
-  license: ''
-  license_text: ''
-./m4/c-stack.m4: 
-  copyright: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc
-  hash: 5f84f6648d7bba8f1b4a27bd6990d3121ad247cf746dd1e1800dbfea6f2a189b
-  license: ''
-  license_text: ''
-./m4/c-strtod.m4: 
-  copyright: 2004, 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: f63125eb425fbf1a0f952fabacdb1cc92e8b73b7b535d827cf0238214ec38f7e
-  license: ''
-  license_text: ''
-./m4/calloc.m4: 
-  copyright: 2004-2009 Free Software Foundation, Inc
-  hash: 3df4bb22fb92d400e022a50e89cbafc7864c637c4a8bdb540128cdd270263b53
-  license: ''
-  license_text: ''
-./m4/canon-host.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 6e792084f158286ac4f73322ef6232e1d46915a0c9c1d49175ff0f95524d60ff
-  license: ''
-  license_text: ''
-./m4/canonicalize-lgpl.m4: 
-  copyright: 2003, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 52633d2d1b4de8d850f6a261c9674850ad6b49a6a1cd0bac28a179df50fef773
-  license: ''
-  license_text: ''
-./m4/canonicalize.m4: 
-  copyright: 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: bfb8373080498188c794855955e00f51ab9ba1a0f71f87a369fb782b100ecdac
-  license: ''
-  license_text: ''
-./m4/ceil.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 99018f7541cafb7232e12934ab1020dd0c0071912a56b3a0e268f7c97f009c36
-  license: ''
-  license_text: ''
-./m4/ceilf.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 8a43f29a1a6f510ada6a916c12bc8dce19af13bec5252876c9ea5c451fd175db
-  license: ''
-  license_text: ''
-./m4/ceill.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: e7b2a8c6575e96a75b4e0b39c67c8045b023dc4e774d6db56460903035d99847
-  license: ''
-  license_text: ''
-./m4/chdir-long.m4: 
-  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: a4f29bf720ac294a5e9815f9bf97d5b315066371d5ba0c1f73ea8480b87e1d35
-  license: ''
-  license_text: ''
-./m4/chdir-safer.m4: 
-  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: d4d11a65f4290f666741af1268b3191fe98f808dc2542a5178b54ed4e55ed126
-  license: ''
-  license_text: ''
-./m4/check-math-lib.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 375574fd5cbe36e53461e37f4abbae1347d1b94d1bb7fb713784f988d6509c82
-  license: ''
-  license_text: ''
-./m4/check-version.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: db75405103fdbe9b17d63917d875dc924fd24638440bf489dd2e258d75c154d8
-  license: ''
-  license_text: ''
-./m4/chown.m4: 
-  copyright: 1997-2001, 2003-2005, 2007, 2009
-  hash: 9b3def56d60d2eebd5ca9f5e8163027800bf2fc01df3d092143caa00f80ffa01
-  license: ''
-  license_text: ''
-./m4/clock_time.m4: 
-  copyright: 2002-2006, 2009 Free Software Foundation, Inc
-  hash: 19824aa72500f6ce1cd7dad2280d6742b8b97adf59dec61783b165208a384aa8
-  license: ''
-  license_text: ''
-./m4/cloexec.m4: 
-  copyright: 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 4d4b571bd482f975c487221e5a04b89a98bb9ecde57248f8b8e6cc066718ae68
-  license: ''
-  license_text: ''
-./m4/close-stream.m4: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: 3091fb73ef0ac31a2cc908760c33c471d4e7a5c1283c03f5a69d5a82301043fe
-  license: ''
-  license_text: ''
-./m4/close.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 7e1b55433c7364fb5ea4be276aa2f2761dd7b50c399d474f11ed787201ad29d2
-  license: ''
-  license_text: ''
-./m4/closein.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: f58bf58484cebc1a8bc332904efa060564ca19565dde390c83faa28be18d672f
-  license: ''
-  license_text: ''
-./m4/closeout.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: b472fe6270917cb33de443e6130c9722c4f316f255f00a8a00f3ae37fab0b26a
-  license: ''
-  license_text: ''
-./m4/codeset.m4: 
-  copyright: 2000-2002, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 798184a7fbbc98c7faaca47a01a72ef637da6852ab2ea8d9ed4b19ad8f83be66
-  license: ''
-  license_text: ''
-./m4/cond.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: fc7299e2068e6ff7fb2c149ae8bf9720b040cf1ee5a6862dc34a9fc507a01556
-  license: ''
-  license_text: ''
-./m4/config-h.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: c6cf92e91910d0bd085cf645a73b6ae7cd932ae193edb3c41c9e285aeb84122a
-  license: ''
-  license_text: ''
-./m4/copy-file.m4: 
-  copyright: 2003, 2009 Free Software Foundation, Inc
-  hash: 23a58772c01c55b3d027ceae709201c9fafb97744dbe367577674e28588d64d5
-  license: ''
-  license_text: ''
-./m4/count-one-bits.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 7cb9f7f46b3c69bd552292ce5a9d8ad5372dc27602d1adfffd765688bb918c6e
-  license: ''
-  license_text: ''
-./m4/crc.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: ac3b61507ffd5e75e6cb43ecc272a4c802c6b05131d7f8855c2a7509fc610386
-  license: ''
-  license_text: ''
-./m4/csharp.m4: 
-  copyright: 2004-2005, 2009 Free Software Foundation, Inc
-  hash: 3e03d469ea0a067f286a667d6fc8fb7c8e373ec8c6aa13b6b7d73d5ecdd411bf
-  license: ''
-  license_text: ''
-./m4/csharpcomp.m4: 
-  copyright: 2003-2005, 2007, 2009 Free Software Foundation, Inc
-  hash: bed35278c23c7f90f65c2e1a03b0b535b14f290ba7007cc11f8c3c0a97b06d1e
-  license: ''
-  license_text: ''
-./m4/csharpexec.m4: 
-  copyright: 2003-2005, 2009 Free Software Foundation, Inc
-  hash: e1de084636e1f5efc990513007c3cfa05561055efcecf49e159166249f61ea8a
-  license: ''
-  license_text: ''
-./m4/cycle-check.m4: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 08b0141983dcbe0af6eb3adced2241ebe8b6ab88474fe14396559bf2c280ee1e
-  license: ''
-  license_text: ''
-./m4/d-ino.m4: 
-  copyright: 1997, 1999-2001, 2003-2004, 2006-2007, 2009 Free Software
-  hash: ebc82fd998746123b58231e2d774d7709bbfc7594df11bbc8552c63a28b75c48
-  license: ''
-  license_text: ''
-./m4/d-type.m4: 
-  copyright: 1997, 1999-2004, 2006, 2009 Free Software Foundation, Inc
-  hash: aaf8c30e46246b12f62710018b00b56cd4ae3ed0f1a0133325d2d727a75db56b
-  license: ''
-  license_text: ''
-./m4/des.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: b9009b10ac57e2829610ad77f600ca717a7ddd2622a071ca3393ffee39f474c1
-  license: ''
-  license_text: ''
-./m4/dirent-safer.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0df2785f4f2c25e6850aeb7ae112f5292cb556f96c2d79c933b062ec5a840276
-  license: ''
-  license_text: ''
-./m4/dirent_h.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 1e19ccad9ce6a2f856861bf7c23b8cd3e5a42edb574fdb4878ccb77562e5eee0
-  license: ''
-  license_text: ''
-./m4/dirfd.m4: 
-  copyright: 2001-2006, 2008-2009 Free Software Foundation, Inc
-  hash: f1a40a07c8854f4be0b3f0f4deae0b1f72de8eb88ed8b30c7a938ad9c4ef1635
-  license: ''
-  license_text: ''
-./m4/dirname.m4: 
-  copyright: 2002-2006 Free Software Foundation, Inc
-  hash: 5e5b390ea6a0270ff48f6e0b985c95d3d178a29ab54c859758c87bd19b543cee
-  license: ''
-  license_text: ''
-./m4/dos.m4: 
-  copyright: ( == '/' || == '\\') / 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc / ( == '/')
-  hash: 0686518ef84a5fed6f1bb276c02d11c84efe40f4450b8b956b4b0f0f4af1f739
-  license: ''
-  license_text: ''
-./m4/double-slash-root.m4: 
-  copyright: 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 00cf683e37d5296236bb31b34728935f45e051dd74abf695fda2272406f6231f
-  license: ''
-  license_text: ''
-./m4/dprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 4d518e6a74aa81ddadb7111ad05a9447d5c22202ff954d6dca5964ec1e755cf3
-  license: ''
-  license_text: ''
-./m4/dprintf.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 193180d094ccea061d44e273da365b72498002d167766c58b7ebe3d9ae421b03
-  license: ''
-  license_text: ''
-./m4/dup2.m4: 
-  copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
-  hash: 7c4b1a9d5d67bca60012e759553f97b72a0ec7f8106e3881845c6545005cb452
-  license: ''
-  license_text: ''
-./m4/dup3.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4ce79f58847153c5a32e74acc00c061c31a87fef94e418168dddb0c0641f1710
-  license: ''
-  license_text: ''
-./m4/eaccess.m4: 
-  copyright: 2003, 2009 Free Software Foundation, Inc
-  hash: 2eca1bd5e8430964e61caf77d01a5abf3514931453355b3a99a513ba4203cce0
-  license: ''
-  license_text: ''
-./m4/eealloc.m4: 
-  copyright: 2003, 2009 Free Software Foundation, Inc
-  hash: b48072eda4c415f4c70dabf3f484840e7dcb508b206b48b83d93b9646361d27e
-  license: ''
-  license_text: ''
-./m4/environ.m4: 
-  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
-  hash: 4283b25a258a4358150e4422f3c22bc4a5a95fd3b05c3864c656997f245d571f
-  license: ''
-  license_text: ''
-./m4/errno_h.m4: 
-  copyright: 2004, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 4fe293d8c7486c74c2a6ec7b383c10f11e80af0ac1c6c28451e798a62117bd96
-  license: ''
-  license_text: ''
-./m4/error.m4: 
-  copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software
-  hash: d8d8360113fea1e0eab7095a3331097070f8c4adf2dd86b5fd11dc22f73ceebf
-  license: ''
-  license_text: ''
-./m4/euidaccess.m4: 
-  copyright: 2002-2009 Free Software Foundation, Inc
-  hash: b2aa7901f1599ebf72d901afba98b9e218c1855b4396cb39194784aeb9051200
-  license: ''
-  license_text: ''
-./m4/exclude.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: f157d5680a79611b130e7e6082cdfd076c29a03eaa43c6edc97cc8e5fe25a1bf
-  license: ''
-  license_text: ''
-./m4/execute.m4: 
-  copyright: 2003, 2008, 2009 Free Software Foundation, Inc
-  hash: d91a2923d49049f4b4d8e89e4c75b86ff3a90420e1e36337461f09aef719825f
-  license: ''
-  license_text: ''
-./m4/exitfail.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: c0bca886587d8ac9978c63a4cd4016879923984497dee2730b5c8cf3e14162f1
-  license: ''
-  license_text: ''
-./m4/exponentd.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 5058bb832cabaa10e4a9c9d86746cf504a7f65f202f513d0672d569ca22365ff
-  license: ''
-  license_text: ''
-./m4/exponentf.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 9959e539475d1417ce2a219cbace11d88034d81641007a866c4219aa5341a302
-  license: ''
-  license_text: ''
-./m4/exponentl.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 794a89c1dcefd7d2a44a7627ed950cc1de34a3439fb6104e42b476ef7ee745e7
-  license: ''
-  license_text: ''
-./m4/extensions.m4: 
-  copyright: 2003, 2006-2009 Free Software Foundation, Inc
-  hash: bdff048b894f22bac6a6632e68de81828283256a335be4b9e464e943190c0801
-  license: ''
-  license_text: ''
-./m4/faccessat.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9f08b4c94c4a06294b64072a9e6b684b627b44440875f145615f66814fc0b702
-  license: ''
-  license_text: ''
-./m4/fatal-signal.m4: 
-  copyright: 2003-2004, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 2a78cb0997683eca979321f1f2eb2973b442ce77f106bcefa8859968fbf58f04
-  license: ''
-  license_text: ''
-./m4/fbufmode.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 47eae3094e71bbbbbdf5e844b7e46629cccefb272730dd90e15929281f04fa48
-  license: ''
-  license_text: ''
-./m4/fchdir.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 18dfd391edf590486365f2410fe2d2fb805d743a68136299ddc47fe80711db98
-  license: ''
-  license_text: ''
-./m4/fclose.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: cb8402f12d3a7e62c3e5617f98e19cc1c0ddef4904bf4d04467c445f5853ed0c
-  license: ''
-  license_text: ''
-./m4/fcntl-safer.m4: 
-  copyright: 2005-2007, 2009 Free Software Foundation, Inc
-  hash: 125531e3fb7fa9ce62b6f25142454078fdc1653288e56dd770c0917c3e88f4e3
-  license: ''
-  license_text: ''
-./m4/fcntl_h.m4: 
-  copyright: 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: 876ecbcebae308d5b51d7fefbbb44a0cc20781eae03ab416895c50118ad8d06c
-  license: ''
-  license_text: ''
-./m4/fdopendir.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5d0d75f6c33c69ddb9b253fdf2cbcb08752a3bca92d5a9e44cac0d0935f05e1d
-  license: ''
-  license_text: ''
-./m4/fflush.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a42927338afd7b316951faf1c953daafbea033ab310824f84ecbb58383228f48
-  license: ''
-  license_text: ''
-./m4/file-type.m4: 
-  copyright: 2002, 2005, 2006 Free Software Foundation, Inc
-  hash: 312a84168ac2f1b1c14220aeb335cf1268efe38307848c9a882c099a057ed59e
-  license: ''
-  license_text: ''
-./m4/fileblocks.m4: 
-  copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: afc5994b8cd6b810f81c0bb605c9768ba3c724ebf1ac33b1940081b564db76fd
-  license: ''
-  license_text: ''
-./m4/filemode.m4: 
-  copyright: 2002, 2005, 2006 Free Software Foundation, Inc
-  hash: 8dd4d3ccf500ebd64522a379c41fec1ed74e007244f7cd946dc9a8c6b0a95e4e
-  license: ''
-  license_text: ''
-./m4/filenamecat.m4: 
-  copyright: 2002-2006, 2009 Free Software Foundation, Inc
-  hash: ac5ada6787a8617ef2ca718ff8043193dda141d1d57be957af8840cd2ec371dd
-  license: ''
-  license_text: ''
-./m4/findprog.m4: 
-  copyright: 2003, 2009 Free Software Foundation, Inc
-  hash: 90578a64ef1f6ce7f9d541fac5cb328d7f900ca600e1b1c491e97a729c4391ed
-  license: ''
-  license_text: ''
-./m4/flexmember.m4: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 91bd9e053632cf0678e82035378bc32d21c404e017c0cb13c1888887ccceed56
-  license: ''
-  license_text: ''
-./m4/float_h.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: ed0472c9ce5a69206792765536ce26bf056cb09a0e4e00fbf6f92a804b92dce6
-  license: ''
-  license_text: ''
-./m4/flock.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 46ec46659d20d4d889859493fcff0d6fa0adf9c0f714cf2e1f26abc0d5d26878
-  license: ''
-  license_text: ''
-./m4/floor.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 1c106d3c05b2afa08097d196eed80b85166a5c7058ba2e9e36be6635d27b1cec
-  license: ''
-  license_text: ''
-./m4/floorf.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: aa5e12760098221878cffc006320adffba688133460e279f740759c7faec4b05
-  license: ''
-  license_text: ''
-./m4/floorl.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: b85a4fe69e190a88a16dd404a61599e8070a3b3bf9ab37c9690b543c81b629e3
-  license: ''
-  license_text: ''
-./m4/fnmatch.m4: 
-  copyright: 2000-2007, 2009 Free Software Foundation, Inc
-  hash: 5ad2559cc52140959c55fdd9939dbda831638089cfc85ed96288f33906ae6f79
-  license: ''
-  license_text: ''
-./m4/fopen.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: ad0e94c6fd7ae83f339ed3ab8e1bff3dd2758d7f6031df649ed0b0b97f6e0be1
-  license: ''
-  license_text: ''
-./m4/fpending.m4: 
-  copyright: 2000-2001, 2004-2009 Free Software Foundation, Inc
-  hash: 15e76893dd5eb2ccd584f05adfd4d0bf825205860f2ff756e9e1020c18908f66
-  license: ''
-  license_text: ''
-./m4/fpieee.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 3f59244481168ae5dfff004b81aeb6f8c894e83e649b61756a5728bbd99f7c0c
-  license: ''
-  license_text: ''
-./m4/fprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a6008d1598b7a24895a472734caac4147d7e0e83af64445440435d102702f0db
-  license: ''
-  license_text: ''
-./m4/fprintftime.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: b7fa3778dc0b75cfe801816cc9055dc7cf465859763cf969813048c198e5a4f2
-  license: ''
-  license_text: ''
-./m4/fpurge.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: f62512d54c7b8d9c80dd8cce01a414ff826212c7c2c6248a9ed3c7b633c05db5
-  license: ''
-  license_text: ''
-./m4/freadable.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 3bf013bf28d20f59da11208e07e1df5b7bce00db26854e6f051e7d5d9f8accab
-  license: ''
-  license_text: ''
-./m4/freading.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 1b93e3045ca266145966f8cc03253dc078a20bcc5718c4cbfb0143e96e71623b
-  license: ''
-  license_text: ''
-./m4/free.m4: 
-  copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc
-  hash: a73accbd96194e981cf77ac3c837092a69e5bc17d503029f7289b87d3b368a63
-  license: ''
-  license_text: ''
-./m4/freopen.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 5ebdad15bb6e2f7016d5c80253fb741aa55cd8d814b9540de1a847331950da0f
-  license: ''
-  license_text: ''
-./m4/frexp.m4: 
-  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: dc1ae79deeb763eff6de3d5298100b251865503e40b019a89e3db089bcad3a31
-  license: ''
-  license_text: ''
-./m4/frexpl.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 9eaf5d91b7fdceaec549c9d2f9ab9d7e1310c826c42c98e3617d338820d46491
-  license: ''
-  license_text: ''
-./m4/fseek.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 31705112d71a7dca0c55e58f71bb7793f5e8c34f031a0c8c3a9e5fc4e02f831d
-  license: ''
-  license_text: ''
-./m4/fseeko.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 6395a4c99169cdd30546e688899aafb3463f40f644f76627f7faa5ae579e04ee
-  license: ''
-  license_text: ''
-./m4/fstypename.m4: 
-  copyright: 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc
-  hash: febf3d78aaad07d686dc0df84606d52ac546108e705860bb0215d8ce5a405cc9
-  license: ''
-  license_text: ''
-./m4/fsusage.m4: 
-  copyright: 1997-1998, 2000-2001, 2003-2009 Free Software Foundation, Inc
-  hash: 3f4ff242e495ac68b8e83f016aa01d83f890eb555ecd89730b95db0b1519d48b
-  license: ''
-  license_text: ''
-./m4/fsync.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 77db5b0972952ed1ea04f93e7da8814121e35fe2dd6ac987ecb230dad1ff2e6a
-  license: ''
-  license_text: ''
-./m4/ftell.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: d75a25a7df953391070aaf846037d45c4acd0b49dec2f2b6d5ffd42efa912d8f
-  license: ''
-  license_text: ''
-./m4/ftello.m4: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: 8325ff7415b489bb4cda6d66da300385b44ef26bc5d2d2f0dcea088931d45276
-  license: ''
-  license_text: ''
-./m4/ftruncate.m4: 
-  copyright: 2000, 2001, 2003-2007, 2009 Free Software Foundation, Inc
-  hash: f7488bef88571b9f271591596eb95b19045177a6732d63cf4f1d4bbb4682840d
-  license: ''
-  license_text: ''
-./m4/fts.m4: 
-  copyright: 2005-2008 Free Software Foundation, Inc
-  hash: 4f513e7bacffd2fd728bbb1ba8590d68154aad24bd93f9e3f180437b79c5ceea
-  license: ''
-  license_text: ''
-./m4/func.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 399a8add7bf539263c73610b55864fa380c55b671a1475c2665b4e44a492f651
-  license: ''
-  license_text: ''
-./m4/fwritable.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 5e3d7fabafc4390341689eab88fb336422580b76c3d8e69bf3ee14c4d1b8fb5f
-  license: ''
-  license_text: ''
-./m4/fwriting.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 1ad3e75d2fb60d18c45f3836e75300e8269bc88ec64462820c09c910d9f52503
-  license: ''
-  license_text: ''
-./m4/gc-arcfour.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 9efa840a3efc3447c567fa7289fe2ebe32bb1d871418edd1b4b24110a85851df
-  license: ''
-  license_text: ''
-./m4/gc-arctwo.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 2e87cd8b7b772699b901021af1778dc199583766bcde241517d2b31dede60e28
-  license: ''
-  license_text: ''
-./m4/gc-camellia.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 1cc1d8a7ebf5b851e2e4dbd647b73831533ee517189c1e5b42395944508f3c90
-  license: ''
-  license_text: ''
-./m4/gc-des.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 00b153202ac5b51eb239ca87808efccc65a24713beb6211f670533ac858b2417
-  license: ''
-  license_text: ''
-./m4/gc-hmac-md5.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 2cc833715be1b2e57351273907eaff653c0165732898f852fbc4aac9a9eaf89c
-  license: ''
-  license_text: ''
-./m4/gc-hmac-sha1.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: b1c3c8753c14de1d3eddf5de258bbfbad6c215251cd5b61018a7515d6cef20e6
-  license: ''
-  license_text: ''
-./m4/gc-md2.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: ac2dbdefb3eb77364d1898cf795c625244227b19b4d0ea88ed078d333cf09ea9
-  license: ''
-  license_text: ''
-./m4/gc-md4.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: eb88ac5149f21b181faa2db6f1b13cb63b4902c3ef347111cf4fe93d44407c6f
-  license: ''
-  license_text: ''
-./m4/gc-md5.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: afc266c338301066708dc7430a92399e3d8716e33001daba899c95640e527f0c
-  license: ''
-  license_text: ''
-./m4/gc-pbkdf2-sha1.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 477893cd24822028dd94a1f6ec75e6effc823ddbe57289886454a1b353c1b8eb
-  license: ''
-  license_text: ''
-./m4/gc-random.m4: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: 7c6359250cc4a22a27311b673688f6b1f0622d00c42f57e47425c75c31dd6b17
-  license: ''
-  license_text: ''
-./m4/gc-rijndael.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 6caca24fa5408e0286cbdfb716068d66a352c80142643dba35fcd4011bf6a33e
-  license: ''
-  license_text: ''
-./m4/gc-sha1.m4: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 443bfafc3a5eb25299291d7dcfef2ed68f0b57841caf360fc8eb1abb0f32493a
-  license: ''
-  license_text: ''
-./m4/gc.m4: 
-  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: a8f9ebf6d8f1983cbd8b32378b928174f6026da55c11a81aae47e2b2e1c25142
-  license: ''
-  license_text: ''
-./m4/getaddrinfo.m4: 
-  copyright: 2004-2009 Free Software Foundation, Inc
-  hash: 162f35cf358a5ad9b171d16e437f37a717d01d22d5f17725767ed7f76f6b650b
-  license: ''
-  license_text: ''
-./m4/getcwd-abort-bug.m4: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: fd355ed2ae698981232b9c3a5b92ee842d9928342394217c98f5576848b08577
-  license: ''
-  license_text: ''
-./m4/getcwd-path-max.m4: 
-  copyright: 2003-2007, 2009 Free Software Foundation, Inc
-  hash: bb780d0c969c10a9d14d8d61d726b682113b7fe3a5505eee66e649fefe99c063
-  license: ''
-  license_text: ''
-./m4/getcwd.m4: 
-  copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 0fc304520a41fcf7ad345780a1cb9eaf73bef3856834b3448bc2283210c77b07
-  license: ''
-  license_text: ''
-./m4/getdate.m4: 
-  copyright: 2002-2006, 2008, 2009 Free Software Foundation, Inc
-  hash: c237091fdbe4035e27c3be4829e9e1798870c51bb982585a5c11c1bca74fb1ee
-  license: ''
-  license_text: ''
-./m4/getdelim.m4: 
-  copyright: 2005, 2006, 2007 Free Software dnl Foundation, Inc
-  hash: b6b738dbf34edff9dc3d2f0be5088bfb974fdbe55ac6aa7a255b39a851384122
-  license: ''
-  license_text: ''
-./m4/getdomainname.m4: 
-  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
-  hash: 7fb3faebffb6a66d558b99423801631258e92e4a782809f808d9f7cd0bcb5094
-  license: ''
-  license_text: ''
-./m4/getdtablesize.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 67ccf670de71994ed6710e1897f64f871a74271c9af2c827cbe55bfaa538a8de
-  license: ''
-  license_text: ''
-./m4/getgroups.m4: 
-  copyright: 1996-1997, 1999-2004, 2008-2009 Free Software Foundation, Inc
-  hash: c3ad064f9d4de711f983f1b373e261e6c5c254520cf1cd2353e98941b5fd3285
-  license: ''
-  license_text: ''
-./m4/gethostname.m4: 
-  copyright: 2002, 2008, 2009 Free Software Foundation, Inc
-  hash: 9fd3d06a71eff8d2be5bd62a266b0bd71283c871f3dda177fb83476dd922e426
-  license: ''
-  license_text: ''
-./m4/gethrxtime.m4: 
-  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 84c7e59b44315629631075311dee0c40fcc834324dd7672cb0f3148be10ba6a4
-  license: ''
-  license_text: ''
-./m4/getline.m4: 
-  copyright: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: 89ec9fb86746e481d3340d6a2bec769a1bb1ea00e6ed30bdea292e8f1242036a
-  license: ''
-  license_text: ''
-./m4/getloadavg.m4: 
-  copyright: 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003
-  hash: 7b0c35c25d813983e2ffc981ad4773d7cbcf126d0d853391cee73b7ad3e60db4
-  license: ''
-  license_text: ''
-./m4/getlogin_r.m4: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: f42c8994afabe3f85235db3850925d5e613daad1e9f64024023826ff10feef97
-  license: ''
-  license_text: ''
-./m4/getndelim2.m4: 
-  copyright: 2003, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 3172ac8aa677c2d97b39f9d6af0fed26d2fed4da679b616e668066329ec2bd1e
-  license: ''
-  license_text: ''
-./m4/getnline.m4: 
-  copyright: 2003 Free Software Foundation, Inc
-  hash: 9af45bdccbe7d6ae432a8112390145eaa29f89ba5e448fe8aadd58355ce77f7d
-  license: ''
-  license_text: ''
-./m4/getopt.m4: 
-  copyright: 2002-2006, 2008-2009 Free Software Foundation, Inc
-  hash: 5f06c376d4d0eab902bcd59374dcc3569716156e6a5b3a9f057e901cd8460904
-  license: ''
-  license_text: ''
-./m4/getpagesize.m4: 
-  copyright: 2002, 2004-2005, 2007 Free Software Foundation, Inc
-  hash: 2b7fd04beb6e26d86c114fa975404317f7fa575b5902dae6f392c060fb8bce22
-  license: ''
-  license_text: ''
-./m4/getpass.m4: 
-  copyright: 2002-2003, 2005-2006, 2009 Free Software Foundation, Inc
-  hash: a34c89dcb9d116383941ad1d076e7df7db9ecaa7058c9a85b09d0b938d5dc5a8
-  license: ''
-  license_text: ''
-./m4/getsubopt.m4: 
-  copyright: 2004, 2007 Free Software Foundation, Inc
-  hash: 9b04ceb2d89042a3ff134954522fe3cefea7441790d31ab74fc2d0c265c1309d
-  license: ''
-  license_text: ''
-./m4/gettext.m4: 
-  copyright: 1995-2009 Free Software Foundation, Inc
-  hash: 209767111675e6bd3167db5ee4bbcde54189112719d3de3db9f87f6850f60440
-  license: ''
-  license_text: ''
-./m4/gettime.m4: 
-  copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: 2dee3947ea628455e6f99a9429ca412a5727e6ae81fcfc765de229a5f214cb4e
-  license: ''
-  license_text: ''
-./m4/gettimeofday.m4: 
-  copyright: 2001-2003, 2005, 2007, 2009 Free Software Foundation, Inc
-  hash: 2813667e7bf563ab4d0f747953be0ea2a763ff773c3f251ff9f08daf2f33013b
-  license: ''
-  license_text: ''
-./m4/getugroups.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 5fa33ebc62e80a7f354f6e432c4dac78bac05bd75f9381b430a0f638994381ea
-  license: ''
-  license_text: ''
-./m4/getusershell.m4: 
-  copyright: 2002, 2003, 2006, 2008 Free Software Foundation, Inc
-  hash: 85822f50f91b2679b6b3607288c46cd4fb5c2f08c12a4329a1ff7de39e2766c0
-  license: ''
-  license_text: ''
-./m4/gl_list.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 8b2a1802af815eebecaaf1e75e8931f2f40e8f48695c96b0230339ff56d88eaa
-  license: ''
-  license_text: ''
-./m4/glibc2.m4: 
-  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
-  hash: 11b39a2f3ca03b195c0ff0fb9170ea87fbe38dd4ff8a481000feb62e48168c97
-  license: ''
-  license_text: ''
-./m4/glibc21.m4: 
-  copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
-  hash: c38afe2c0836f2ddec80a6aac76a85735b6b0a3e487fea600816d7a460492c6f
-  license: ''
-  license_text: ''
-./m4/glob.m4: 
-  copyright: 2005-2007 Free Software Foundation, Inc
-  hash: a90e23db91a3c58be62de6c2bf9556087e2266f338a41bbdfe4d4e9c9017fe47
-  license: ''
-  license_text: ''
-./m4/gnu-make.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 70a7aba0c8a2889370654a6a63b8c36d43163088c2fa61cf20d080eb6151bb6f
-  license: ''
-  license_text: ''
-./m4/gnulib-common.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: cf953d1ede907c6631070667a43748f8f22368503be57c4207aba45ea49e1804
-  license: ''
-  license_text: ''
-./m4/gnulib-tool.m4: 
-  copyright: 2004-2005 Free Software Foundation, Inc
-  hash: c6d2fd9c5bba8e3f3ebfc4650a4b9d0432d43d2e4810f637fda353b1f61d7de7
-  license: ''
-  license_text: ''
-./m4/group-member.m4: 
-  copyright: 1999-2001, 2003-2007, 2009 Free Software Foundation, Inc
-  hash: b9ef1ff8203530e2e78714b55cf01b1bbf1c7c258b61ee3536c1cb5892bd8d16
-  license: ''
-  license_text: ''
-./m4/hard-locale.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 97264040027e35bb6dbe3df675fe93938e7a66d8b148d6fba0ecc36e19d5cf40
-  license: ''
-  license_text: ''
-./m4/hash.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 819523e80720760423e01ca0720b2940895aef21577d206f09dbc782bf0f5d93
-  license: ''
-  license_text: ''
-./m4/hmac-md5.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 01aa0b99269598138f369e395801e415957d1f5e99e42b67da35a667bd88f307
-  license: ''
-  license_text: ''
-./m4/hmac-sha1.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: f261317ddd13a6feb35c7a801adc7f7156819362d3d5efd1e0636fc54e3f67cc
-  license: ''
-  license_text: ''
-./m4/host-os.m4: 
-  copyright: 2001, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
-  hash: cf2577e3c69f36ee157700e347082ddfb55659d7ec921569d78be17be2df1a3f
-  license: ''
-  license_text: ''
-./m4/hostent.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 86614585cb9169151c04f411f5a9e8f576954e89bf686b988b3ec4e8d56234be
-  license: ''
-  license_text: ''
-./m4/human.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: a7fb86bd0bbe797cf1a99630e2764b76f2a8c322acdb3fd3e32d9f5f52288246
-  license: ''
-  license_text: ''
-./m4/i-ring.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 8a89b11945fad17cf70d3830685f646050122bba7c19ecca33a7feec4e7b73a6
-  license: ''
-  license_text: ''
-./m4/iconv.m4: 
-  copyright: 2000-2002, 2007-2009 Free Software Foundation, Inc
-  hash: 58adc1feb91f7df348f3072f3187d4b2487b22efb486a17366fdefadfe1e2453
-  license: ''
-  license_text: ''
-./m4/iconv_h.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 4bf94c8ab903d28caab6ad4c0ff7f6976cff8aac193e26f06a4ef161ab7cfb7f
-  license: ''
-  license_text: ''
-./m4/iconv_open.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: cc6a4cffaeedc925c4b77d44679278ce74a324ae280a69086127a1244e575694
-  license: ''
-  license_text: ''
-./m4/idcache.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 684c8544db4656472183f046dacda8f3db85963ccd23353fbcd5dfe988c1356e
-  license: ''
-  license_text: ''
-./m4/idpriv.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5b4a91d383eb4ddf7108b571d3eeead786ce2af3a1dc207b5b5faee7009db536
-  license: ''
-  license_text: ''
-./m4/imaxabs.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 9ac282ca81021c035a86c34f143d6b7a49de4067e4b69b1b93f39a146447bfac
-  license: ''
-  license_text: ''
-./m4/imaxdiv.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 5fadf938b03a5ea38a211bb8d57402bb672b551cbe5701a7d9db8d054dc16098
-  license: ''
-  license_text: ''
-./m4/include_next.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: fc10e0ad2c9bd80b98f37d913b9021a9b6538bbcea1386183abe1a5b7ae89d0e
-  license: ''
-  license_text: ''
-./m4/inet_ntop.m4: 
-  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 2961f88ceca9369b98135b582ea275427282cf3cee5edefabe6510f3a36637a3
-  license: ''
-  license_text: ''
-./m4/inet_pton.m4: 
-  copyright: 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 3f59e48fd6fa87c38851d0fb7f14d7fddeb46f50d526beeca3383d01002dfd06
-  license: ''
-  license_text: ''
-./m4/inline.m4: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 1ce32c0db262c643f6c513cf276d533c45afeea4b8f10681b2fd8d8c770f0e9e
-  license: ''
-  license_text: ''
-./m4/intdiv0.m4: 
-  copyright: 2002, 2007-2008 Free Software Foundation, Inc
-  hash: 3b41e9fe7c042186c2004a938b8f651898d683f34d60198d65048c00eaffe3aa
-  license: ''
-  license_text: ''
-./m4/intl.m4: 
-  copyright: 1995-2007 Free Software Foundation, Inc
-  hash: 0d7179b34d75a5812cc919c4190baf120690b0155fc61f344967c0805e0d566a
-  license: ''
-  license_text: ''
-./m4/intldir.m4: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 612428195affe98a7d5441899325dd49d191670b691459bc02e12ab0cfbf966a
-  license: ''
-  license_text: ''
-./m4/intlmacosx.m4: 
-  copyright: 2004-2009 Free Software Foundation, Inc
-  hash: 447c46fa3888adb2ccaab83f4cf703a630ef162e4933d79887ea9039a02729e0
-  license: ''
-  license_text: ''
-./m4/intmax.m4: 
-  copyright: 2002-2005, 2008, 2009 Free Software Foundation, Inc
-  hash: c110fc0f8772eb14b1d5e4e98f3bb7a7973aee6a673907e18409a3e79e319b56
-  license: ''
-  license_text: ''
-./m4/intmax_t.m4: 
-  copyright: 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 86248e08dfb3dbae4bf34645c7909fcfdc517fb975573a8f57f9fa11a9c47fb0
-  license: ''
-  license_text: ''
-./m4/inttostr.m4: 
-  copyright: 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: e2b51832fe091eaf612d6dac65a6e704009d76fe68224aed958f392d2637a269
-  license: ''
-  license_text: ''
-./m4/inttypes-pri.m4: 
-  copyright: 1997-2002, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 8649b8fa7043ccf53fdf62500bad888da4180ee519fb31fab64aaf8c8ce9ded8
-  license: ''
-  license_text: ''
-./m4/inttypes.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: e5b427858f7a6dbbb30e7d900d76402ff9a42c6ec9c38bff2bfa3f59be20e3eb
-  license: ''
-  license_text: ''
-./m4/inttypes_h.m4: 
-  copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: ca5eb68f1650e18a89c61c9ad23ecf5786ead724c985f8a06dc12877c9d326c4
-  license: ''
-  license_text: ''
-./m4/isapipe.m4: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 694aef61dce5554fcd26fb2c28e2544ba8e385f8d6e673c37164e578fd6dc342
-  license: ''
-  license_text: ''
-./m4/isdir.m4: 
-  copyright: 2002 Free Software Foundation, Inc
-  hash: e9d65c52fa170654224baaa1a9a48b18398df1b62c8f0595813ec62b53a55729
-  license: ''
-  license_text: ''
-./m4/isfinite.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: c19d2f133ca402c36f7c2d02bb1793b8722b49205ea44e74e40e92cef27db4fc
-  license: ''
-  license_text: ''
-./m4/isinf.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: fe9d10fd7eb4cd6bcb9b2cb63a4d24340313246a2d39faa8a63a5ca82998ff9a
-  license: ''
-  license_text: ''
-./m4/isnan.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: e7b33f83d3ce859e8f1395ea66d91f251c145404b1b04abc907a4966f213aa24
-  license: ''
-  license_text: ''
-./m4/isnand.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 51e8e66a3b57025d5bc688689425eb32e6c8e064ede078c4d6e080b56d3aab04
-  license: ''
-  license_text: ''
-./m4/isnanf.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 595cb32bba81892f6ea7ddb98c352f5796a0535a6fa78a172cfb89437609af6b
-  license: ''
-  license_text: ''
-./m4/isnanl.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: f803ad5cf4c44855de734207bee9190902ea849cbb2b13dc2e61ae9733015193
-  license: ''
-  license_text: ''
-./m4/javacomp.m4: 
-  copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 14e19c009a90dde63c919635e6c67c76ca1ea166444f296ba5e1841d14e51aba
-  license: ''
-  license_text: ''
-./m4/javaexec.m4: 
-  copyright: 2001-2003, 2006, 2009 Free Software Foundation, Inc
-  hash: 4918c3e11f2ea4072f3311b390e4ae81540c6a5adf57fb986a3fcf7dab7e771d
-  license: ''
-  license_text: ''
-./m4/jm-winsz1.m4: 
-  copyright: 1996, 1999, 2001-2002, 2004, 2006, 2009
-  hash: 301531f58811d581f72b13a77914c5ce9116ba7ee471486ae31a75aedd85f502
-  license: ''
-  license_text: ''
-./m4/jm-winsz2.m4: 
-  copyright: 1996, 1999, 2001, 2004, 2009 Free Software Foundation, Inc
-  hash: 060d85fec2c0b5c74229e5cb538ab49a2731fdcf7d9af9cd2fa2e23e3f57357e
-  license: ''
-  license_text: ''
-./m4/lchmod.m4: 
-  copyright: 2005, 2006, 2008 Free Software Foundation, Inc
-  hash: f8d332af32afc5284f1da28186423c4b1f8df943fec36a1415936007a868b4e4
-  license: ''
-  license_text: ''
-./m4/lchown.m4: 
-  copyright: 1998, 2001, 2003-2007, 2009 Free Software Foundation, Inc
-  hash: 114159d41d1474abd908058b69f4373686342a1796d9f9f65bbbb9267cbc9d69
-  license: ''
-  license_text: ''
-./m4/lcmessage.m4: 
-  copyright: 1995-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
-  hash: e2cc3d8b92945a9d0baa9a803ba03d5516916bfa463cb50f551414bc550edef9
-  license: ''
-  license_text: ''
-./m4/ld-output-def.m4: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: e5ffc015c39b58438c1616034da6eecc2ac346360cd22575e51c5f72c4aa9ff7
-  license: ''
-  license_text: ''
-./m4/ld-version-script.m4: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: efaad515a17443f74a72ceef2bbbbb094f1e5a36515b84a35a66266ce54995ca
-  license: ''
-  license_text: ''
-./m4/ldd.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 343928a20ff84e1b66ee2da65a5b896efdce4f69135b19e5df4de074a5f007b2
-  license: ''
-  license_text: ''
-./m4/ldexpl.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 7e93193fa9d20667368d04017e56f0514bc859b102b064aa96d292d53fc0b3ce
-  license: ''
-  license_text: ''
-./m4/lib-ignore.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 16d25c2943c615eb393319fda49b7d52096e1b32ff542bb57aea0ffe1a566f1f
-  license: ''
-  license_text: ''
-./m4/lib-ld.m4: 
-  copyright: 1996-2003, 2009 Free Software Foundation, Inc
-  hash: 5c208fa42b078f46f3d6aff909c14418be3e034817c1a91a5d6677bb6d143ac1
-  license: ''
-  license_text: ''
-./m4/lib-link.m4: 
-  copyright: 2001-2009 Free Software Foundation, Inc
-  hash: ddf8673d6148d43b50fa4e60fe33f19cfbf4fee56b6d017c9ff5f180b45b2247
-  license: ''
-  license_text: ''
-./m4/lib-prefix.m4: 
-  copyright: 2001-2005, 2008-2009 Free Software Foundation, Inc
-  hash: 670991582b722e16a12293d7f817562b4f6c9d6a8d034573c7d1b049a3f618e7
-  license: ''
-  license_text: ''
-./m4/libsigsegv.m4: 
-  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
-  hash: 417798efd6f0af14a61894f4f838a3188a159231210a7ac3cfb80dbcdd38bb04
-  license: ''
-  license_text: ''
-./m4/libunistring.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 30e764db0ea63d7c4b4a6d5886a6417f11b355c04a873f4c97609a0975144b63
-  license: ''
-  license_text: ''
-./m4/link-follow.m4: 
-  copyright: 1999-2001, 2004-2006, 2009 Free Software Foundation, Inc
-  hash: bfcaf0beba8f8e7b4b5b35b52c14f4f2074cfd8d85c0ad824c32f6a189b31dc9
-  license: ''
-  license_text: ''
-./m4/link.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0cdff13ae7180563eed4c0316a5c6f515ae921b3805f4cf6e8b642cc1c206498
-  license: ''
-  license_text: ''
-./m4/localcharset.m4: 
-  copyright: 2002, 2004, 2006, 2009 Free Software Foundation, Inc
-  hash: 00e8162fc6c53b329b35513aace655880fbf6e8c3f684923cff2b97e11eed3a3
-  license: ''
-  license_text: ''
-./m4/locale-fr.m4: 
-  copyright: 2003, 2005-2009 Free Software Foundation, Inc
-  hash: f37c0c563b84177f67f66c1c84aa0f80fae71061d5dd4f49cd60b7a0f12ad7e2
-  license: ''
-  license_text: ''
-./m4/locale-ja.m4: 
-  copyright: 2003, 2005-2009 Free Software Foundation, Inc
-  hash: 46355008a2c63f595d7c452c1f36c5f9e9b11bd8b469d5a16a2f4960b545d1e7
-  license: ''
-  license_text: ''
-./m4/locale-tr.m4: 
-  copyright: 2003, 2005-2009 Free Software Foundation, Inc
-  hash: 8f7943111b5706039847295a518091bf667a3ddd04727fee2858357e3659a0ee
-  license: ''
-  license_text: ''
-./m4/locale-zh.m4: 
-  copyright: 2003, 2005-2009 Free Software Foundation, Inc
-  hash: af44fa1110a57fb71f22d7f43efce6bb0b4d1ad67d39bb8a01e10b65ec282a7c
-  license: ''
-  license_text: ''
-./m4/locale_h.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: df7aaa065eb91a465c6b5dec83ca26b2b8cb4e790cf0abc5c387326fbacd066c
-  license: ''
-  license_text: ''
-./m4/localename.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 3fa8b3a4ca986ad17a8dc24d01300ad487fc51243c3d584d651327f08a15561f
-  license: ''
-  license_text: ''
-./m4/lock.m4: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: 591f64f47b0546c5ab1769dc5f6a995ac3c2c0846e4f37c456601638e8353127
-  license: ''
-  license_text: ''
-./m4/long-options.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 90915cdfe1004a2676f30d1c36306db44f25076401bb5e07ce04d7c2f8e55396
-  license: ''
-  license_text: ''
-./m4/longlong.m4: 
-  copyright: 1999-2007, 2009 Free Software Foundation, Inc
-  hash: 31bf5606914914e2b190d30413b6ee86c190153a1ba10b6b71d66f9853693ad8
-  license: ''
-  license_text: ''
-./m4/ls-mntd-fs.m4: 
-  copyright: 1998-2004, 2006, 2009 Free Software Foundation, Inc
-  hash: 843fe15f5a9827e6d8388ec64749b6a3fadb7705147e34ecdb189c731ef849da
-  license: ''
-  license_text: ''
-./m4/lseek.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 7f0502309efd6839c977e3419c2aee0f013e5a2541bcb22bdc6e04e4868dfd1c
-  license: ''
-  license_text: ''
-./m4/lstat.m4: 
-  copyright: 1997-2001, 2003-2009 Free Software Foundation, Inc
-  hash: 477d1ff15d11599304c8b73e8e2dbada5a9bf4c7057fdfe47cc5f23a66a66a66
-  license: ''
-  license_text: ''
-./m4/malloc.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 2a8252ecabf5e3af574f01ee6254422f36889314949c50fc9245d94e857c3652
-  license: ''
-  license_text: ''
-./m4/malloca.m4: 
-  copyright: 2003-2004, 2006-2007 Free Software Foundation, Inc
-  hash: 574f23c6a3908adea4bc9f052f415c65e5b9c444ca4433a34c9120c94870b237
-  license: ''
-  license_text: ''
-./m4/manywarnings.m4: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: d8731a4a9dfaecf297b136b0f85f850c4519fc39a44680674853bba3644ad22c
-  license: ''
-  license_text: ''
-./m4/math_h.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 821573f4fcedee707630697c2cf95ed24b271a9152c84dbc6bf920ee554afb56
-  license: ''
-  license_text: ''
-./m4/mathl.m4: 
-  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
-  hash: 6ce43398f3875ee3f91451cbf904c142813d768bd7a6e9cf330e3fe8dd62a27b
-  license: ''
-  license_text: ''
-./m4/mbchar.m4: 
-  copyright: 2005-2007 Free Software Foundation, Inc
-  hash: b486f2469239c36107f6b2b0b0541b087405ba8fbc85d9256b4cf6454550c144
-  license: ''
-  license_text: ''
-./m4/mbfile.m4: 
-  copyright: 2005, 2008 Free Software Foundation, Inc
-  hash: e87810bc66d7019634d2b30038f24b16e1a9ef49c6c32e805f6f71360452cbb2
-  license: ''
-  license_text: ''
-./m4/mbiter.m4: 
-  copyright: 2005, 2008 Free Software Foundation, Inc
-  hash: a969e27c30aefb7073965ab1cd4bcee97268f6b82bf96522509e713eacc853a2
-  license: ''
-  license_text: ''
-./m4/mbrlen.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: a606b1ca8b598c52bfd7f233eb4984ca878fb179d80e06220d85b5d9b36d960d
-  license: ''
-  license_text: ''
-./m4/mbrtowc.m4: 
-  copyright: 2001-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
-  hash: d660822110548e8d7d79255d5ac60fe496a9e7f04a9de7397f3a6d5a8dbb54f1
-  license: ''
-  license_text: ''
-./m4/mbsinit.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 8d7472d2b364b4379c7f634f7a4f6800e19078099331fac228780eb697a2cd58
-  license: ''
-  license_text: ''
-./m4/mbsnrtowcs.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: a7a12a2e7dfec6902d1398d30ee7a15b86c159a0a1265611a5546ab220f7bc4c
-  license: ''
-  license_text: ''
-./m4/mbsrtowcs.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 5425f085251dacc43b461b2b77cdbc1fe485d1c81e33989687f213dfc3a1d389
-  license: ''
-  license_text: ''
-./m4/mbstate_t.m4: 
-  copyright: 2000-2002, 2008, 2009 Free Software Foundation, Inc
-  hash: 59a390c7f53d4878a2370306835400bd423ea9dfa0b34e8e2a92fa00b0d70255
-  license: ''
-  license_text: ''
-./m4/mbswidth.m4: 
-  copyright: 2000-2002, 2004, 2006-2009 Free Software Foundation, Inc
-  hash: 2deb63d9fcc93ac349da112c631d337964c474754e5387a42d368f90157012cd
-  license: ''
-  license_text: ''
-./m4/md2.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 130e33f82decb4d039a56ebd2b85e32c70de213b254873ac543bf5b7e0cb24d5
-  license: ''
-  license_text: ''
-./m4/md4.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 7978358bc5de59163559a74cf8c7992190472b1269112e939f5ecf2a4e26f8fc
-  license: ''
-  license_text: ''
-./m4/md5.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: aad43f86e0054029b846a78045d88f8d03aec67b5b6ad6f4b59b3a6e2d6d7c7a
-  license: ''
-  license_text: ''
-./m4/memcasecmp.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 479e27cf51cc18056b84824cad8a4ba0d97d0fc9116fd12b2e872c409c570ddb
-  license: ''
-  license_text: ''
-./m4/memchr.m4: 
-  copyright: 2002, 2003, 2004, 2009 Free Software Foundation, Inc
-  hash: d3882d0a7e536c7f6eca2a953e8a9a77d1e0486d3ccadb9b5a4a469c4c069bb8
-  license: ''
-  license_text: ''
-./m4/memcmp.m4: 
-  copyright: 2002-2004, 2007-2009 Free Software Foundation, Inc
-  hash: 449f2f83be3f02edb3e248d1e7ae3d7362782610e06dd191239165716870c19d
-  license: ''
-  license_text: ''
-./m4/memcoll.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 9395ae323be423646eecb762e010a41756b958911635ef8a1f45bdd9db176663
-  license: ''
-  license_text: ''
-./m4/memcpy.m4: 
-  copyright: 2002, 2009 Free Software Foundation, Inc
-  hash: 84c3b639c26e2935d10c98c4eca37254a25f95b6a8c2f8f1f3b626eae72595ff
-  license: ''
-  license_text: ''
-./m4/memmem.m4: 
-  copyright: 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: aee6e80d6f3a27178e82414b2705d8b5824e26f352bcdbd457d309de9bd526c2
-  license: ''
-  license_text: ''
-./m4/memmove.m4: 
-  copyright: 2002, 2009 Free Software Foundation, Inc
-  hash: 197891df3f9fd08854095f4665cc9dc917fe595d189a4f613d1575a3c9b43adc
-  license: ''
-  license_text: ''
-./m4/mempcpy.m4: 
-  copyright: 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: 348c790aab8f85294c57e021f04e15befa7530aabb531a4f21fc10ddabb271b0
-  license: ''
-  license_text: ''
-./m4/memrchr.m4: 
-  copyright: 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: e1b3e57cb26a5122045e5a65c1e06f24e2ce5a75cf6ce12f8992208e34b7e74d
-  license: ''
-  license_text: ''
-./m4/memset.m4: 
-  copyright: 2002, 2009 Free Software Foundation, Inc
-  hash: e7937ae3941db76c84b41bc3aab29231fc5a0e57018a6fad797cd527f0578eaf
-  license: ''
-  license_text: ''
-./m4/memxor.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: bef5cfa0b422bb86f6c6713336c527d14407c55ee8a792d0780bbab8a1233d98
-  license: ''
-  license_text: ''
-./m4/minmax.m4: 
-  copyright: 2005, 2009 Free Software Foundation, Inc
-  hash: 9377265286ad8108a58bb33b19f69b867035ff53bcbea4df3e6b0016347b90f9
-  license: ''
-  license_text: ''
-./m4/mkancesdirs.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 5636abd1471767ac9a49a328344cf3e04afc98405063b73cca8c95049d237a8e
-  license: ''
-  license_text: ''
-./m4/mkdir-p.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: ac650e70d9346b2fb4df3ba6740e9aa14e1d5df373d1de3e080555faaf3aea47
-  license: ''
-  license_text: ''
-./m4/mkdir-slash.m4: 
-  copyright: 2001, 2003-2004, 2006, 2008-2009 Free Software Foundation, Inc
-  hash: e49b5a74f72ac1bf48beee660429e250ce6c84debef307189bdde551178a40e6
-  license: ''
-  license_text: ''
-./m4/mkdtemp.m4: 
-  copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
-  hash: e9d10a2443d799828ab3560664f80a1b3eeab2c1c44ff3a03343a8a6d559d246
-  license: ''
-  license_text: ''
-./m4/mkostemp.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: de670586ec4849c79719a5083d4615315bc12f021062c3f712dd943602f919c8
-  license: ''
-  license_text: ''
-./m4/mkstemp.m4: 
-  copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 68e1a719526a1664819987fb68462270a281870e6343e8f7ad24a6d0ecbbda1c
-  license: ''
-  license_text: ''
-./m4/mktime.m4: 
-  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: a694524fe822949b46a4e4bc24861958d73ebb75afdf8c2b30a008b5e254c067
-  license: ''
-  license_text: ''
-./m4/mmap-anon.m4: 
-  copyright: 2005, 2007, 2009 Free Software Foundation, Inc
-  hash: fc74a563ed0275f38790da335f29a098d015f5246ea7765f0b7769ebe7b120d1
-  license: ''
-  license_text: ''
-./m4/mode_t.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: edba1bc2a5883adbb22efb7d249f1d36eb813483301ecc40cde9c2a6571f5837
-  license: ''
-  license_text: ''
-./m4/modechange.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: ce44dcfc3a8e8574a4ef4d768d020e9829048e7f077112a3a6e8428e3e7b56d6
-  license: ''
-  license_text: ''
-./m4/mountlist.m4: 
-  copyright: 2002-2006, 2009 Free Software Foundation, Inc
-  hash: d152d842444b1deff2d4b4fd74538c7f5b1e00dff162d9ffdf6f933996d8e05b
-  license: ''
-  license_text: ''
-./m4/mpsort.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 809791f443252bbfc151a010255ce7ec04024f6eb00f35995ab8faf19fd664fd
-  license: ''
-  license_text: ''
-./m4/multiarch.m4: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: b653258f3ce7cd64c7398d9233856eb610cb9f25c8220388ac8f8d69522e0093
-  license: ''
-  license_text: ''
-./m4/nanosleep.m4: 
-  copyright: 1999-2001, 2003-2009 Free Software Foundation, Inc
-  hash: 674b956f064d364a077586afb415cb25d57fc568f9fba0489cba169168844500
-  license: ''
-  license_text: ''
-./m4/netdb_h.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: d08ed8e4f180214d652b09a8eaafd373f90309951733c48e677e83037b6ed4f2
-  license: ''
-  license_text: ''
-./m4/netinet_in_h.m4: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: a85cc8fd45199ab9ef11d6ac7d13daa751abfde221865a0a73fe7cfe21c2f2f0
-  license: ''
-  license_text: ''
-./m4/nls.m4: 
-  copyright: 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc
-  hash: e7e360a53812d679422ef6f4d1e35bb7646879dfcaf785927d7ac9095f8b7ec7
-  license: ''
-  license_text: ''
-./m4/no-c++.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: 0b0031352efd05fda906a5128060bd0ae56b31d85f23def26558caef30481782
-  license: ''
-  license_text: ''
-./m4/nocrash.m4: 
-  copyright: 2005, 2009 Free Software Foundation, Inc
-  hash: 6adf83dadf8d1dcb76ced51fc0508c5debc83ec4ceed2c5f870a9fc82912bd39
-  license: ''
-  license_text: ''
-./m4/obstack-printf-posix.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 7ba595af510c3e8cd2d9f3680cabbe5987b67bee7a5c830deea8a29b90e93e52
-  license: ''
-  license_text: ''
-./m4/obstack-printf.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 6368c454be42588d8224ccee3a953a7b53f7ad95c71f7ee3740973a41f824199
-  license: ''
-  license_text: ''
-./m4/onceonly.m4: 
-  copyright: 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc
-  hash: 7ae946e07bc12c2ed2eb7a4a8c826cf7debadef975bffbf2cb04c5d8f27c6f38
-  license: GENERATED FILE
-  license_text: ''
-./m4/open.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 48fe6d09b376e833462ed32fe6065929561bff664179f71223340c481e677893
-  license: ''
-  license_text: ''
-./m4/openat.m4: 
-  copyright: 2004-2009 Free Software Foundation, Inc
-  hash: 1267346fb934ac50ef7887759e67e0545b095eb3e6566be665648aff87044f82
-  license: ''
-  license_text: ''
-./m4/openmp.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: a545c428a801683ce74ede4d47c7cbeb6744eec734c6b68eec57751db85caf3b
-  license: ''
-  license_text: ''
-./m4/pagealign_alloc.m4: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 3f2dd3a771fa6b3fa816d2a6ef721ac63b3cd5a057cac1163026788956369502
-  license: ''
-  license_text: ''
-./m4/pathmax.m4: 
-  copyright: 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: 4a5873ef823f40afa9b33adebbe5392c0fc1d30d76eba4b657430e5f02ec0ece
-  license: ''
-  license_text: ''
-./m4/perl.m4: 
-  copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc
-  hash: eaec6e8145dda32d044eb5468e58bf0e13df68f863a2acc0cd81caf4731d3231
-  license: ''
-  license_text: ''
-./m4/perror.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 6171e44ca4ed0431a2f8f57591ef3a383767b93b66f002363bd6a9099673b0b9
-  license: ''
-  license_text: ''
-./m4/physmem.m4: 
-  copyright: 2002-2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
-  hash: bb350fe56d68536870397663b7824edd4b945d8ca3696c879c0c4ba53dc95bdf
-  license: ''
-  license_text: ''
-./m4/pipe.m4: 
-  copyright: 2004, 2008, 2009 Free Software Foundation, Inc
-  hash: 7ec8856c90f4355e601693e33d8b18a4a41691fa9c4fa43d39f81766ccac21a4
-  license: ''
-  license_text: ''
-./m4/pipe2.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f3be301c98df31830acfab4197dbc2dc8f6e0cb418d9d733192622f22c101c08
-  license: ''
-  license_text: ''
-./m4/pmccabe2html.m4: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: d45dc024d6753f4004ddaf9f6d235159c452d9b7d7c57432207d03d0d9c5e93e
-  license: ''
-  license_text: ''
-./m4/po.m4: 
-  copyright: 1995-2009 Free Software Foundation, Inc
-  hash: ca8c03e98db7b6d5561401741d13196032accefca210b2a7526f814ec686348e
-  license: ''
-  license_text: ''
-./m4/poll.m4: 
-  copyright: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: 629b8155ef9034734706a637ca9b60025a6c7444057a99b02f7635b34b886f14
-  license: ''
-  license_text: ''
-./m4/popen.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b8ce7c048df6b2fc3a6f11ed7eabff8c2dd0bf8009bb134de915c68c330baa80
-  license: ''
-  license_text: ''
-./m4/posix-shell.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: cce92ab970bd18d6bc66e86dc66f01a7bc16b77a2c1543222fee39cbe9f902ae
-  license: ''
-  license_text: ''
-./m4/posix_spawn.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 4ccf3aca29a25f057325f00cb8cab9ffb7f4a3503475529bf10ad4391d8673a2
-  license: ''
-  license_text: ''
-./m4/posixtm.m4: 
-  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: 1b08ede3cabafa63d4dbcfce84463f53cb28d1fbf6d0b644a548ef4b6a60c1f5
-  license: ''
-  license_text: ''
-./m4/posixver.m4: 
-  copyright: 2002-2006, 2009 Free Software Foundation, Inc
-  hash: 27aa6d893cf20144880953b6b445f87561cdb0e31bc9b60cb030a6ec5accd3e5
-  license: ''
-  license_text: ''
-./m4/printf-frexp.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: c738950347dfbc774896c9b0ef0160a9d16a50ec5b9e4b29c7afe19b8c70b609
-  license: ''
-  license_text: ''
-./m4/printf-frexpl.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: a493cf44285f516390a2b9eb2ad1cc36c11f71093eb74e7c3e8d5ca2dd14fcd2
-  license: ''
-  license_text: ''
-./m4/printf-posix-rpl.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: f4213c12c22486c51e995cbc0a9f55e9dd1c733fac30cb191d33ae57ab1d2ace
-  license: ''
-  license_text: ''
-./m4/printf-posix.m4: 
-  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
-  hash: 4eb5f8f07750e884b5f4220c2b95cda187b6cd81bde447aeb413d684c514d5b2
-  license: ''
-  license_text: ''
-./m4/printf.m4: 
-  copyright: 2003, 2007-2009 Free Software Foundation, Inc
-  hash: 4fca85cb7811468dc8f84a7799c133cda593ab144a2c0889378f3795a95ddbb0
-  license: ''
-  license_text: ''
-./m4/priv-set.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9a5807b3867d86d02784078b14f20e8ecec79dc64ad187bab11bca20e19faf9d
-  license: ''
-  license_text: ''
-./m4/progtest.m4: 
-  copyright: 1996-2003, 2005, 2008, 2009 Free Software Foundation, Inc
-  hash: 09334de09d3e23a27f655f7a3100e19ef96683339bad9621defeef669cf53b22
-  license: ''
-  license_text: ''
-./m4/pthread.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 265b8582edae0ecc5f191cf2467aa5ed8c46e146649c4d56574377f70eeaf78e
-  license: ''
-  license_text: ''
-./m4/putenv.m4: 
-  copyright: 2002-2009 Free Software Foundation, Inc
-  hash: cfd04c6acec3664269e09cc4df394fe9867d342ab357dc89253e1d39a1e68dde
-  license: ''
-  license_text: ''
-./m4/quote.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 7ffb907d173b896d2a36a8e52aa4b8ecf251434ab83fc96696dbbae5e504f319
-  license: ''
-  license_text: ''
-./m4/quotearg.m4: 
-  copyright: 2002, 2004-2009 Free Software Foundation, Inc
-  hash: 854a2ee3e971d89ce829e16d546d384896d9e30e0d56dc00566b5258a417c5e9
-  license: ''
-  license_text: ''
-./m4/random_r.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 939838424d3346e2501950202577efffce7afa68ddebb50685b2e4fed9cd5248
-  license: ''
-  license_text: ''
-./m4/rawmemchr.m4: 
-  copyright: 2003, 2007, 2008 Free Software Foundation, Inc
-  hash: 7024edb1193d19e0b7cd589e12a26d7f04496a74c0fd6af161959ff04393e450
-  license: ''
-  license_text: ''
-./m4/read-file.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 701de727d98bbec795fb137cbd0dda7bce40c10b48b4b639b9b3234236cc1c2a
-  license: ''
-  license_text: ''
-./m4/readline.m4: 
-  copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: 306d4bdcf575f32b920d548041595f6a25fb4dccda136654ae1fed59747c3f13
-  license: ''
-  license_text: ''
-./m4/readlink.m4: 
-  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
-  hash: 79b1927a8bcf23b28a5cc28478dc3d6f950a99d190e08d2905f9a6f75f685c02
-  license: ''
-  license_text: ''
-./m4/readtokens.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 6acb946573cfb59d9fd9e5abe494f8fbe2e82d0ee8aa14241255eeb9e695bbf6
-  license: ''
-  license_text: ''
-./m4/readutmp.m4: 
-  copyright: 2002-2009 Free Software Foundation, Inc
-  hash: 13e39ae48466c9d6aa29e3b518add10485fdb50c74bedfc98ae48e463dd6c0ae
-  license: ''
-  license_text: ''
-./m4/realloc.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 3203f9e4584c814b1a0aba0d18d5bb7d602ddbc2180758ca81a03dcdcf06b8df
-  license: ''
-  license_text: ''
-./m4/regex.m4: 
-  copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
-  hash: 50d725ee6bfae6e6879133200a319aa551c76ee42b59bb3e5250356750508c4f
-  license: ''
-  license_text: ''
-./m4/relocatable-lib.m4: 
-  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: 6c4a390de69c7b321b900f2958baa712e3add7837b874bebf5bcd13345311e3b
-  license: ''
-  license_text: ''
-./m4/relocatable.m4: 
-  copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: 7904ef75bd84bfbb557af2cf86deab67f2dcbf7ea08c90ab00c96baf2df2d70c
-  license: ''
-  license_text: ''
-./m4/rename-dest-slash.m4: 
-  copyright: 2006, 2009 Free Software Foundation, Inc
-  hash: 1030b715fefa3094ee7fcbf64ce0706064a84983eed1b4b60ee7ed860552d258
-  license: ''
-  license_text: ''
-./m4/rename.m4: 
-  copyright: 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: 3727e61e57c8da8fe778f71d8a8f9b0695955b2bd98f13525e02cafbfe02b528
-  license: ''
-  license_text: ''
-./m4/rijndael.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: d469a617f466ee153eb791bc1baf7332f9496bc003ddfbf9588ec685c45cf79f
-  license: ''
-  license_text: ''
-./m4/rmdir-errno.m4: 
-  copyright: 2000, 2001, 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: 82f75f1f04ed076254ed8791efc6e3913cb2ffb9bda1cdd17db04758b5ad50b9
-  license: ''
-  license_text: ''
-./m4/rmdir.m4: 
-  copyright: 2002, 2005, 2009 Free Software Foundation, Inc
-  hash: 9f146503d645bcd65330d3382d22de8a0a4087be948ff0708262576c170266eb
-  license: ''
-  license_text: ''
-./m4/round.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 9ed0939cc0bc62c08c7caaeb3ba6a8ae4966dec6012a7e5c1f8456f7bd7f284f
-  license: ''
-  license_text: ''
-./m4/roundf.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 728510381d8789794d1603525bf92e099b51221002637804fe176d177d5cb5ad
-  license: ''
-  license_text: ''
-./m4/roundl.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: b7f0e4329463736e5220c0e399eab82daa9435fd83c530b0d2f6b136d11e0869
-  license: ''
-  license_text: ''
-./m4/rpmatch.m4: 
-  copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
-  hash: bdab7870b8c20ab0ea4e40b85ddc77ab1647f1f137f9c7fc0a7647cd5e46ffda
-  license: ''
-  license_text: ''
-./m4/safe-alloc.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 413010db9362f28824c713f0f47b27ef75e4753f03a76613e49d8202ddd53a86
-  license: ''
-  license_text: ''
-./m4/safe-read.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 476dd0e86a34ed7381cdbbea6186a965785622ace99ab7703e9be61e4019ecb1
-  license: ''
-  license_text: ''
-./m4/safe-write.m4: 
-  copyright: 2002, 2005, 2006 Free Software Foundation, Inc
-  hash: 28152483a0fa11421395beab43c19554eab15267add044139559fcd463b47d34
-  license: ''
-  license_text: ''
-./m4/same.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: fe78499501b2c0deee1cef23c7a6de78dea2f97c7c006c4a82cfe34634febdec
-  license: ''
-  license_text: ''
-./m4/save-cwd.m4: 
-  copyright: 2002-2006, 2009 Free Software Foundation, Inc
-  hash: 2b070560df3e3154c5dbad3693e1c3b16f9b87cd0d77bcf1a76496e6dcd396f7
-  license: ''
-  license_text: ''
-./m4/savedir.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 35d4b396e58ef3251d4ca921edb871afd2bbd4da5385903c2a08804ebdfe27a5
-  license: ''
-  license_text: ''
-./m4/savewd.m4: 
-  copyright: 2004 Free Software Foundation, Inc
-  hash: a7f3517138f4540f6fd6729e867b9b3aea6e5816996ecd19235dc669b62dcb10
-  license: ''
-  license_text: ''
-./m4/scandir.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f62dae469db2be2c5aa610e2882be87dbfdcc84cadace38211e7bc734819bad1
-  license: ''
-  license_text: ''
-./m4/sched_h.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 5626e514b7b5c64bd9f1bdf4fa1c37bcbff1286524c62153db60ae3ecd91d7ec
-  license: ''
-  license_text: ''
-./m4/search_h.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: d6cd8150036593b84d4c4d12581f7f39c8a6978ba7cc8116c5d691c6ff7fc60e
-  license: ''
-  license_text: ''
-./m4/select.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c0772bb6d91794c1312ebd0f3fb6f90dff9bcae093320dc8c253f548913bf2ce
-  license: ''
-  license_text: ''
-./m4/selinux-context-h.m4: 
-  copyright: 2006, 2007 Free Software Foundation, Inc
-  hash: f022e113eadd22af7edced97b3f1b6289856b6ba35c8da13736665221910d34f
-  license: ''
-  license_text: ''
-./m4/selinux-selinux-h.m4: 
-  copyright: 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: 63a4551cf14a0eea214ecbf472ef61294bad8e3c23d81decf5b981df46db633a
-  license: ''
-  license_text: ''
-./m4/servent.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: d8abbdc489bcd9264fcadfb8b7dee9be3dc239d512e7796a83ddd48f85286b5b
-  license: ''
-  license_text: ''
-./m4/setenv.m4: 
-  copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
-  hash: 4b641ccd52cc1b86e45020d008a003b15aef914961b26426cf25f5c5ba714ad2
-  license: ''
-  license_text: ''
-./m4/settime.m4: 
-  copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: 363d17c5d1dcf71322d552fde8d642ac641613cf211019c5b6d5df8bf176c37e
-  license: ''
-  license_text: ''
-./m4/sha1.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: b0b8e653e77e441a1327e5cc5eedc4d33e13ce74887bfb2299a070224b9d2310
-  license: ''
-  license_text: ''
-./m4/sha256.m4: 
-  copyright: 2005, 2008, 2009 Free Software Foundation, Inc
-  hash: adc2fe832d2a4759e55c651b42169d33f24c32053f7515748e255052dd2d3b90
-  license: ''
-  license_text: ''
-./m4/sha512.m4: 
-  copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 6a041f1d10fb35ab195140e844574a07dd5d6053918f4fd60ab8be21f949f069
-  license: ''
-  license_text: ''
-./m4/sig2str.m4: 
-  copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc
-  hash: bdb3da52f346182e43b31c11fd3c962c84680a5371a57343ce224811e860387e
-  license: ''
-  license_text: ''
-./m4/sig_atomic_t.m4: 
-  copyright: 2003, 2009 Free Software Foundation, Inc
-  hash: 8740a92b3f85af3d8178fdeffb26883a7a2e43709a560f117045327cee0005ad
-  license: ''
-  license_text: ''
-./m4/sigaction.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 942bae0f7e59cbdbd839bdd114df80a180753adfe2265673852caba753983e67
-  license: ''
-  license_text: ''
-./m4/signal_h.m4: 
-  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: f195a17f93179f7442308dc8f19fca18a62277f9951cff0b47bf9d6282685a15
-  license: ''
-  license_text: ''
-./m4/signalblocking.m4: 
-  copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
-  hash: 9675e385710eb500da44e7dc0b7dfeba96ca339daaea8e8a75be21e8b1ca1940
-  license: ''
-  license_text: ''
-./m4/signbit.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 090599e0809b686c818f8870e466ddf1b1e8f85e13da7c88c4ad47433ed45479
-  license: ''
-  license_text: ''
-./m4/sigpipe.m4: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: 6589a9faf1c563d75e6001b20a2376598e62467f80ac99df43696aabd386d4d0
-  license: ''
-  license_text: ''
-./m4/size_max.m4: 
-  copyright: 2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
-  hash: 274e63ac0e607476b00e8fd52ecec9926865a0706eb1c15307249c8beb224094
-  license: ''
-  license_text: ''
-./m4/sleep.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 9ae4e28f795cced506809b2931038bf12f5d14f730ac5db4b564251d78d15ff1
-  license: ''
-  license_text: ''
-./m4/snprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e547253a212edd6b4044615bbc22655e0a4818d8f937f962adfc5e439e1d5301
-  license: ''
-  license_text: ''
-./m4/snprintf.m4: 
-  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
-  hash: 5f7fbeef790dad54ac03ec944e2a45fda19bfb17da369aa9c2e8f4f4d40d4f0f
-  license: ''
-  license_text: ''
-./m4/sockets.m4: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: d50a2dfb51a1c8b126cef59648b59553940f8192635e1f111fdd3babb93d74ff
-  license: ''
-  license_text: ''
-./m4/socklen.m4: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 85dbe7f87a9332ee77a25565add42e2c12aac7e29cdc58cde00ab978b11a42a2
-  license: ''
-  license_text: ''
-./m4/sockpfaf.m4: 
-  copyright: 2004, 2006, 2009 Free Software Foundation, Inc
-  hash: 1b8177a55958f8bf0898f45528ba4c08eddc3deac75871ca1a9a70fd98ce16fc
-  license: ''
-  license_text: ''
-./m4/spawn_h.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 9b595c5f8fccef298fabfb159fe9b0cd7c2965a2388f8738ecc8dae8c87bb194
-  license: ''
-  license_text: ''
-./m4/sprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 965f8b08288f9f0122559dd27581c39a9cd3182f9976f0b0fa1a7639e6c07c60
-  license: ''
-  license_text: ''
-./m4/ssize_t.m4: 
-  copyright: 2001-2003, 2006 Free Software Foundation, Inc
-  hash: 83b000495759790b16631fd82c8cc8126e7cbabbb484fa2a324fce5abf7030a0
-  license: ''
-  license_text: ''
-./m4/st_dm_mode.m4: 
-  copyright: 1998, 1999, 2001, 2009 Free Software Foundation, Inc
-  hash: e4230d99ce739fdfea2b6f9e534426e32367b91d82adb42e215c9ab63582ccb8
-  license: ''
-  license_text: ''
-./m4/stat-macros.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 0e0d077f14daca1a98a036b872304dfa730067f1906786f8a64eed1b275c8edf
-  license: ''
-  license_text: ''
-./m4/stat-time.m4: 
-  copyright: 1998-1999, 2001, 2003, 2005-2007, 2009 Free Software
-  hash: 6e44781ea55874bf9fd31759924207238aa4a99a01fc2d2cbf09e345c2fede85
-  license: ''
-  license_text: ''
-./m4/stdarg.m4: 
-  copyright: 2006, 2008-2009 Free Software Foundation, Inc
-  hash: e69d47aadd54239ff949f8ec2bd0cb0436b737ba6663b3c72e2266a01d2a42cf
-  license: ''
-  license_text: ''
-./m4/stdbool.m4: 
-  copyright: 2002-2006, 2009 Free Software Foundation, Inc
-  hash: 43abf0fdf4a37444e2d4e8fd6ec486c9eebe8e90a6e7ae1845d2e499d0a29df1
-  license: ''
-  license_text: ''
-./m4/stddef_h.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c70f43db810289c46455f5b2b2b3ecbcb171fa0171d09e73ad2240e1d5bdac60
-  license: ''
-  license_text: ''
-./m4/stdint.m4: 
-  copyright: 2001-2009 Free Software Foundation, Inc
-  hash: e9bb030f38c5c54c68cbdc8403016d05da6f6328ff69e4272d77e10820e438b7
-  license: ''
-  license_text: ''
-./m4/stdint_h.m4: 
-  copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: d60bbf3881f6e22ed2fb6dfee322f368978721175058446282e77eb42f543ccc
-  license: ''
-  license_text: ''
-./m4/stdio-safer.m4: 
-  copyright: 2002, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: ce00d79eaa9ab3c24483dbf666fdf1af476557c24f8fac41ccd6f1b39980db4d
-  license: ''
-  license_text: ''
-./m4/stdio_h.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 5279f85ff4aea689d0c384bbb577d873e5214e2b351a7f4aeeae85e8ebb960fe
-  license: ''
-  license_text: ''
-./m4/stdlib-safer.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: 9a8abafa8a805182498c9212e370537b3d0964d913d3b7550e7ee8dc02b977d2
-  license: ''
-  license_text: ''
-./m4/stdlib_h.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 97c8e01551bb911dd737aa6d57f937fbecc41dacaa9a6bb8086d8292fead4c36
-  license: ''
-  license_text: ''
-./m4/stpcpy.m4: 
-  copyright: 2002, 2007, 2009 Free Software Foundation, Inc
-  hash: 6183753fe8a97fa0b9fdf0b1dbdce611077c78894a88b08aa016a358b26785e8
-  license: ''
-  license_text: ''
-./m4/stpncpy.m4: 
-  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: aa4c3046b85c5bc93ed41603a5a58dbcbb3281c604047231e2bd9df2deac2fee
-  license: ''
-  license_text: ''
-./m4/strcase.m4: 
-  copyright: 2002, 2005-2009 Free Software Foundation, Inc
-  hash: fe5c1d6b65e6380dc44d958082105a90e9e4bdda2acd0874069ae5d440ce9b18
-  license: ''
-  license_text: ''
-./m4/strcasestr.m4: 
-  copyright: 2005, 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: e8fde0ec0800c5eafbe974aec107608e45a0455e252b6989480d50ddd9fecf05
-  license: ''
-  license_text: ''
-./m4/strchrnul.m4: 
-  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
-  hash: b20cc5ae07de6b6cb4f6cce803e713349ec527e29256225c91e80c2f5445cda2
-  license: ''
-  license_text: ''
-./m4/strcspn.m4: 
-  copyright: 2002-2003, 2009 Free Software Foundation, Inc
-  hash: 69120ab7a86a050f7433f63fd1bfa6349dd8b7f10929f902bb3628e90ad587ca
-  license: ''
-  license_text: ''
-./m4/strdup.m4: 
-  copyright: 2002-2009 Free Software Foundation, Inc
-  hash: fe737b962549dcee9d8390ff44f480c277ccf76b0e643fdfd2e04d06cd4b335e
-  license: ''
-  license_text: ''
-./m4/strerror.m4: 
-  copyright: 2002, 2007-2008 Free Software Foundation, Inc
-  hash: 43b8156f92eab0feb512dc43c24fdb2ae1b05f0c0aad8317af6384b9317ae1f8
-  license: ''
-  license_text: ''
-./m4/strftime.m4: 
-  copyright: 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
-  hash: efe49b1ba70db0a0b5b2067df6731e51e24c7b4c899928f18b8b9dc0a3b348e2
-  license: ''
-  license_text: ''
-./m4/string_h.m4: 
-  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: e6a759b26fd667fc80f888975ad5360aacae9aa17704b9771e43634cef8b706d
-  license: ''
-  license_text: ''
-./m4/strings_h.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 9092e61439d73d058d4db2c78b740947b3de19e407de536cc8abb3b33dcbd658
-  license: ''
-  license_text: ''
-./m4/strndup.m4: 
-  copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
-  hash: de520713683d189d757c29f5cfdf12e2f063ec1a16abd534c9253233d845c1ea
-  license: ''
-  license_text: ''
-./m4/strnlen.m4: 
-  copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
-  hash: 17c0880897960356780a1d18125984a4de5acffa88fa8f578c732f6a4deb2283
-  license: ''
-  license_text: ''
-./m4/strpbrk.m4: 
-  copyright: 2002-2003, 2007, 2009 Free Software Foundation, Inc
-  hash: 3a3a46c86df5272af728492b47a253d0bc90d6c1304a9e6298c370a516ff5c7b
-  license: ''
-  license_text: ''
-./m4/strptime.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 36d8ffad63cd866a25244dc178c60c7c2eae106c2b22a5d088209d708e8ba17c
-  license: ''
-  license_text: ''
-./m4/strsep.m4: 
-  copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc
-  hash: 12432bf70d8e7ddcd99132d6a90c074106038ae824dbed54f3e9f276d2a1abf7
-  license: ''
-  license_text: ''
-./m4/strsignal.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: b5bde205dfc38b3591ce316cfaa34ccbf70c14b043d4caa380a528317efbcabf
-  license: ''
-  license_text: ''
-./m4/strstr.m4: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: c2991f687e1ccb40073d14aaf5c7b457490924ae87ddd7b93ad6df00bf1cd5c9
-  license: ''
-  license_text: ''
-./m4/strtod.m4: 
-  copyright: 2002-2003, 2006-2009 Free Software Foundation, Inc
-  hash: 803101b479ba543a87394c1ff647e72af6a1d42a70ad945e12d60d2fcc154cf6
-  license: ''
-  license_text: ''
-./m4/strtoimax.m4: 
-  copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
-  hash: 040b0f333be709208b820f7cf49bf3a6512b2d99d922e802976249b50b5f694f
-  license: ''
-  license_text: ''
-./m4/strtok_r.m4: 
-  copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc
-  hash: 2d55470147f9526bfa3957ea4a72c1bf623ea9380b89265fa31a24746dbe54f5
-  license: ''
-  license_text: ''
-./m4/strtol.m4: 
-  copyright: 2002, 2003, 2006, 2009 Free Software Foundation, Inc
-  hash: 1f93c8aa4afa52a6f1c91e6a6ff17106a2e6139db4658524516c8ee31793bf23
-  license: ''
-  license_text: ''
-./m4/strtoll.m4: 
-  copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: d0f856b5cd35656c32054ab66a5084a34e12ca0c10ccd48b50ff50928c6690f9
-  license: ''
-  license_text: ''
-./m4/strtoul.m4: 
-  copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-  hash: fdf22d9455a3e2577c95316ab584023ae0c534bb7fb53cb935a0bfa05044d5fa
-  license: ''
-  license_text: ''
-./m4/strtoull.m4: 
-  copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc
-  hash: 39cb14122cb4c6ad802ffe8d4af7ff5bf3ddd2789ae6cd2220d2f74adc772b5c
-  license: ''
-  license_text: ''
-./m4/strtoumax.m4: 
-  copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
-  hash: 5caaba51dce181aa188137ad40280074d7e3ef1070bdc5a0fbed47f94e5650a6
-  license: ''
-  license_text: ''
-./m4/strverscmp.m4: 
-  copyright: 2002, 2005-2009 Free Software Foundation, Inc
-  hash: 95826714352d22b394477acec68e36e8c32470733556f372ccd56f7ce71375bc
-  license: ''
-  license_text: ''
-./m4/symlinkat.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 90930f5c7ee0ce10502b307af1282f0c1bafcd6f976b6c951960b431fe7952ea
-  license: ''
-  license_text: ''
-./m4/sys_file_h.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 69f49396e6a189edfc61c2bd435d53a891dc6abce8dac43f78387906ab67b383
-  license: ''
-  license_text: ''
-./m4/sys_ioctl_h.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: f6a18a51ddc67c6c47b712c8f847e443beb6a918724a8234bac0d8132d08ebf6
-  license: ''
-  license_text: ''
-./m4/sys_select_h.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 38fdb36f5c8f4a2ade525a2c92c5b92a56afd18f75d14a63fbfcaa0aea9c2bc1
-  license: ''
-  license_text: ''
-./m4/sys_socket_h.m4: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: 9e3fe619e71cd2142906cf6e71e9c7a811a7666b66bfd7b8d819f3bd0b440ee7
-  license: ''
-  license_text: ''
-./m4/sys_stat_h.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: e14f36fc61a996000fc53de8648fe9a8614162802f0d0767f0935aa5e38381df
-  license: ''
-  license_text: ''
-./m4/sys_time_h.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: f4fa044be9686af6cc3dca73c362217c35b7df004df156448d42e93f50005c21
-  license: ''
-  license_text: ''
-./m4/sys_times_h.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 65330cd4e4102a96c194270ad63a84f51e0c2434500f54a1d994c4e4ef67d43e
-  license: ''
-  license_text: ''
-./m4/sys_utsname_h.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 6297d018e2ce6557cfb1b69a8ad181b4b150a4b66d7da9988fc8b4b9e11141c4
-  license: ''
-  license_text: ''
-./m4/sys_wait_h.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 15694649678e6ed145b9468ef2af89fe024f914aa32d5e23f58210af6531261e
-  license: ''
-  license_text: ''
-./m4/sysexits.m4: 
-  copyright: 2003, 2005, 2007 Free Software Foundation, Inc
-  hash: bffb1617076a6e661ddf76f19df8cd972e0227ffcd9875916f5f7a7cc4fcb59f
-  license: ''
-  license_text: ''
-./m4/tempname.m4: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: a3bf3fdb7afc9ed7e1115ebd5f6c297f474cd2ac9b47043fa5921526007b166e
-  license: ''
-  license_text: ''
-./m4/thread.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 966cea206c2dde9b0822e88fb5c7eb071d1e2a8b498b5f7584177992654e3b76
-  license: ''
-  license_text: ''
-./m4/threadlib.m4: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: 0a3a72d652c01b057b2ec383380c48fb020f82e564e60ed9bd766a0d32066b2e
-  license: ''
-  license_text: ''
-./m4/time_h.m4: 
-  copyright: 2000-2001, 2003-2007, 2009 Free Software Foundation, Inc
-  hash: 09adfda92c4df94c5a482b3ec5b39361004444a90836892de7f938ea85e27569
-  license: ''
-  license_text: ''
-./m4/time_r.m4: 
-  copyright: 2003, 2006, 2007, 2008 Free Software Foundation, Inc
-  hash: 770d2efad291ac35edb3d39f8630a4709ef63528414495c9895426209a914244
-  license: ''
-  license_text: ''
-./m4/timegm.m4: 
-  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
-  hash: 4596ca9d5a3d693c17a973d67f0516d289147d1ee01c7b528cc2f782dd26c491
-  license: ''
-  license_text: ''
-./m4/timespec.m4: 
-  copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software
-  hash: a25be56d364ef5d14f369d901d2c05e5cbd2f43c14bc1268746e18e6f001c0a9
-  license: ''
-  license_text: ''
-./m4/tls.m4: 
-  copyright: 2005, 2008 Free Software Foundation, Inc
-  hash: 697de033bdbad89c040faa77a813d232afeefae98bb7c79cd3211e305ae79e07
-  license: ''
-  license_text: ''
-./m4/tm_gmtoff.m4: 
-  copyright: 2002, 2009 Free Software Foundation, Inc
-  hash: 758ee2b8a8b4488ded650d22c745fbee1c698b5bbbbadab892035a0bbd133958
-  license: ''
-  license_text: ''
-./m4/tmpdir.m4: 
-  copyright: 2001-2002, 2006, 2009 Free Software Foundation, Inc
-  hash: 098577de87caf3dad7141f279bbfb44cd8b4a79600904bc59b19733b612ca9d3
-  license: ''
-  license_text: ''
-./m4/tmpfile.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: a9f8b1f5f20e4f91f6a5a5c5ed38df62512f8d57a66bfc25276d50c2f40318ea
-  license: ''
-  license_text: ''
-./m4/trunc.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 360b254b79427391f8b53e897c7f92fb3ace5d5ad105180f038e50671ea0f446
-  license: ''
-  license_text: ''
-./m4/truncf.m4: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: c451a8be61a16dd51de9f147f9eea7b656aec20696e999962b9b2170aa973cd6
-  license: ''
-  license_text: ''
-./m4/truncl.m4: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 95d7249df03f9c1cbe96efe80cffba1e26271fab4a090c16e990b8f1375026af
-  license: ''
-  license_text: ''
-./m4/tsearch.m4: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 1fdebc81816c7417d4f8f53047196acb683d0e3178f9bf7a4200af674a5a179d
-  license: ''
-  license_text: ''
-./m4/tzset.m4: 
-  copyright: 2003, 2007, 2009 Free Software Foundation, Inc
-  hash: 25f9ec1e09c194a7e31b97f55483b93552e2448766dd5c96e62359f399656763
-  license: ''
-  license_text: ''
-./m4/uintmax_t.m4: 
-  copyright: 1997-2004, 2007-2009 Free Software Foundation, Inc
-  hash: 5569fad1774ab8b961af00e03c545e378179e3d4ca1e5c23b3579e3ef6e61670
-  license: ''
-  license_text: ''
-./m4/ulonglong.m4: 
-  copyright: 1999-2007 Free Software Foundation, Inc
-  hash: 5de3995e758929606b49effa12a5e72f32bdadb3ffa4a434c39a5fdbfcc42f33
-  license: ''
-  license_text: ''
-./m4/uname.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 3c6482e00f6593d203a89f71ae22c02497f43ccfa98128c01c410a65baf0d9f1
-  license: ''
-  license_text: ''
-./m4/ungetc.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 6d05898405c1b3e3c46040a9c38a59043c89a45cd3d411f28a20111f2483d280
-  license: ''
-  license_text: ''
-./m4/unicodeio.m4: 
-  copyright: 2002-2003 Free Software Foundation, Inc
-  hash: 767bdadf5b3faabd031a93d59ca9ead2934926368aba57932cba97b9aa74fef0
-  license: ''
-  license_text: ''
-./m4/unistd-safer.m4: 
-  copyright: 2002, 2005, 2006 Free Software Foundation, Inc
-  hash: d917dcd19ae1fe7e0e446c7cf29c1db1361a3abc2b5fda15c5da446442ce7a72
-  license: ''
-  license_text: ''
-./m4/unistd_h.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 390f7c7544789ef3626c1d1de31a7c38de0b022276ea3bc19dd159fda1869c65
-  license: ''
-  license_text: ''
-./m4/unlink-busy.m4: 
-  copyright: 2000, 2001, 2004, 2007 Free Software Foundation, Inc
-  hash: ad70c286d0983ec8db389ea4785ef1730a651918d5fe5ffedda1c2810ef7d434
-  license: ''
-  license_text: ''
-./m4/unlinkdir.m4: 
-  copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-  hash: de6356bceeff6f0516f22ebe8454b552888b3aa9c126c43968c65dc5d20824a8
-  license: ''
-  license_text: ''
-./m4/unlocked-io.m4: 
-  copyright: 1998-2006, 2009 Free Software Foundation, Inc
-  hash: 7d036d1f045f2eecb342938a5e665fa8b4ab671900c00c44ea74f853e5cfca03
-  license: ''
-  license_text: ''
-./m4/uptime.m4: 
-  copyright: 1996, 1999-2001, 2004, 2009 Free Software Foundation, Inc
-  hash: a21b4be251dfc64d08f51f7f7c731e3c1b7316b82a9352318f3ac0248b8202e9
-  license: ''
-  license_text: ''
-./m4/userspec.m4: 
-  copyright: 2002-2006, 2009 Free Software Foundation, Inc
-  hash: 767025ad4c6d4041ef5a4fa50a0f59f305bf899b4e88261b263a58a11eecaa26
-  license: ''
-  license_text: ''
-./m4/utimbuf.m4: 
-  copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software
-  hash: 1cc7dfc2a7f30b77bc720ee587638964a5d095ca07f291a9157245265121a10d
-  license: ''
-  license_text: ''
-./m4/utime.m4: 
-  copyright: 1998, 2000-2001, 2003-2004, 2009 Free Software Foundation, Inc
-  hash: daf708dbb1e4e20331f886285ee9bebbcba63a486ac5bd4d13d92c27f53b5d22
-  license: ''
-  license_text: ''
-./m4/utimecmp.m4: 
-  copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: a8b3ec86a04cb02154cbad4b5fdeecc06dd7b93dc54d96458f9d210949e68241
-  license: ''
-  license_text: ''
-./m4/utimens.m4: 
-  copyright: 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-  hash: 68d63c14fa0327cf0e4c214194e62b6bbe553f441f81bd1d17d8c5597fe6fb88
-  license: ''
-  license_text: ''
-./m4/utimes-null.m4: 
-  copyright: 1998-1999, 2001, 2003-2004, 2006, 2009 Free Software
-  hash: 3d1576bcb95cbe1177f919d74755dc2272345e607205d917139059158a3724d3
-  license: ''
-  license_text: ''
-./m4/utimes.m4: 
-  copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc
-  hash: f0ce682e7fb31e73a0c02c54b4ea24a84f141f32e54af7498deef1f9dee7c4f6
-  license: ''
-  license_text: ''
-./m4/vararrays.m4: 
-  copyright: 2001, 2009 Free Software Foundation, Inc
-  hash: ccc97184c7bd4de12a6168086eff30eb1c15e473193a91d5a5e5d6a8824a9d40
-  license: ''
-  license_text: ''
-./m4/vasnprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: b48e0fece07a089a5f87d23a14cb5091c44b473d532c563041616c9dafcdc15a
-  license: ''
-  license_text: ''
-./m4/vasnprintf.m4: 
-  copyright: 2002-2004, 2006-2009 Free Software Foundation, Inc
-  hash: 1cd0c36a78c6078d18cdb67a1554a4ac9f773b68dac016c0cbfa06ca03453024
-  license: ''
-  license_text: ''
-./m4/vasprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: db9712da8b53f1bb3ae158ba8595f902cebc0533a5511d997ebbe7eff79aae9c
-  license: ''
-  license_text: ''
-./m4/vasprintf.m4: 
-  copyright: 2002-2003, 2006-2007 Free Software Foundation, Inc
-  hash: 15f05ac172c3ea6b1b2e8fdc74cd60991f82c845dcf820fcb5b868b38acbb0b5
-  license: ''
-  license_text: ''
-./m4/vdprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 8f5973dc5616cf37e7aec5dd9f4b90181762fdecd6864ebe71ba10e48fe33230
-  license: ''
-  license_text: ''
-./m4/vdprintf.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e1d6b72d4330fcfa0af92094cc075e09ba7fb9115bf9154641687e8310e4e1d8
-  license: ''
-  license_text: ''
-./m4/version-etc.m4: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 14c2c6c298a204c97e8b5e47a299065d37b7c38ce4dc56125c443fb09a2cbdc1
-  license: ''
-  license_text: ''
-./m4/vfprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: d1777edd2bd37a587f11a3a9aaff20710d8a239f5e4f42f49fb36342f5ec3619
-  license: ''
-  license_text: ''
-./m4/visibility.m4: 
-  copyright: 2005, 2008 Free Software Foundation, Inc
-  hash: d8e75ab55dddf6b27703fb08e77f2e0e05d58c0e53aff9968eaf8f6a78def9cd
-  license: ''
-  license_text: ''
-./m4/vprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 37a9b2f2e103f8396564a88abd0c5379afb40a6b46056d5afc1adce54162cbea
-  license: ''
-  license_text: ''
-./m4/vsnprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 411f99e3689d9c66c871e864c31df109b6fe645f6bef287b09871e54ff163299
-  license: ''
-  license_text: ''
-./m4/vsnprintf.m4: 
-  copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
-  hash: 78bc63b8400f070466502f7f592939004f0204329bf1936e08db566f9efb4a63
-  license: ''
-  license_text: ''
-./m4/vsprintf-posix.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 5de43c845cf229240686251cffa6ebc95a7ff8c99776f41b84e9ab73fd5d27dd
-  license: ''
-  license_text: ''
-./m4/wait-process.m4: 
-  copyright: 2003, 2008, 2009 Free Software Foundation, Inc
-  hash: e95987f7301300836022c3c272ea0fd0f42750837bde9c7077eea97dd7c54f4e
-  license: ''
-  license_text: ''
-./m4/warnings.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 2ea3219129fd3e764decacbe54defb2ac59c220191cb3dc2e751955671739c87
-  license: ''
-  license_text: ''
-./m4/wchar.m4: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 82235dd92cbc686f19c162e681a3e2d2cd8712415ceb63502f96525e68b68801
-  license: ''
-  license_text: ''
-./m4/wchar_t.m4: 
-  copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
-  hash: e144a04745a6906677eeb9b8f3c9fb793754a3c55452125a6e24a9668ceb77bc
-  license: ''
-  license_text: ''
-./m4/wcrtomb.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 950cca49712f3c35b6801b3d14be1d94ecdfddaf783aa898b4c0a215c21d1a22
-  license: ''
-  license_text: ''
-./m4/wcsnrtombs.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: f1714d805e97204ef9c59bd5306dfb11726dd669488be35000b946750fd6f03d
-  license: ''
-  license_text: ''
-./m4/wcsrtombs.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: c97f36290b6a78023cc47f8d507dcd18ceec4a4d68fbf704e743231b8d2eb7f1
-  license: ''
-  license_text: ''
-./m4/wctob.m4: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: d9b6ab0f44f04f22bde90b90ed5287b8f3503b07803bd2469f5e37e32682c1db
-  license: ''
-  license_text: ''
-./m4/wctype.m4: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: b223622a4d75488360819355855d86340ef0e7f18d4a3fd37bd74f65b7ef14a8
-  license: ''
-  license_text: ''
-./m4/wcwidth.m4: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 454b784cd3681ceda96891b7832bf461581311bed5d7e6f8c98cbe7371e8da76
-  license: ''
-  license_text: ''
-./m4/wint_t.m4: 
-  copyright: 2003, 2007-2009 Free Software Foundation, Inc
-  hash: 542edc258897a8065d2ea6d285047c9e3ff04da8728e2fc4c3ce004076b1bf5d
-  license: ''
-  license_text: ''
-./m4/write-any-file.m4: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: c5ed5eaed6e0fe94e459ff78fb113b0ff81091be83ecaaeef17f0dfe0ea6b5c4
-  license: ''
-  license_text: ''
-./m4/write.m4: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: c5c3bc26fbe2cb6fa61e259bcc8f1b0fdef708a454a07deb6712cb376c2d0b91
-  license: ''
-  license_text: ''
-./m4/xalloc.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 5008bbce8cfeaf98f9413e19e47b1267a7d0d7d21ba9d97bc1bf984f234a4773
-  license: ''
-  license_text: ''
-./m4/xgetcwd.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-  hash: 3b5d09234ad0a99b1fce1a5067ecc3c715989640845dd5c38e94d491e4e94090
-  license: ''
-  license_text: ''
-./m4/xnanosleep.m4: 
-  copyright: 2005, 2006 Free Software Foundation, Inc
-  hash: d11f4adf891d6c7746216e56ef22de12b2f4cdd9765e0f9d3630e52b02fae5f0
-  license: ''
-  license_text: ''
-./m4/xsize.m4: 
-  copyright: 2003-2004, 2008 Free Software Foundation, Inc
-  hash: 9d30e3c52072d3833efaf4d46c531c2b3f801281eb8aead4b3ae7ae011e2cff4
-  license: ''
-  license_text: ''
-./m4/xstrndup.m4: 
-  copyright: 2003 Free Software Foundation, Inc
-  hash: 117f55c31df0fe5f1e79240d94a592eed4a47276060894633b84e8816a1d5056
-  license: ''
-  license_text: ''
-./m4/xstrtod.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: 1ec2cd8d2c6b3de92b55a976bf17831b0daf8d2171c62cfad283954af9f4309f
-  license: ''
-  license_text: ''
-./m4/xstrtol.m4: 
-  copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
-  hash: ef06de197a5a3ac2001bb343095937dc6980e544003adc0f77f3d9f2be17fb82
-  license: ''
-  license_text: ''
-./m4/xvasprintf.m4: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: dae7786d5d9ab5954cee5d5c0847bed861d04af2a98ba67c5945d8085c9c85d0
-  license: ''
-  license_text: ''
-./m4/yesno.m4: 
-  copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-  hash: b0dfeda80afab2a3259bde0be3a8994252fd438782e68ef024dfee9eae084ae9
-  license: ''
-  license_text: ''
-./m4/yield.m4: 
-  copyright: 2005-2009 Free Software Foundation, Inc
-  hash: 55ae2c6e8e758bd817c625c92a268f6d9e9eded98c0334cd4951f7f16c833c48
-  license: ''
-  license_text: ''
-./modules/COPYING: 
-  copyright: 2006 Free Software Foundation, Inc
-  hash: ea01ff3d1fe531cedd25e6454d6019a4c68df3539aa51b594745c21a87d532dd
-  license: ''
-  license_text: ''
-./modules/README: 
-  copyright: 2002-2007 Free Software Foundation, Inc
-  hash: 8d356052608716fc7be4d7331d5fa7674281528a1f2a37a5d0a79cabd3601b60
-  license: ''
-  license_text: ''
-./modules/TEMPLATE: 
-  copyright: ''
-  hash: f8a70af5ef07c20669714dd78293acb87f3aa86ad5f570a56ba9780db185eeb1
-  license: ''
-  license_text: ''
-./modules/TEMPLATE-EXTENDED: 
-  copyright: ''
-  hash: 6ebc6ce1adc16257f3b0631103f13c19f94ae53b31a1a237b4f9dfcd7fdccfe5
-  license: ''
-  license_text: ''
-./modules/TEMPLATE-TESTS: 
-  copyright: ''
-  hash: 269fa96cfbc6b04248686ca277bdfca748958597dd5371663d070ebd1f845bd8
-  license: ''
-  license_text: ''
-./modules/absolute-header: 
-  copyright: ''
-  hash: b91551dc6e292f96fc1f1dbfd58f368a201cd9145d147662e42298b74f277fc3
-  license: ''
-  license_text: ''
-./modules/accept: 
-  copyright: ''
-  hash: 880f693a12f72986c4004d5916367f6fcabdc2c90b0f92704a8683b8b5093ecc
-  license: ''
-  license_text: ''
-./modules/accept4: 
-  copyright: ''
-  hash: eff8a2f46aeddff17326dc7202dcc1c126940a12b6a08ccf328dcdfdb75385a3
-  license: ''
-  license_text: ''
-./modules/acl: 
-  copyright: ''
-  hash: f0f81a20f9ec6387ebdf385b5860ec35651d02adf72ac4d0f25939e3875380bd
-  license: ''
-  license_text: ''
-./modules/acl-tests: 
-  copyright: ''
-  hash: 5c900b78c378193efff1f23f0611a11691f688f3e6f98d65ba91415259989ff9
-  license: ''
-  license_text: ''
-./modules/agpl-3.0: 
-  copyright: ''
-  hash: ee51411f6921d7c5d74e0fe333dac39cbaa523c4fd9070898e12bb57004d7044
-  license: ''
-  license_text: ''
-./modules/alignof: 
-  copyright: ''
-  hash: 9378a232bbe5b9737af69836746b7ded8b6e07e003b231d49fe32a6df198f28e
-  license: ''
-  license_text: ''
-./modules/alignof-tests: 
-  copyright: ''
-  hash: 0cbc5d48e08e4633e9914b99427cb2958931f0fca6463ec6b5fbba801dcb0fc0
-  license: ''
-  license_text: ''
-./modules/alloca: 
-  copyright: ''
-  hash: 1a2b5c5a85209bb72ababfbc0e6dd9acb75565228f02f35483d6be1b9fc37a74
-  license: ''
-  license_text: ''
-./modules/alloca-opt: 
-  copyright: ''
-  hash: 3cbd6527fea57bf3040afab2047ca30268526f52ae7826d6b870216c8a96e66a
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/alloca-opt-tests: 
-  copyright: ''
-  hash: 43f65f86a2cacab71ca748cc004b72015963286ae5871a9872c3fd891d3f378f
-  license: ''
-  license_text: ''
-./modules/alphasort: 
-  copyright: ''
-  hash: a449b677555d768b144bc08809c5edf4590b1cc0263ecd44b1864a6693811cce
-  license: ''
-  license_text: ''
-./modules/announce-gen: 
-  copyright: ''
-  hash: 424137e7ed97358f8190d5b4c513195c537964100200cca084a6bfeeb5b7cf6c
-  license: ''
-  license_text: ''
-./modules/areadlink: 
-  copyright: ''
-  hash: a7ba93d0ca6f4fd028715cc62b74f27ed5d41e4c7fc4123e6b4cd077834bfb07
-  license: ''
-  license_text: ''
-./modules/areadlink-with-size: 
-  copyright: ''
-  hash: a4a44db468900aab3c1b60d8aef9c202fc4d6af1eb546127f18ce4597b276ca7
-  license: ''
-  license_text: ''
-./modules/argmatch: 
-  copyright: ''
-  hash: 3b907f3995ad2c5c25ce862c92db89bdf2e978b01e154933a5ac76a686ab61d1
-  license: ''
-  license_text: ''
-./modules/argmatch-tests: 
-  copyright: ''
-  hash: 1ee2045e91753f5727461047c125be83dbbf3cefdd96c9ba33fe70ad2b079ad0
-  license: ''
-  license_text: ''
-./modules/argp: 
-  copyright: ''
-  hash: ce02af3afd4ce18da524b2b765e4abdf63ff3ebf43802c32d7b3663a479b0b40
-  license: ''
-  license_text: ''
-./modules/argp-tests: 
-  copyright: ''
-  hash: 5ea825a9f24afb77c59e4f5fd1e6afb1db75028b4a11b86886c4291474058340
-  license: ''
-  license_text: ''
-./modules/argp-version-etc: 
-  copyright: ''
-  hash: da3723297aa47f347ecc2fdcb6acf53bae88fc70ac953b8f200e41db957cfd22
-  license: ''
-  license_text: ''
-./modules/argp-version-etc-tests: 
-  copyright: ''
-  hash: b70ef3bd1137f9fc9ee84d3e171e0d9cf77ba060db760228cc778fc11c1c5c05
-  license: ''
-  license_text: ''
-./modules/argv-iter: 
-  copyright: ''
-  hash: fdef6db4c9570ecc974daa07d7a17764047b2fbb0ca565d8ce246bf9d7646fd0
-  license: ''
-  license_text: ''
-./modules/argv-iter-tests: 
-  copyright: ''
-  hash: 7b434843257ef66143e5a306f573ec2f4b435294506f3d2026725ee192514fc7
-  license: ''
-  license_text: ''
-./modules/argz: 
-  copyright: ''
-  hash: b08870e168fbe181cd9b36b1a2a6ecc2bd18763c390bca98a5c6f64ecfd66b92
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/arpa_inet: 
-  copyright: ''
-  hash: f7f0aea422448523fe348fa3aab768d588584e6b82671bd9a986b73b096f4a08
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/arpa_inet-tests: 
-  copyright: ''
-  hash: 0612cb2590ee3e2f7a2a9d8a09965adaa37107664e7f6aa53fb5bf8b96a3dc0e
-  license: ''
-  license_text: ''
-./modules/array-list: 
-  copyright: ''
-  hash: 13010a14be6fcdbb05d1488022da1e81541145572644497f4a8c4bf63aaf062a
-  license: ''
-  license_text: ''
-./modules/array-list-tests: 
-  copyright: ''
-  hash: 53baa85faeb05acb1a5ac31eddc9644f74534d95b378c648e0e15c3c48fb3a39
-  license: ''
-  license_text: ''
-./modules/array-mergesort: 
-  copyright: ''
-  hash: d585324f2a3ec55082b40d8105956bef2d3acca525a28c3fb788716b0c8aefc7
-  license: ''
-  license_text: ''
-./modules/array-mergesort-tests: 
-  copyright: ''
-  hash: 0381eae0b69a43296fb82510390ea62a845191dacf3b433aaad9116b638c4d56
-  license: ''
-  license_text: ''
-./modules/array-oset: 
-  copyright: ''
-  hash: f36d4a0da577eed849de014669d57e2f2084cfd1f72b5611a526829c81250b40
-  license: ''
-  license_text: ''
-./modules/array-oset-tests: 
-  copyright: ''
-  hash: ec9ac466b696b5a94cd17a8ba47724fb6d95350af33941164b48273b68b74bf3
-  license: ''
-  license_text: ''
-./modules/assert: 
-  copyright: ''
-  hash: 84144692e39c0ce77559b0f2d4a5d22114f5cec2e0195dfd88cbe772ed85f07c
-  license: ''
-  license_text: ''
-./modules/atexit: 
-  copyright: ''
-  hash: 956fe5e5cc0e05eb5c5652bee988a55b05d2c27e4d0d4fa2fd65a54fbfcbf105
-  license: ''
-  license_text: ''
-./modules/atexit-tests: 
-  copyright: ''
-  hash: b5af4099d9ac6036921029273e26e8da033ff0bac3de1b5a2b3dd1ad69ba03d9
-  license: ''
-  license_text: ''
-./modules/atoll: 
-  copyright: ''
-  hash: 081eda59aa89c73d2d4f59240a8a9c0ee267bee9a1b5266c5691af9998acf69e
-  license: ''
-  license_text: ''
-./modules/autobuild: 
-  copyright: ''
-  hash: 1df0ddee990f9718235a005080c93d7c0f926c4e5552e8f32a7521e9a9a7a696
-  license: ''
-  license_text: ''
-./modules/avltree-list: 
-  copyright: ''
-  hash: 8352576b25c70bf6f2e533c52cbd8503e92c97193bc5fa9cc07804286be3ad08
-  license: ''
-  license_text: ''
-./modules/avltree-list-tests: 
-  copyright: ''
-  hash: a123480eb40475062e2604a99669dd8026d387d002ce72832d31c474d3fc01ce
-  license: ''
-  license_text: ''
-./modules/avltree-oset: 
-  copyright: ''
-  hash: 9201a58ecb36cd0aec6dc85046baa6ed2593d50675aebfb25f5f8e0c2fe1b5c3
-  license: ''
-  license_text: ''
-./modules/avltree-oset-tests: 
-  copyright: ''
-  hash: 2bbc34e6fbe51d0642d29db9147155c20bc3707e0083dc001823a0fe2b39401c
-  license: ''
-  license_text: ''
-./modules/avltreehash-list: 
-  copyright: ''
-  hash: 8379c549323aa2f753b6d5c5c14c04582f9d3d81cbf0e7097b87118a01d3d074
-  license: ''
-  license_text: ''
-./modules/avltreehash-list-tests: 
-  copyright: ''
-  hash: 222fec9e5662ce5934197e646123d204f9c5e35576d0fdf96b09ebe8065f21bb
-  license: ''
-  license_text: ''
-./modules/backupfile: 
-  copyright: ''
-  hash: 4fef23dcdfce02b82549e59718ac3bad55465aeb9fab63e33764c6f897745193
-  license: ''
-  license_text: ''
-./modules/base64: 
-  copyright: ''
-  hash: d850c109bddde729e5924c6d94d5e036d2eb1fb6ad06c18ea4bb8250bebfd01b
-  license: ''
-  license_text: ''
-./modules/base64-tests: 
-  copyright: ''
-  hash: b3ba7757f81171d4256c2280ed235946dccecba97f61a71beb7a18e58086ec8c
-  license: ''
-  license_text: ''
-./modules/bcopy: 
-  copyright: ''
-  hash: 3c949f3dd2f81574a222739c81dfb3ecd3b8f3ba8991e8d5daa793988f1066b9
-  license: ''
-  license_text: ''
-./modules/binary-io: 
-  copyright: ''
-  hash: 30e391bd7c76cdd6365ec2a6b56d87cd34e02ca680ea7e236e5395b18ede66b5
-  license: ''
-  license_text: ''
-./modules/binary-io-tests: 
-  copyright: ''
-  hash: a261d4e10b800d29c23e0c653efffb19a3149f33e7ee43e0076a08419bb6df40
-  license: ''
-  license_text: ''
-./modules/bind: 
-  copyright: ''
-  hash: 23a535bf498832382cbce326f849072720c70046c996a20effdee4c9bb89b7ea
-  license: ''
-  license_text: ''
-./modules/bison-i18n: 
-  copyright: ''
-  hash: 19037cfd342380ef9bc7024e56064ca9003979f131f1dea1dc92f1d7ba677ba4
-  license: ''
-  license_text: ''
-./modules/bitrotate: 
-  copyright: ''
-  hash: faaa06c6841e198470db642537c7dbbc9293c856bdba9233d3fa78fde732d556
-  license: ''
-  license_text: ''
-./modules/bitrotate-tests: 
-  copyright: ''
-  hash: 6876c90c81000a7ba76c7159cdcfa520d74edbbc0e650b504d6c6bc650298eac
-  license: ''
-  license_text: ''
-./modules/btowc: 
-  copyright: ''
-  hash: 09d7103954397af08b8d14f2a19074db593e030a78939b476595669a822df2f7
-  license: ''
-  license_text: ''
-./modules/btowc-tests: 
-  copyright: ''
-  hash: 6678d1b57cf42f696e33a3f3c000bfdc548a517f89b7753c081d4bc2daedb0c8
-  license: ''
-  license_text: ''
-./modules/byteswap: 
-  copyright: ''
-  hash: 02ae020bda6922b8e3e33b99cefc9c092d9c11f407a30a8c0144f2ea79d61d2b
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/byteswap-tests: 
-  copyright: ''
-  hash: d5dcac55272d375d33032dadc4b83cf82b2c4b49f1e576718afc88774e06e820
-  license: ''
-  license_text: ''
-./modules/c-ctype: 
-  copyright: ''
-  hash: 1aaf6009165743a42132a3a5f350954787e1fb6d00652d4a7054d640678a2852
-  license: ''
-  license_text: ''
-./modules/c-ctype-tests: 
-  copyright: ''
-  hash: 541b89b740089bbb53771bc68a6b4dde677cf62c45e31859803168e920a2b4cc
-  license: ''
-  license_text: ''
-./modules/c-stack: 
-  copyright: ''
-  hash: 9e073958b6341900d6ff379d5088639539a9c9420b43295900545fe8f7f98f05
-  license: ''
-  license_text: ''
-./modules/c-stack-tests: 
-  copyright: ''
-  hash: af2bec5076635bdcb7aed623f58e8024ca0e31a7cbfa600e6f16e4885332995a
-  license: ''
-  license_text: ''
-./modules/c-strcase: 
-  copyright: ''
-  hash: a37a455befa8dea1afeff6efe9a52ca456d347c9640b6533de088e6ed066ab0a
-  license: ''
-  license_text: ''
-./modules/c-strcase-tests: 
-  copyright: ''
-  hash: b9ebfef040c2c75e386017fccce5ec0551e2925375d7139c44c210676cce33eb
-  license: ''
-  license_text: ''
-./modules/c-strcaseeq: 
-  copyright: ''
-  hash: f752ec255a570106fc293400dc68d349d63b8eadf4c6ac894b6fab309f3a9d20
-  license: ''
-  license_text: ''
-./modules/c-strcasestr: 
-  copyright: ''
-  hash: ea69b0761c479bdeed87f867068c33d48a03c35e3936828e09f87aba683a7330
-  license: ''
-  license_text: ''
-./modules/c-strcasestr-tests: 
-  copyright: ''
-  hash: 8c6ed641b71bd7d361ff43ea2bf201db01873a92e78d96f7e5eb817770baf2ae
-  license: ''
-  license_text: ''
-./modules/c-strstr: 
-  copyright: ''
-  hash: 9e209ab3ebf91f8ef637589f7d39703fa22f55af9d697603cb169766695e5385
-  license: ''
-  license_text: ''
-./modules/c-strstr-tests: 
-  copyright: ''
-  hash: f9d5b888a3c3e54e1f2630b76a956ca27fd75f8e72a4254075594e29bbcb5858
-  license: ''
-  license_text: ''
-./modules/c-strtod: 
-  copyright: ''
-  hash: 612121560adbf21427320c02041c112b48ea6fd6297b7be91c6291af7375cbcc
-  license: ''
-  license_text: ''
-./modules/c-strtold: 
-  copyright: ''
-  hash: 3544bbe9e95749a41f982bde06d71495ebdd9a5e5b0b07041a741ed009c733e6
-  license: ''
-  license_text: ''
-./modules/calloc: 
-  copyright: ''
-  hash: d7466a0b924d6645b1c5cbad94c4a37f8c5c5da513c1304b58890ac53d930e30
-  license: ''
-  license_text: ''
-./modules/calloc-posix: 
-  copyright: ''
-  hash: 3b1406a7c742bf6dd0d730f653c5785f86801bd8f7223201bd6aaa2d050dfcd9
-  license: ''
-  license_text: ''
-./modules/canon-host: 
-  copyright: ''
-  hash: b81f60bfbc64572f5c7a8beaa41866bae17cd2d40aebebb151e7ee1b1266b83c
-  license: ''
-  license_text: ''
-./modules/canonicalize: 
-  copyright: ''
-  hash: f24ee9ec34ae94bb205cb71bd8d533a004202ef33739606bebd774941a00b75c
-  license: ''
-  license_text: ''
-./modules/canonicalize-lgpl: 
-  copyright: ''
-  hash: 4c13afd9743357e076cee04877e63b77afa6cd8ff0926e3879043fb4360ba78a
-  license: ''
-  license_text: ''
-./modules/canonicalize-lgpl-tests: 
-  copyright: ''
-  hash: 5115abba1182913b6fe9173dabcf860a194d017b1f89ad56fc009c15a5bc723f
-  license: ''
-  license_text: ''
-./modules/canonicalize-tests: 
-  copyright: ''
-  hash: a0d9e99e99856f2b41a69a2031475234178cddb4399c4c50ee6bb09f55009c07
-  license: ''
-  license_text: ''
-./modules/carray-list: 
-  copyright: ''
-  hash: e550c35afc8d217d0fcec2b961f4b7aa62e205f37223a98963561adf65e01d56
-  license: ''
-  license_text: ''
-./modules/carray-list-tests: 
-  copyright: ''
-  hash: 9cc5e8c71ff614ff0d7df3a565b59dd8db14a616242f77e97c6b1a2a8105bd81
-  license: ''
-  license_text: ''
-./modules/ceil: 
-  copyright: ''
-  hash: b73da31e7eb3600040bd1ea4c6a8b2f1e0e90ba7ffce37b668421fd8bda25605
-  license: ''
-  license_text: ''
-./modules/ceilf: 
-  copyright: ''
-  hash: 60cf4bef6762da1964acc30e8cf5540ee4be612f716cbace67aca6f54a1f2ff3
-  license: ''
-  license_text: ''
-./modules/ceilf-tests: 
-  copyright: ''
-  hash: 2ecc4fec292d712661525b22d5344cb9ca77a3fd9f62e015f960c0b1b3179dac
-  license: ''
-  license_text: ''
-./modules/ceill: 
-  copyright: ''
-  hash: 7405c30e654f64ad80e99bc91d7a3fc3155af2fe45dc87915803f0059b11a627
-  license: ''
-  license_text: ''
-./modules/ceill-tests: 
-  copyright: ''
-  hash: 02e342a8a90a0d94eead61705e1f03a4180d1d2255f97ac1084951c7ac1f172c
-  license: ''
-  license_text: ''
-./modules/chdir-long: 
-  copyright: ''
-  hash: 37e8e598f3011eefce4641dfbeebe2a22a36b5c02209da129a74d943c4c2ed14
-  license: ''
-  license_text: ''
-./modules/chdir-safer: 
-  copyright: ''
-  hash: f023c1a589c1d09e4f14c6ff16e462523dbb61feca57327ec3db77ecd7e4fed7
-  license: ''
-  license_text: ''
-./modules/check-version: 
-  copyright: ''
-  hash: c8ab694209f70435e648a111762230f5f4a9d25fa96c20955642a0d6a9b78ecb
-  license: ''
-  license_text: ''
-./modules/chown: 
-  copyright: ''
-  hash: 27f2690dd303af10bb6ffc0c70b9b67bf7d9c475c30b379099b25799b48450f2
-  license: ''
-  license_text: ''
-./modules/classpath: 
-  copyright: ''
-  hash: 826a02656c133f31a7120fe677a9e8fbece69bca8f49b30954fe4bf51c4a847e
-  license: ''
-  license_text: ''
-./modules/clean-temp: 
-  copyright: ''
-  hash: 0167d0f7a980c65c18288e1d04cff18da933c9dcb7531606c0e9ebee382dac61
-  license: ''
-  license_text: ''
-./modules/clock-time: 
-  copyright: ''
-  hash: a0a588f85ac8e63fa9f8f9361381a81ebea08d20abd2c1be04d2640560c28c41
-  license: ''
-  license_text: ''
-./modules/cloexec: 
-  copyright: ''
-  hash: ce7a0dcfafef2342f95a1c8d8b303d6336f2e2ce9931c19696d3e98cdd24a582
-  license: ''
-  license_text: ''
-./modules/close: 
-  copyright: ''
-  hash: 8bd8212ece9bee25d93a40810444163e096b3ac7cc5bf19388451f13a1ea4059
-  license: ''
-  license_text: ''
-./modules/close-hook: 
-  copyright: ''
-  hash: 05b21d50199be350706d697bab38376c91867056a1b28de62514511ac4054e1b
-  license: ''
-  license_text: ''
-./modules/close-stream: 
-  copyright: ''
-  hash: 3f3c94f0eb2dd9487e9fce9fca2ce7cba021c47c507466f448e837d21bffa9e7
-  license: ''
-  license_text: ''
-./modules/closein: 
-  copyright: ''
-  hash: ac54f1e1c2872ff17faed1667304d92f0d702bc9368a88e3b84823ab901e94eb
-  license: ''
-  license_text: ''
-./modules/closein-tests: 
-  copyright: ''
-  hash: 805c1e0f0a4b354915ff7f5a7422d6d16cdce97d6df46dde141ebdc3826b48ad
-  license: ''
-  license_text: ''
-./modules/closeout: 
-  copyright: ''
-  hash: 051da050b037e9c81b7d6782ac45594f01e0ef7cbff2374cff1fa6f27d57bcbe
-  license: ''
-  license_text: ''
-./modules/concat-filename: 
-  copyright: ''
-  hash: 8a73319669b27457ae9c38a8051293d9a4f8ea4ec07c9b3caeeba3025aa34db9
-  license: ''
-  license_text: ''
-./modules/cond: 
-  copyright: ''
-  hash: d1e1fdf80f75b22e3b5e375755f93920bd05d490cd892df12e5a02387cd32715
-  license: ''
-  license_text: ''
-./modules/cond-tests: 
-  copyright: ''
-  hash: 2b1de8d3eeccd314891c3d26b8acd001891fd51583fd6ef61b619af9370673bc
-  license: ''
-  license_text: ''
-./modules/config-h: 
-  copyright: ''
-  hash: 91e035167a02a8b36f0d9e54ebbb976100ac64d04869f8f0d863e983bbc54903
-  license: ''
-  license_text: ''
-./modules/configmake: 
-  copyright: ''
-  hash: e2e385cbb63e95e40039eec46348d71a6b017c2504404eb4651d9b267c975386
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/connect: 
-  copyright: ''
-  hash: eb39e48e80088efe48404e5d5be9b3ef518ea35e2ea5c39dd1fc5e1fbada497e
-  license: ''
-  license_text: ''
-./modules/copy-file: 
-  copyright: ''
-  hash: 70ec3ceab633438e6f8854a1378d56435c8c968587fe6ca8be8c1ef3bccc830c
-  license: ''
-  license_text: ''
-./modules/copy-file-tests: 
-  copyright: ''
-  hash: 06069a61c64b73f74356dfcdc050364dbaf37018d778b9715c2df576b3b58129
-  license: ''
-  license_text: ''
-./modules/count-one-bits: 
-  copyright: ''
-  hash: 15c0054778b12fcbea0ad721994a124837da8a21621a6fc423e9df2412129954
-  license: ''
-  license_text: ''
-./modules/count-one-bits-tests: 
-  copyright: ''
-  hash: 969693e3cd2dbad97f45c36545782a08594c11c7792b305344ad8d7ef56f3ec2
-  license: ''
-  license_text: ''
-./modules/crc: 
-  copyright: ''
-  hash: 6e215352fbcbda061d26760d0bedd4ca18904097058e9b89357c45433e342308
-  license: ''
-  license_text: ''
-./modules/crc-tests: 
-  copyright: ''
-  hash: 53be4aa9d8567f7ffc69736b1f7f8d87727bdac69d7f8f6a7954eea7251d980b
-  license: ''
-  license_text: ''
-./modules/crypto/arcfour: 
-  copyright: ''
-  hash: 8d3330e5db17886bf6f3779d415aa5153f864fc51e292401c0c305e4d561053f
-  license: ''
-  license_text: ''
-./modules/crypto/arcfour-tests: 
-  copyright: ''
-  hash: 3630759cc927ebcd0be39504cf3bea594de25cfc04a922d3bdc56c8c0f0d8af4
-  license: ''
-  license_text: ''
-./modules/crypto/arctwo: 
-  copyright: ''
-  hash: 5469694717f29035793668209aa697611e9c80d3cefd3429445d55a81507a79f
-  license: ''
-  license_text: ''
-./modules/crypto/arctwo-tests: 
-  copyright: ''
-  hash: c811c82078187c8a8ed3d4b866e6c485d7408508782e0a351175c3488415a16d
-  license: ''
-  license_text: ''
-./modules/crypto/des: 
-  copyright: ''
-  hash: 06db0a8fd379ada1a5aff08c9ab10b9819ccf63b2961736326633cd10aaa6d50
-  license: ''
-  license_text: ''
-./modules/crypto/des-tests: 
-  copyright: ''
-  hash: cbc028ccae8a0469a4d48a2eab9b34ebb63d6f8eb9b67f1bf991f68e757e0052
-  license: ''
-  license_text: ''
-./modules/crypto/gc: 
-  copyright: ''
-  hash: a37067ce105b5c26b65edc4746d337d2071c7b088f830ee2e9ac168cccaea42f
-  license: ''
-  license_text: ''
-./modules/crypto/gc-arcfour: 
-  copyright: ''
-  hash: d679779877f609d5d127d5a90882ef40bf0fc99f2dbbabe80887c9d515a0d275
-  license: ''
-  license_text: ''
-./modules/crypto/gc-arcfour-tests: 
-  copyright: ''
-  hash: 62c1593e37d5d7c1134e9ab32a23f55f0f191736dea6b1bffd23b4b19ead2d16
-  license: ''
-  license_text: ''
-./modules/crypto/gc-arctwo: 
-  copyright: ''
-  hash: b992ec6a005b7812bd2288aa943bd754ec7bbe6d13d38635511d69839ab97cd3
-  license: ''
-  license_text: ''
-./modules/crypto/gc-arctwo-tests: 
-  copyright: ''
-  hash: 200aab87e9e96d895c177468df8b331f595b1f98e49b109a15f9d6ef8a144b9e
-  license: ''
-  license_text: ''
-./modules/crypto/gc-camellia: 
-  copyright: ''
-  hash: 6efd71985d9ac0bfb970aee78a503053c56e6c209934f17d286bfbe6c6c949c9
-  license: ''
-  license_text: ''
-./modules/crypto/gc-des: 
-  copyright: ''
-  hash: 9152a88c7c783ec440504fb433c322a230f707f50d957df0b45e8c0886785680
-  license: ''
-  license_text: ''
-./modules/crypto/gc-des-tests: 
-  copyright: ''
-  hash: 6c35974a1252d0f23670a8806e798eec78a8788ca9fdd0ddb94370513d097d03
-  license: ''
-  license_text: ''
-./modules/crypto/gc-hmac-md5: 
-  copyright: ''
-  hash: 5d2b3bbeae841ab7330e7699bff61e4cd8050938a229c85f932c9eb018074e55
-  license: ''
-  license_text: ''
-./modules/crypto/gc-hmac-md5-tests: 
-  copyright: ''
-  hash: 5ca026dab867927b6168a5e403facf038d7d0e1556528d1171b727335b5fcf83
-  license: ''
-  license_text: ''
-./modules/crypto/gc-hmac-sha1: 
-  copyright: ''
-  hash: bdfd1be06fdb64511009c39267dde2b93e94c2109f9d15c9fe928038cbcf1f8a
-  license: ''
-  license_text: ''
-./modules/crypto/gc-hmac-sha1-tests: 
-  copyright: ''
-  hash: 2aae9e8d5d39f859cefb2b1f1848af6876b0fc5d28fdd5c49c67fa7887938cd7
-  license: ''
-  license_text: ''
-./modules/crypto/gc-md2: 
-  copyright: ''
-  hash: 13b8d9a7fc54087c059b8a671a63fec91931cd56867bdf3f62a52cd5738eb815
-  license: ''
-  license_text: ''
-./modules/crypto/gc-md2-tests: 
-  copyright: ''
-  hash: 4a3a9ae40cf894aa4a91da171c06446cdce46a367fe54af13bd285cc359a388f
-  license: ''
-  license_text: ''
-./modules/crypto/gc-md4: 
-  copyright: ''
-  hash: 7aa9174d56c7f1a0f4f5373e3331aae1fb2f700c9003ceca20326cdae4140a15
-  license: ''
-  license_text: ''
-./modules/crypto/gc-md4-tests: 
-  copyright: ''
-  hash: e268963672978e792a325d3764efa0a5a9d680372ea0c2022b64145599982d23
-  license: ''
-  license_text: ''
-./modules/crypto/gc-md5: 
-  copyright: ''
-  hash: 67dfbe237cae5b7b4b84ab819f18dfe5d37ef049ae6797f3dee72a91cbafe244
-  license: ''
-  license_text: ''
-./modules/crypto/gc-md5-tests: 
-  copyright: ''
-  hash: c048f579e8a717bd9afe2adc1f47f82cb21534eae77b8d1070d3420b5228572f
-  license: ''
-  license_text: ''
-./modules/crypto/gc-pbkdf2-sha1: 
-  copyright: ''
-  hash: b3b5bd79957e0763875e03f1a558d6077746eefdc7fde6ea095f0331192b6551
-  license: ''
-  license_text: ''
-./modules/crypto/gc-pbkdf2-sha1-tests: 
-  copyright: ''
-  hash: a3182b57a694077f06706f41afe2e80f9ca286a3a7521a456b74405b793f816f
-  license: ''
-  license_text: ''
-./modules/crypto/gc-random: 
-  copyright: ''
-  hash: 8ecf0f62f4bb9a0e05a1bf45a2aeb552c045f1f7e0cb562ad7036123629e535b
-  license: ''
-  license_text: ''
-./modules/crypto/gc-rijndael: 
-  copyright: ''
-  hash: fdbadf39acda6737d3e798e4b883e4f2369b28a10c04ca3c398a1f94af7d458a
-  license: ''
-  license_text: ''
-./modules/crypto/gc-rijndael-tests: 
-  copyright: ''
-  hash: af1ef324aa3f6651595b4aa8cc89115cc4ce259a86a57f6fd051fa0843e631a8
-  license: ''
-  license_text: ''
-./modules/crypto/gc-sha1: 
-  copyright: ''
-  hash: d0a58c382167aa666d7fd260afb270c56d8397843830055724d2c8c79b19e380
-  license: ''
-  license_text: ''
-./modules/crypto/gc-sha1-tests: 
-  copyright: ''
-  hash: 4c4a5c9313d4f0177afb6159d8ed38aed51f2ecb4a3ef5d289a440129483d37c
-  license: ''
-  license_text: ''
-./modules/crypto/gc-tests: 
-  copyright: ''
-  hash: 144ea2d95cd81e0a8471529c2decbc1bd181790e9b6f8d128ba4f64906cdccbf
-  license: ''
-  license_text: ''
-./modules/crypto/hmac-md5: 
-  copyright: ''
-  hash: 595271e6f31d3444e0e50e659e38e3001d3038fa787516aa52b8a3f614aac47a
-  license: ''
-  license_text: ''
-./modules/crypto/hmac-md5-tests: 
-  copyright: ''
-  hash: 988d239d21bf3f5fd1fcfcbda7d40c69bebeb32d9cd843dd450095e1c16904c9
-  license: ''
-  license_text: ''
-./modules/crypto/hmac-sha1: 
-  copyright: ''
-  hash: 444d3cfb9eff2bf6d5dc80facac95589f25821de74edf7d5a5fbc38224cf7e50
-  license: ''
-  license_text: ''
-./modules/crypto/hmac-sha1-tests: 
-  copyright: ''
-  hash: 399e8fc017513a7f5d032eb7f9db622f86f1ec372d4d62071be2ef5093bf22c9
-  license: ''
-  license_text: ''
-./modules/crypto/md2: 
-  copyright: ''
-  hash: 7a6574dd72be6053162e082ee5e07232f7318a53a8de966a0d045188ba9dd955
-  license: ''
-  license_text: ''
-./modules/crypto/md2-tests: 
-  copyright: ''
-  hash: 9c76b233ede1e25772f6935717c5d5f3a219e92d9349049b4e66ebb9fdd229ab
-  license: ''
-  license_text: ''
-./modules/crypto/md4: 
-  copyright: ''
-  hash: bd74a69b055714488287883e8f724eb98f43599b6255e2d7313f86368f1bae62
-  license: ''
-  license_text: ''
-./modules/crypto/md4-tests: 
-  copyright: ''
-  hash: 4eef5de6a0aa60cf29e9e4191650d9f9bc9c124cf5ef89771bc1237ffcc3fe9b
-  license: ''
-  license_text: ''
-./modules/crypto/md5: 
-  copyright: ''
-  hash: 1ad408aaec77111bb7efd40eed25ac37900d0caa4270950ba95a830ade1092eb
-  license: ''
-  license_text: ''
-./modules/crypto/md5-tests: 
-  copyright: ''
-  hash: cac6273fd539cb07720eb45050ef064ce4c4f3d4c45b7066754a788d9dd1c0eb
-  license: ''
-  license_text: ''
-./modules/crypto/rijndael: 
-  copyright: ''
-  hash: 6a500faa9b78a580ec9d8fc772a6df9e1081c67ce64224ced59981d4e0bbd4b1
-  license: ''
-  license_text: ''
-./modules/crypto/rijndael-tests: 
-  copyright: ''
-  hash: e5dcd3808ffe9e602133e07c69fe375707d35074686baf15646787c608671fa2
-  license: ''
-  license_text: ''
-./modules/crypto/sha1: 
-  copyright: ''
-  hash: 1e19f668b7ca41a4d49d9c9b3f865d1e66708a3c5c9bc55d82ce8ff109b884d9
-  license: ''
-  license_text: ''
-./modules/crypto/sha1-tests: 
-  copyright: ''
-  hash: c42d3c37932b83bea31b95e3ce5b26e9dd928723dbfaf6d626b51c7fd3985536
-  license: ''
-  license_text: ''
-./modules/crypto/sha256: 
-  copyright: ''
-  hash: 557c56301b0f36c5b86a7dfbab1f20046c2d890805029004b658771806df49df
-  license: ''
-  license_text: ''
-./modules/crypto/sha512: 
-  copyright: ''
-  hash: 8bcd2185a1b214c2ae0c659aa629dd872c098fc5bfa80120eb71305a191043e9
-  license: ''
-  license_text: ''
-./modules/csharpcomp: 
-  copyright: ''
-  hash: 7e6fa71cf3bf56738998c868ef882d3c97de87ecfb6cd25394b5eb424b77b4b7
-  license: ''
-  license_text: ''
-./modules/csharpcomp-script: 
-  copyright: ''
-  hash: 71047fa1bb16d9032a37f67f14d70b137a43940137e082ae9619a24309df89ba
-  license: ''
-  license_text: ''
-./modules/csharpexec: 
-  copyright: ''
-  hash: e6b2318976ab61784ae6ddb467935dbe9b837ab9a2ec58728a743934db8f1bef
-  license: ''
-  license_text: ''
-./modules/csharpexec-script: 
-  copyright: ''
-  hash: 78a66dbe260f67ae324d71323133bf91a19ca64152a838b0022b5f8272afd0f6
-  license: ''
-  license_text: ''
-./modules/cycle-check: 
-  copyright: ''
-  hash: 3d00024fc25f5fd2a625a9f137306fbef1078e206f57f46f5f12d485889c0f00
-  license: ''
-  license_text: ''
-./modules/d-ino: 
-  copyright: ''
-  hash: 3eed0c9278033ea666932b94aab0e9df4dad98ea7892e926e35f2f1df9546b05
-  license: ''
-  license_text: ''
-./modules/d-type: 
-  copyright: ''
-  hash: 2053db6f7f00ffd6c740c3dbc565bddb41c8c90976e257ebe336015c2e01149c
-  license: ''
-  license_text: ''
-./modules/dev-ino: 
-  copyright: ''
-  hash: 93d43fe09c3ef97fd7290f0008ddaaa5947efaefb1b19d93f176ad6f43434bcb
-  license: ''
-  license_text: ''
-./modules/diacrit: 
-  copyright: ''
-  hash: 8eb2c774ce439371d213db0240b5893eb3a44abbfb193047a78617492190928d
-  license: ''
-  license_text: ''
-./modules/diffseq: 
-  copyright: ''
-  hash: 1fb1c1f2ca6c4ac54e710082b6724c8b3fe45ad6f23ea206197dbd416674bbe8
-  license: ''
-  license_text: ''
-./modules/dirent: 
-  copyright: ''
-  hash: 05d75f6c4ce7f52db3d63209155dab34f9b6242e3427b36a5148aea1fe711830
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/dirent-safer: 
-  copyright: ''
-  hash: b8cb12f2325cec94272dbbbde2d31125d02b609dd8902dc709a0e73a021dde61
-  license: ''
-  license_text: ''
-./modules/dirent-safer-tests: 
-  copyright: ''
-  hash: e37f3f6296305a9eb975d0f8e2a3ffb0f98fa3a9cecded0b47bc05b169e0a401
-  license: ''
-  license_text: ''
-./modules/dirfd: 
-  copyright: ''
-  hash: c26ab98336ca5e6d0a647ef1ee1a25f2df553234e51efb824097c7a73bd6d345
-  license: ''
-  license_text: ''
-./modules/dirname: 
-  copyright: ''
-  hash: 2de69ef4b25f9b0db1b2598591b5efa3312fb79ac6aea41735ee091ddcddbf2b
-  license: ''
-  license_text: ''
-./modules/dirname-tests: 
-  copyright: ''
-  hash: 815c8ff67c3f529ae878f7a26b523438fe832f56e7bbd69dc8f2429e75f9f384
-  license: ''
-  license_text: ''
-./modules/double-slash-root: 
-  copyright: ''
-  hash: 899ac52e251e2421ddeb82d4de9a425eaf7412c957f9927c31cc39fe7f148963
-  license: ''
-  license_text: ''
-./modules/dprintf: 
-  copyright: ''
-  hash: 0c7255737575d60259979623471bad2c8da641cd523b977b8704333c0fce29db
-  license: ''
-  license_text: ''
-./modules/dprintf-posix: 
-  copyright: ''
-  hash: 9e4bd7fddc560e97cb0743a5c690a875122f4dbe135f25b76d0beaae8d0db6d7
-  license: ''
-  license_text: ''
-./modules/dprintf-posix-tests: 
-  copyright: ''
-  hash: 516a22b8ce686f568cf033207db60bf332fd484d0b92921cf3fd1a4c4fb86d24
-  license: ''
-  license_text: ''
-./modules/dummy: 
-  copyright: ''
-  hash: 854d662d1c7394227e82d7870cfaffde43c9513d8734120012e984f7ba5fd39d
-  license: ''
-  license_text: ''
-./modules/dup2: 
-  copyright: ''
-  hash: 9e1c5691c3713e492a4f51d5608a4d199d17ced5babcec490ddc2509f8de2231
-  license: ''
-  license_text: ''
-./modules/dup2-tests: 
-  copyright: ''
-  hash: 01cb97ae8c492fc1564a3c4976dab781809ef8aa08741f5b14ca96f08fcef840
-  license: ''
-  license_text: ''
-./modules/dup3: 
-  copyright: ''
-  hash: 69fdc3c3a124fd2c88d8386d1837ce8d2c82196a008d64bb8eba8127c0ee771b
-  license: ''
-  license_text: ''
-./modules/dup3-tests: 
-  copyright: ''
-  hash: be78bf1d63fd9d08ffe02606639d273d5978684399ff4782b3397b475e14a5ee
-  license: ''
-  license_text: ''
-./modules/eealloc: 
-  copyright: ''
-  hash: e2124275b5589e827043e1bb59ec89182059cd0994a308c5ee17fb95eca6522f
-  license: ''
-  license_text: ''
-./modules/elisp-comp: 
-  copyright: ''
-  hash: 0b7233ecf09add728c7f7266e9ed8f9c42bc3f471d53b648293c5c70f5379d17
-  license: ''
-  license_text: ''
-./modules/environ: 
-  copyright: ''
-  hash: 1ccce16dccd630d05124710f0a7e4832aec3f07e23fba03399e3855fe21b565f
-  license: ''
-  license_text: ''
-./modules/environ-tests: 
-  copyright: ''
-  hash: f8edb03479da1a4c85755325a181d77fc778974097b8f2900a1a005d6e27f5e3
-  license: ''
-  license_text: ''
-./modules/errno: 
-  copyright: ''
-  hash: 1a350cc71bd2dcb0e1cc4d35eeebbc15da79d2dd532248a36a5cf198d44d5293
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/errno-tests: 
-  copyright: ''
-  hash: 140223d34c164d0e4377ea2e0d78659c013feb62881bd2a4966a478369c398cc
-  license: ''
-  license_text: ''
-./modules/error: 
-  copyright: ''
-  hash: 6e0d5c513ead811b7a4449172ecd0253617aac365941fc0c0c4bef58f36528ff
-  license: ''
-  license_text: ''
-./modules/euidaccess: 
-  copyright: ''
-  hash: bcbfd513d69bb6b68998eacafc86914e98acb9fa5b0015bc19c13c38bf5c695c
-  license: ''
-  license_text: ''
-./modules/exclude: 
-  copyright: ''
-  hash: d1a7809613d0860c9a2b248aa53cf31da18b65a27afd84649489f86e0585027d
-  license: ''
-  license_text: ''
-./modules/exclude-tests: 
-  copyright: ''
-  hash: 313e390c1042153f04f3d54dc76b4555a15b6d43c0c895957d8c2d95133160bf
-  license: ''
-  license_text: ''
-./modules/execute: 
-  copyright: ''
-  hash: 2ff2c5ddb5a20cc9471fa47595e00e1e2f91319fcab2a237ed79ba9dc66f255c
-  license: ''
-  license_text: ''
-./modules/exit: 
-  copyright: ''
-  hash: 97ef461ebd37690d9acd7227822e73a0742c3eddcca463f8578bb916d9d406c7
-  license: ''
-  license_text: ''
-./modules/exitfail: 
-  copyright: ''
-  hash: 71bf5ee9e44fb5ac95bbfffc6cdea1d50b539482cd5e3cd2468411e93e3e2cff
-  license: ''
-  license_text: ''
-./modules/extensions: 
-  copyright: ''
-  hash: c8560170a702ed9b6f24f677c3ee0a32abb9a6381e983c1c5db53a08d4cbf300
-  license: ''
-  license_text: ''
-./modules/faccessat: 
-  copyright: ''
-  hash: 178c21c4b625555d359cb418d9feb5a994ae890419a4ec0e97a67e84e1897210
-  license: ''
-  license_text: ''
-./modules/fatal-signal: 
-  copyright: ''
-  hash: d6326aa3aefe52b95ee7eb0ebc3a68fff79a71488ec77bad0803fdadfcabf22c
-  license: ''
-  license_text: ''
-./modules/fbufmode: 
-  copyright: ''
-  hash: 73f27bfb851dcb675c670945680ac3d2f3d9ef358ebd537e924a041af617df55
-  license: ''
-  license_text: ''
-./modules/fbufmode-tests: 
-  copyright: ''
-  hash: 71fe5ce9c53cb34271eb8d52b313df538a124a637342017c3aadb391493145df
-  license: ''
-  license_text: ''
-./modules/fchdir: 
-  copyright: ''
-  hash: 644b0fc8c342462f0685df822c5424fce6c66ecc84dcd67513ccf047a3ab7dd3
-  license: ''
-  license_text: ''
-./modules/fchdir-tests: 
-  copyright: ''
-  hash: 787a3d5b3bc71dd81c896ec6cb8cf270b44d635227d7de69404709a40774ddac
-  license: ''
-  license_text: ''
-./modules/fclose: 
-  copyright: ''
-  hash: cf3f476e6ac54b29381acc2be25b3080b60e1c224cf2c70733848805e42c10ed
-  license: ''
-  license_text: ''
-./modules/fcntl: 
-  copyright: ''
-  hash: 3ed2504e15f67cc9a6c99a5da3d83833e88117d5f752742ab939317e33954f3f
-  license: ''
-  license_text: ''
-./modules/fcntl-h: 
-  copyright: ''
-  hash: 7fd3e763589848f291c1f516bde747c0dd95fe564ac008a1c5e73daa0b1b8384
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/fcntl-h-tests: 
-  copyright: ''
-  hash: 21b1ab56df8b65825fe64da68487d62116cd8774ce073c1f8ee25ea6e589fd87
-  license: ''
-  license_text: ''
-./modules/fcntl-safer: 
-  copyright: ''
-  hash: 4ebf6bbd64762641d00a4ae162c3411b45f8d9ed4b4581ed65c023a5e7ca4649
-  license: ''
-  license_text: ''
-./modules/fcntl-safer-tests: 
-  copyright: ''
-  hash: be7ef9f639404a67e06811e0b0e18326bc85573fd18511dcfcbc34f7067081eb
-  license: ''
-  license_text: ''
-./modules/fdl: 
-  copyright: ''
-  hash: a7088c30386fb8c1874a6ec818d726c8c2cd24ebad39eebc536cecd327672f2d
-  license: ''
-  license_text: ''
-./modules/fdl-1.3: 
-  copyright: ''
-  hash: bca96e2238e75399e1fe51f3e68c173dcc273f0a7772aecd7cc8ef73fda177e9
-  license: ''
-  license_text: ''
-./modules/fdopendir: 
-  copyright: ''
-  hash: 1e7fe9081b79836f9246012e3c6ad46347e858c2b4b62a7d4d561a33cfd6ecab
-  license: ''
-  license_text: ''
-./modules/fdopendir-tests: 
-  copyright: ''
-  hash: 62f6d9c40e5c905c756f1c88fe8c5f6739e6d2dcf54187dc1d8a964b59c9e03e
-  license: ''
-  license_text: ''
-./modules/fflush: 
-  copyright: ''
-  hash: 18b553e8a7d80dc1c83af3e17063c3faa6659da9d68bcbd65ff3ef6c2e313157
-  license: ''
-  license_text: ''
-./modules/fflush-tests: 
-  copyright: ''
-  hash: a1fc5c4b6c0ea31bb2d2726467624a0e49e748915ddb5a21a3905b43f0239c61
-  license: ''
-  license_text: ''
-./modules/file-set: 
-  copyright: ''
-  hash: 22144a829c85ec1f08143cae120b80a511fb03a953984d493980c7229b3d3afa
-  license: ''
-  license_text: ''
-./modules/file-type: 
-  copyright: ''
-  hash: c0acff46b857b7c20ad0115b8f163c91df47d5ba58ef0627dd00f5834ca1370f
-  license: ''
-  license_text: ''
-./modules/fileblocks: 
-  copyright: ''
-  hash: c10175badd9b332c6ab2fa2f789ee97e0ce7c82f79e37c5cc8e4e0c0281b6adb
-  license: ''
-  license_text: ''
-./modules/filemode: 
-  copyright: ''
-  hash: 1ad12dc2124f345795043446f1d7811ed787098b06475b3454299df3f6be420c
-  license: ''
-  license_text: ''
-./modules/filename: 
-  copyright: ''
-  hash: 3cda4fccc1263c4a2b60b75ff698189bd8023001f333926273a7cc24c82b54d4
-  license: ''
-  license_text: ''
-./modules/filenamecat: 
-  copyright: ''
-  hash: 44f8cadb58fa064a93772154f55bf3235c390360a55ccebf6b617f6d1c8d0189
-  license: ''
-  license_text: ''
-./modules/filenamecat-tests: 
-  copyright: ''
-  hash: 1e225a717fa965a853618195261e6d1673eb90c7b0f2f70b5e088591ffca7e88
-  license: ''
-  license_text: ''
-./modules/filevercmp: 
-  copyright: ''
-  hash: eb487a16443b28ac6b62e8ce5d3036872b98c46df4d738edc257ef4d9c08c9c3
-  license: ''
-  license_text: ''
-./modules/filevercmp-tests: 
-  copyright: ''
-  hash: e36a1ad4dd4e4e79a4fa7938897f331f741fd14bc90aa08297352ee0e2cc35e7
-  license: ''
-  license_text: ''
-./modules/findprog: 
-  copyright: ''
-  hash: b702f8ffa7e72e71ba9678efff438feab7fe00600ca64d260b3ffc2ec75eb836
-  license: ''
-  license_text: ''
-./modules/findprog-lgpl: 
-  copyright: ''
-  hash: 113810dee709728ce873b19f1638222e0b4c90ce5f4bf1106c1c0e0177ba0e4c
-  license: ''
-  license_text: ''
-./modules/flexmember: 
-  copyright: ''
-  hash: 1aa8dca40ae523eb2fca526c391f55fffce453b8c30bf84b9513315121950de9
-  license: ''
-  license_text: ''
-./modules/float: 
-  copyright: ''
-  hash: e6b7c886d27a00d3f2745c4be39f08826d23a406e5b7f7f3537fd3ae7d0d56bb
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/flock: 
-  copyright: ''
-  hash: 0d27d17b43dba498300dc6dd8278483f4662fbc33c1c6020af519f5af93c91a8
-  license: ''
-  license_text: ''
-./modules/flock-tests: 
-  copyright: ''
-  hash: ed015f448128e47356dc5fdf742dffa723cab8d53b9d79df3ef5e18c531281a5
-  license: ''
-  license_text: ''
-./modules/floor: 
-  copyright: ''
-  hash: b853be43fd43415988aa18bfe4322cb154a7be2a5212336bc5fe265b30a5a13d
-  license: ''
-  license_text: ''
-./modules/floorf: 
-  copyright: ''
-  hash: 128117d8c1e90cec8daf8a295d485c44356eb71bba40ed6764977488106cfb7f
-  license: ''
-  license_text: ''
-./modules/floorf-tests: 
-  copyright: ''
-  hash: e03884697f7432a893aa1e5b9f21e11762b3bfe15c273d1c3149bb0d88b909d9
-  license: ''
-  license_text: ''
-./modules/floorl: 
-  copyright: ''
-  hash: 2cdd8c1038f91a6a39039062b48da7e76488d368c31babe3880b2b6b5c941a4b
-  license: ''
-  license_text: ''
-./modules/floorl-tests: 
-  copyright: ''
-  hash: 99da97c87837e8e226014794a72ed86d1d6b049e0c7d61dbc3693c59ff004b02
-  license: ''
-  license_text: ''
-./modules/fnmatch: 
-  copyright: ''
-  hash: 9c7345488ebc1f63b46c93d222ce1fea31fa784f44b65ec6b3d4535053819686
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/fnmatch-gnu: 
-  copyright: ''
-  hash: 33dab8afc481a19055a2fe68afcd2abf7590708cd49c3833df2a33a81148ded2
-  license: ''
-  license_text: ''
-./modules/fnmatch-posix: 
-  copyright: ''
-  hash: 26e0377cd98bacb9d54b697f79123a30703b0fc78255334634bece305375d553
-  license: ''
-  license_text: ''
-./modules/fnmatch-tests: 
-  copyright: ''
-  hash: f1f0e3226eac0b3a37dee4d71a07da2ff92626f8624f62c30bc87a8440b89d73
-  license: ''
-  license_text: ''
-./modules/fopen: 
-  copyright: ''
-  hash: 8a5299f9f06a0974dcb130118d13d75f799bc88dec305c555f8377830defb508
-  license: ''
-  license_text: ''
-./modules/fopen-safer: 
-  copyright: ''
-  hash: a0147049ddbdeb16bab12139adc0071776f224946d38809be844d58b49d431f1
-  license: ''
-  license_text: ''
-./modules/fopen-safer-tests: 
-  copyright: ''
-  hash: dc277a83bb5ce146a2e11cbc156dfddc32dbff52cd8b297021cb6a80d4f7a528
-  license: ''
-  license_text: ''
-./modules/fopen-tests: 
-  copyright: ''
-  hash: b8e701ab03d66d0e520bb0d086762d7630d8d96852f83e0adbd0d45e6e963490
-  license: ''
-  license_text: ''
-./modules/fpending: 
-  copyright: ''
-  hash: d684f5cdda9195a54b75c10a4f5d148a64746e307331952f462c41d774b8932f
-  license: ''
-  license_text: ''
-./modules/fpending-tests: 
-  copyright: ''
-  hash: 33e2c211f2e4465e2fdf2f98a4db01e20dd74b660a80efc5b0505c9a7a48cff7
-  license: ''
-  license_text: ''
-./modules/fpieee: 
-  copyright: ''
-  hash: 8cb60f5689b0ec473541a5fd46b6eae888b520b2987229f54bb2bda593354997
-  license: ''
-  license_text: ''
-./modules/fprintf-posix: 
-  copyright: ''
-  hash: 0e8edc74b33a75448836b170c653611468d75508e612e6cf1a89be36766a5b0e
-  license: ''
-  license_text: ''
-./modules/fprintf-posix-tests: 
-  copyright: ''
-  hash: b7d20d35ae365add01129799f0ea4624dd63088d7f05fff2874d450da7fcc2a1
-  license: ''
-  license_text: ''
-./modules/fprintftime: 
-  copyright: ''
-  hash: ec79647a5a3f351dea08e3b0eb34f75948e667aefc1523978872395013af5ea1
-  license: ''
-  license_text: ''
-./modules/fpucw: 
-  copyright: ''
-  hash: cb9c36cee25dc22097ff196bf9554e513aa15ad79933fb770df2ea72e1ad8aa6
-  license: ''
-  license_text: ''
-./modules/fpurge: 
-  copyright: ''
-  hash: d0aa7c5bb4a86839ad299aae669da70a029004cb1dba6c4c6d5312e76e0d397e
-  license: ''
-  license_text: ''
-./modules/fpurge-tests: 
-  copyright: ''
-  hash: 506b68bf366951df73dfac741876049410ced6279358421d1070e79502c3bc79
-  license: ''
-  license_text: ''
-./modules/freadable: 
-  copyright: ''
-  hash: e7f8b044bbb4a82a5038701cd79dc2e71e550c100b38109a1b6eeeacfa1048a6
-  license: ''
-  license_text: ''
-./modules/freadable-tests: 
-  copyright: ''
-  hash: bf8d9e390099bf7cc934d5f46eeb1571d7f5828a67cf5f19d05ef705030b6c04
-  license: ''
-  license_text: ''
-./modules/freadahead: 
-  copyright: ''
-  hash: 8aa80d4e554116460ad9a03f5048e76455a286b92bf84a74b0a463da37743258
-  license: ''
-  license_text: ''
-./modules/freadahead-tests: 
-  copyright: ''
-  hash: 6e6907b55b4bbac8ef6d5e361f9584b477f9e5ca9a78fc46f9f8c5020c7ad769
-  license: ''
-  license_text: ''
-./modules/freading: 
-  copyright: ''
-  hash: af1797dd1126b7de25554bfaade8b9757bbc8a89575e3ce7c2a9d3daec6aadab
-  license: ''
-  license_text: ''
-./modules/freading-tests: 
-  copyright: ''
-  hash: 2d0223fbf2144e3ca3be8cdd0e9fe40edf5f4a4018b6b8d8d6759298dfc6695c
-  license: ''
-  license_text: ''
-./modules/freadptr: 
-  copyright: ''
-  hash: a213f41b527e384ad81689daca5e48d04663773f4581806e66a95c05118310ad
-  license: ''
-  license_text: ''
-./modules/freadptr-tests: 
-  copyright: ''
-  hash: c00e4f93c709db743f7509de0edaa02490d4b7eb110a4f5e094c40dca746beae
-  license: ''
-  license_text: ''
-./modules/freadseek: 
-  copyright: ''
-  hash: a7f58f4f4289141733b00a4f19505133af4e243e8c637d95f0086a18f27a4f9c
-  license: ''
-  license_text: ''
-./modules/freadseek-tests: 
-  copyright: ''
-  hash: 0406ba96417e643999dd3b996caabee2f8d3d64c89b2b866528d8edd64de890a
-  license: ''
-  license_text: ''
-./modules/free: 
-  copyright: ''
-  hash: f0cb777264932ef6cf14eb34df90e286a8247d4261f810188ac2fa40c6b4b16f
-  license: ''
-  license_text: ''
-./modules/freopen: 
-  copyright: ''
-  hash: 5b7f5fe7bcca335731c30f8e3c0a17a0caafd988974830b061807dec1162c6e6
-  license: ''
-  license_text: ''
-./modules/freopen-tests: 
-  copyright: ''
-  hash: a070ef14de1186b601222d2463e37f9faf0d056e0a2ba119ddc77f515207d5d0
-  license: ''
-  license_text: ''
-./modules/frexp: 
-  copyright: ''
-  hash: 39e7a2719cf39a87639e8e8996e669c9973876aae2f069bddf10cac94052ef1b
-  license: ''
-  license_text: ''
-./modules/frexp-nolibm: 
-  copyright: ''
-  hash: ab341135186432cc1e01c1a8487fc4ae2aef417065508ebacdf61a7d81af056b
-  license: ''
-  license_text: ''
-./modules/frexp-nolibm-tests: 
-  copyright: ''
-  hash: 16b4652d228cccc301478697cb79b81816ad63d0682431d4434d9c14f4356d29
-  license: ''
-  license_text: ''
-./modules/frexp-tests: 
-  copyright: ''
-  hash: 23879974e1833ea7bcb89162930bae7d15499b746006459c0717ddd5a4e0c381
-  license: ''
-  license_text: ''
-./modules/frexpl: 
-  copyright: ''
-  hash: 2845a6ad936b8833acb450dbb27e3ba6f3fa445f2b139d5bf88cab9fb6364182
-  license: ''
-  license_text: ''
-./modules/frexpl-nolibm: 
-  copyright: ''
-  hash: eab06e92e844865aff4b464b52efaeb735647ff6404caa0db72e0f6693b1a445
-  license: ''
-  license_text: ''
-./modules/frexpl-nolibm-tests: 
-  copyright: ''
-  hash: 035cde6dd59316cb3c9c4a8d069695a15f3ee7e224a2aa88bf0b9e6f40da93f4
-  license: ''
-  license_text: ''
-./modules/frexpl-tests: 
-  copyright: ''
-  hash: 22cb526fadb54dc44cf9d9dd78e4ca78c74a281f009e188b193fa7579f0b80c5
-  license: ''
-  license_text: ''
-./modules/fseek: 
-  copyright: ''
-  hash: 14ff99707be2f34af43810eafa3050ea310e16c16d00c52022305887d69f7786
-  license: ''
-  license_text: ''
-./modules/fseek-tests: 
-  copyright: ''
-  hash: da1dcb42243b0bebc27602fdd4eb16053478ce4b981f2cec59f7a06041889463
-  license: ''
-  license_text: ''
-./modules/fseeko: 
-  copyright: ''
-  hash: 20374741366de2b1711be7e65cf38b3f4a86dc4ddf4df301b936466e8e105405
-  license: ''
-  license_text: ''
-./modules/fseeko-tests: 
-  copyright: ''
-  hash: 80a8724c7f91a71f9453737e6946ece0035315bd3cb84a96ab62034e4c0c1343
-  license: ''
-  license_text: ''
-./modules/fseterr: 
-  copyright: ''
-  hash: fcb748b08901da7a446b79a9f86254068595fcf8826dc7b25ddf390c1e27400a
-  license: ''
-  license_text: ''
-./modules/fseterr-tests: 
-  copyright: ''
-  hash: 20be8da4cb22195a9d6da9320c05f98480505033c51a680682ea6e45453e340e
-  license: ''
-  license_text: ''
-./modules/fstrcmp: 
-  copyright: ''
-  hash: 31dfc3181181df974915d1d808dd218d2a3452fd2ae9dd91dc3b0e9b7e3a7ea0
-  license: ''
-  license_text: ''
-./modules/fstrcmp-tests: 
-  copyright: ''
-  hash: 6ed80e811b2798e5cd6d103d56d5cc66a4c692c73844f918a788ebd85909c2ba
-  license: ''
-  license_text: ''
-./modules/fsusage: 
-  copyright: ''
-  hash: 7fc0e483c1faf66a76e31ec3bac916d7eca518112248f20b59d58c760fc4b800
-  license: ''
-  license_text: ''
-./modules/fsync: 
-  copyright: ''
-  hash: 5f659d0889a35bbdff277c57c588107d1b1f780c6732c6abfc9684ed46572d1f
-  license: ''
-  license_text: ''
-./modules/fsync-tests: 
-  copyright: ''
-  hash: acc6aff61b502aa7194c76c069c2facde874e13a1ee40162c6756d7b5df0bf4f
-  license: ''
-  license_text: ''
-./modules/ftell: 
-  copyright: ''
-  hash: 0d9601e0d8e45c10ed587bf2cd38cb0c22ec8549a553c3e99d72676a8749c2ca
-  license: ''
-  license_text: ''
-./modules/ftell-tests: 
-  copyright: ''
-  hash: 3dc1b538dda9b534d167566e9239f387556d318700c409b69983b2df8fc3c227
-  license: ''
-  license_text: ''
-./modules/ftello: 
-  copyright: ''
-  hash: 85527163d56b3f1d597e261ef126c4051a27a3a342c19867ae69d90237a265a9
-  license: ''
-  license_text: ''
-./modules/ftello-tests: 
-  copyright: ''
-  hash: 1723b1f88c0b8f28f6e5e26570038416957f4be46fa6a4ccae993148be1f9df4
-  license: ''
-  license_text: ''
-./modules/ftruncate: 
-  copyright: ''
-  hash: 237c6c353494466e82513071857c8ceb5abf40a4b27d1f02a4249449281d1e35
-  license: ''
-  license_text: ''
-./modules/fts: 
-  copyright: ''
-  hash: 2a63dea8cfcb015efabdc5e736c265cd483dc6e0a06c45b64d46827e10e3afab
-  license: ''
-  license_text: ''
-./modules/fts-lgpl: 
-  copyright: ''
-  hash: 34e34b30aab7817bb498257e1962cfb69cb8e63baf797fa5f7017d83ea13e3af
-  license: ''
-  license_text: ''
-./modules/full-read: 
-  copyright: ''
-  hash: b18377d607dd24412643717b76e432b961f1bfaa31d8223f65403d0b17e88814
-  license: ''
-  license_text: ''
-./modules/full-write: 
-  copyright: ''
-  hash: d50c81b2b7d6f5072d9de40b9d60eb7454373bc460bcf060a786314166c27232
-  license: ''
-  license_text: ''
-./modules/func: 
-  copyright: ''
-  hash: 0a3f4052d449c4e9d867d95028268301afc428468b59cbca04f73cd0c46d2f1d
-  license: ''
-  license_text: ''
-./modules/func-tests: 
-  copyright: ''
-  hash: 8ca882d9e5c98090ae6f96672e45a62c781a5ea948b5cd7e2eb6161dd87dfed5
-  license: ''
-  license_text: ''
-./modules/fwritable: 
-  copyright: ''
-  hash: 27290a646107b7a84bf4a85d8256d1db1979da7cb3ef077c0b48b00ba3ee225d
-  license: ''
-  license_text: ''
-./modules/fwritable-tests: 
-  copyright: ''
-  hash: 673a45339a269456b4be87f1b8531243d5ce213bac9f3c2ea956d55196798f46
-  license: ''
-  license_text: ''
-./modules/fwriteerror: 
-  copyright: ''
-  hash: 25101629c8009611da56db17042ee4c3909ee912fe12498caf16794d806a385d
-  license: ''
-  license_text: ''
-./modules/fwriting: 
-  copyright: ''
-  hash: fd67d8aa1a4205aafdf573a9b314de4f72c8c9653b3e4f20843e85d5ec622318
-  license: ''
-  license_text: ''
-./modules/fwriting-tests: 
-  copyright: ''
-  hash: 9dee96b81752a45569d40e3756686a51fa1472e87dbc79af43065d207560e91d
-  license: ''
-  license_text: ''
-./modules/gcd: 
-  copyright: ''
-  hash: 89e35483ea23b6fcf6b82e58b2936ee921990cb27991698a912642068c4f6b08
-  license: ''
-  license_text: ''
-./modules/gen-uni-tables: 
-  copyright: ''
-  hash: 1626529b9493ad2507b443eaaa2e11d9f508ddd32b2644797aba9a2bb3a05e2c
-  license: ''
-  license_text: ''
-./modules/gendocs: 
-  copyright: ''
-  hash: 1ae097c885123732a864e6b6aa4c0b718238b0731e9c4cb99d0b7b4f7fdef498
-  license: ''
-  license_text: ''
-./modules/getaddrinfo: 
-  copyright: ''
-  hash: 4ea21d54eba0b7715deb640497d496d33e0b3faac48f48e507a493c8f72584c1
-  license: ''
-  license_text: ''
-./modules/getaddrinfo-tests: 
-  copyright: ''
-  hash: fbf38dc10bea0805abb458e4fe5eb164f912019c8accd318b0602c748807407d
-  license: ''
-  license_text: ''
-./modules/getcwd: 
-  copyright: ''
-  hash: 0cbac895700dae9cb887332e2c1378da64d3f5e28c9e0e7ef14b2d5c518c9b5e
-  license: ''
-  license_text: ''
-./modules/getdate: 
-  copyright: ''
-  hash: 66496eacf4820dd61beaa3d1e2a4d57fff28f6d38e6b705441c557a4fc8cc60d
-  license: ''
-  license_text: ''
-./modules/getdate-tests: 
-  copyright: ''
-  hash: 15d8cd4ed70f84d94b22ff6639250a7be48496ca2906983c0fb435f8c4373950
-  license: ''
-  license_text: ''
-./modules/getdelim: 
-  copyright: ''
-  hash: 640a6ff49c32d137d90060c78b7edb504372b25f548950157312afe2bab20c86
-  license: ''
-  license_text: ''
-./modules/getdelim-tests: 
-  copyright: ''
-  hash: fb92fd69f5ee7168f5999ba87603a67bf6de4f26c4d6b507733116e2c0955bf5
-  license: ''
-  license_text: ''
-./modules/getdomainname: 
-  copyright: ''
-  hash: 15534654e90cc0a05055499b3f184ea83231869579aadee56cef754fc2e84fa3
-  license: ''
-  license_text: ''
-./modules/getdtablesize: 
-  copyright: ''
-  hash: 5bfe587757cde7ec659fe1749bbceb5b633b27c06436652915368bf63e961753
-  license: ''
-  license_text: ''
-./modules/getdtablesize-tests: 
-  copyright: ''
-  hash: d53ad6dc4471cd467019eafff1dbea838798d117d1d76e6255357e81b3225ad7
-  license: ''
-  license_text: ''
-./modules/getgroups: 
-  copyright: ''
-  hash: f3156029a2fc0d378e3b3cc318b1e2189a75270da7e8b4ee6ad35910f1ea485d
-  license: ''
-  license_text: ''
-./modules/gethostname: 
-  copyright: ''
-  hash: 543b0ac4337cbfc07bc611d4cb82d2e0f0b920b1c937b3ac3accec87add8e86e
-  license: ''
-  license_text: ''
-./modules/gethostname-tests: 
-  copyright: ''
-  hash: 87a54a8e6d2660412dd2dc302b1af8f0abe2ae277c0a743d30b0a06a6d0243c0
-  license: ''
-  license_text: ''
-./modules/gethrxtime: 
-  copyright: ''
-  hash: 18f21ea7bee7516934107c1bf3ff2f538b8061161336d749efbb9b9edc71dd11
-  license: ''
-  license_text: ''
-./modules/getline: 
-  copyright: ''
-  hash: 54bc2f289284dc9eb1c9b2084b22a34b488cc1a791918ac6c3e516d279aac1af
-  license: ''
-  license_text: ''
-./modules/getline-tests: 
-  copyright: ''
-  hash: 4fcb95fd42d4d58d8d88a2a3b1eeace1ec0a23bbc3f1d51fbd0498f265907c52
-  license: ''
-  license_text: ''
-./modules/getloadavg: 
-  copyright: ''
-  hash: 29a326552ce7dd21e831978b8f5a6a6a60e97d67f0fa53c13ba14e472042aab4
-  license: ''
-  license_text: ''
-./modules/getlogin_r: 
-  copyright: ''
-  hash: d6b9543a779b4b7395fdb42613d09962875c10531e9d595979ff6805094bfd66
-  license: ''
-  license_text: ''
-./modules/getndelim2: 
-  copyright: ''
-  hash: 20aebd94a8d4470c01777cf8011c75830bfffcd51bb6e252615a5fe1ed516868
-  license: ''
-  license_text: ''
-./modules/getndelim2-tests: 
-  copyright: ''
-  hash: 5c358342a8b0dd601faad3103e89f3112ae745746fe941fd6e811747b6004d84
-  license: ''
-  license_text: ''
-./modules/getnline: 
-  copyright: ''
-  hash: 1e2fa5f2d49e70cfb100516d860fa548e5d6d2fbd664ade40f721316e392669d
-  license: ''
-  license_text: ''
-./modules/getopt: 
-  copyright: ''
-  hash: 6aa942ee1376a669c17faafaa46854e797d37d5ce008c5cb2bbdb5353ae6c3dd
-  license: ''
-  license_text: ''
-./modules/getopt-gnu: 
-  copyright: ''
-  hash: c0a2faa69abd2d01ab9effcb216967e5c6a95e9c1ef3b63af3e33954a427ef3e
-  license: ''
-  license_text: ''
-./modules/getopt-posix: 
-  copyright: ''
-  hash: 94023aa61068c90a835f8d1f5f01d4f063115111e3361f0eee6802469a986327
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/getopt-posix-tests: 
-  copyright: ''
-  hash: 2e1c366e580bb818524a0e2aa2a4336889d8f55d5efac62b93e3b797707b3573
-  license: ''
-  license_text: ''
-./modules/getpagesize: 
-  copyright: ''
-  hash: 28bd4989723dbfb42bc856a0d722e6f84efd596d196c2394f7e4b552acdfd14a
-  license: ''
-  license_text: ''
-./modules/getpass: 
-  copyright: ''
-  hash: a137642ab40bae78516bc20e1bc8a9f4607bab8fb3b003eebe021c2185d4ae8a
-  license: ''
-  license_text: ''
-./modules/getpass-gnu: 
-  copyright: ''
-  hash: 898184539f39b4ae274508a133bfbdd661f07f29a14ae53170b0bca87d4e6a69
-  license: ''
-  license_text: ''
-./modules/getpeername: 
-  copyright: ''
-  hash: 4eb79ef9a5dc3f4e01fc808ea788ab8b9e5969dc08afd77028608efe835ee2c7
-  license: ''
-  license_text: ''
-./modules/getsockname: 
-  copyright: ''
-  hash: 0d541f72e064879de7bd164c2a7a507f9c77946177e0b9ca1231221d52eec6d2
-  license: ''
-  license_text: ''
-./modules/getsockopt: 
-  copyright: ''
-  hash: 729578766108e66027f2ab148d7a3e857afd416f25b3a55f6817e1144e1a20df
-  license: ''
-  license_text: ''
-./modules/getsubopt: 
-  copyright: ''
-  hash: 7707000a7061f9d84f6fca75bd6d1a14e3311454432deb0f7a23aa49e24ff7ba
-  license: ''
-  license_text: ''
-./modules/gettext: 
-  copyright: ''
-  hash: 47f3c83702b37039afb7e053cd3fb226a906c664ddcd54163d5f2d69008699cc
-  license: ''
-  license_text: ''
-./modules/gettext-h: 
-  copyright: ''
-  hash: 61b2609fc90e17305b778a6d0772d6c6c678de55b08a136f2142d24b254b2211
-  license: ''
-  license_text: ''
-./modules/gettime: 
-  copyright: ''
-  hash: 97029b8cd41ef19139e3fa0b0e2f06c85bff0e938fdab92bf14120708d06b5ce
-  license: ''
-  license_text: ''
-./modules/gettimeofday: 
-  copyright: ''
-  hash: c96253a3eef177db03721e4219d75b49cfe5fc500875eba69bb58f213768e6bb
-  license: ''
-  license_text: ''
-./modules/gettimeofday-tests: 
-  copyright: ''
-  hash: 01694f0fd480b5922065b6898273f8dc92362de5d40840e7b678b4aab0d1d88c
-  license: ''
-  license_text: ''
-./modules/getugroups: 
-  copyright: ''
-  hash: ee0e889db47e3653b6b31a320a136819f2640b1cec2ad38bda03493f16b627b9
-  license: ''
-  license_text: ''
-./modules/getusershell: 
-  copyright: ''
-  hash: adb692a9a12f6f1bd33111100461dbe9b8617f1de6af4088ea9f859dc308f5f2
-  license: ''
-  license_text: ''
-./modules/git-merge-changelog: 
-  copyright: ''
-  hash: 70dbf2d3cea053c673d583b8029bb6b4d0fe6b3440168b6dae108dff288653ef
-  license: ''
-  license_text: ''
-./modules/git-version-gen: 
-  copyright: ''
-  hash: 8a867c8b391fa4aa335accd6237237d28f3411883e941fafaab593ae9ba3ba95
-  license: ''
-  license_text: ''
-./modules/gitlog-to-changelog: 
-  copyright: ''
-  hash: 40314d9a4353af85f7350b770b6d22f67dd744d731dffc964452e912e34976c8
-  license: ''
-  license_text: ''
-./modules/glob: 
-  copyright: ''
-  hash: 2d56c6d7c2a3a83baeeeda9b07803cef301fc1446644ada3a5cd3bde2aae3389
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/glob-tests: 
-  copyright: ''
-  hash: 03cf87f1618dbf68f3f418df7389c364bb5f9a161903646c1105f37cdc0dd73e
-  license: ''
-  license_text: ''
-./modules/gnu-make: 
-  copyright: ''
-  hash: 3dff863165b8f67b1225f41b6069edf968f9ab592ccf7c5a976e5e2d263d93ff
-  license: ''
-  license_text: ''
-./modules/gnumakefile: 
-  copyright: ''
-  hash: 9a8587c6fbb528a86d0d5d078c44d837257a7ba2f6b112640afeb8b0174f1ebb
-  license: ''
-  license_text: ''
-./modules/gnupload: 
-  copyright: ''
-  hash: 8df2cce6ae5dba597214b339e17c77042936f83cc71b62ff0d031dc35b4881b7
-  license: ''
-  license_text: ''
-./modules/gperf: 
-  copyright: ''
-  hash: e57364714a0eb84488c7de1cff7c1f34f6e4445ab1d92bafb027cce5e01d23e4
-  license: ''
-  license_text: ''
-./modules/gpl-2.0: 
-  copyright: ''
-  hash: 45d9ecfdd9adc42b8d1d9e97285aa6a52581209afe1e8cd558ff4d40381b8c39
-  license: ''
-  license_text: ''
-./modules/gpl-3.0: 
-  copyright: ''
-  hash: 9c69fa69c8530a67e138f906d088373b632397f483ac602d98bc27784b2f1f82
-  license: ''
-  license_text: ''
-./modules/group-member: 
-  copyright: ''
-  hash: 287c1e70af2c1af183b00ed4c9278b1d6e44f2058e1546594e84d37fcfa90f0b
-  license: ''
-  license_text: ''
-./modules/hard-locale: 
-  copyright: ''
-  hash: 4af0609327db334b7943c3c1ca7f257f1a379b86457b675458b26bc5206c3821
-  license: ''
-  license_text: ''
-./modules/hash: 
-  copyright: ''
-  hash: 7c9cf59a3ecec8212435cdc2bf39e8a85262ffc03898f5c0df375bbc2b1284c1
-  license: ''
-  license_text: ''
-./modules/hash-pjw: 
-  copyright: ''
-  hash: b2fc8d2ab52921c2bb7d2fdeb7d7b110701dfc8928cc024b7b24d795f3821609
-  license: ''
-  license_text: ''
-./modules/hash-tests: 
-  copyright: ''
-  hash: 69cca68dc2b29ee3185bc8715e8098b6de1256a1e04cc0cf0ce467e4bf9df5df
-  license: ''
-  license_text: ''
-./modules/hash-triple: 
-  copyright: ''
-  hash: 8387198a97ad74f6d110473b7dc339d868521d4d381f04848d764f34fc1a3b76
-  license: ''
-  license_text: ''
-./modules/havelib: 
-  copyright: ''
-  hash: 6ed2bd7f292a1505559b6970cda7b5cdddfb2eaf9bcf4bdbf3584e31a3792a58
-  license: ''
-  license_text: ''
-./modules/host-os: 
-  copyright: ''
-  hash: 2ca8eee1360f44a0ca2e082deda103768cfd5de28df764734fa877e8831081fd
-  license: ''
-  license_text: ''
-./modules/hostent: 
-  copyright: ''
-  hash: 3605cf4dd9db40c930bb2be7254eb94f4d040781caad218ee4cef1db8d023735
-  license: ''
-  license_text: ''
-./modules/human: 
-  copyright: ''
-  hash: 12a714241c94ed4db935ade4136e5d6abaccc1cc7a76d5837593b92a0b481ac1
-  license: ''
-  license_text: ''
-./modules/i-ring: 
-  copyright: ''
-  hash: a2025a042f43e6369d98f1ef2285c0b3f96145160320eb850fb291194b41fa52
-  license: ''
-  license_text: ''
-./modules/i-ring-tests: 
-  copyright: ''
-  hash: aa8013e4bebb1450557c85fe8642779dbcb66a450baa27b4fc8cb05bea82378f
-  license: ''
-  license_text: ''
-./modules/iconv: 
-  copyright: ''
-  hash: 5743f28fcc9376b84484b295512adbade131b0e3f3744e010a4c5e4bb968904a
-  license: ''
-  license_text: ''
-./modules/iconv-tests: 
-  copyright: ''
-  hash: e3ee6183c8df1e98e44f8119d0bf86f7c670c9c6f69e63f6f6a8dccabe4397d8
-  license: ''
-  license_text: ''
-./modules/iconv_open: 
-  copyright: ''
-  hash: d282649433e90da2efd6101790373d8201a650b04610e73e92494812560dc327
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/iconv_open-utf: 
-  copyright: ''
-  hash: 3d590e3b012d3ffd95d6d0ba4d019a1d1688cc912ffc3320459f6d40a5eaea71
-  license: ''
-  license_text: ''
-./modules/iconv_open-utf-tests: 
-  copyright: ''
-  hash: fd21ad8275735d396a0886255e68ec5bc826a64765d295930d87c8f160fe981a
-  license: ''
-  license_text: ''
-./modules/idcache: 
-  copyright: ''
-  hash: bf6377780d75244cd590fd16245d7d0e0f2af3024a11a6672e463153aaae8774
-  license: ''
-  license_text: ''
-./modules/idpriv-drop: 
-  copyright: ''
-  hash: 4fbc061a7277c7ef121e7d555af411b28ee7a644d02aabadb9781c68258a8cbc
-  license: ''
-  license_text: ''
-./modules/idpriv-drop-tests: 
-  copyright: ''
-  hash: c1ca26e1f33641398eb6a67728afe9bfff3cd2e536d95ed53389915b437d9616
-  license: ''
-  license_text: ''
-./modules/idpriv-droptemp: 
-  copyright: ''
-  hash: 2b386ffd9656c15e6ca299823450f14228d48c50394eabae8178bb8145deff00
-  license: ''
-  license_text: ''
-./modules/idpriv-droptemp-tests: 
-  copyright: ''
-  hash: 856200b1bc5faaca7ddd22a8e9bc12473c9ef21064495d4c2f199a9708dc077b
-  license: ''
-  license_text: ''
-./modules/ignore-value: 
-  copyright: ''
-  hash: 01cb567b7c37a63b751b0db8e39d10e42d43586122c25c4cda1ad039c4c6d651
-  license: ''
-  license_text: ''
-./modules/imaxabs: 
-  copyright: ''
-  hash: 1ef4550ca6ac447f4c3bb0caadccb1be0e5b7c34c154e8af77426782ddccde1e
-  license: ''
-  license_text: ''
-./modules/imaxdiv: 
-  copyright: ''
-  hash: e3737ab82c6a7de4832911f1f20689d2cf1b8b7bc237ff6f4edad45cd3d6bc5b
-  license: ''
-  license_text: ''
-./modules/include_next: 
-  copyright: ''
-  hash: ef238434e1f1c4b19bd45c36eb834acd1326e8f11228964e90c4185f96edab3b
-  license: ''
-  license_text: ''
-./modules/inet_ntop: 
-  copyright: ''
-  hash: affaffc307885f4e72b74accff106662b2269fc3bba510bb1994fe96aba2ee0f
-  license: ''
-  license_text: ''
-./modules/inet_pton: 
-  copyright: ''
-  hash: fb889c5fd307ac4731674ae2fbe8491cbaad85cc2c02459c9da1a46b3affd318
-  license: ''
-  license_text: ''
-./modules/inline: 
-  copyright: ''
-  hash: e68f0e9aa0992be4b2742b86425384bb19370570a9334cbc5d20af92d0f69867
-  license: ''
-  license_text: ''
-./modules/intprops: 
-  copyright: ''
-  hash: 4dd52de1e4ccde9d76e17816fd1100fa39b248d621739e83d7269bc51e28b57b
-  license: ''
-  license_text: ''
-./modules/inttostr: 
-  copyright: ''
-  hash: 3111f9fbb7648553c15238818f0777b92a1773f53750df736f1020e2a26c08ba
-  license: ''
-  license_text: ''
-./modules/inttypes: 
-  copyright: ''
-  hash: c68d6d1a790a0e89bf3525b8e87eb5b7d024b7325bcff1b9e1a14e1b14eecf31
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/inttypes-tests: 
-  copyright: ''
-  hash: 5024693e8f276834d00e0c1e7ea1ef17f0d4395ff3b99ca3ae861a33b0259e37
-  license: ''
-  license_text: ''
-./modules/ioctl: 
-  copyright: ''
-  hash: 58f39f944519c79d384684a2023c24326f00214fc07e0ab0e4ecad190d5e0a74
-  license: ''
-  license_text: ''
-./modules/isapipe: 
-  copyright: ''
-  hash: 0b7ef6ed36cd605fb0242207f885781f79bc874d42ede4e7d43af296730a71bf
-  license: ''
-  license_text: ''
-./modules/isdir: 
-  copyright: ''
-  hash: 157e9ec992049c112ab1081cc76dabf014543daf852c04bb89d138ffbe1068db
-  license: ''
-  license_text: ''
-./modules/isfinite: 
-  copyright: ''
-  hash: cf51321eab12944c643969aba11bcc75e369c30307cfa076fec84a54a5bc8a27
-  license: ''
-  license_text: ''
-./modules/isfinite-tests: 
-  copyright: ''
-  hash: 428ffa7db1bb8ef1427e4c71efebfcc002ba8226f9bdeebe6e5983570aafd71c
-  license: ''
-  license_text: ''
-./modules/isinf: 
-  copyright: ''
-  hash: 1be481512f8b234cf8d794a766c3554821bcdb25566d074356c6db939c055e4c
-  license: ''
-  license_text: ''
-./modules/isinf-tests: 
-  copyright: ''
-  hash: 43c3d0eede218644738b9102bfa574968508dcf376d8cd878c80f7b0e7c102d2
-  license: ''
-  license_text: ''
-./modules/isnan: 
-  copyright: ''
-  hash: d96619abe51c34797cfcc4a00d89e66dd2f3723beeb57a02a5a7c0893938c46c
-  license: ''
-  license_text: ''
-./modules/isnan-tests: 
-  copyright: ''
-  hash: 323cc464c9a21025066cb117c8fcbd7bcd6247841219f9002be23284275cd344
-  license: ''
-  license_text: ''
-./modules/isnand: 
-  copyright: ''
-  hash: 890d77c9c2ea51fe7e2c36571771971507c53a94eccb394ac84bd0bb5c967493
-  license: ''
-  license_text: ''
-./modules/isnand-nolibm: 
-  copyright: ''
-  hash: 2f2cd905c0df813b2dad1ab5ec94cd0bf3ac620899161883844620e919dd23ad
-  license: ''
-  license_text: ''
-./modules/isnand-nolibm-tests: 
-  copyright: ''
-  hash: 9d7ab59e02aa291a0beb916911d9030dcf4095d8ee1e8871b8cba14ce028acbc
-  license: ''
-  license_text: ''
-./modules/isnand-tests: 
-  copyright: ''
-  hash: e2bbe6cbf7399d4890b3bb3906f0867d6bfd7f3eef57a8a195051eae59d69cfc
-  license: ''
-  license_text: ''
-./modules/isnanf: 
-  copyright: ''
-  hash: 85d8cebc9e5c0aa2bd4b68ce6612f8749215483a919a74de686fed1d3586df36
-  license: ''
-  license_text: ''
-./modules/isnanf-nolibm: 
-  copyright: ''
-  hash: f97947dc0edbd13b8d64a0b5b7a384fcbd2fc2258160d87f3b67589da6e401e9
-  license: ''
-  license_text: ''
-./modules/isnanf-nolibm-tests: 
-  copyright: ''
-  hash: 21a8932e3abc2149b5fffebf3051a0f125e57ebc47b10d4acbdca78994c93d4b
-  license: ''
-  license_text: ''
-./modules/isnanf-tests: 
-  copyright: ''
-  hash: ae8f63af140ced8d91af05afd8e9069faf676f5dbfdd979cc1fe0cf3abbd975a
-  license: ''
-  license_text: ''
-./modules/isnanl: 
-  copyright: ''
-  hash: 70b7c907aee78531a9a20fcd179bd294a57a33e4e9b58ca8da9faf56e330b973
-  license: ''
-  license_text: ''
-./modules/isnanl-nolibm: 
-  copyright: ''
-  hash: ff91e53b92af8ddf541f10e179d0c519f9a527a808361f95bdfd8d30de7b8e27
-  license: ''
-  license_text: ''
-./modules/isnanl-nolibm-tests: 
-  copyright: ''
-  hash: a711622ef8634e0ea0695340ae1eb040c290a40df106b0a777be962d6c1ac724
-  license: ''
-  license_text: ''
-./modules/isnanl-tests: 
-  copyright: ''
-  hash: 38bbc53b8d20ba40b2b33ba9f5b5c9655dc9cfb9d39a72c9e537462c742253fa
-  license: ''
-  license_text: ''
-./modules/javacomp: 
-  copyright: ''
-  hash: f5d2862a42c8dc73c5c6346d7028b13772b1e003a92b0ee53f3d346f3c5ee05d
-  license: ''
-  license_text: ''
-./modules/javacomp-script: 
-  copyright: ''
-  hash: 8f0c47a545c9b5fda1c11fc817ebb2606b6b4889188ceff9ea3ee56b7917c068
-  license: ''
-  license_text: ''
-./modules/javaexec: 
-  copyright: ''
-  hash: a045d08a3d42fe62932696f986ed8e27cf2f86a37a136f0e99ab17bdca35caf1
-  license: ''
-  license_text: ''
-./modules/javaexec-script: 
-  copyright: ''
-  hash: 91380c5aae5cf1ecbdecf6718ae605ce7fdf877bc69cc4ade365d15d87b58fbc
-  license: ''
-  license_text: ''
-./modules/javaversion: 
-  copyright: ''
-  hash: 001497a574e6daee08459695891485e8d2b842b95151bf7940609e0cd6406aef
-  license: ''
-  license_text: ''
-./modules/lchmod: 
-  copyright: ''
-  hash: c5ff9a1c59876082ed7a323077f4b0c70f0718e16c9df8a5e516b45a46232957
-  license: ''
-  license_text: ''
-./modules/lchown: 
-  copyright: ''
-  hash: 73d784fb6f58cd6916eaba7ad37343c2ab0374c1d5c97045996bb25d0ab4b112
-  license: ''
-  license_text: ''
-./modules/ldd: 
-  copyright: ''
-  hash: a95b7d506da9ac5c6c5381302daa766f328bc1e539649b66ef269f834d6144c0
-  license: ''
-  license_text: ''
-./modules/ldexpl: 
-  copyright: ''
-  hash: 1eecef8e14bf233071ac5095363e0eb8461cfa6a637ff22947dbf46c8bb2edb1
-  license: ''
-  license_text: ''
-./modules/ldexpl-tests: 
-  copyright: ''
-  hash: 375f2b202d4dd039a51fcc894830f31e1ad5e73a9c275c866b1b9a9b50c78d21
-  license: ''
-  license_text: ''
-./modules/lgpl-2.1: 
-  copyright: ''
-  hash: a9edb785a05a6b1ec373a751672098124e43569e0c1d21fe88c96dfee8dee24a
-  license: ''
-  license_text: ''
-./modules/lib-ignore: 
-  copyright: ''
-  hash: f0ef812765bcee8aaebbd26983e651cb58635ffe415701154c7717d07cdd1fff
-  license: ''
-  license_text: ''
-./modules/lib-msvc-compat: 
-  copyright: ''
-  hash: 78f5b89a071a2a7756ad84e124da6fb544db5927cd67a327546d426c3fe7da42
-  license: ''
-  license_text: ''
-./modules/lib-symbol-versions: 
-  copyright: ''
-  hash: 3bd963fe132714834fc7b6cd38e87a0c1307f5e55c2a8d793e9aa727bddf00c4
-  license: ''
-  license_text: ''
-./modules/lib-symbol-visibility: 
-  copyright: ''
-  hash: 09316bfaa21a902c0c723051b504b9cb539fdf667a4c58a97d5f24b0255988ca
-  license: ''
-  license_text: ''
-./modules/libsigsegv: 
-  copyright: ''
-  hash: 69198c8c2967b4b257bb2a7e1fb49dc825a90c620b2af5c556e1ba2eceb813a0
-  license: ''
-  license_text: ''
-./modules/libunistring: 
-  copyright: ''
-  hash: 6d47f24075b006c293890df3354724bb1a1b1e5236f271d928e663274e9a185d
-  license: ''
-  license_text: ''
-./modules/linebuffer: 
-  copyright: ''
-  hash: af6d4721c553c8a0dce296627dd9dee715308c58ec0e91d885048328638731b3
-  license: ''
-  license_text: ''
-./modules/link: 
-  copyright: ''
-  hash: d76ac610c3bb48884f7f7c21365f236d63d4a3f2bb95a5d61dfe26c49d6a5522
-  license: ''
-  license_text: ''
-./modules/link-follow: 
-  copyright: ''
-  hash: c2b95973ab0851d36d4937aa53eeb78f89cb1f52e3561608754d5760f2d943fb
-  license: ''
-  license_text: ''
-./modules/link-tests: 
-  copyright: ''
-  hash: 60b43b16315c847cb76698db0d6fedd157a90ecb34c6cd3040e8c7163071273b
-  license: ''
-  license_text: ''
-./modules/link-warning: 
-  copyright: ''
-  hash: 2d0b021e00c5fcfae3e0e7b87147045e3520cba21361bf6da6f8cebfb06619f2
-  license: ''
-  license_text: ''
-./modules/linked-list: 
-  copyright: ''
-  hash: e73533e72bcfefd003bf35ed67272bf03cec4eaa0eb607d05d4f545f45c42d3a
-  license: ''
-  license_text: ''
-./modules/linked-list-tests: 
-  copyright: ''
-  hash: e3f1ae2882d1cc5a5421d7675fb7d7bc459998a8cb506f17e49d3fdf6fa1ba1e
-  license: ''
-  license_text: ''
-./modules/linkedhash-list: 
-  copyright: ''
-  hash: d872289c85eb9f6b0928256d67b8aa85051f16f378aa3a05158fcff2f0e98128
-  license: ''
-  license_text: ''
-./modules/linkedhash-list-tests: 
-  copyright: ''
-  hash: 7517e9fce7957429ee92772cb67d2ad4f33a1a88f15069ffa311da6266bc80fa
-  license: ''
-  license_text: ''
-./modules/list: 
-  copyright: ''
-  hash: 8c081d10c9dafc22e2969bb8017117459848426a43b7920631c075cf2187fdb7
-  license: ''
-  license_text: ''
-./modules/listen: 
-  copyright: ''
-  hash: 87d7a460a8afb814291b434acb8c112cbc16135dd458fbe865e80210fd2fab9f
-  license: ''
-  license_text: ''
-./modules/localcharset: 
-  copyright: ''
-  hash: 9a7795a7bbc7dc93ee9b150a7e5e11bf1f1b65c6ffe35a782c5a4ef35da5d5b0
-  license: ''
-  license_text: ''
-./modules/locale: 
-  copyright: ''
-  hash: 62640c673f040c8d363336c9bb4943a751e0bb6b84307665771edd7148702d82
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/locale-tests: 
-  copyright: ''
-  hash: 8c15ac5661701bb94a2899da41deb74e7b266eaee1f143b8f2b3b00b3dbe10cd
-  license: ''
-  license_text: ''
-./modules/localename: 
-  copyright: ''
-  hash: 5d708db5de4ea776bc0e5fe18ce3af0f2a882f5d46a2da433aab650a21ea5166
-  license: ''
-  license_text: ''
-./modules/localename-tests: 
-  copyright: ''
-  hash: 90c131b8da15729f87254795a59b6a9cd58bba25c26337369e8ade8720c4681d
-  license: ''
-  license_text: ''
-./modules/lock: 
-  copyright: ''
-  hash: d32728a4a53a05cc2adb5dde77071e3ca8e031217e8f5f498ef6cd08a2df45d2
-  license: ''
-  license_text: ''
-./modules/lock-tests: 
-  copyright: ''
-  hash: c53261432275415bd92f0a7f34342121673e632e6c06232fdf77e83416df854b
-  license: ''
-  license_text: ''
-./modules/long-options: 
-  copyright: ''
-  hash: 658d3bb72c97742fea053bf81913c1670b2596b5edfaeda39e36a45365453617
-  license: ''
-  license_text: ''
-./modules/longlong: 
-  copyright: ''
-  hash: 85d50b391ae59405db94f0146e7da8d3626ee7db8665b3924ee41f024cd68b20
-  license: ''
-  license_text: ''
-./modules/lseek: 
-  copyright: ''
-  hash: b40cd1f1ad9d544c121fd5aed87bce564f227a9bc319129683186851cf381549
-  license: ''
-  license_text: ''
-./modules/lseek-tests: 
-  copyright: ''
-  hash: 76cdab40960f704471988f57f8823d4597fc1d641d6f13ad1dfddab6e0ab3060
-  license: ''
-  license_text: ''
-./modules/lstat: 
-  copyright: ''
-  hash: 204ca5f19461cd6e2d1b53f28f85f6f1a64e53a603cb9c38ee18603d6a4c522b
-  license: ''
-  license_text: ''
-./modules/lstat-tests: 
-  copyright: ''
-  hash: ce99db29f0af89b22f904eb44c8e0e9f398a40307993cabf8613800d2e7fa435
-  license: ''
-  license_text: ''
-./modules/maintainer-makefile: 
-  copyright: ''
-  hash: 60705adb407b7f67ba3ebfe3969da4cce7d40eb61c37e1662410706075c15ca7
-  license: ''
-  license_text: ''
-./modules/malloc: 
-  copyright: ''
-  hash: ade45be34202b5963d4753bc6e04c9ac17f54cbebfdae9ae552c85307937edc4
-  license: ''
-  license_text: ''
-./modules/malloc-posix: 
-  copyright: ''
-  hash: 0ebfd6b7bcb239f9d43efe86dbe2080ae9ea23b3a1d344f9133e6a47f37be644
-  license: ''
-  license_text: ''
-./modules/malloca: 
-  copyright: ''
-  hash: 95d9a7ade8a1341ea736d6554581001df279e83d97ac38aa9310b9e0540ab590
-  license: ''
-  license_text: ''
-./modules/malloca-tests: 
-  copyright: ''
-  hash: 7ee05e7d3ccd849878c85347bd1b790c5b3e486bafe6fddd5af01ede76de5618
-  license: ''
-  license_text: ''
-./modules/manywarnings: 
-  copyright: ''
-  hash: 304df00b2664848d0ceb677623e4a5bd0d53713f61b7fffda64701b7b7af69a8
-  license: ''
-  license_text: ''
-./modules/math: 
-  copyright: ''
-  hash: 8b1b40e4cc6780fb6f1f06dea275392ac8b7c12f6048cbc0a103a91742f42eff
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/math-tests: 
-  copyright: ''
-  hash: 2ac6678a1c6562309c662ba89b24eabbbfb6c95872259f43475875770df31822
-  license: ''
-  license_text: ''
-./modules/mathl: 
-  copyright: ''
-  hash: 55e37b79ace2edb7f8bff4005f788d346d2d19580dba0a676d5c1ba235a2f7a2
-  license: ''
-  license_text: ''
-./modules/mbchar: 
-  copyright: ''
-  hash: 8e44c7bc26640724217c9e83cacb0f53e18ba447a7a5b5715699675b80129b89
-  license: ''
-  license_text: ''
-./modules/mbfile: 
-  copyright: ''
-  hash: 589ec474965c06bdcf55767d77aff0c1f8929bd6dac28640abf6e3069950d270
-  license: ''
-  license_text: ''
-./modules/mbiter: 
-  copyright: ''
-  hash: 1bc042309e60126c4f355a2c66e24f82dddf5693e1801ccaf3af73d4e3af54fb
-  license: ''
-  license_text: ''
-./modules/mbmemcasecmp: 
-  copyright: ''
-  hash: 274d0d3204c470cc4af97e2d58bd63eba9152774fbc4e5583c95f36beaaa590e
-  license: ''
-  license_text: ''
-./modules/mbmemcasecmp-tests: 
-  copyright: ''
-  hash: e0955681a6f452ae84df04c93288f73e602601d5f17268d062a2790a580fd148
-  license: ''
-  license_text: ''
-./modules/mbmemcasecoll: 
-  copyright: ''
-  hash: 9c1c9eb9be6af270534bc8cfa727ae2c6d60851192fff322e4cc09e6a3589897
-  license: ''
-  license_text: ''
-./modules/mbmemcasecoll-tests: 
-  copyright: ''
-  hash: 99f2223fb2ddd23bed09476c7d3ff244787c97fb0b2f7e9272d4ac9d7d5fcb6c
-  license: ''
-  license_text: ''
-./modules/mbrlen: 
-  copyright: ''
-  hash: a4fab82598b347aa8dcfe636d8e69bb4ae3dec7c9d6156573e4bf18dd0704733
-  license: ''
-  license_text: ''
-./modules/mbrtowc: 
-  copyright: ''
-  hash: 9e506818e3eaa2fb67a7bb992ac88548f4c0fe2059f090dac942addb5ee67cbf
-  license: ''
-  license_text: ''
-./modules/mbrtowc-tests: 
-  copyright: ''
-  hash: 67740e495f650326d2e4197eaa74148cf73c74c8bcbe5d10a1a58c95fa0d1711
-  license: ''
-  license_text: ''
-./modules/mbscasecmp: 
-  copyright: ''
-  hash: 8a6d10dfad56dd17935f68ab1c85639e39fb3108171e80325ca5fdde464385bd
-  license: ''
-  license_text: ''
-./modules/mbscasecmp-tests: 
-  copyright: ''
-  hash: a8656b8257b5f07824dd94d4816aae9e1ac35774c23d356c070accfe077bd43f
-  license: ''
-  license_text: ''
-./modules/mbscasestr: 
-  copyright: ''
-  hash: 3c0467e82de3159f29fb87f840e6025b766c0b8a3b49a439a11c76d72f13c84e
-  license: ''
-  license_text: ''
-./modules/mbscasestr-tests: 
-  copyright: ''
-  hash: 9ab8f2fe62f4f0f100ab7833c40228d531354d181fa7dcc24f1b45f99854efbf
-  license: ''
-  license_text: ''
-./modules/mbschr: 
-  copyright: ''
-  hash: 91f2c8d1b40a5c710fdefd333ee7f4cb0740e66bd907d64531689e910a8a8a4f
-  license: ''
-  license_text: ''
-./modules/mbschr-tests: 
-  copyright: ''
-  hash: b76887bc9b1e8cf5ec85061ed66d3470216d1fccf2b9cc5c4c994c1b84dc5a0a
-  license: ''
-  license_text: ''
-./modules/mbscspn: 
-  copyright: ''
-  hash: e78fd011a2739814457f94fd0f0d2f7a23668261b0191c9df1ddd805dc92b8d7
-  license: ''
-  license_text: ''
-./modules/mbscspn-tests: 
-  copyright: ''
-  hash: f121b6d1a37feba93beb5133e217ac6b67d27f313b21c4119af192b69f8f07f9
-  license: ''
-  license_text: ''
-./modules/mbsinit: 
-  copyright: ''
-  hash: 08b00e28182c38b24e4a2889d3ecbec2186c517cb1e395b18713aeae478f6c44
-  license: ''
-  license_text: ''
-./modules/mbsinit-tests: 
-  copyright: ''
-  hash: e188f172ffdb358f622dce3247ddaf5bb6444765e8badabf275ca0e937b9bc73
-  license: ''
-  license_text: ''
-./modules/mbslen: 
-  copyright: ''
-  hash: ce07548e22ef15c3699e1d2dee8814adad7e686310d0c9cd971c1b81c36d0bb1
-  license: ''
-  license_text: ''
-./modules/mbsncasecmp: 
-  copyright: ''
-  hash: c959211b75e589812f47efa10d008c267a4348f6411809de868643cfcd695be0
-  license: ''
-  license_text: ''
-./modules/mbsncasecmp-tests: 
-  copyright: ''
-  hash: 4bc053604e77dae389a8419bb6c46d5f4cf647a24be4056db9e97977e242f5a5
-  license: ''
-  license_text: ''
-./modules/mbsnlen: 
-  copyright: ''
-  hash: 0faa03256e0848962c160de03ea06abadcf015959e0a65c519719cac4bf0c248
-  license: ''
-  license_text: ''
-./modules/mbsnrtowcs: 
-  copyright: ''
-  hash: 6757ad3daecd36e029b02f4980714e54cb1a1e1e9e729e287734008d50497f3b
-  license: ''
-  license_text: ''
-./modules/mbsnrtowcs-tests: 
-  copyright: ''
-  hash: 5f0b2a519e2883b9c0bc611792138db9c55ba5be0ca36511d32a57af47542f27
-  license: ''
-  license_text: ''
-./modules/mbspbrk: 
-  copyright: ''
-  hash: 1517c4cf7fbb86c8797ebf6b3e8b6bfe3d8d32b3e32797851b3e494de634299d
-  license: ''
-  license_text: ''
-./modules/mbspbrk-tests: 
-  copyright: ''
-  hash: ed3bb7da990ad29ce9448efc3a064056e4c94daf64bdfab8cb1c5ece97e01836
-  license: ''
-  license_text: ''
-./modules/mbspcasecmp: 
-  copyright: ''
-  hash: 119cda40d231594af07e07f9c6c3804942883e3338aa30774935e98f91bb0fea
-  license: ''
-  license_text: ''
-./modules/mbspcasecmp-tests: 
-  copyright: ''
-  hash: acf9e1a6a2b4cb0ecce88f716874128337fcfc3735d850a7ac6cf842e6ac2c23
-  license: ''
-  license_text: ''
-./modules/mbsrchr: 
-  copyright: ''
-  hash: 2aabb1c1474945811f42cbc76d095c8e20c4fe3d2f52828451f77f9c0cf7fdbe
-  license: ''
-  license_text: ''
-./modules/mbsrchr-tests: 
-  copyright: ''
-  hash: 3f40a8b53bb79fc02f4764430d29388fbeb4ec6252c5b7cb327ab5c8ba4955e5
-  license: ''
-  license_text: ''
-./modules/mbsrtowcs: 
-  copyright: ''
-  hash: 6fd1e1c2a88e142140deefbbb735df3221bc8881b6e4817551195824fd01ffab
-  license: ''
-  license_text: ''
-./modules/mbsrtowcs-tests: 
-  copyright: ''
-  hash: d761815c50f990e6fd3900790cbc3426dfb224be4ca415263da9e913d87efabb
-  license: ''
-  license_text: ''
-./modules/mbssep: 
-  copyright: ''
-  hash: 9d560680605f1f24bd8dfc8716baa14f6b3a361e289d3998108946da2a39b9c2
-  license: ''
-  license_text: ''
-./modules/mbsspn: 
-  copyright: ''
-  hash: 1c97df918bff72790a43cef22ccb566ad1dc39e40490b3762bfa430f5d6a725a
-  license: ''
-  license_text: ''
-./modules/mbsspn-tests: 
-  copyright: ''
-  hash: 07e30551048d52edeca8820fb2f7bd871e4d33ab731c9caaad69c4e51edb971d
-  license: ''
-  license_text: ''
-./modules/mbsstr: 
-  copyright: ''
-  hash: 5e9bda80152814723e1cafb55e44c941a17c80aaefe1d44f834a9c72fb31d476
-  license: ''
-  license_text: ''
-./modules/mbsstr-tests: 
-  copyright: ''
-  hash: cef5b046db14a89768608c0836e74444436a85e6570a59bbcf59df40c1edfa9d
-  license: ''
-  license_text: ''
-./modules/mbstok_r: 
-  copyright: ''
-  hash: 2924f5ef00aa7a13739cf251e4ec52c0fd64f3f6b831ad2e3624a4cf902bab15
-  license: ''
-  license_text: ''
-./modules/mbswidth: 
-  copyright: ''
-  hash: e1810f778143c1d5292d861bdc35a3263344f2d6001b19a88698e1001a47e1ae
-  license: ''
-  license_text: ''
-./modules/mbuiter: 
-  copyright: ''
-  hash: 6cbc5dfe3a3225936a7dfffcf10221a28eb197fe14ded3080358fa00fb0fcc4a
-  license: ''
-  license_text: ''
-./modules/memcasecmp: 
-  copyright: ''
-  hash: 7351221a78a96f127d5a963204471c2dbd55e1cb3f18425117b9476c5fadebbc
-  license: ''
-  license_text: ''
-./modules/memchr: 
-  copyright: ''
-  hash: be0b241ceb14b9c893f028a1c3a3536857082922284185c2a8c2d76bdece3599
-  license: ''
-  license_text: ''
-./modules/memchr-tests: 
-  copyright: ''
-  hash: 018011ff8976e68e44992541371dcc8d825566092ed792f3461ef5d024230984
-  license: ''
-  license_text: ''
-./modules/memchr2: 
-  copyright: ''
-  hash: e34d9b8d2f6bbd86621302dc032e119f50f4e7676cfa04cb884193e2ea2d6d97
-  license: ''
-  license_text: ''
-./modules/memchr2-tests: 
-  copyright: ''
-  hash: 8cf194f3c8e417c970395e74b4f1be2a93e3ff7022c134ab73a455108165e6b8
-  license: ''
-  license_text: ''
-./modules/memcmp: 
-  copyright: ''
-  hash: 8edce69a077d5fbd7c515a865d3c815c00dbf636b25b2706b488b4aec3132c6f
-  license: ''
-  license_text: ''
-./modules/memcmp-tests: 
-  copyright: ''
-  hash: cd6ccf825c316d6dd15cf9cbe1e2bbac89dfd84c4267d00a8b0fc51c8d19f6b0
-  license: ''
-  license_text: ''
-./modules/memcmp2: 
-  copyright: ''
-  hash: 57cd15ac55918ded320e6f1e17997f9d1f0ec3dd3632701f32625e4f45d55fdf
-  license: ''
-  license_text: ''
-./modules/memcoll: 
-  copyright: ''
-  hash: b760f4a0a26eccec9af47467f1fafbc29d7d119e691bb7294815d040e534143b
-  license: ''
-  license_text: ''
-./modules/memcpy: 
-  copyright: ''
-  hash: e634aa6a76451304de7834fb20c6dd010c8ed636113798434eb126c88f5ce852
-  license: ''
-  license_text: ''
-./modules/memmem: 
-  copyright: ''
-  hash: 427bc1498fd9e14d42481652b88271486549e6fb60bf1f7ede1241b495a4ee0f
-  license: ''
-  license_text: ''
-./modules/memmem-simple: 
-  copyright: ''
-  hash: d77eea05be7687dfe5838308bdfec478b435a7cb72f306db9412d4e847a5081e
-  license: ''
-  license_text: ''
-./modules/memmem-tests: 
-  copyright: ''
-  hash: 1e7b452e3954e3beee93b8fd351dc99a5f490aa069de563492090ea4bc1e785e
-  license: ''
-  license_text: ''
-./modules/memmove: 
-  copyright: ''
-  hash: 9c5814bf0694309555734b0aad6e4b2a7e5b9900bae9d5dbfb1b46c925758310
-  license: ''
-  license_text: ''
-./modules/mempcpy: 
-  copyright: ''
-  hash: 82db064f4ac23db927439f2a499e4ed75d72e012d5e5b7a6a4e058af6c5749ac
-  license: ''
-  license_text: ''
-./modules/memrchr: 
-  copyright: ''
-  hash: 7df32406efd1721383bc9ca66ded3361791406c65ed6927b9eb2d9c502fddd37
-  license: ''
-  license_text: ''
-./modules/memrchr-tests: 
-  copyright: ''
-  hash: 236237ff345444a2296eb7c58607760d6875b9b96878baa8ed26a535df13c8f0
-  license: ''
-  license_text: ''
-./modules/memset: 
-  copyright: ''
-  hash: 2189503e0e0600d6195e9f40c3774df4d497419f8c8e7cd84ae006e1c05401ee
-  license: ''
-  license_text: ''
-./modules/memxfrm: 
-  copyright: ''
-  hash: f93cbf3e8c4bbad0d81b946690390cd47b60b77f297645db5c10f8f4d852b2c5
-  license: ''
-  license_text: ''
-./modules/memxor: 
-  copyright: ''
-  hash: 009ba5161c5986176c2c0e8e2fcb898f0634a8e6c137ff14a2c0c655942114fa
-  license: ''
-  license_text: ''
-./modules/minmax: 
-  copyright: ''
-  hash: 4ca698af559c3b45c9ae6cbc74c2db7f9d8d44e57ca0a55858f67d7f6eb2cef1
-  license: ''
-  license_text: ''
-./modules/mkancesdirs: 
-  copyright: ''
-  hash: 47e3ec8f9d755955102d4687498df34015f27d6968e0e8ffa15ed33ab2029a5a
-  license: ''
-  license_text: ''
-./modules/mkdir: 
-  copyright: ''
-  hash: 2e5e1569c83a706b81884e1431f3d6a134f87e69b18d51e41dadb9cf696431f7
-  license: ''
-  license_text: ''
-./modules/mkdir-p: 
-  copyright: ''
-  hash: d04788d851d37a77687867ba935363f888d3c09e7b59200529af8f795804d776
-  license: ''
-  license_text: ''
-./modules/mkdtemp: 
-  copyright: ''
-  hash: db4c25a79eb27e6ad8267a8afb4d8c961f69970b94ae3243c3acea5f68393b68
-  license: ''
-  license_text: ''
-./modules/mkostemp: 
-  copyright: ''
-  hash: 6342108f26fee360da0587740ba7d41166bcb274abff9ce78078399e1346ac89
-  license: ''
-  license_text: ''
-./modules/mkstemp: 
-  copyright: ''
-  hash: ecff665cb5b763e16fc7ca70c57d703bcfb97515d88d6149bbcc7697c27c8936
-  license: ''
-  license_text: ''
-./modules/mktempd: 
-  copyright: ''
-  hash: 0da02b80f02ff1e0404f54d62c57905a5f8dce5c1d0cb06875d1b14723c81d78
-  license: ''
-  license_text: ''
-./modules/mktime: 
-  copyright: ''
-  hash: d1f60290e80d3479c415935b398c94f79dd00da53fe9974e8f60f05e00674fbf
-  license: ''
-  license_text: ''
-./modules/modechange: 
-  copyright: ''
-  hash: 8c6b5bf005ca142d0766ff8256c5e6b766a4c8535f263597678d5c7372fb1cfc
-  license: ''
-  license_text: ''
-./modules/mountlist: 
-  copyright: ''
-  hash: 19dcd86334c997ee055f46c3b68bdbc79f9e70bdee9d89ea6b194b42950dc578
-  license: ''
-  license_text: ''
-./modules/mpsort: 
-  copyright: ''
-  hash: 20e0dcc849fc123b6d093e8a99ee07c244738c4cdc28f29526fe1a84fc438c52
-  license: ''
-  license_text: ''
-./modules/multiarch: 
-  copyright: ''
-  hash: 9dd8713172dffad333cb2303f390af903d0da348b567cbebceec9b93ae3f4121
-  license: ''
-  license_text: ''
-./modules/nanosleep: 
-  copyright: ''
-  hash: c4b414bcb64d661735d355e77ebbebb13539c748a2294b5132a4f2df1b5268dc
-  license: ''
-  license_text: ''
-./modules/netdb: 
-  copyright: ''
-  hash: 2ff3c839a18d0ff254152f3085d64ef784f7feb97175203a37e605b2e7277457
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/netdb-tests: 
-  copyright: ''
-  hash: e3e50dec351f92d0cadf5701e6997e9a0d078130438d0368a668e1ff2c8b37c6
-  license: ''
-  license_text: ''
-./modules/netinet_in: 
-  copyright: ''
-  hash: 413654256fb2afe075d11026bfd1310eb7efc9d543fc5388f827553495418222
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/netinet_in-tests: 
-  copyright: ''
-  hash: 1cdce907601b367aaed4ed8bb1b12d0d24f97a566d105e2abfd6ce95058dc966
-  license: ''
-  license_text: ''
-./modules/no-c++: 
-  copyright: ''
-  hash: 437c53218d7b70ae9999443459ae088dd47921a99112f1ebc51f4ce2e1861940
-  license: ''
-  license_text: ''
-./modules/nocrash: 
-  copyright: ''
-  hash: 9f91308d373378b9c2d084dd9096c2d6711b243f0e925c8e2fd5be0e3357d693
-  license: ''
-  license_text: ''
-./modules/nproc: 
-  copyright: ''
-  hash: 1c32614a51741d289504bd7021a7fc7e8b99d678522a0146144f05c9ed10d797
-  license: ''
-  license_text: ''
-./modules/obstack: 
-  copyright: ''
-  hash: 90bf53e34be1ef3c73252e30b49196e2810161cb29d1141f98d9b3f7bed5f63a
-  license: ''
-  license_text: ''
-./modules/obstack-printf: 
-  copyright: ''
-  hash: 195c4736975345b67b3eef2b29a3c77ada18de418087a7afbb0ade585fc77859
-  license: ''
-  license_text: ''
-./modules/obstack-printf-posix: 
-  copyright: ''
-  hash: 3e6ebfb8b4ae341f632bd162e3d76235aa08f877aa5afff5c433980da140b754
-  license: ''
-  license_text: ''
-./modules/obstack-printf-posix-tests: 
-  copyright: ''
-  hash: 6089d7788117eaa0dbbf1a69a23d0955a423d70c1b0a9429eea3b0f6ea67cadf
-  license: ''
-  license_text: ''
-./modules/obstack-printf-tests: 
-  copyright: ''
-  hash: f819c86b540474e47c3e3361e8f0515068635bf7ee7fd0e56c1ee1aed42a3dc5
-  license: ''
-  license_text: ''
-./modules/open: 
-  copyright: ''
-  hash: b8fd8ec2302e6cb2a361dbd6d146d4131ebb0d5ec07cf6fb35442b8ce54c23fc
-  license: ''
-  license_text: ''
-./modules/open-tests: 
-  copyright: ''
-  hash: 6fe6f7d664d0da6fa0c6300196a9408454f4d4c5fc1c113ea2f45271cf66251e
-  license: ''
-  license_text: ''
-./modules/openat: 
-  copyright: ''
-  hash: 8440ece2aa3dee89bb195360fde5224a4356b0dcd9cde5091b5e613fca06b38b
-  license: ''
-  license_text: ''
-./modules/openat-die: 
-  copyright: ''
-  hash: 902a62455364b94563584a5d761e6e6771649f19c13497cf2e6d67f6eb90f618
-  license: ''
-  license_text: ''
-./modules/openat-safer: 
-  copyright: ''
-  hash: c15e370962a4ede59dbc1e2d87f16d7e4572d9b5f57c0340a8fed2e35cea31d4
-  license: ''
-  license_text: ''
-./modules/openat-safer-tests: 
-  copyright: ''
-  hash: 4ae2d6e450491648f6d3211d45c3c69ec4155ef44c2b63faa058df2bee458dd9
-  license: ''
-  license_text: ''
-./modules/openmp: 
-  copyright: ''
-  hash: 9954c49e009ade101840ce2525661e2b729f9d835fff0d1c86f347671f5b9c4a
-  license: ''
-  license_text: ''
-./modules/oset: 
-  copyright: ''
-  hash: 0a79c4c0544b5c8a2822a5fb70791f25658d48f15710d3a13bfb599cab6f38c0
-  license: ''
-  license_text: ''
-./modules/pagealign_alloc: 
-  copyright: ''
-  hash: 4169e992f088b88dc6ca11b1b7caebbf70a8eb483c8b91b5c2877b93987a5e97
-  license: ''
-  license_text: ''
-./modules/parse-duration: 
-  copyright: ''
-  hash: cbc19947eb52ef499d5f6bf93075b19688bce193a8b394475df553f3c3f65c1d
-  license: ''
-  license_text: ''
-./modules/parse-duration-tests: 
-  copyright: ''
-  hash: 5e2c1e730ba1cc104efa3adbff8508e013a6a1c04df0ed16505a88467560f607
-  license: ''
-  license_text: ''
-./modules/pathmax: 
-  copyright: ''
-  hash: 1a58efccf4821959196abdf9ea16bba1eb01de79fc084911956c9ef723927e7a
-  license: ''
-  license_text: ''
-./modules/perl: 
-  copyright: ''
-  hash: b97c41a82b65955ab0fd78d1384b1dc22809d04151ce5e63dec6819363b0ab95
-  license: ''
-  license_text: ''
-./modules/perror: 
-  copyright: ''
-  hash: dbf41263cfaffcf9dede468e7f0f05cff36d517885ab11e66cff259c1a2214f0
-  license: ''
-  license_text: ''
-./modules/perror-tests: 
-  copyright: ''
-  hash: d1eacf01ba2d890277c5a785d61de51c5aaf71f094fb2abe4a0f7eba55c38e49
-  license: ''
-  license_text: ''
-./modules/physmem: 
-  copyright: ''
-  hash: 2fa658c322934cc5949c5cf8ef6707df51d49bdabcb9d40fd400c6a32b877243
-  license: ''
-  license_text: ''
-./modules/pipe: 
-  copyright: ''
-  hash: cb2606e87b9da6e57157f3b97744d35a3bdf307fcdfac930af0d2cdebe180aa5
-  license: ''
-  license_text: ''
-./modules/pipe-filter-gi: 
-  copyright: ''
-  hash: 47a74e5bd2b5d527cc692eda6c871a60bebaed6d6821f1f9ec6c89d42ca2b9dd
-  license: ''
-  license_text: ''
-./modules/pipe-filter-gi-tests: 
-  copyright: ''
-  hash: 1837f3df67008436e1cc45b72eada1ff6f241f0025cf1c0c9213186b7fe77883
-  license: ''
-  license_text: ''
-./modules/pipe-filter-ii: 
-  copyright: ''
-  hash: 04a37636437c57c0388cda54e84d16b3457ecf9c0712af63f99afeeb284dc422
-  license: ''
-  license_text: ''
-./modules/pipe-filter-ii-tests: 
-  copyright: ''
-  hash: 704dd95ae9d20a0a30a9ec2ea8091bbf1e9458db01991abc818bb94a7a9c5aed
-  license: ''
-  license_text: ''
-./modules/pipe-tests: 
-  copyright: ''
-  hash: 89b627af4bf4e9e23de42bed31459d717ee360b49f061df4343ea8979e8c8884
-  license: ''
-  license_text: ''
-./modules/pipe2: 
-  copyright: ''
-  hash: 88cb0b5a60d37a7c9b1cfc3bb3cce31d46e500584eab276f71f005621fba5f10
-  license: ''
-  license_text: ''
-./modules/pipe2-tests: 
-  copyright: ''
-  hash: 03a9e82cba64506684f239ac1fee39055a2c0cf7a09e73bccd429fcccf5293f7
-  license: ''
-  license_text: ''
-./modules/pmccabe2html: 
-  copyright: ''
-  hash: a59db9ed8dfe8c7750d96519f0dac1ef6f9126a272a836cd20d652d654547c21
-  license: ''
-  license_text: ''
-./modules/poll: 
-  copyright: ''
-  hash: 055166d6fb80cade79ba4e9fdf79d952614fa65a2f1cbd9a77a4232da23aa356
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/poll-tests: 
-  copyright: ''
-  hash: b8cef910d624e72cb2e784721e7731a76680df4809a4fbab539f0970dce96940
-  license: ''
-  license_text: ''
-./modules/popen: 
-  copyright: ''
-  hash: 75f806b61d12990d7d68890be3d1abee2e31232b3ed129437a90c4d98304eded
-  license: ''
-  license_text: ''
-./modules/popen-safer: 
-  copyright: ''
-  hash: 24ee550c199b1e8fd6881ada64c40a0211431f2bd41a919ccc1aa8dd0a3ec1cc
-  license: ''
-  license_text: ''
-./modules/popen-safer-tests: 
-  copyright: ''
-  hash: 932217dbf84834faa73e5bcbed2a51aeab869351e1f9fa18a4795b11408a7278
-  license: ''
-  license_text: ''
-./modules/popen-tests: 
-  copyright: ''
-  hash: 600e94e06dd6b58f99378e1f3362d1adb534e54c19898e35831ee4afadc35588
-  license: ''
-  license_text: ''
-./modules/posix-shell: 
-  copyright: ''
-  hash: 7be6f0c5f8fb9ebba4c5e3e9b45576334ea98024516acca3236c7d88ab555bc6
-  license: ''
-  license_text: ''
-./modules/posix_spawn: 
-  copyright: ''
-  hash: 15413ab313c64ab836982fbc31a9126ec32f09efb7ddb71640829db43260f75f
-  license: ''
-  license_text: ''
-./modules/posix_spawn-internal: 
-  copyright: ''
-  hash: 13261c7474dec61641aea4cc23d5456192409fb4aace21d2245b5e4f57f591f6
-  license: ''
-  license_text: ''
-./modules/posix_spawn-tests: 
-  copyright: ''
-  hash: a4e53f0bd6036142a9ac5e12baece34a312a5eec0673852e5c4cedd7b4461946
-  license: ''
-  license_text: ''
-./modules/posix_spawn_file_actions_addclose: 
-  copyright: ''
-  hash: 1b0e7672a70119b34a7422f65cc477e582f9be9be42c2b5f58e8a12c500a021b
-  license: ''
-  license_text: ''
-./modules/posix_spawn_file_actions_adddup2: 
-  copyright: ''
-  hash: ec32ecbe40954fd4d6a2ab6529c3bb7909152086755d88b2ce843d6164ed081a
-  license: ''
-  license_text: ''
-./modules/posix_spawn_file_actions_addopen: 
-  copyright: ''
-  hash: cfdb709fc0b05ff18a591ef68dbc89d292cd11c33e5ed630d96c711c66e747eb
-  license: ''
-  license_text: ''
-./modules/posix_spawn_file_actions_destroy: 
-  copyright: ''
-  hash: fcfee84d342e3e549f08820131ee81c122d7be97875f585474739f1d98b57b4b
-  license: ''
-  license_text: ''
-./modules/posix_spawn_file_actions_init: 
-  copyright: ''
-  hash: 8667dd6d659eb6fd59856efe5a10491fb6ae2da3859526f7ff4a2fd7dd75a40f
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_destroy: 
-  copyright: ''
-  hash: e6cb2c966163f254aef8e6b688be377b2a094f999a468168fdcbbf5f2c0aaed4
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_getflags: 
-  copyright: ''
-  hash: cb0fee822d7f86efc02d25161ae058bf90a7eeb70e7d1c7cd823da0e549a2bdb
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_getpgroup: 
-  copyright: ''
-  hash: 4de9f855aaa933daa726e4e38cc52848bed7659acb8976e36c8bd12e29228eb9
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_getschedparam: 
-  copyright: ''
-  hash: dfb205d868a1f8cf9800b85014a3a95c2b47caf098291e8f849cdd8b1c44f8c2
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_getschedpolicy: 
-  copyright: ''
-  hash: 5ea4e1bd5a50a054a174f9577084b4bad055067cc585cd5b718e51d9aa920483
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_getsigdefault: 
-  copyright: ''
-  hash: aebbb28e01907491d87b570e9720044a81c8e76bb06cb040aedd82ef3f32c925
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_getsigmask: 
-  copyright: ''
-  hash: 4e3402f4755f82bf6a4f52f26c99fc27619900baaa9bd83e36b3ea8182919711
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_init: 
-  copyright: ''
-  hash: d3eb3298cac167c24597cc856a1fc756c5b199bcb603b32fcc3398a9e412eb32
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_setflags: 
-  copyright: ''
-  hash: d700bcc7b63ea1e363c3a428aef4c53f41a2a2b2bc8a2cf82d424da0e66523c6
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_setpgroup: 
-  copyright: ''
-  hash: 5f8e7d01caa6f22b70ddd5c1dc2f948b9fd9471493d518a922f5b5bf788515b2
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_setschedparam: 
-  copyright: ''
-  hash: bc3e182453727a5de3f2341ca87ed8c4deb370f1f85114d80fb649530fe7d66e
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_setschedpolicy: 
-  copyright: ''
-  hash: 41b0af0b650ccf6e2bf11e8306c5497d3732aa043cd9fc2988b2ad786d777d83
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_setsigdefault: 
-  copyright: ''
-  hash: d17b0b584181de19099e9009b0f5dd697a715cc2d36c9f200c68808d0a6f7c8f
-  license: ''
-  license_text: ''
-./modules/posix_spawnattr_setsigmask: 
-  copyright: ''
-  hash: 8d6a238fb9ccf1d39e3d20a23c01ca0f651dbeaa90a49445c622ef6340a13211
-  license: ''
-  license_text: ''
-./modules/posix_spawnp: 
-  copyright: ''
-  hash: d5c5ed7f61ad411f906180a9928559ec005317deb824e2f40825b41f68021e67
-  license: ''
-  license_text: ''
-./modules/posix_spawnp-tests: 
-  copyright: ''
-  hash: 6039483c42b32008b11c8acec64c53a42491b0da863357c5eb910e617222fb7f
-  license: ''
-  license_text: ''
-./modules/posixtm: 
-  copyright: ''
-  hash: d33a7f51b60442e5707d6adc4ca78638e790cb693fa9c40d93feabc6ddc8f3bd
-  license: ''
-  license_text: ''
-./modules/posixver: 
-  copyright: ''
-  hash: 31c2be10d2b472a4dd73133e03c64c0c7d2bd38fd65a1af1feac903d792a3aa6
-  license: ''
-  license_text: ''
-./modules/printf-frexp: 
-  copyright: ''
-  hash: 2ba31ff5404d9a7a3126902242c6c35e4fe0ba56d1a745fa4e743c9c838e9f99
-  license: ''
-  license_text: ''
-./modules/printf-frexp-tests: 
-  copyright: ''
-  hash: 58b888752922b63323c41b34a3b18aa51f7c29b128f8dcadccc3df546dee1c64
-  license: ''
-  license_text: ''
-./modules/printf-frexpl: 
-  copyright: ''
-  hash: c73966598463099719ed26c513d582b0b27df6b8f7278ea98299dd0e42395350
-  license: ''
-  license_text: ''
-./modules/printf-frexpl-tests: 
-  copyright: ''
-  hash: e86d522cbebb135833e09a05e06f97d08d69fa9ecf7e9fa98cf90e6e1f9fc11a
-  license: ''
-  license_text: ''
-./modules/printf-posix: 
-  copyright: ''
-  hash: 894f8d4bd2974c5bda5bb08a7aed4420264e988980f3188b290f55b1247f68b0
-  license: ''
-  license_text: ''
-./modules/printf-posix-tests: 
-  copyright: ''
-  hash: b59c246d738fc5d9052590c8a8d00d40265f42144b607f7d29706e97e8c86fd3
-  license: ''
-  license_text: ''
-./modules/printf-safe: 
-  copyright: ''
-  hash: 5731a2281f5746d885561e1600ed39665f06f4742bf6bbfa4be584e71d9820e7
-  license: ''
-  license_text: ''
-./modules/priv-set: 
-  copyright: ''
-  hash: c95f4f2a9676e83a6fa7fc9464f10e8cd464661eb209f98239f7acfbc809f4a4
-  license: ''
-  license_text: ''
-./modules/priv-set-tests: 
-  copyright: ''
-  hash: 031636b74d5a26b6e43a3571a14f395f3564a43886333f4e468cc5fc37e1453a
-  license: ''
-  license_text: ''
-./modules/progname: 
-  copyright: ''
-  hash: a8929c40c874a87e1611500b2e26b077ebf85e82c8b2e8a68481aed79bf97260
-  license: ''
-  license_text: ''
-./modules/propername: 
-  copyright: ''
-  hash: decd28e88c1f60310668b74c5098487889972005c50c4b80b0f1d08e1202c110
-  license: ''
-  license_text: ''
-./modules/pthread: 
-  copyright: ''
-  hash: 179a35ad71a67378f76f3ef19829397b02c9b018b00557d4d5b4fee8434a0846
-  license: ''
-  license_text: ''
-./modules/putenv: 
-  copyright: ''
-  hash: 541c7b804c9a4701e7bfd83332859956acece70efbefa359dad2647250516ce8
-  license: ''
-  license_text: ''
-./modules/quote: 
-  copyright: ''
-  hash: ca3295c10160f924a83b2fe2105e7437cfcde7bb79d5d3a00145d43e503b3019
-  license: ''
-  license_text: ''
-./modules/quotearg: 
-  copyright: ''
-  hash: 8b5a9af7872f2e8372dc495970aecc76737417a2d5329d9a887771ffa89b1b18
-  license: ''
-  license_text: ''
-./modules/quotearg-tests: 
-  copyright: ''
-  hash: bf025f38f2cc4cd441d67679a34cb1cd037b2aed2b5ccd9752ed155dc1fe3bc9
-  license: ''
-  license_text: ''
-./modules/raise: 
-  copyright: ''
-  hash: 72d98fab0295eff8b6c69cc8f4c79b245a2b90f1c986c488f731c8c17e0be2c4
-  license: ''
-  license_text: ''
-./modules/random_r: 
-  copyright: ''
-  hash: 793abb0b71b26e916ba70493453d3a8ac0336c57e96ba22abe30a2c27d74232a
-  license: ''
-  license_text: ''
-./modules/random_r-tests: 
-  copyright: ''
-  hash: b10597e158195a2e9f6be80fbd5c8323d0ab225fad79842bc4c0b68efe9180c6
-  license: ''
-  license_text: ''
-./modules/rawmemchr: 
-  copyright: ''
-  hash: bea7805fd638d721ff6a8c1db17a1b510af5bdd54a19b78ce254b8c536cc47f7
-  license: ''
-  license_text: ''
-./modules/rawmemchr-tests: 
-  copyright: ''
-  hash: 1ea4b8c90ab9a92f1a865b9f0dd233b989c105cbc709c2c53c7612d0f726258d
-  license: ''
-  license_text: ''
-./modules/rbtree-list: 
-  copyright: ''
-  hash: 9c61f39fda13fc14ead05dc276b46c1e46119cacd727023c3aad3952fed1741e
-  license: ''
-  license_text: ''
-./modules/rbtree-list-tests: 
-  copyright: ''
-  hash: 600691ef07f56874f4a0638393d4b7e002fbd620d484a190042d2f8691ec0d16
-  license: ''
-  license_text: ''
-./modules/rbtree-oset: 
-  copyright: ''
-  hash: a9130036ba8e0984da5b35beedcac0c875a77362fd84798e9c9ba9ca9d158bd9
-  license: ''
-  license_text: ''
-./modules/rbtree-oset-tests: 
-  copyright: ''
-  hash: f0f3f94fab6019457c9b5744f749637d2947731f1f9c7000aa1d3818875ce22b
-  license: ''
-  license_text: ''
-./modules/rbtreehash-list: 
-  copyright: ''
-  hash: 8c0a671295174f7e5677584f8c996f9a29a1b1099bc7c9a56595e4759e856b1e
-  license: ''
-  license_text: ''
-./modules/rbtreehash-list-tests: 
-  copyright: ''
-  hash: f723af6f1cf424910314b765ffc07e2d771b3a829d826620d89e55cac4334021
-  license: ''
-  license_text: ''
-./modules/read-file: 
-  copyright: ''
-  hash: 7d166c5e40145c9e8ac9da4639d48f99e37f1d84218733eb0bb61e1a186834cb
-  license: ''
-  license_text: ''
-./modules/read-file-tests: 
-  copyright: ''
-  hash: c8c0f329de744e207a9cbf57f7623e85707e165415ba7e91ce37caa4b8a4210c
-  license: ''
-  license_text: ''
-./modules/readline: 
-  copyright: ''
-  hash: b251d53a560cfec4d415550e53ccd68b951b3e664a56c4b5d9b58cc29b5a936b
-  license: ''
-  license_text: ''
-./modules/readlink: 
-  copyright: ''
-  hash: 9655c25e079dfabc9788e2aa19ffe3379daaba29066de2a409e25b97f4766e41
-  license: ''
-  license_text: ''
-./modules/readtokens: 
-  copyright: ''
-  hash: 4aad7cd947a0c930667f7b65f368b042e39252d5d600efb9bac9ab94ea814cca
-  license: ''
-  license_text: ''
-./modules/readtokens0: 
-  copyright: ''
-  hash: f9954e72d3b5c2744af172c346a129d4ea7c0e6f38d967218bf79d5f7772c8d0
-  license: ''
-  license_text: ''
-./modules/readutmp: 
-  copyright: ''
-  hash: 5881d6cb6b46f849760cfb6b139fa197c5c35d009d4bb95c85411eae145f1f99
-  license: ''
-  license_text: ''
-./modules/realloc: 
-  copyright: ''
-  hash: b0fedb4e5d5429d80c6a3eabd39ca9050a4870545e6c746b6350d1901305b577
-  license: ''
-  license_text: ''
-./modules/realloc-posix: 
-  copyright: ''
-  hash: a17165c4894738d8d6b7b24846b24d6d673b08760f45c99baa34dd5a4079355f
-  license: ''
-  license_text: ''
-./modules/recv: 
-  copyright: ''
-  hash: 9b256bdcb2769723d9c6c028e6f61b5213d9b61a3344442126a358b5563a4c5c
-  license: ''
-  license_text: ''
-./modules/recvfrom: 
-  copyright: ''
-  hash: d06a25ef81c55e6b5dc324e44789ccd3ebffc2e0c5f3218feeaf3e3326cedfe0
-  license: ''
-  license_text: ''
-./modules/regex: 
-  copyright: ''
-  hash: 98dd155090f459101e94e7f24c5de1a99fe8b80a15f03dbceaca2f3de2a091bd
-  license: ''
-  license_text: ''
-./modules/regexprops-generic: 
-  copyright: ''
-  hash: 6b63dc284f9f308de27d3d0f5bb4f0a9f5a3e9f157692ff820f316b0926af20b
-  license: ''
-  license_text: ''
-./modules/relocatable-lib: 
-  copyright: ''
-  hash: 3d56c9aac64a0dfd2256d4572b923208b3917c4a5e8da9d3b3e0175a0b718a85
-  license: ''
-  license_text: ''
-./modules/relocatable-lib-lgpl: 
-  copyright: ''
-  hash: 3c6da87eb0fbd38e7f7ef65fab874bcef37b1163db71cc048a36ed18bd64a57a
-  license: ''
-  license_text: ''
-./modules/relocatable-prog: 
-  copyright: ''
-  hash: 98f1773e2b8c5432cf469174ef2bce2ab0fa773edbde8c786c1d0816a6916b14
-  license: ''
-  license_text: ''
-./modules/relocatable-prog-wrapper: 
-  copyright: ''
-  hash: e7863ec8c052c6a5456ba74faa1fa04d3804a50b69115a8e7711c4684ed18f4c
-  license: ''
-  license_text: ''
-./modules/relocatable-script: 
-  copyright: ''
-  hash: b52ad6c225203188aa43f5f35bf12426fa49374aa0a41fcb206179f443fdcc0f
-  license: ''
-  license_text: ''
-./modules/rename: 
-  copyright: ''
-  hash: 90b96cd7902bc911745c9c03a0189af5e2e4ce2bb26012b9dcb983b20b104b51
-  license: ''
-  license_text: ''
-./modules/rename-dest-slash: 
-  copyright: ''
-  hash: d4a9c644f7d7d9e1e63fe4d33711c9f738ad8a5a82695ff21fc014be8096d9d9
-  license: ''
-  license_text: ''
-./modules/rmdir: 
-  copyright: ''
-  hash: 80a7e8d54e1e35461557c783c7eed95170a48f036cfc501c707196461ba13cf3
-  license: ''
-  license_text: ''
-./modules/rmdir-errno: 
-  copyright: ''
-  hash: f1c2f35b12afe45d2291b83db06a26c03d1c82e33626b86e844701f1bad9459b
-  license: ''
-  license_text: ''
-./modules/round: 
-  copyright: ''
-  hash: e5719df369376caf700176102b5ff22715d3fd8c29badc72fdf97b0e2e718feb
-  license: ''
-  license_text: ''
-./modules/round-tests: 
-  copyright: ''
-  hash: f168540c9576ab38cc175925470922caffa4edf6610869ce256963363de628a4
-  license: ''
-  license_text: ''
-./modules/roundf: 
-  copyright: ''
-  hash: 93cf25dfabca8143cb883aad12c3709ef46d22b28cda679c7bf1aad9c83526d6
-  license: ''
-  license_text: ''
-./modules/roundf-tests: 
-  copyright: ''
-  hash: fde1d88ffe29900b4440de49d7979b436c1db18e8ea811289be9b0c8433c8e44
-  license: ''
-  license_text: ''
-./modules/roundl: 
-  copyright: ''
-  hash: 24d3cd0f8ab1e87b6d92408734644446758892cf4a25811098c919964198ba03
-  license: ''
-  license_text: ''
-./modules/roundl-tests: 
-  copyright: ''
-  hash: c334c07780c8ca0159e40af0a5dfa7b1b7d2ceb4c292c926b8acdce6976f6c88
-  license: ''
-  license_text: ''
-./modules/rpmatch: 
-  copyright: ''
-  hash: 1bd2b41d1e257cec6eef66e0309595ab05afcd0f1728abe139f1cd748a3341ed
-  license: ''
-  license_text: ''
-./modules/safe-alloc: 
-  copyright: ''
-  hash: 318c12ee32041a475fad60202c38ea078fa0efe8b5c9d24ba4decbb53e261feb
-  license: ''
-  license_text: ''
-./modules/safe-alloc-tests: 
-  copyright: ''
-  hash: e05b97f7a31cd2abfdf49a65b008d05f56a00a63740a2f46870f3a55ddec999a
-  license: ''
-  license_text: ''
-./modules/safe-read: 
-  copyright: ''
-  hash: 99f228a7f13e102230dc2eb494bc2aa84267f1661356ac9d2cd209a769dc4bb7
-  license: ''
-  license_text: ''
-./modules/safe-write: 
-  copyright: ''
-  hash: c988dd03abe10acd1b1951941c879ccd915f3a92ff6181f0fbbf6960ebb07d5a
-  license: ''
-  license_text: ''
-./modules/same: 
-  copyright: ''
-  hash: cb4b09cd25200998cd90937bb369e7903ccaa031359400db38fb62802b7cb606
-  license: ''
-  license_text: ''
-./modules/same-inode: 
-  copyright: ''
-  hash: 2fa81e39adc63c3ba3a626aa5e3b338be49c78b677a3be7b2cc68a6cea944513
-  license: ''
-  license_text: ''
-./modules/save-cwd: 
-  copyright: ''
-  hash: 6590304e452e0b6244441d68042a2184be8eb984f2ef74284ca9cf73d614f0a2
-  license: ''
-  license_text: ''
-./modules/savedir: 
-  copyright: ''
-  hash: 7bbd630151c841a1d9acc0e722ca5a6d9542cbd0ca2a9bab9cc9696149bc1768
-  license: ''
-  license_text: ''
-./modules/savewd: 
-  copyright: ''
-  hash: 8c94f5b217bdf73b11515678a65cf4e6b78be0e7e42d6f1a994f3041e0776a1f
-  license: ''
-  license_text: ''
-./modules/scandir: 
-  copyright: ''
-  hash: 831a360ea8af225658a66be193906c1c44d4e696b46ec942bfb7a63102e4f696
-  license: ''
-  license_text: ''
-./modules/sched: 
-  copyright: ''
-  hash: 106454311edb936efad2a93485f8e78285330f7786f1f62b91143fc55750bfc4
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sched-tests: 
-  copyright: ''
-  hash: 1f9b5d0743aaad4b09f3bb1f009cca552644499472bd163d641a4aab83b8d266
-  license: ''
-  license_text: ''
-./modules/search: 
-  copyright: ''
-  hash: d6d2cf1763349c0c1826423c8c125a05064e9d81cc313437f5ec0003a3c519fd
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/search-tests: 
-  copyright: ''
-  hash: cb191f24a9131ca5d8374b717e55dd026819b947dc621b9b13d61262af90ca57
-  license: ''
-  license_text: ''
-./modules/select: 
-  copyright: ''
-  hash: a7f90fe90645643cea58f80e1d7747324502379942e418fcc85ff47062533f4e
-  license: ''
-  license_text: ''
-./modules/select-tests: 
-  copyright: ''
-  hash: c49f6a270f00aefa2a1100ba8edfecf90866aff8e0399b61e4b440cb873e1595
-  license: ''
-  license_text: ''
-./modules/selinux-at: 
-  copyright: ''
-  hash: ae159b34d6796d7c1b901dc16d6e62ee9066587f7dc6e3c129c35af8ffeefadd
-  license: ''
-  license_text: ''
-./modules/selinux-h: 
-  copyright: ''
-  hash: 3de65edffe430c292a3e38990482507509459e492419a2aa2773df98b4aef7c9
-  license: ''
-  license_text: ''
-./modules/send: 
-  copyright: ''
-  hash: 36d12d4c74ef19a1d4903bec29db1623eb6f80b27a8bf9922e44d3e74ad8eaaf
-  license: ''
-  license_text: ''
-./modules/sendto: 
-  copyright: ''
-  hash: 788b48a5a00e4d44ce3074714e4d76faa89c764b67936791ac48afaf1226defa
-  license: ''
-  license_text: ''
-./modules/servent: 
-  copyright: ''
-  hash: ec2b7af8c419ee5993c0b3fd23041480a1b2d0d6cbf83a550652f16648ba7c6a
-  license: ''
-  license_text: ''
-./modules/setenv: 
-  copyright: ''
-  hash: f8e8cd307689a860b23f8c819cf47abea6f7915c6fc44f8991845b7204653338
-  license: ''
-  license_text: ''
-./modules/setsockopt: 
-  copyright: ''
-  hash: c0a50733ce565910129070e1ef521b4818d26f5716ab4dee740cd460083d313a
-  license: ''
-  license_text: ''
-./modules/settime: 
-  copyright: ''
-  hash: c1fbb7f3d5dec1edfdf45b8807007f2d85f7d678470d33540ed42e199d11f7e4
-  license: ''
-  license_text: ''
-./modules/sh-quote: 
-  copyright: ''
-  hash: d0a882e643a2ac71cd8e03db323054d3914ba334e9594e6e97d6c8f3da4e7bff
-  license: ''
-  license_text: ''
-./modules/shutdown: 
-  copyright: ''
-  hash: 40f14ce993204072081e535fb8b243b06e01dabf1595f425cc41b65451caa5a5
-  license: ''
-  license_text: ''
-./modules/sig2str: 
-  copyright: ''
-  hash: 965f4df3c6a5e92a819e82c10aaccaf47665d53376a9c93f4ed011dd69c979db
-  license: ''
-  license_text: ''
-./modules/sigaction: 
-  copyright: ''
-  hash: 07be41ae6b698d9502930f67e77626c331e97d32d53353923977982008132b42
-  license: ''
-  license_text: ''
-./modules/sigaction-tests: 
-  copyright: ''
-  hash: 9f4c4fd68033b8b0de4f979d019a55818e500783ff016ae62391144b3dee1e44
-  license: ''
-  license_text: ''
-./modules/signal: 
-  copyright: ''
-  hash: b581455f675e2137d8819b511c6162fd3158dea57d926957f1867bb2cd7af0b7
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/signal-tests: 
-  copyright: ''
-  hash: 0e083125fa83ca73d7eeff33fc2b77c249284a8b8762ff00d837e45d9cdef749
-  license: ''
-  license_text: ''
-./modules/signbit: 
-  copyright: ''
-  hash: 7c4ee7f60ecb6a37679a77770d01962fd542ede80e1cf8dfe1d60cf74f0911b1
-  license: ''
-  license_text: ''
-./modules/signbit-tests: 
-  copyright: ''
-  hash: eef0df7aab3069078ab4eec7d9a25e49d2c6ea6b104cf9df24a76f03554491b3
-  license: ''
-  license_text: ''
-./modules/sigpipe: 
-  copyright: ''
-  hash: 199477370fc1f54a1b9ed82b3ac2344d45f5122ef791e8596d51b9d4ba6a1122
-  license: ''
-  license_text: ''
-./modules/sigpipe-die: 
-  copyright: ''
-  hash: ed55307393a024dfc8977b00e3bd21769a5e92cb82df4d0432f18b493df597a1
-  license: ''
-  license_text: ''
-./modules/sigpipe-tests: 
-  copyright: ''
-  hash: 94b56c44ef1df251243b29c8d1d869017825d6d98db2c4222b2a343c24ed4559
-  license: ''
-  license_text: ''
-./modules/sigprocmask: 
-  copyright: ''
-  hash: c975bf065682dc172ec4dc379ab1ed192aa0d6aad477a6864fbf60c1246c6897
-  license: ''
-  license_text: ''
-./modules/size_max: 
-  copyright: ''
-  hash: 73c507c110287a3663aa8c381fbcb055b3c6887198d073f200910fd71aa95555
-  license: ''
-  license_text: ''
-./modules/sleep: 
-  copyright: ''
-  hash: fba49bfd14065e4eee5061125ab9934e8a8c7f63c807a7f37814bc589e06615a
-  license: ''
-  license_text: ''
-./modules/sleep-tests: 
-  copyright: ''
-  hash: 30fe1f57a847e2754087348d3a09ad74984a26024ebccd898a820de4fdef1f0a
-  license: ''
-  license_text: ''
-./modules/snprintf: 
-  copyright: ''
-  hash: 99b7a128476c367292fe170e7388305af688410287af40cabdacf7a85f7bbe91
-  license: ''
-  license_text: ''
-./modules/snprintf-posix: 
-  copyright: ''
-  hash: 3e9391c27d056aee33e7da736d22cbafcea9d78737ac24b040194cc85e09244d
-  license: ''
-  license_text: ''
-./modules/snprintf-posix-tests: 
-  copyright: ''
-  hash: aa48d1605def6aa15a349ec9b28de3f3cb9a804927df9d21f7ec442108e35f7e
-  license: ''
-  license_text: ''
-./modules/snprintf-tests: 
-  copyright: ''
-  hash: 0ff8528c57338b089cf559ab8390b3cf06e82b3aa70a9856b64903a91110e007
-  license: ''
-  license_text: ''
-./modules/socket: 
-  copyright: ''
-  hash: 760be8eece098f5cb0859823a95ed98f12e243b07233e51add74b57b5fcf7432
-  license: ''
-  license_text: ''
-./modules/sockets: 
-  copyright: ''
-  hash: 4126e02f36a87f45d964ffda63593a3bbc780a0ff4a782fee581da0cc5a6721d
-  license: ''
-  license_text: ''
-./modules/sockets-tests: 
-  copyright: ''
-  hash: 478a2b82993ba28fa4e38f3da513f68ba86c56bc24322e3b367c9059c2f0f46b
-  license: ''
-  license_text: ''
-./modules/socklen: 
-  copyright: ''
-  hash: 5a6f4327fa652ca2de47827244f6f31857349eb6813b8e8dc38ce2f77dec7b02
-  license: ''
-  license_text: ''
-./modules/spawn: 
-  copyright: ''
-  hash: 98db23dfb5fb8488a0b81126b79432455b524be81dffa5b684957af4d2f65b00
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sprintf-posix: 
-  copyright: ''
-  hash: 8ecaa26a2793633affd7dafec62afdee8040029061a42f0048b179f1918f7525
-  license: ''
-  license_text: ''
-./modules/sprintf-posix-tests: 
-  copyright: ''
-  hash: 524e6eba911ef670a4d2e2af84b7cbb7c5679b78aaa39e685322de151f0fcccc
-  license: ''
-  license_text: ''
-./modules/ssize_t: 
-  copyright: ''
-  hash: e3040cc98da673a52d6690bf4ec5bf816d5b423ce3f42f942557ca401e89fa87
-  license: ''
-  license_text: ''
-./modules/stat-macros: 
-  copyright: ''
-  hash: 19a4ff4a01f4f539788495b28a9bc53a84b8d0709bde1556f753c3b6ec965bda
-  license: ''
-  license_text: ''
-./modules/stat-time: 
-  copyright: ''
-  hash: 40e5e8024121f13b956b4b91751e10ae5e290f3443428cfe0013b6de4c74169f
-  license: ''
-  license_text: ''
-./modules/stat-time-tests: 
-  copyright: ''
-  hash: 2ca4e868457774774f30f46bc1498664e95111a24a0fb2f612c89a0be818d38f
-  license: ''
-  license_text: ''
-./modules/stdarg: 
-  copyright: ''
-  hash: 4396e6d252ffcea369f031414cff4ad5c7cf19346b8c908b8c547d58f204e234
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/stdbool: 
-  copyright: ''
-  hash: 3cbd93d722b352c1b2f23b7dd51709813fdd4072b294d41fa3a96caeab9bf967
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/stdbool-tests: 
-  copyright: ''
-  hash: 7f54c93281898b8aed304625dce03fb5fc1ca32adcbe0e4f2691cdc031c6c753
-  license: ''
-  license_text: ''
-./modules/stddef: 
-  copyright: ''
-  hash: 243de985823f8405c63bb77c348f603b543baa2fcdb81c9816ddf490fca00af3
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/stddef-tests: 
-  copyright: ''
-  hash: 4a3846b781424614dd86a5c8beac0b5d2191af4dccbf18ce789b9756c16c745e
-  license: ''
-  license_text: ''
-./modules/stdint: 
-  copyright: ''
-  hash: 8f0595316fc29b2c9301f9e7125ed21c4ed64b92d17bebdeecc95643c9b5a486
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/stdint-tests: 
-  copyright: ''
-  hash: c74042c04291bc048ebf18874d653986027582a7759f90fe6ba2e0492b9b2162
-  license: ''
-  license_text: ''
-./modules/stdio: 
-  copyright: ''
-  hash: 93241faf9fae9089f22f287f7b5168e68002f49102edd33796617692c6493d26
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/stdio-tests: 
-  copyright: ''
-  hash: 5491d73216042ef41b34ec2e402bc9f664d7557d25d9b8608b14986ab1f33db9
-  license: ''
-  license_text: ''
-./modules/stdlib: 
-  copyright: ''
-  hash: 07f3b190af38509a0a785ca981a54cfc4265ede026d74267e5b54a8ac47dc5a2
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/stdlib-safer: 
-  copyright: ''
-  hash: 2bd1cb8f5715a347cbdf0f94ab509ef98e28969806eea27ebbe7eafef57eac89
-  license: ''
-  license_text: ''
-./modules/stdlib-tests: 
-  copyright: ''
-  hash: 7d7aff5250835c4c6b3222e8168b837338ba00c71386bc51a64e173ba0b60739
-  license: ''
-  license_text: ''
-./modules/stpcpy: 
-  copyright: ''
-  hash: 90b790c92b055c904aabe26bd7993256f5472e0a9da16645ee7a59ac37b324b2
-  license: ''
-  license_text: ''
-./modules/stpncpy: 
-  copyright: ''
-  hash: e80ed56ddf49eb3bd85da305c846ed7e96027bd6d712c48d757ff1fc17b646d3
-  license: ''
-  license_text: ''
-./modules/strcase: 
-  copyright: ''
-  hash: 652dd082eaa9ecff9480f67750ab105ee39e3bbf16d2ee71638fa73a737dc20f
-  license: ''
-  license_text: ''
-./modules/strcasestr: 
-  copyright: ''
-  hash: 9551ffc82dca4481309246e5ddd487e77a7d7a11accac093b82220b2875d1f8f
-  license: ''
-  license_text: ''
-./modules/strcasestr-simple: 
-  copyright: ''
-  hash: 19b95796ee17de816bd73b8fafa15172d3f5384fae26acd816dca81a736ef268
-  license: ''
-  license_text: ''
-./modules/strcasestr-tests: 
-  copyright: ''
-  hash: 46161f22bad85e1157ba4c099ca8ac45b99c09614c81f9cf3d1238b83745763f
-  license: ''
-  license_text: ''
-./modules/strchrnul: 
-  copyright: ''
-  hash: 3439a52f0c76cacb89c9175647f636101c937e17d039e956c2bc739599fd607a
-  license: ''
-  license_text: ''
-./modules/strchrnul-tests: 
-  copyright: ''
-  hash: 673dba998f602c4891f267c09d4e33654cf112f4c93597683daba4df9c30dbfe
-  license: ''
-  license_text: ''
-./modules/strcspn: 
-  copyright: ''
-  hash: 00ba939a293feefdd943d64bee2b6b6e6ee840b02c1bad71770fbf3f19389604
-  license: ''
-  license_text: ''
-./modules/strdup: 
-  copyright: ''
-  hash: f94b64eab9875bf12ebe372e2aa004064463874073df477123c7cb3b210ab1f7
-  license: ''
-  license_text: ''
-./modules/strdup-posix: 
-  copyright: ''
-  hash: 3d985ae29a0e13f553a8fc6b7cccbcc778b6239dfdb286f8111e68a2e42d2e49
-  license: ''
-  license_text: ''
-./modules/streq: 
-  copyright: ''
-  hash: 0930ec55962ca56e7f39dff406c7b9ec1530ab93163439b806f748810230060b
-  license: ''
-  license_text: ''
-./modules/strerror: 
-  copyright: ''
-  hash: d5f23050cc89efc8d2bd7136b02aa4bf5daa9f12d631d66521cfc8e630d8cea6
-  license: ''
-  license_text: ''
-./modules/strerror-tests: 
-  copyright: ''
-  hash: 5352af1cada47d941b871ce9a05537ff50cda589bb84bcbd1f90f1332eba1400
-  license: ''
-  license_text: ''
-./modules/strftime: 
-  copyright: ''
-  hash: 248ca652922ec6f0e11f952a294fb9d52c823191e70d85869d163ec32953457f
-  license: ''
-  license_text: ''
-./modules/striconv: 
-  copyright: ''
-  hash: eacfc0c73f54b70f44e72e0a2496fa3a985649478f468355fb25111155547017
-  license: ''
-  license_text: ''
-./modules/striconv-tests: 
-  copyright: ''
-  hash: 56ef990fdb312ac361392d8ac11bbd2f3120df37b7c39602284ae5f56e84b6ed
-  license: ''
-  license_text: ''
-./modules/striconveh: 
-  copyright: ''
-  hash: 20590c09b1e4c5fde22a0d3328cbc8ce66126e287d86452678423ca690c2bb31
-  license: ''
-  license_text: ''
-./modules/striconveh-tests: 
-  copyright: ''
-  hash: b43a1cfddff6b6c98ecc9a584cbc851f778b47c8a9c474b2b04fa20ef970c9a8
-  license: ''
-  license_text: ''
-./modules/striconveha: 
-  copyright: ''
-  hash: 53914d85168151eac2e5cb2f6afe316ec020927e6047c70f6071299410fcd88a
-  license: ''
-  license_text: ''
-./modules/striconveha-tests: 
-  copyright: ''
-  hash: aef1f694fa6b20064b58d84d3527a3021e6f61171962dd23cb08b9c5b2e32a24
-  license: ''
-  license_text: ''
-./modules/string: 
-  copyright: ''
-  hash: 820cbde2e33c17d5aa13a8b05510e25367ea8cb7deec30d49f8b4dd9f18834a7
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/string-tests: 
-  copyright: ''
-  hash: 1e7c179743032ebfaa51fa19f432a8a82ee399296a1c0b56d5449b92dceb8879
-  license: ''
-  license_text: ''
-./modules/strings: 
-  copyright: ''
-  hash: 2ee8e3df07f452f9eda5ec6db18dbe1267d518cba0632ba0d4f6a0f8c82aa657
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/strings-tests: 
-  copyright: ''
-  hash: 8cad9ecb44b7140eb24b9d6a0513a3c987ee9e856dc469f2429ab4a70ffc3705
-  license: ''
-  license_text: ''
-./modules/strndup: 
-  copyright: ''
-  hash: 01fc2b925d4add01ac277ca8fc680673d4a255c6e462a90bdb0436038948244b
-  license: ''
-  license_text: ''
-./modules/strnlen: 
-  copyright: ''
-  hash: ab4fc62f8761caf131b4822d455933d31ac73c304dae9fc82c61b8edb35f6a15
-  license: ''
-  license_text: ''
-./modules/strnlen1: 
-  copyright: ''
-  hash: b40f4a91247dac802a30b188b4d62c0efaae6b48a2bdea15b62a393544d6b755
-  license: ''
-  license_text: ''
-./modules/strpbrk: 
-  copyright: ''
-  hash: 6d8864c98aef1b3ab33703c9d43151fedc916569722621f6c7150d837c0946db
-  license: ''
-  license_text: ''
-./modules/strptime: 
-  copyright: ''
-  hash: f2514d0b5ca1e70c75ab184443babe3b1ef75c46b9827809183cc1ab6b586240
-  license: ''
-  license_text: ''
-./modules/strsep: 
-  copyright: ''
-  hash: b1eb6fbc25cbb44926116846e373ab34002448c7000e81b9e0497a71d577d580
-  license: ''
-  license_text: ''
-./modules/strsignal: 
-  copyright: ''
-  hash: 86a0aa69d80d95b91aeb22b0e38efff4d690c06c0187997b52aeddcfe8eff2fd
-  license: ''
-  license_text: ''
-./modules/strsignal-tests: 
-  copyright: ''
-  hash: 1cd7a2a2ec27177252af5cc3cd983f024c1e38460c8e37bd0715452f8017f3b3
-  license: ''
-  license_text: ''
-./modules/strstr: 
-  copyright: ''
-  hash: e5c8780d984fbde04ff226f616085d6819612337b26d6b12328c60a533bee3f5
-  license: ''
-  license_text: ''
-./modules/strstr-simple: 
-  copyright: ''
-  hash: 33985a6d6d2c6195b9a59aca837b554c479813291dcb311600f1326dec7f2f6b
-  license: ''
-  license_text: ''
-./modules/strstr-tests: 
-  copyright: ''
-  hash: 2cfcdd33b3abf203be17d8066f8a8b1972f6cea01c7bb0e56db3e70283b1c678
-  license: ''
-  license_text: ''
-./modules/strtod: 
-  copyright: ''
-  hash: e2bd9b168f17f719a2dd226af001e7ef4c20ed217253e9f4a46992bd7743c4ce
-  license: ''
-  license_text: ''
-./modules/strtod-tests: 
-  copyright: ''
-  hash: f54cf32f92b9c3c6f18020108aa11e8bb7f35310ee4c3319a5e6a96f09e19a6b
-  license: ''
-  license_text: ''
-./modules/strtoimax: 
-  copyright: ''
-  hash: 97ef74e07fd0883f0cf4df51ddce49b560bb27af0de255b1bcb961374782ae3b
-  license: ''
-  license_text: ''
-./modules/strtok_r: 
-  copyright: ''
-  hash: ccc223e8aa3f496b40cb5d0142c2de246792fd92ec7a5dce39e12a8d4ec2d629
-  license: ''
-  license_text: ''
-./modules/strtol: 
-  copyright: ''
-  hash: 6944ccdcc645699be922c9058ca8c1f4ca89440bc9e567d0276821e2bf713b7b
-  license: ''
-  license_text: ''
-./modules/strtoll: 
-  copyright: ''
-  hash: 11d70fb957deed2086c050cd25dceb9d217051279f92726c22162e2e9f23f083
-  license: ''
-  license_text: ''
-./modules/strtoul: 
-  copyright: ''
-  hash: cb32df538cf7dca3e9d8b557e421863aedf64337f881230629eb6f6b4016bd39
-  license: ''
-  license_text: ''
-./modules/strtoull: 
-  copyright: ''
-  hash: 6fa81618f965be530901644a91327cb8fd9cc538a50a8bec4cbf84615fc06c26
-  license: ''
-  license_text: ''
-./modules/strtoumax: 
-  copyright: ''
-  hash: 7dc1621c6caa98228b37c93cd003938d404193f9584246552d24b3730d45b94c
-  license: ''
-  license_text: ''
-./modules/strverscmp: 
-  copyright: ''
-  hash: 7e8a1cce977aff0b59f836370a857149c95f05eb90d093de4c78fbaeea0f8452
-  license: ''
-  license_text: ''
-./modules/strverscmp-tests: 
-  copyright: ''
-  hash: 0b0a466cf1d4c4da6cd7f63f6ad9ca565889daa7758939f28812107b6bf9b758
-  license: ''
-  license_text: ''
-./modules/sublist: 
-  copyright: ''
-  hash: 49a4dece4964dcb743b03485ded5a63b8358cad671ae2ae778afd60b461de163
-  license: ''
-  license_text: ''
-./modules/symlinkat: 
-  copyright: ''
-  hash: e1d40d37a9a43d3df7a55c692c6715e02f5903429e86a42e5b1fc3d74db64a8d
-  license: ''
-  license_text: ''
-./modules/symlinkat-tests: 
-  copyright: ''
-  hash: b2c32a25998d397bd8960b354291eb0fa1c269103d78859cddae22f60a476c2d
-  license: ''
-  license_text: ''
-./modules/sys_file: 
-  copyright: ''
-  hash: e66d4edb7387906d3901aeba747a3d80bafe9d5a8694d0a06795b83121bf24ad
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sys_ioctl: 
-  copyright: ''
-  hash: 7b526d0c710b091a546a88d024bc58ebc9b5e41efcadffd8192b99fc7ec00b59
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sys_select: 
-  copyright: ''
-  hash: 77c4399536d7ef3a70f25a0f889996dbe88bc6a6db0e5dbed45355492e5e91aa
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sys_select-tests: 
-  copyright: ''
-  hash: 4fbb77380b490e637abf5fbbdafff6625456a293236836a35ac3de09a59adfb8
-  license: ''
-  license_text: ''
-./modules/sys_socket: 
-  copyright: ''
-  hash: 722216ce9396878ba968800c9dda5add975ca83f2e124d20c292dc88e34734ee
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sys_socket-tests: 
-  copyright: ''
-  hash: b5b2e0310b662edcc7dad13c365ff1b2bf477fec23a0f77c9dcfec409ffd8faa
-  license: ''
-  license_text: ''
-./modules/sys_stat: 
-  copyright: ''
-  hash: a1c80f8c008aa015df87994281680809e8a3e46b8ccf4c289c8004475e9a213d
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sys_stat-tests: 
-  copyright: ''
-  hash: 87b59c12b0443cbb770e910abee503f866deef5609c671d3445b0aae2683e2af
-  license: ''
-  license_text: ''
-./modules/sys_time: 
-  copyright: ''
-  hash: c654ff78fb16360b93e7b15ca6de03a42cf406fe2514a7b0e4caa697b1798777
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sys_time-tests: 
-  copyright: ''
-  hash: 910f3c2445a8c42a59fa23e117b1cbc7de37bf6177f54b366e347c82cbe5b332
-  license: ''
-  license_text: ''
-./modules/sys_times: 
-  copyright: ''
-  hash: 099f6eb28c2cac30132b67af9af2013712a24cb6e364e0037c9ca6aebe9f3422
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sys_times-tests: 
-  copyright: ''
-  hash: fd9753642bc93c34a631756a485f5bd4a436cc75a5a1793f2f18a2ff5a97e37f
-  license: ''
-  license_text: ''
-./modules/sys_utsname: 
-  copyright: ''
-  hash: 1dfd16eed68f5d83836fce58ec325bb7262da5ca7f395dd5f1db494f908b90ca
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sys_utsname-tests: 
-  copyright: ''
-  hash: d8e98f95c344d5674a022aa57273429f54e50d9a8c2c5533e319fd165b39b653
-  license: ''
-  license_text: ''
-./modules/sys_wait: 
-  copyright: ''
-  hash: bb9e9a5c86edc0cf02b1b13dfbab113d49f224a4bc4c4ccd7f7a806b3e7e999f
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sysexits: 
-  copyright: ''
-  hash: 11f243ba2444ab5eb2f10ee1c25bd64fe7788d121bd26fa7f7c2e430e1d70050
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/sysexits-tests: 
-  copyright: ''
-  hash: 7bfa22994a26c3483db7c4b19cb9bc94ff57ef46038fb43d486833f4aa9e08a4
-  license: ''
-  license_text: ''
-./modules/tempname: 
-  copyright: ''
-  hash: e2e351656be8f723e4747227e52be7ab5fd3b67e1c25b52f4a47d00dc36c2586
-  license: ''
-  license_text: ''
-./modules/thread: 
-  copyright: ''
-  hash: 88ec3e8abc03b09d5e308167e0cd610710913cfac06911a82e4eb3f589d2f680
-  license: ''
-  license_text: ''
-./modules/threadlib: 
-  copyright: ''
-  hash: e4e2448bf023982eb670462404aaaa786414a9f9f494eb03fef1d4265cedae25
-  license: ''
-  license_text: ''
-./modules/time: 
-  copyright: ''
-  hash: 70da94ab70998280b9898a17366ddc5cb2639e7cb97aad4585b73b64c4c5b960
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/time-tests: 
-  copyright: ''
-  hash: c0ff6e1970e10568f18fc0dd76d7190fad6142bc1d267bcb0970ec212a232080
-  license: ''
-  license_text: ''
-./modules/time_r: 
-  copyright: ''
-  hash: 79cb71af4c0f19a08193199204082067a8967f87492f7808d0bb2ddfc3349747
-  license: ''
-  license_text: ''
-./modules/timegm: 
-  copyright: ''
-  hash: 4e742a3f82007e942d6c8af4d343be35d64521224620fda823e59a1132ba0347
-  license: ''
-  license_text: ''
-./modules/times: 
-  copyright: ''
-  hash: 9ea1fd0058edebf1eff55d06b0b51baa16abf490a76832902559cd17c7101640
-  license: ''
-  license_text: ''
-./modules/times-tests: 
-  copyright: ''
-  hash: 496e2fd32b4bcede705f2dd42403463f6db2eb860247a81b2eda4fd8d80d1cf1
-  license: ''
-  license_text: ''
-./modules/timespec: 
-  copyright: ''
-  hash: c6c2c7e7ac43dfe978303342c77b8152884ae56978b5212ff60267e23cc0fc63
-  license: ''
-  license_text: ''
-./modules/tls: 
-  copyright: ''
-  hash: d423d1274df32c29f6e674a7640df8d901b2f8190ec8be081bd6712562fb32e2
-  license: ''
-  license_text: ''
-./modules/tls-tests: 
-  copyright: ''
-  hash: 2a7325d7ad5c8e34e86d6193d22c3f34efd5bfcdd76152bdf4d7eb27682e3edb
-  license: ''
-  license_text: ''
-./modules/tmpdir: 
-  copyright: ''
-  hash: c68b835358cd9e730d2aa75081f4d3518a2acf0f82a11b01bfb860132f97a31a
-  license: ''
-  license_text: ''
-./modules/tmpfile: 
-  copyright: ''
-  hash: 0020aca412b41a4e89e007655f8e39aa257ae7d89bca8cb5a254887ede281467
-  license: ''
-  license_text: ''
-./modules/tmpfile-safer: 
-  copyright: ''
-  hash: e5f395450b8163c0793c26c5d624e42d78afdd4ea7f74714157bd2ab974f955a
-  license: ''
-  license_text: ''
-./modules/trim: 
-  copyright: ''
-  hash: bccc6d068d82b47f71a582f330b1a29a7d18c8d96e73f2bfb528b9fdeaf33777
-  license: ''
-  license_text: ''
-./modules/trunc: 
-  copyright: ''
-  hash: a83249c184d8edc716f0e56e461b4aacf9416c6da39e29b9d4c064df78952283
-  license: ''
-  license_text: ''
-./modules/trunc-tests: 
-  copyright: ''
-  hash: 387bd8fe24b236a480752328a12cae928c3de1db73cf519b9923d847163f100e
-  license: ''
-  license_text: ''
-./modules/truncf: 
-  copyright: ''
-  hash: fcc4e22b398852d9e6f88914c108d45c739c50f861e45d7206786b4bf5326ad0
-  license: ''
-  license_text: ''
-./modules/truncf-tests: 
-  copyright: ''
-  hash: 1bdf6633eeaec824cd9f3be4a6414d4024627aaafe2e5427bbc0fb4fe8e0d8fd
-  license: ''
-  license_text: ''
-./modules/truncl: 
-  copyright: ''
-  hash: 1c2b79534a373322c5e5128315aa9b599cada54298ce521efb56d991b48c8d48
-  license: ''
-  license_text: ''
-./modules/truncl-tests: 
-  copyright: ''
-  hash: 0edb2b017fbb4411e12a8be2a6221cb7f08ad73bac935efdf8ca3dbf0032bc5f
-  license: ''
-  license_text: ''
-./modules/tsearch: 
-  copyright: ''
-  hash: c39ccb5fcfbaeab2bac2d3342c88c8dd146b12d6652e14e9df8f03af4e2cf22f
-  license: ''
-  license_text: ''
-./modules/tsearch-tests: 
-  copyright: ''
-  hash: 3715a032f02b16304bbcc2953ae8a7fedd5b70346b8af355f90abd112f1ffbe9
-  license: ''
-  license_text: ''
-./modules/tzset: 
-  copyright: ''
-  hash: c96599c52262409a1b50451d051d8d2fa5e62a9e05af812a6eb239d0a7ca2460
-  license: ''
-  license_text: ''
-./modules/u64: 
-  copyright: ''
-  hash: d03c4cfa4e836c0b4723355656740e75edfd5c064e35b3999dd42b9329bded4f
-  license: ''
-  license_text: ''
-./modules/u64-tests: 
-  copyright: ''
-  hash: dafa78e78d3b857b511a34c4b1e00376d220e96b16309ad9573e15c0778554d6
-  license: ''
-  license_text: ''
-./modules/ucs4-utf16: 
-  copyright: ''
-  hash: 145458db67223a8d1ce8fd893048086911f4e13956413a722bdae218937c4be0
-  license: ''
-  license_text: ''
-./modules/ucs4-utf8: 
-  copyright: ''
-  hash: 8e913f70267449a59a4ae2b22d9f63ba73cd77c5d0c292f9aebb2a3a5ce500d7
-  license: ''
-  license_text: ''
-./modules/uname: 
-  copyright: ''
-  hash: 557b53330b3d484466590b1a48865c67744fa66d98dfba740efacc7436e7ceb6
-  license: ''
-  license_text: ''
-./modules/uname-tests: 
-  copyright: ''
-  hash: b004f58e1b744253f85177dcc1bb091231de14d74a60987ad0a1ee59001c2d30
-  license: ''
-  license_text: ''
-./modules/unicase/base: 
-  copyright: ''
-  hash: 5e08a9fff9ff0e2354477f2bcc3b24520c8fb84e8b8563e59752dac1e4428080
-  license: ''
-  license_text: ''
-./modules/unicase/cased: 
-  copyright: ''
-  hash: 4a30fccf8b77307e6e8dfbf776650f45aeb31724ed0840836767944c730e990f
-  license: ''
-  license_text: ''
-./modules/unicase/cased-tests: 
-  copyright: ''
-  hash: 971ee47da5b9535273b75bce761e57d20f2fb911a6a7c81e67d4144ec79d6dce
-  license: ''
-  license_text: ''
-./modules/unicase/empty-prefix-context: 
-  copyright: ''
-  hash: 9815dccf9c38a3ff1d76fcff7ced81b40102c2fde1e0044f83d28a040a2dc442
-  license: ''
-  license_text: ''
-./modules/unicase/empty-suffix-context: 
-  copyright: ''
-  hash: 944bb7a0792bd8b4bbd4d863d766024751c37b0de024320e9fe7e7d3cf449e69
-  license: ''
-  license_text: ''
-./modules/unicase/ignorable: 
-  copyright: ''
-  hash: c273f624b30079c7223ff88a4331b1f3999249ee95c675fcaf9b9b9b537b53d1
-  license: ''
-  license_text: ''
-./modules/unicase/ignorable-tests: 
-  copyright: ''
-  hash: 630a7da6f903edbef6806bdab38288207b7d5948682e8efd91417bd50ea01fc8
-  license: ''
-  license_text: ''
-./modules/unicase/locale-language: 
-  copyright: ''
-  hash: e5eb40a70ce073412eba68b8ee7872b4b2d816120e0d42a8a2e12193793159e4
-  license: ''
-  license_text: ''
-./modules/unicase/locale-language-tests: 
-  copyright: ''
-  hash: 51058741ce6d861967c85067aaf8aeb05ffab881d561a650376ae2d71ef8a828
-  license: ''
-  license_text: ''
-./modules/unicase/special-casing: 
-  copyright: ''
-  hash: 1ae745ef7bc98b0bccc8e30dcdffaa2153bcda2f1a2e660aa9ac78cfc453f553
-  license: ''
-  license_text: ''
-./modules/unicase/tocasefold: 
-  copyright: ''
-  hash: a3d629edd2f6d2f6427e2fc759d9c02842aeab9e9ed4558d9fd26a7d1e6f5327
-  license: ''
-  license_text: ''
-./modules/unicase/tolower: 
-  copyright: ''
-  hash: cb60aefc9118c67e11c0d5ea5313c87bf9043e8023d7ff71557ae6fee5431377
-  license: ''
-  license_text: ''
-./modules/unicase/tolower-tests: 
-  copyright: ''
-  hash: ed6841d261a077ff9d189aced8317906563d264a53f036b1456c349ae5390ae3
-  license: ''
-  license_text: ''
-./modules/unicase/totitle: 
-  copyright: ''
-  hash: e925016c7c1af9b8ead81b405cb19569ac2466537e6b6e77e14c80ecd2ec02e7
-  license: ''
-  license_text: ''
-./modules/unicase/totitle-tests: 
-  copyright: ''
-  hash: 1f2e63b6c7d4c4a9231bdb55822ee9a5832a12b406c36a33c84adcd9a508293b
-  license: ''
-  license_text: ''
-./modules/unicase/toupper: 
-  copyright: ''
-  hash: 8aaecc8f0fe8244ed1d057a63648588c58a80e4e338325bdd98064b6e165f6e0
-  license: ''
-  license_text: ''
-./modules/unicase/toupper-tests: 
-  copyright: ''
-  hash: 088bfb70a96d99be06836347c59c9c427061bb90e5783de5af107ca569f7b2dd
-  license: ''
-  license_text: ''
-./modules/unicase/u16-casecmp: 
-  copyright: ''
-  hash: 6818530e13d0a9179cc5a324828cf275590bcfd888606734319f2ec85c2d3fbe
-  license: ''
-  license_text: ''
-./modules/unicase/u16-casecmp-tests: 
-  copyright: ''
-  hash: 985b607384f6ccd0908c338c8c94a95aab290707ebd945648da7e12179a32c91
-  license: ''
-  license_text: ''
-./modules/unicase/u16-casecoll: 
-  copyright: ''
-  hash: 45c99149a78c4b226c7a25a8d9c5f5218aa6f7a058fe7f17f42ccd1a6ca80689
-  license: ''
-  license_text: ''
-./modules/unicase/u16-casecoll-tests: 
-  copyright: ''
-  hash: 31e39a4c7ae487d67ef3519c89bd1899593a2ea346d71aaf1713d7f324287de1
-  license: ''
-  license_text: ''
-./modules/unicase/u16-casefold: 
-  copyright: ''
-  hash: 1383cbf1be4a2c31ad98d3f876114778e463c88e466311c800f8d9f9af4cc472
-  license: ''
-  license_text: ''
-./modules/unicase/u16-casefold-tests: 
-  copyright: ''
-  hash: fd0a7aa152c9c02757c872500ebebc99d493cc73a033f2ec7c8c64354e23cd09
-  license: ''
-  license_text: ''
-./modules/unicase/u16-casemap: 
-  copyright: ''
-  hash: 9ea6f5e45a7f443b1e11ff87d70fc7d148801d46f71a95bc7031cdf4f383347e
-  license: ''
-  license_text: ''
-./modules/unicase/u16-casexfrm: 
-  copyright: ''
-  hash: fbb9c5801735a92bbb367d8a356f2db64c9d997b9241b555c140e71ff73469a4
-  license: ''
-  license_text: ''
-./modules/unicase/u16-ct-casefold: 
-  copyright: ''
-  hash: 37159365740209e5a7d17829cbb9238610e73bc05bc9149e833a2e28fbe77ce9
-  license: ''
-  license_text: ''
-./modules/unicase/u16-ct-tolower: 
-  copyright: ''
-  hash: c013fbe72a99d95e8fdaea9c91f88d1798996a9da2955066ba5fad8f88a4e6f8
-  license: ''
-  license_text: ''
-./modules/unicase/u16-ct-totitle: 
-  copyright: ''
-  hash: 4046b7bc9d5c34f4e7148868c75a798828887843774ae10176ea83b16b045120
-  license: ''
-  license_text: ''
-./modules/unicase/u16-ct-toupper: 
-  copyright: ''
-  hash: ccc71091922f7fc2f26e634f29d0882ca751840f94f4a06a5e425f173c789a49
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-cased: 
-  copyright: ''
-  hash: ba1e8be4fd14bbbd10df6d3846465b905c03f32b3bd711833abfb4001c02ad9d
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-cased-tests: 
-  copyright: ''
-  hash: 1c1de2ab2b428650431c1f5b244636c8072417833b0bd0b11de97f1ae398e94f
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-casefolded: 
-  copyright: ''
-  hash: 698f79552a6d2283f17b202a7a3aee2a5f07e49628324f15a05f8e9a6dca39e9
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-casefolded-tests: 
-  copyright: ''
-  hash: 051f375cfb7382a8e1ec344b0e108dc1f934c79addfb7f42c387efc9752ca6fb
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-invariant: 
-  copyright: ''
-  hash: 8bcd7e96e446f36364a2db34bbc8412c8c9ab12d16c3b546e8b93feadfd87250
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-lowercase: 
-  copyright: ''
-  hash: c2d486e628e83d57d3c989b6612716c7ae7078b9f1724af9db944683026daeb5
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-lowercase-tests: 
-  copyright: ''
-  hash: c66db367c2fb8c1f4732a1bc4bb9852fc97cc8d1dafeefd6c4bd9f39b5865c1d
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-titlecase: 
-  copyright: ''
-  hash: 818c955449e0b476340ed38f643c41356997718494b7813fce44fe792561d5ed
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-titlecase-tests: 
-  copyright: ''
-  hash: 04baba42d970bf07ea45cb23bc96cd6155052942ae365b709a9da6d3f80c597c
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-uppercase: 
-  copyright: ''
-  hash: e82ea18eb83b699d27082593af769c8b81bc40b86cf57237c8a4e4fe9a94ac73
-  license: ''
-  license_text: ''
-./modules/unicase/u16-is-uppercase-tests: 
-  copyright: ''
-  hash: 7fbdeb55ef1e8b4e151e68589989bfba543e3ad424adc8a522aa5c58ef8354fb
-  license: ''
-  license_text: ''
-./modules/unicase/u16-prefix-context: 
-  copyright: ''
-  hash: 3dc69cdf655127d5d473e1cde7a899329e2e6b493b673c06ea8018dac8d0fd11
-  license: ''
-  license_text: ''
-./modules/unicase/u16-suffix-context: 
-  copyright: ''
-  hash: b2a18ae78e78297153eac554ec5721d470d74903a32472db0a9ce63e53649851
-  license: ''
-  license_text: ''
-./modules/unicase/u16-tolower: 
-  copyright: ''
-  hash: c347b36dfad840812803552632b08f317baa2df4964177260d34f31a3802a5bc
-  license: ''
-  license_text: ''
-./modules/unicase/u16-tolower-tests: 
-  copyright: ''
-  hash: b84ac0cc25f90fabbeaff0b0da5c26809395c487cfdc9edefadd1c0aefa159e3
-  license: ''
-  license_text: ''
-./modules/unicase/u16-totitle: 
-  copyright: ''
-  hash: 7af4d257d9ecd8143f07a91e018451da0b059307a06a0cfd81087758df75c7af
-  license: ''
-  license_text: ''
-./modules/unicase/u16-totitle-tests: 
-  copyright: ''
-  hash: c0ba0815798f5445b93916c8dfd710ae61a4e4a6b2094b328f6894ea08039eee
-  license: ''
-  license_text: ''
-./modules/unicase/u16-toupper: 
-  copyright: ''
-  hash: 5cdf7796e82e30e9fc8e40dfba528d589ba4ebd2cf2fb0a9c2c15d881876ec2a
-  license: ''
-  license_text: ''
-./modules/unicase/u16-toupper-tests: 
-  copyright: ''
-  hash: 2bf965e463f623ffb1fda685ca7476644c9c68f1a4b5ae48ed9e8a5ccb479ba8
-  license: ''
-  license_text: ''
-./modules/unicase/u32-casecmp: 
-  copyright: ''
-  hash: ec701d2d73236e22962ffd44be8827a1fd4c391c006c3fc71badf76527ecf748
-  license: ''
-  license_text: ''
-./modules/unicase/u32-casecmp-tests: 
-  copyright: ''
-  hash: c58e4566f592b2eae664b53856c1a592f11b7cea1f5c674c88e14ffed26382eb
-  license: ''
-  license_text: ''
-./modules/unicase/u32-casecoll: 
-  copyright: ''
-  hash: 9e95af8cdb3c0708033c65a99f7fc92c1143a42cbf91509c412f2af132e9b58f
-  license: ''
-  license_text: ''
-./modules/unicase/u32-casecoll-tests: 
-  copyright: ''
-  hash: 3a42e511f45e4c6e22669d09ea669fa5e1579d2a29bfea86d31e19d4d0ed188d
-  license: ''
-  license_text: ''
-./modules/unicase/u32-casefold: 
-  copyright: ''
-  hash: 5310bb15354d20b9048c19c38d82f1e9b156513371937d768aef3045e408f613
-  license: ''
-  license_text: ''
-./modules/unicase/u32-casefold-tests: 
-  copyright: ''
-  hash: acff929de3dda45cb7df7a985157f7bbb6978c015ebe181cf7bc390eb4af0b93
-  license: ''
-  license_text: ''
-./modules/unicase/u32-casemap: 
-  copyright: ''
-  hash: fcbef81aa3da3fda669e2899da06f2224954bea21a5b425213b95116ed7c746d
-  license: ''
-  license_text: ''
-./modules/unicase/u32-casexfrm: 
-  copyright: ''
-  hash: 9b77b15825c0269b3fbde717439137cd86ac4bdf7937338a2bfedb6720cc25fe
-  license: ''
-  license_text: ''
-./modules/unicase/u32-ct-casefold: 
-  copyright: ''
-  hash: f934aef180e035571f47c4917cb8b472bc0058556f904e9ddd051a1dd2e488e5
-  license: ''
-  license_text: ''
-./modules/unicase/u32-ct-tolower: 
-  copyright: ''
-  hash: 65c5810ec6e2763cc7b406f472a594a1ce1ebedfd4890bc836005a8bfa1f1853
-  license: ''
-  license_text: ''
-./modules/unicase/u32-ct-totitle: 
-  copyright: ''
-  hash: 730a8124be974b4c6186de5104e5d3a3208002d9b310318e83c304ccc7409eca
-  license: ''
-  license_text: ''
-./modules/unicase/u32-ct-toupper: 
-  copyright: ''
-  hash: 517e6daa7e3ff4e5a9ea617bb230e7ea0bb20dfb4f81c788fd1023f2341cedf4
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-cased: 
-  copyright: ''
-  hash: 5ce9d40cccbffb9a9c49b3d2709bfa0949b0aa906b11393b34975646bf485598
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-cased-tests: 
-  copyright: ''
-  hash: 0e2fe0bc6a28fea85758303a2d5d7f4c1bd9ed3bd94cf16a3949e4d019283271
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-casefolded: 
-  copyright: ''
-  hash: 68c2ba4f4238adf6c1f4cc83d97a6d86118310fd1a641c902e726a695aeb645e
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-casefolded-tests: 
-  copyright: ''
-  hash: 9baaec6610b0e6713ecc0958cac60f2e1784412f211761790f5a097c8a376a9b
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-invariant: 
-  copyright: ''
-  hash: ae4bdd6e40164c85318734c1bfe6ef2406abbf28449716826b5c0cc649dd667b
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-lowercase: 
-  copyright: ''
-  hash: 86a04c1cf14b6234eb58c1c135234d71ae2256ba11690fc0cc1a8383c07545af
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-lowercase-tests: 
-  copyright: ''
-  hash: 561f68eec7a8eca23fe5171edf84c4918d83f7475cf8ca9c8f31299f350e6d1a
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-titlecase: 
-  copyright: ''
-  hash: b51d2022ce7184d979eb3f2c7d7dfd06f5f56ba75835e6869ce84515d7079c3e
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-titlecase-tests: 
-  copyright: ''
-  hash: 6a34c1b561a32f53503cfe5a07e695178e19183100478a7b2830a7dc4aa352f8
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-uppercase: 
-  copyright: ''
-  hash: db114fe07115d41592da51c58b97db87937a0ab28faa8311b1fae5d4e459d4b1
-  license: ''
-  license_text: ''
-./modules/unicase/u32-is-uppercase-tests: 
-  copyright: ''
-  hash: 0b8dbcef01a430670d3ce5ad8f593b6d1d4939bc82726a9375133a366207b5c7
-  license: ''
-  license_text: ''
-./modules/unicase/u32-prefix-context: 
-  copyright: ''
-  hash: ccea335aabbebef46684ab14bc8367ffa7466f82dc077d57791f8bf74284784a
-  license: ''
-  license_text: ''
-./modules/unicase/u32-suffix-context: 
-  copyright: ''
-  hash: 6d3933ac2f59dfdc75c4410111751fd8c876980afb4a270f096a4e6463ca1f34
-  license: ''
-  license_text: ''
-./modules/unicase/u32-tolower: 
-  copyright: ''
-  hash: dc2e33f7d67efc2a63069eb52470379eb1fb354b9a41e9bd84340197db18d244
-  license: ''
-  license_text: ''
-./modules/unicase/u32-tolower-tests: 
-  copyright: ''
-  hash: 691fb04f472062f2627a45ef41710996ab9debbc2cdff9da3b7d7e1cc5da8f30
-  license: ''
-  license_text: ''
-./modules/unicase/u32-totitle: 
-  copyright: ''
-  hash: e3608640fe49bc79b180b9d61a6fe5831d7b68e28690b783490027213e19ecf4
-  license: ''
-  license_text: ''
-./modules/unicase/u32-totitle-tests: 
-  copyright: ''
-  hash: d5ae4231e55bfd01b9a9704cd4e87e501b87da49bf3f776920d0b82e7bbed79e
-  license: ''
-  license_text: ''
-./modules/unicase/u32-toupper: 
-  copyright: ''
-  hash: 2660d6b2ac72e7df1a91d5fb8fa4c8974f075e97adb2a126208fc56b22a009e6
-  license: ''
-  license_text: ''
-./modules/unicase/u32-toupper-tests: 
-  copyright: ''
-  hash: 397f91c63d6aa6541affbb2f2ef04c005c09f8d3a4c8fdb0452823387815be4e
-  license: ''
-  license_text: ''
-./modules/unicase/u8-casecmp: 
-  copyright: ''
-  hash: ca4ae334574da6f0d193c4435b23567011df07932cbc9e4e632d8cbc4887f670
-  license: ''
-  license_text: ''
-./modules/unicase/u8-casecmp-tests: 
-  copyright: ''
-  hash: 5e5bcc1b056e1356f0f621674949ed5a3a3767cbf58d54b88660100dd417af7d
-  license: ''
-  license_text: ''
-./modules/unicase/u8-casecoll: 
-  copyright: ''
-  hash: c1fd7dd20afb27b0fb626c71dd16ee6e6aba9abcb2842d478ce3fc71a4a16864
-  license: ''
-  license_text: ''
-./modules/unicase/u8-casecoll-tests: 
-  copyright: ''
-  hash: b1f44386f0f414be20755588ec32872a75be93ed22a3068bb5bf1bb5d5c05e9e
-  license: ''
-  license_text: ''
-./modules/unicase/u8-casefold: 
-  copyright: ''
-  hash: 46d1dab9d4400496bf9758cc9b76090236c3770e9dd6a82a44e7c9e255be65f4
-  license: ''
-  license_text: ''
-./modules/unicase/u8-casefold-tests: 
-  copyright: ''
-  hash: 700ded2af7d86b2be1884d3b296856d9d832eecb40b12fed9af935a587ef538c
-  license: ''
-  license_text: ''
-./modules/unicase/u8-casemap: 
-  copyright: ''
-  hash: bfe7e7044899155138166242cd1c1db64f376771f29db7b9a6387bc5545a9caa
-  license: ''
-  license_text: ''
-./modules/unicase/u8-casexfrm: 
-  copyright: ''
-  hash: fd79cc18b0b31cd043b575383a74055c1ab4d434b0caf8cdefe71d549ada9c1d
-  license: ''
-  license_text: ''
-./modules/unicase/u8-ct-casefold: 
-  copyright: ''
-  hash: 92b28bcd3f8b164ce3db000d9c10827e2329ea8bf055c1311da885fcf11c7224
-  license: ''
-  license_text: ''
-./modules/unicase/u8-ct-tolower: 
-  copyright: ''
-  hash: acd32d2f285c193fd4cae9d56b4fe8f852186035b027ccf969417d5304ea6632
-  license: ''
-  license_text: ''
-./modules/unicase/u8-ct-totitle: 
-  copyright: ''
-  hash: cc8ed15b0ec76d44ca782741821bc796bd06da7fa9d5524ecd4af85339fd2f11
-  license: ''
-  license_text: ''
-./modules/unicase/u8-ct-toupper: 
-  copyright: ''
-  hash: dc730f64aae7b4a03dac0b92486a77107d5b189aea7196bfd0685c62c8df95eb
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-cased: 
-  copyright: ''
-  hash: 29346feb4d88b35da1965d8ceb74c33eb24ec3d7c6755e969d738c7d5e1861e1
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-cased-tests: 
-  copyright: ''
-  hash: fba92985ae9d2857e1f18ea30fa68404144e7a077ae17ab3f6b6d387630844bc
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-casefolded: 
-  copyright: ''
-  hash: 004823bf45232bd010b755640fc38539c68ba233137b104b79681107e562c28e
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-casefolded-tests: 
-  copyright: ''
-  hash: 263aed1238b1b7f1fc41747585b8558ba184b2943e6a0a5ed09254d8bceb70ac
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-invariant: 
-  copyright: ''
-  hash: 60948f10c3faf0e5f1e8c75d4e4755025178a0b7602665ec2b780b44e425331e
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-lowercase: 
-  copyright: ''
-  hash: 34edd9b8acf5ffb5cefdf629ba44424e2b4e5b06d2ced1ff3ed7fe8f98b4c066
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-lowercase-tests: 
-  copyright: ''
-  hash: 10ab7630b97d9a85a2133f08832a5930e9cb76ee4d5270ff237f8909b4f69381
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-titlecase: 
-  copyright: ''
-  hash: 6cf010e8975c0b9c31bcae09d35a46ccabcb6bf9e43268235b44f5fa2128b4a6
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-titlecase-tests: 
-  copyright: ''
-  hash: e9877102393d0dc188b0b0350ba436ab08caa492f344e9366c717badccdb9cba
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-uppercase: 
-  copyright: ''
-  hash: 4c431932e74d9e241b6cbfd96a8677648a83e12d8eb33be4c5bd0ca75ef02fd7
-  license: ''
-  license_text: ''
-./modules/unicase/u8-is-uppercase-tests: 
-  copyright: ''
-  hash: 8abdff1857f5cf37dccb010dfb0a602f9d17d959ae32eef30f100b85f28f0d56
-  license: ''
-  license_text: ''
-./modules/unicase/u8-prefix-context: 
-  copyright: ''
-  hash: 5ecf47ded622339828354fc0bd8227df80d61343f38be056ac262ac9c7edb6f0
-  license: ''
-  license_text: ''
-./modules/unicase/u8-suffix-context: 
-  copyright: ''
-  hash: 52db1dee2058019ca6d4feda74482cffbfc5a4a565b53177a9abbefe7dc08d81
-  license: ''
-  license_text: ''
-./modules/unicase/u8-tolower: 
-  copyright: ''
-  hash: be9d2bebe845bb7214ea19dfb26d4fe1e965a5f155b2c969dd4115bd76c577b3
-  license: ''
-  license_text: ''
-./modules/unicase/u8-tolower-tests: 
-  copyright: ''
-  hash: 9df460586be34534dbbb0b9c70dc0bb47627fb9753396d62476a4b614fa725b9
-  license: ''
-  license_text: ''
-./modules/unicase/u8-totitle: 
-  copyright: ''
-  hash: 85a1ae83366e9c279164785a0942861e11250e991d68a9941e8456b5d5091689
-  license: ''
-  license_text: ''
-./modules/unicase/u8-totitle-tests: 
-  copyright: ''
-  hash: 8925b3a190c422e6f0d9e31d19ab54caf4a8887690a5b620d641c5017370f1f3
-  license: ''
-  license_text: ''
-./modules/unicase/u8-toupper: 
-  copyright: ''
-  hash: 6fe8062fb2f1159eef3335ce57152d96b2e90f841a93268a327eb9b33d4b7dac
-  license: ''
-  license_text: ''
-./modules/unicase/u8-toupper-tests: 
-  copyright: ''
-  hash: 564156d657eeb5d102cf153ea549d993603c9ff628bd973bfe800f57d1a679d2
-  license: ''
-  license_text: ''
-./modules/unicase/ulc-casecmp: 
-  copyright: ''
-  hash: 68c2c9ee2d34116f51d3455d0132e2c2b075668f72d776d04eb5690a70358676
-  license: ''
-  license_text: ''
-./modules/unicase/ulc-casecmp-tests: 
-  copyright: ''
-  hash: 585ee94daa40b366d603f34b7b173a34a1b8964fe5c56cf2c35050919a4d44c6
-  license: ''
-  license_text: ''
-./modules/unicase/ulc-casecoll: 
-  copyright: ''
-  hash: 909fe97e8c38d2c720cb273d484a279f01bc645915baa123ded5c62b6e8f782b
-  license: ''
-  license_text: ''
-./modules/unicase/ulc-casecoll-tests: 
-  copyright: ''
-  hash: 3aa05820f48ae55daebe731221cd5d0df5ec9529d0a600c7d7b206b32fdef9c0
-  license: ''
-  license_text: ''
-./modules/unicase/ulc-casexfrm: 
-  copyright: ''
-  hash: 80c074f7cefa5fe6db0f329a84821f63a62f1be16f6186352a47e63e92e4fe5b
-  license: ''
-  license_text: ''
-./modules/unicodeio: 
-  copyright: ''
-  hash: 4333a8ae7bc04faa921bfb89db8fe32b88be80b215f2472f2bc7a68652de0dbb
-  license: ''
-  license_text: ''
-./modules/uniconv/base: 
-  copyright: ''
-  hash: 50d3e96212a8941485ac49045d1b2d9a621d2e31818e8c00408f034d2017e43b
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-conv-from-enc: 
-  copyright: ''
-  hash: c46131ff4aa3a2106a7a1339801be9af40b215349485b7e0c4e6a36b6f4ff1c4
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-conv-from-enc-tests: 
-  copyright: ''
-  hash: 472e10a2772a1912b22ae6a1c68afbf664f725de5c5df3e3cdba23f9f204d64e
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-conv-to-enc: 
-  copyright: ''
-  hash: d4074a6bb0f69e6645106a507c446abf11a81f25e5e5557a51791d353716cef4
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-conv-to-enc-tests: 
-  copyright: ''
-  hash: 9520afbe67376243ccb7117be073ad4d81d6a2f0e8c091de74830ff5cf55efc7
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-strconv-from-enc: 
-  copyright: ''
-  hash: e66be9d71e6bf985c519af717648ae35ee39fd7dc2cf4a41954ec7b911b58386
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-strconv-from-enc-tests: 
-  copyright: ''
-  hash: 8f56873fd4d0d3179d47b0ccd34640859f3d03d04a46f6dcc8000581d84d475c
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-strconv-from-locale: 
-  copyright: ''
-  hash: e7d3a887f18ea4704b8382f80154d1a8ff4b1f3ad8bdf3daa8780df3f5fb0794
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-strconv-to-enc: 
-  copyright: ''
-  hash: 804a6b8458959515baa0ade9234305472d8ca4489645997a233a770ccfa3db38
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-strconv-to-enc-tests: 
-  copyright: ''
-  hash: b2e5d8c2f8ffcfd1d28486a5bd1040fc1ca57eeabcc21ea302c2812afeb77cd4
-  license: ''
-  license_text: ''
-./modules/uniconv/u16-strconv-to-locale: 
-  copyright: ''
-  hash: 455b9eda97528d3fed7c2192b1c5d598f08b8e0c3c7908b70105a59cc9a5e712
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-conv-from-enc: 
-  copyright: ''
-  hash: b773a682f169e27a916669cb459f8929157695299844f7ad0b5c8ca1b07c9d98
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-conv-from-enc-tests: 
-  copyright: ''
-  hash: b7a87e6d1fc76ab5af93ff1ec14381b3b5fa556301ce03944b16ce80fa3a474d
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-conv-to-enc: 
-  copyright: ''
-  hash: 5f329346c8a18e1cddb439eeab4e40485158bbec7bab75fda688dea2459980f1
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-conv-to-enc-tests: 
-  copyright: ''
-  hash: 3124b5d26aae7637bbd24af36baa31150343715f56e7871635a468dd8466baa3
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-strconv-from-enc: 
-  copyright: ''
-  hash: 359ebb5cc74fc82ed45796edf491764c8f7e83e20b6dacc7d13e5416c3e471d5
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-strconv-from-enc-tests: 
-  copyright: ''
-  hash: a0a2e6dc86862e28989f20c4ddaa34e8223c809f806cd72cd6640178ae8b5cd1
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-strconv-from-locale: 
-  copyright: ''
-  hash: c011f0e8d5e5e2f63a61b369538cd266305938147e2ab39f73c5e3784c8d735b
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-strconv-to-enc: 
-  copyright: ''
-  hash: 5d6453b129313ce2c2d717d648d8b8e45489abbbd3955c02810b5a7572b9b719
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-strconv-to-enc-tests: 
-  copyright: ''
-  hash: 8f88075d042c44e2aa42892fa09fa9af6430a420fdaac65c1b38a23fa6fab98e
-  license: ''
-  license_text: ''
-./modules/uniconv/u32-strconv-to-locale: 
-  copyright: ''
-  hash: 91ad7c7e746794b8c39d48ff6d86f66be144aff2dcb4ce7a47b2d0309f743704
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-conv-from-enc: 
-  copyright: ''
-  hash: 804e9093cbca9f80897ffa3c0fd7a241fbe11ba1ffba444784d6e42d0356c977
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-conv-from-enc-tests: 
-  copyright: ''
-  hash: 352f9ccc88acaabc9a51eba5d6a0ff8e28e22f469b191bc49c1bc98977f5bec0
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-conv-to-enc: 
-  copyright: ''
-  hash: cc7c4c9d46ffdc0195647b7eece0c79fc431097740a27bcdef04b2c7cd2e6526
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-conv-to-enc-tests: 
-  copyright: ''
-  hash: 3ea5f97d358e1d8b795d46d69f34aa29ea7c433a36855e8806a6dfbfea298f89
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-strconv-from-enc: 
-  copyright: ''
-  hash: 5e258f26c0b35883b6b9bec42d435ab74abc790026b28b0011349c63723f84c5
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-strconv-from-enc-tests: 
-  copyright: ''
-  hash: e2d97875d2e2efad64b3c5b95a2ab213f85221612cf878b28a659b50f6ad1e5a
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-strconv-from-locale: 
-  copyright: ''
-  hash: c956a8c27cb3e458b463f4e91d841246c7a6ae91891cdd9499a57b3b48ed9dd4
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-strconv-to-enc: 
-  copyright: ''
-  hash: b19a1d9c1504bb80aa9cd09ccbffaaf0a945434256e26d6c6429afcee0e16bd4
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-strconv-to-enc-tests: 
-  copyright: ''
-  hash: 74ba81dad04705f9bb90d5907e722a799d9edb194320dcd893dcbb04489b8618
-  license: ''
-  license_text: ''
-./modules/uniconv/u8-strconv-to-locale: 
-  copyright: ''
-  hash: d775764fbd80cf47c97204c533f0bac9bfb7c1d68ed1c5281a558e905aca1ea1
-  license: ''
-  license_text: ''
-./modules/unictype/base: 
-  copyright: ''
-  hash: 4e1cf149a4cc5d587b34fd6d92440d314b2af3393dfd0a61b4a15174e34bb77f
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-all: 
-  copyright: ''
-  hash: 632ad012575ff81135aad7e11721e8ed5468908229d9ee70f9a3f26de61c0a4d
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-byname: 
-  copyright: ''
-  hash: 09674c570ebb614f743ba480be41e7594d43113441387f5559c2ceb7b436f156
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-byname-tests: 
-  copyright: ''
-  hash: 37431bc97e0f6d78ce420c06b21cabcf68769652511504ab8d1039801a9ec07f
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-name: 
-  copyright: ''
-  hash: 6b7c212cdc0f09083c9e15b6c7828faae41878570511f81d229ada75fe8ca833
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-name-tests: 
-  copyright: ''
-  hash: 1f692ec85934508818f0e9455388105761ec91d7b8651deb5821c715b5955583
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-of: 
-  copyright: ''
-  hash: df49d7be4ac72c665f506751c8f93dc7924128b5c1b30057ebbb80e80d7c07d8
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-of-tests: 
-  copyright: ''
-  hash: 0df5b16f511b104b64d2a64bcad6a61c8334903b7f0fa240e3245366692e9ebc
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-test: 
-  copyright: ''
-  hash: e04b555d948c988f298ed25f34bdac22386c23bdfcf2543516f4641c1f39d8dc
-  license: ''
-  license_text: ''
-./modules/unictype/bidicategory-test-tests: 
-  copyright: ''
-  hash: ee67d7005fc35e3fb828c820d0b3d7c19d38f941aa7bf6099c498543c567dfe5
-  license: ''
-  license_text: ''
-./modules/unictype/block-all: 
-  copyright: ''
-  hash: bdfff6be11a258cb47ab7a8bf6178d7d7114512a689a521a4953ee93896992d0
-  license: ''
-  license_text: ''
-./modules/unictype/block-list: 
-  copyright: ''
-  hash: 79571465a0c92e50f110cee696a8897e1960025526b1f2ebcb85b4d1e85419e2
-  license: ''
-  license_text: ''
-./modules/unictype/block-list-tests: 
-  copyright: ''
-  hash: daeb13d7d8249409a86aca59f29f900a224a8dd687906034467e7acfe4abaab9
-  license: ''
-  license_text: ''
-./modules/unictype/block-of: 
-  copyright: ''
-  hash: 7a84f72f56b616480823c9145721e8a26adf4238ab1a3119781b9fbdef69c6b4
-  license: ''
-  license_text: ''
-./modules/unictype/block-of-tests: 
-  copyright: ''
-  hash: cbcc5b54e996690827b7460481468e4d1b8ef456588d2211296bd1442151a510
-  license: ''
-  license_text: ''
-./modules/unictype/block-test: 
-  copyright: ''
-  hash: 82f1e702e237268a7d1acf7963b035db43cc7f83816b40aa62da8ba990bf806a
-  license: ''
-  license_text: ''
-./modules/unictype/block-test-tests: 
-  copyright: ''
-  hash: 2c8ab641903b6c1bf1ef067359f59acc62938576a819aff154170166cbf468e4
-  license: ''
-  license_text: ''
-./modules/unictype/category-C: 
-  copyright: ''
-  hash: b50f0ee64a86121ee994c6f0b630f23efd1865a08e792be1feb051cda4729a1a
-  license: ''
-  license_text: ''
-./modules/unictype/category-C-tests: 
-  copyright: ''
-  hash: a65b4f3c13e24ce5097984842008e38e3d0376410f7440b12efd00bcbf0e228b
-  license: ''
-  license_text: ''
-./modules/unictype/category-Cc: 
-  copyright: ''
-  hash: 8ddd6768f801ea69a4c257bfaf3f185a20f151b01dcd2d27f43a05dd22d7a288
-  license: ''
-  license_text: ''
-./modules/unictype/category-Cc-tests: 
-  copyright: ''
-  hash: f8aaf65656f005829d0cedebea1b5e64724d10961760d90965f21ede7be9ed8d
-  license: ''
-  license_text: ''
-./modules/unictype/category-Cf: 
-  copyright: ''
-  hash: 3820a40d604e9af2a925220231c4f94c688f10240e1b918aedda94c19f63f42d
-  license: ''
-  license_text: ''
-./modules/unictype/category-Cf-tests: 
-  copyright: ''
-  hash: 9cb0efdc2747f61dbdf9d152c2e9aa9435a602c03fe88a162ca602d4d17fc2dd
-  license: ''
-  license_text: ''
-./modules/unictype/category-Cn: 
-  copyright: ''
-  hash: b686b3ffa74ae9bf11fe7c3edd11d051c9532e49ff8bcaf8681a815a91dc2dda
-  license: ''
-  license_text: ''
-./modules/unictype/category-Cn-tests: 
-  copyright: ''
-  hash: d91ee0666b67145ef883bf1cc95deec3f918b0080befd8f5ddcfad3c19789f93
-  license: ''
-  license_text: ''
-./modules/unictype/category-Co: 
-  copyright: ''
-  hash: 6b6e944701acde3db6b942a62d48b1a4a7c46810b96a5c49f385ee6c9b27ac9c
-  license: ''
-  license_text: ''
-./modules/unictype/category-Co-tests: 
-  copyright: ''
-  hash: d873cf764c6a47ea7ee5f2d72407373de8f970043e9263270008e67b731f8e25
-  license: ''
-  license_text: ''
-./modules/unictype/category-Cs: 
-  copyright: ''
-  hash: f176ebb894fc40328b46d9fa4a72d8f165276f1ec6839db1f25cb4fc0c73620f
-  license: ''
-  license_text: ''
-./modules/unictype/category-Cs-tests: 
-  copyright: ''
-  hash: d151c46f4827e266335ed4ec6cdf187649eda552000ea99975eda0d8772ac3d4
-  license: ''
-  license_text: ''
-./modules/unictype/category-L: 
-  copyright: ''
-  hash: f5869373405431b090effa65191e784d1a69e6b6b42a886bb9df656a5ee02413
-  license: ''
-  license_text: ''
-./modules/unictype/category-L-tests: 
-  copyright: ''
-  hash: ea767cac4c3bb427c1b2b182b5c1b46f63cff6f5681b21f9d06680ef355ba8e5
-  license: ''
-  license_text: ''
-./modules/unictype/category-Ll: 
-  copyright: ''
-  hash: 03f83b90f827cb120251bcbe842eaa084e7cdb38489c334929b938268a12471e
-  license: ''
-  license_text: ''
-./modules/unictype/category-Ll-tests: 
-  copyright: ''
-  hash: af6bca72d7cc585c103c7a027820119a48cb5acaf4aee212fbb217c9c00ff3c7
-  license: ''
-  license_text: ''
-./modules/unictype/category-Lm: 
-  copyright: ''
-  hash: c166f5182990d42f606eec6fa97b95b8ce1df5876241fdaa12f1a11743b2aab1
-  license: ''
-  license_text: ''
-./modules/unictype/category-Lm-tests: 
-  copyright: ''
-  hash: 71473868edc5241c85418fce441b7013525978d62e67cbcfe0fec9dcddfd2b57
-  license: ''
-  license_text: ''
-./modules/unictype/category-Lo: 
-  copyright: ''
-  hash: 67158963c6e0a345ee9bc0d5c065c4c18a7168b5879737172cd1112d72c4591a
-  license: ''
-  license_text: ''
-./modules/unictype/category-Lo-tests: 
-  copyright: ''
-  hash: 0c158f7fa0611249fba73685a045cb373bf649b0635c6e872d3eb980dc1b21a1
-  license: ''
-  license_text: ''
-./modules/unictype/category-Lt: 
-  copyright: ''
-  hash: ee79e9d68d1912c787845696834c42487ba52a0cd3b36aa84653deb1322e490d
-  license: ''
-  license_text: ''
-./modules/unictype/category-Lt-tests: 
-  copyright: ''
-  hash: 11f268108f2bb9d1606114611cb44960e4662fa9f8198acf4fd60da549accf78
-  license: ''
-  license_text: ''
-./modules/unictype/category-Lu: 
-  copyright: ''
-  hash: 0a4eaa83dcddd00b34c73ca983f04117269bf5bfa158fa0d89832be5094b4d90
-  license: ''
-  license_text: ''
-./modules/unictype/category-Lu-tests: 
-  copyright: ''
-  hash: a0dac69a29c09411c98a76369af5b198ea84aac0b398a3b4ae86971b79ee9126
-  license: ''
-  license_text: ''
-./modules/unictype/category-M: 
-  copyright: ''
-  hash: a7a00a68742ea377e8acc7abdbc8be4e68d02f21b0620169f59307388032c4db
-  license: ''
-  license_text: ''
-./modules/unictype/category-M-tests: 
-  copyright: ''
-  hash: 577a796ee3c175c3259e994317d9aed54c5933c67d0a83f6bd9fc8e5850cc9a9
-  license: ''
-  license_text: ''
-./modules/unictype/category-Mc: 
-  copyright: ''
-  hash: 71c90dc0adcd33bf142b74d95207976f76732c2cb30772cfe56370e1c91ed7eb
-  license: ''
-  license_text: ''
-./modules/unictype/category-Mc-tests: 
-  copyright: ''
-  hash: 431977d8c1cb9d82897fbdd9a08deef510b682fab7f6159e7fc216c38c1e8e9a
-  license: ''
-  license_text: ''
-./modules/unictype/category-Me: 
-  copyright: ''
-  hash: a2767f24d3e738ee3492d2d932bbefab6f7385cc599baeb7a8a086b091617d2c
-  license: ''
-  license_text: ''
-./modules/unictype/category-Me-tests: 
-  copyright: ''
-  hash: 35bbc1fda018e0b791449c5008793296c3a3e62eda8bf2e0e88bed08a2dc9d1a
-  license: ''
-  license_text: ''
-./modules/unictype/category-Mn: 
-  copyright: ''
-  hash: 9c497c87637eb462f82eda98acec5373e61fba83ee7ec2c427de7b035973fa34
-  license: ''
-  license_text: ''
-./modules/unictype/category-Mn-tests: 
-  copyright: ''
-  hash: c00bff9f96b47ab9816b2c9a96f2c47b80d0752a80bb67654788f43859461d1d
-  license: ''
-  license_text: ''
-./modules/unictype/category-N: 
-  copyright: ''
-  hash: 2bfe868358d181bfd867763536ff7f3bb0f44291e6e03929da90d0d120400092
-  license: ''
-  license_text: ''
-./modules/unictype/category-N-tests: 
-  copyright: ''
-  hash: c23cbc138890321fd3fdb198b39f748116f9238cf675f52255977b6d45721ee7
-  license: ''
-  license_text: ''
-./modules/unictype/category-Nd: 
-  copyright: ''
-  hash: d2b53e39c388911f4942747fc095dfb19a39f66203827f697c4ae977c9a4c583
-  license: ''
-  license_text: ''
-./modules/unictype/category-Nd-tests: 
-  copyright: ''
-  hash: 63f97050d8f2145d4b9c1e662044a192ff4d734ed2cff11a3d7cb2f48830492f
-  license: ''
-  license_text: ''
-./modules/unictype/category-Nl: 
-  copyright: ''
-  hash: 2c97eed29932465ae99eaff40da7232f77ee20bebe9743b3a5e7ce90d317a910
-  license: ''
-  license_text: ''
-./modules/unictype/category-Nl-tests: 
-  copyright: ''
-  hash: 1401df484ceba15e90ce4fcdf480b3e089a3275e8b913efbb46db266cf6177d8
-  license: ''
-  license_text: ''
-./modules/unictype/category-No: 
-  copyright: ''
-  hash: 3397e879fc6577306d2fe96f9cdbe3a0a86c9ed66024645d234845212359aea4
-  license: ''
-  license_text: ''
-./modules/unictype/category-No-tests: 
-  copyright: ''
-  hash: 2a89303b56ce7233f8d856dd764d8ac0a5ded572ef43e8bc2fe133fe627f2d85
-  license: ''
-  license_text: ''
-./modules/unictype/category-P: 
-  copyright: ''
-  hash: 89beab2585b3809a28361467d0b2a72d39325830bf80777af3fe0897b3e8f81d
-  license: ''
-  license_text: ''
-./modules/unictype/category-P-tests: 
-  copyright: ''
-  hash: 8df51034f7e890e668b22a22d07a297b15c0e01cc85b073962d2598adb02781f
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pc: 
-  copyright: ''
-  hash: baec1ce567b94017943677ccd928abfbbfbe0fd8c3734619eb83fe5c97aeb88e
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pc-tests: 
-  copyright: ''
-  hash: 08ac7a0073c001eb0357900f764e29214a2e996a07da7b72cac05dd1a6695188
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pd: 
-  copyright: ''
-  hash: c69b1aa58dbacb75dd27403d35d2ab221f4f8d4275b9bbec105498b201dd447e
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pd-tests: 
-  copyright: ''
-  hash: 0b164d7f16c3ec72454fa87fe962e93e7548c0f60cbc54a25a94f28444e95dc9
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pe: 
-  copyright: ''
-  hash: c930640ce04a7798a64dd30bbc66a35ac09088f561aec806d11ceae4cd3003c3
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pe-tests: 
-  copyright: ''
-  hash: afae91619e0b047a38295ae48bc0fd18560f48d16b018bf24050eab24a4b41d8
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pf: 
-  copyright: ''
-  hash: 1733b390e82ece48e63ae4e7c1445ce652192926eaa57566eaf5c3623deafcbb
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pf-tests: 
-  copyright: ''
-  hash: 01a4afab769af5dae8d7f1a13a2df2eb8108250e5876122560f46d13309ce3ed
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pi: 
-  copyright: ''
-  hash: 4cf8b1ef413c59c2ac665b277476526f48e614fb23e9b19b3481e86af728e62c
-  license: ''
-  license_text: ''
-./modules/unictype/category-Pi-tests: 
-  copyright: ''
-  hash: f4a65dcf759d18b45032f2a6f2f45c6e8b132f9e2453532b581816a208fe392d
-  license: ''
-  license_text: ''
-./modules/unictype/category-Po: 
-  copyright: ''
-  hash: d52f4465d5fd2beb1e22120866a103b5482d3932bedae9c0898cd78da58dedcb
-  license: ''
-  license_text: ''
-./modules/unictype/category-Po-tests: 
-  copyright: ''
-  hash: 76a5d75e2d40dc3319f0fee99c21bfae46838612062409782f9033eab9f560a1
-  license: ''
-  license_text: ''
-./modules/unictype/category-Ps: 
-  copyright: ''
-  hash: b04f01af08d6326b4d8ef8fbf5bd9b199dbadbffc4234d2d7233dafa424c25cb
-  license: ''
-  license_text: ''
-./modules/unictype/category-Ps-tests: 
-  copyright: ''
-  hash: a1c9597abf14374fbdf86528dbfc850e867fd217d1c1b024139c6dee3a79aa04
-  license: ''
-  license_text: ''
-./modules/unictype/category-S: 
-  copyright: ''
-  hash: 3b1f6fe997bd2a5b457bad45930b2f0347be0f6392cbf0ce864c0df37f6835a7
-  license: ''
-  license_text: ''
-./modules/unictype/category-S-tests: 
-  copyright: ''
-  hash: 16bb3a0a6ab8c9af9d79ce7425b8b8d2ae3d6151249988b73d622c7c5b7a7de7
-  license: ''
-  license_text: ''
-./modules/unictype/category-Sc: 
-  copyright: ''
-  hash: 6eb49b9fa984148e7370fb7cf238b34303dc2713452f854d289d119beda4d0a6
-  license: ''
-  license_text: ''
-./modules/unictype/category-Sc-tests: 
-  copyright: ''
-  hash: a4ca01545a5c388f10de42be48b57b7bdf6c2025f297183c4e09138c64c3e9e7
-  license: ''
-  license_text: ''
-./modules/unictype/category-Sk: 
-  copyright: ''
-  hash: fc08600f54e46b801537fbb2282bf602d46c3eae8eef49fde48540d800f5ea45
-  license: ''
-  license_text: ''
-./modules/unictype/category-Sk-tests: 
-  copyright: ''
-  hash: 0af20842d317e64eaed4d4cac1d29f1057f07218e7bd54e0308882d5e245164b
-  license: ''
-  license_text: ''
-./modules/unictype/category-Sm: 
-  copyright: ''
-  hash: e61490e30f1edf81b4e66dc4d0c3527aa343e35173dc55dc5485c084f1ee0f4b
-  license: ''
-  license_text: ''
-./modules/unictype/category-Sm-tests: 
-  copyright: ''
-  hash: c5e37d4c9c1393eda2c620a82f5b375566fb0f9995fc5441f2093f30ccc3166d
-  license: ''
-  license_text: ''
-./modules/unictype/category-So: 
-  copyright: ''
-  hash: a3dff7aa78b2315131bc3318189b8d9a8e6b06793fc849c3994be974b035a253
-  license: ''
-  license_text: ''
-./modules/unictype/category-So-tests: 
-  copyright: ''
-  hash: 49c2087f7b9afff2491ecf214c89e44009b358b14b5b9d869b54f0c0c92a361b
-  license: ''
-  license_text: ''
-./modules/unictype/category-Z: 
-  copyright: ''
-  hash: ca060713544186ac2208fbdc02c6dbae13dc78dcd0445d53d62d4e02ba9023ab
-  license: ''
-  license_text: ''
-./modules/unictype/category-Z-tests: 
-  copyright: ''
-  hash: 61ecd265cb17d3e856e153b5b091186a9ab9909a9a66788d066d277af58ceace
-  license: ''
-  license_text: ''
-./modules/unictype/category-Zl: 
-  copyright: ''
-  hash: e3d90459eb2e48d1e5c764da67c517e8e9ebd43793276d784020dcbae9ff7d0c
-  license: ''
-  license_text: ''
-./modules/unictype/category-Zl-tests: 
-  copyright: ''
-  hash: 4c9ef314a9b6cab23d2d6f2d0444d4fe9b7f9954af49e0bd6e7030994aec127b
-  license: ''
-  license_text: ''
-./modules/unictype/category-Zp: 
-  copyright: ''
-  hash: 5864d79e3b057201ad88484f89888d7714eb13334438ec9cadb7240ad3663147
-  license: ''
-  license_text: ''
-./modules/unictype/category-Zp-tests: 
-  copyright: ''
-  hash: a0c6723ba2159e4987e988da7fb8913ac6b460b690267332a75fbf451c458216
-  license: ''
-  license_text: ''
-./modules/unictype/category-Zs: 
-  copyright: ''
-  hash: 5981c5e91908b4fdf5033b2606eaa690522fc36d1bdbb6b60bf7ef9d8fdc8e43
-  license: ''
-  license_text: ''
-./modules/unictype/category-Zs-tests: 
-  copyright: ''
-  hash: 38745f1e1cd5b9242a9413a1e3d25ba47a20404f3cc3cb4b318a28f4ed9c931d
-  license: ''
-  license_text: ''
-./modules/unictype/category-all: 
-  copyright: ''
-  hash: 3d894bc3558f7fdf0760387f32b9627717dd24428a19a48cb411f113efeebace
-  license: ''
-  license_text: ''
-./modules/unictype/category-and: 
-  copyright: ''
-  hash: 78d599519e1b4077a85a754c8a76b52e924d7df2d790839ae0ebf2bf50cdd7de
-  license: ''
-  license_text: ''
-./modules/unictype/category-and-not: 
-  copyright: ''
-  hash: 35825dba1e5244e4c37a040a16cf1cd5f5a37e7e561855a07cba4c3776ace911
-  license: ''
-  license_text: ''
-./modules/unictype/category-and-not-tests: 
-  copyright: ''
-  hash: 5dfcd8920d40b91371b3d4fec6cb0452bcd2864024e1e5a4544b9e2097e2f425
-  license: ''
-  license_text: ''
-./modules/unictype/category-and-tests: 
-  copyright: ''
-  hash: c538067c2d779faefd644adddf042cab9032a40dfeb4b6b03c38378351d63311
-  license: ''
-  license_text: ''
-./modules/unictype/category-byname: 
-  copyright: ''
-  hash: d0a9fe6bb6d1837f702eb144212981a3a2eb06af802930b189f942340510b510
-  license: ''
-  license_text: ''
-./modules/unictype/category-byname-tests: 
-  copyright: ''
-  hash: a57b1223530e502aa4f0bda361a12a55a0b0fcb599b6bf8754677488da057fdf
-  license: ''
-  license_text: ''
-./modules/unictype/category-name: 
-  copyright: ''
-  hash: c23bcf4c0d06378f9bcb6f131fcbc90b2e2448ca7f1bf4063a0c6295027d6357
-  license: ''
-  license_text: ''
-./modules/unictype/category-name-tests: 
-  copyright: ''
-  hash: 7bc548fea282ac4604a59a95f585d192923453eebc02372e3e9c5fbfc5eaae15
-  license: ''
-  license_text: ''
-./modules/unictype/category-none: 
-  copyright: ''
-  hash: a9a1ca41387b91edd2cb62516ca9f94270303decde97b0347da52b92cfb3855d
-  license: ''
-  license_text: ''
-./modules/unictype/category-none-tests: 
-  copyright: ''
-  hash: 31f1e4a827d204cb2b470d75671dd835a8c32e7b3f833dc0401b99385640e8d7
-  license: ''
-  license_text: ''
-./modules/unictype/category-of: 
-  copyright: ''
-  hash: 974c856b996733c9d314f0be7d8691b914f945479c3c11e93f250c193f3d1c65
-  license: ''
-  license_text: ''
-./modules/unictype/category-of-tests: 
-  copyright: ''
-  hash: 42839935bfd2e81a9d235055b7a3d0bb5562941eb78842488e058ed792556e54
-  license: ''
-  license_text: ''
-./modules/unictype/category-or: 
-  copyright: ''
-  hash: 35a47dab7b419c5deeef431fdc78ccd7cd5baedff94a686cce22bd798a1b8597
-  license: ''
-  license_text: ''
-./modules/unictype/category-or-tests: 
-  copyright: ''
-  hash: ac89764c8c50ee585d731aa7819be10f9ef249e7dd239257f5b84613465664aa
-  license: ''
-  license_text: ''
-./modules/unictype/category-test: 
-  copyright: ''
-  hash: bdb12cdfdc6ca2d35807024262d2c16ba98f449bafcc711851696ba12d67a2c1
-  license: ''
-  license_text: ''
-./modules/unictype/category-test-withtable: 
-  copyright: ''
-  hash: b98b240c52fcb6378a2e2183e87e231efcaf7d74e9d474946233426a26805950
-  license: ''
-  license_text: ''
-./modules/unictype/category-test-withtable-tests: 
-  copyright: ''
-  hash: 522643348eaa5859383a5edca5d2db6080d726910779860e6050007c2478aa6c
-  license: ''
-  license_text: ''
-./modules/unictype/combining-class: 
-  copyright: ''
-  hash: ddc3c9d9a846292bc778c0a79e60224a20c590b26eff7bf2e6202e7a328fd171
-  license: ''
-  license_text: ''
-./modules/unictype/combining-class-tests: 
-  copyright: ''
-  hash: 721daeb2b85c77f8850103e61c3793bfbb07f6cbcabcd0430d30ea9cffb94772
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-alnum: 
-  copyright: ''
-  hash: 28a03adaf78b611fb05f9d5f78226e3a99a6ae085731ebe361b0aab7d8f94825
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-alnum-tests: 
-  copyright: ''
-  hash: c7fb14f6421f17a0720c0c34eb38f5f2d50786684ed1100d728dc1f124eefd89
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-alpha: 
-  copyright: ''
-  hash: d2a481c195d984e352e58239b85d1ddaf9f50d109bfc6b85d907bd4bd8ff5c70
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-alpha-tests: 
-  copyright: ''
-  hash: 3a9e921bc71d352cd00edcb0989bf5af3a4d672d7240fc0393d961167dacdc69
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-blank: 
-  copyright: ''
-  hash: 9e2f1712d6c03d450a89009a89e1750349abf6dd9163fd04937253d1c6b1eeeb
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-blank-tests: 
-  copyright: ''
-  hash: fe2889d3f3ad667d7f0e4aedc581223a1acf2cd8c8a9cff60885bc6bdf3c21aa
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-cntrl: 
-  copyright: ''
-  hash: b736a6527db0df045f1a2a16e1c51ef476a5ba707474329da33044a83dc2c327
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-cntrl-tests: 
-  copyright: ''
-  hash: 83b6d1d0acb5a7c3da3946f0b0cb03c5572989603ab445584f3fda5845a5ed02
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-digit: 
-  copyright: ''
-  hash: 879caa1322c752ed06df6f6afccdf849be9a45fae67ffcd886e4f62d1d1873af
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-digit-tests: 
-  copyright: ''
-  hash: 9bba9eeaa2f45a9f026e15777cc135139eb71442bb412b37fdb4e46fa500e9fa
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-graph: 
-  copyright: ''
-  hash: 2ef3938dac0ccae7cd506f4eefe1cea71cf7ea01d9f50167db24ab4fc82630bf
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-graph-tests: 
-  copyright: ''
-  hash: 9d9985cdaf34dbd1f8fccc53f50602ad560a24b52b609cd597d48edee014e5db
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-lower: 
-  copyright: ''
-  hash: cb1767e556918f8841464940f550a8733704f8c2391c3a33bde89aa075ed1595
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-lower-tests: 
-  copyright: ''
-  hash: 7bd4bc7286c52bdba174f606bdd39e3c2a14425f04ad20ed8a60db863dd16860
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-print: 
-  copyright: ''
-  hash: 95c3ffb5695aef3e47bc444b773f9501046ee4e96ac74e84b09b4a12ae63925c
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-print-tests: 
-  copyright: ''
-  hash: b5a5e2c93714cc8f44d2cc834cc4cab1965805b0a5a696f660c6d5425a10f1b4
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-punct: 
-  copyright: ''
-  hash: 30c5dc47e071bf7e13e768ec0f5631adff4a0644593e492309fa155a96f1e52b
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-punct-tests: 
-  copyright: ''
-  hash: e24e81e32e48af4f3ad62568023d96b33656602f4fa1121388095c339e328410
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-space: 
-  copyright: ''
-  hash: 134adf6d350636dcc21ff680625983b7bfdebdb584d7c7aee7a61f29a0dd813d
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-space-tests: 
-  copyright: ''
-  hash: befbdd7e9998b90e42ff81474eddde0d21e53a4662d9b050b0cbde1c5766ad06
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-upper: 
-  copyright: ''
-  hash: adaaea05b0f82c25ef35b9fdc70271711a42ec215908956e8d1970599590c2a0
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-upper-tests: 
-  copyright: ''
-  hash: 9d3e9c8860829c6cf56788691f4307bfff11c649ee4d1ce07eebc78b5c63aa48
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-xdigit: 
-  copyright: ''
-  hash: 1fb0f1a57bfadfe1a05375fa49d9ad6029bc63ee4e098e4f19ecfe016569cfb8
-  license: ''
-  license_text: ''
-./modules/unictype/ctype-xdigit-tests: 
-  copyright: ''
-  hash: 348d4f2ad199d3bcbde3a850acb6cb041407f5304217938e0faa94b4e077e245
-  license: ''
-  license_text: ''
-./modules/unictype/decimal-digit: 
-  copyright: ''
-  hash: 27a248b33a996430ab76dd33f15d79fcdd448e1a4202bb7ed145a2b325b93214
-  license: ''
-  license_text: ''
-./modules/unictype/decimal-digit-tests: 
-  copyright: ''
-  hash: fa2674a0a7049241f0054d7b9c4623acc719139c38030cd634da820051e5a94d
-  license: ''
-  license_text: ''
-./modules/unictype/digit: 
-  copyright: ''
-  hash: 37d63645cee12e3fc8e07940e3269b4aa6efd28a98514ff313d47dd94986cfab
-  license: ''
-  license_text: ''
-./modules/unictype/digit-tests: 
-  copyright: ''
-  hash: ba1b48a196743f9c600944082c7a409dbf866ac6bdbe6905542d9d31beb520f0
-  license: ''
-  license_text: ''
-./modules/unictype/mirror: 
-  copyright: ''
-  hash: 737907a60001d13647093663b873a0144496be541a6a5bc1420eca09f460aff9
-  license: ''
-  license_text: ''
-./modules/unictype/mirror-tests: 
-  copyright: ''
-  hash: 43be5a05c0d2ad239dadc2f8b4e8d6499fa7cd8fa4b5b849978b2998033365c8
-  license: ''
-  license_text: ''
-./modules/unictype/numeric: 
-  copyright: ''
-  hash: c18f6cfbe3f5da5d1ea97acd5c9f5ee7c729f20bd4e351a779a2faa3890bcc21
-  license: ''
-  license_text: ''
-./modules/unictype/numeric-tests: 
-  copyright: ''
-  hash: c51267b606dcccb38fb491732dcca3c0b80f59046b789fa1ae525f3be85886d7
-  license: ''
-  license_text: ''
-./modules/unictype/property-all: 
-  copyright: ''
-  hash: e4780bf1987d881bf983458a649dfffaf5c7a9cc9ef41613c0befa7dbbdde0c6
-  license: ''
-  license_text: ''
-./modules/unictype/property-alphabetic: 
-  copyright: ''
-  hash: a298ca9e2446afd6c699d1040bf10752950ce171a4606dd0534a21f11e852f19
-  license: ''
-  license_text: ''
-./modules/unictype/property-alphabetic-tests: 
-  copyright: ''
-  hash: f73ca732355c1fd5db309eb5d710b0333dd8ef095c1ed22c7445fda713c3e3d7
-  license: ''
-  license_text: ''
-./modules/unictype/property-ascii-hex-digit: 
-  copyright: ''
-  hash: d8ce7d0410e2ca14e80a434995b1525da57d8780f13ead5ed771427b103db01d
-  license: ''
-  license_text: ''
-./modules/unictype/property-ascii-hex-digit-tests: 
-  copyright: ''
-  hash: 6e6fa210fc93fc3226b7ba0791b2399217a9bc54d5dc07ffa358d164e06ef704
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-arabic-digit: 
-  copyright: ''
-  hash: e7f84b609149feaab428e1216e31384be4d3bde3b55eb1ff233311b9b425b45a
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-arabic-digit-tests: 
-  copyright: ''
-  hash: 5098b091adb529cb5e8ebb5baa2888d60c483624df246cbfe7bb3994c8c43a97
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-arabic-right-to-left: 
-  copyright: ''
-  hash: 277b27f8d4b98eab3ce66c0ed69393b5c0f705e4a316cf3fcbc2a1d9b8fe7c5e
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-arabic-right-to-left-tests: 
-  copyright: ''
-  hash: b71fe2cac47b7cec5926e7882e03d0511a128fb8efe28dac77990f5faf4137f2
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-block-separator: 
-  copyright: ''
-  hash: 806a5338edaca16e3c85769e5ca9c55a9f59751e003522618d9cd22e71fc306b
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-block-separator-tests: 
-  copyright: ''
-  hash: c0f9dd1fb890f0d13e9d0448f1254afc9b34e9418f2190d84a88acadbc43e38c
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-boundary-neutral: 
-  copyright: ''
-  hash: 57ab23ca6c3bab8b58533e0ffafe73a089298424f051ec680ea90a49d0e1d578
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-boundary-neutral-tests: 
-  copyright: ''
-  hash: 3d319e764651ffe6cb938ede64871a856742dc39ed39eb52b29165913f1feb1d
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-common-separator: 
-  copyright: ''
-  hash: 5c235403a70d881fc83dc8771a5dbb322ddf493a63331eb86b046677e4cdc9fa
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-common-separator-tests: 
-  copyright: ''
-  hash: 06bdb846d4303255edcbddc8ef0c0c7effbd9c68d444a1d9dc5ea2c79bcdbd14
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-control: 
-  copyright: ''
-  hash: 25479c28563fbb43d1f193d019ba1c5f71128afa993c2c2b49a20b8143ffd4b5
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-control-tests: 
-  copyright: ''
-  hash: 43b1e9d79dd3aac72eaa92aefe58aab7af1a0e20ca2055ef5072a82c710b735d
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-embedding-or-override: 
-  copyright: ''
-  hash: 6f2855dcc504a8ce337996180eb2848b1e4be4170430688a78623e6349327f5e
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-embedding-or-override-tests: 
-  copyright: ''
-  hash: 1680aa3f6106894819a3d8e10e42a62136d5ea3eac3f1e8abb0ead74536d4d55
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-eur-num-separator: 
-  copyright: ''
-  hash: 40119ffa48d01b225fca375c19697cb8f2e4c09bfce577028adf0a40e3805948
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-eur-num-separator-tests: 
-  copyright: ''
-  hash: d4d8ee97cba337debbf435f4ceeb4a8648a6dcdf8c1479e0f9e89d4e9e43ca9e
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-eur-num-terminator: 
-  copyright: ''
-  hash: b401d88fa970de38142b52d6d2fbdb846a163697e2aae4b08aa0334e9a38fd71
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-eur-num-terminator-tests: 
-  copyright: ''
-  hash: ed6b61b035bd4e75258d9d37eb7a3c4b033d26d40edad08a7c357789574f8afb
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-european-digit: 
-  copyright: ''
-  hash: dc0d9e23ff24d6d243b27f45106ceb2a26b2b07c08e00df91e16127573573d72
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-european-digit-tests: 
-  copyright: ''
-  hash: a6aaa82ed09527f584de05c6e458db39a317f7c9ec0f9344eca69c6ae1b50115
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-hebrew-right-to-left: 
-  copyright: ''
-  hash: 0bb360f52483f1b4d2b163115b644efa0d7d99c98e1c39a59bcd5f83a2d8ae81
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-hebrew-right-to-left-tests: 
-  copyright: ''
-  hash: 11b28b5a112f842b50ed00b6e4173737cf383152ebdec8535760e97bd5b9a619
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-left-to-right: 
-  copyright: ''
-  hash: 37ae8d71a9fe73c594a62ef26ee7b85f33d94504bc0ca99cdcc449dbfac67997
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-left-to-right-tests: 
-  copyright: ''
-  hash: 1ed6b97ac2ebdd21e07974056ff940413398f89230b2daf96ee74927df0e18aa
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-non-spacing-mark: 
-  copyright: ''
-  hash: 93eaae290050a750e17e01e2ea8d355a9e8817942873759bce494f496c851804
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-non-spacing-mark-tests: 
-  copyright: ''
-  hash: 517a1b466bcb931e1ecfdf5a37d1251013cd6eb3285346331e406d4758625f28
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-other-neutral: 
-  copyright: ''
-  hash: bf693a39ab6b1b3ab51d87d4cb9e2dffac8020d2a66fa59b35e866d8f1eb2fd0
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-other-neutral-tests: 
-  copyright: ''
-  hash: 5f19810740bbf6714da1e1a18b496c5d10a1b64d65bbb1f8cb8958e119443e63
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-pdf: 
-  copyright: ''
-  hash: 648a08b6a38413f4e507b01c949970ffdc826987e75e9aeea243bb63268a64b1
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-pdf-tests: 
-  copyright: ''
-  hash: fbf5ba569b5e4838bd7588f671714f6cfd9978e046415212afdc440a0c7a96a1
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-segment-separator: 
-  copyright: ''
-  hash: bc039a644f31ded1c641ecf81c35f885046ee253c9a4c0500aa3adfaf84a7143
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-segment-separator-tests: 
-  copyright: ''
-  hash: e1ff8030e1f0187fff8c6a57e0e318a53b79965a52d40a2a94c14b07f9a43e3e
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-whitespace: 
-  copyright: ''
-  hash: 5cb15410d45e4d5e6123a2afbb3599f281e6a99c9cc9cecf956620eedd1cccec
-  license: ''
-  license_text: ''
-./modules/unictype/property-bidi-whitespace-tests: 
-  copyright: ''
-  hash: fdbaeac606388cdab71cf252cf7462019f69a919e247fd0f1f6943e002d4f466
-  license: ''
-  license_text: ''
-./modules/unictype/property-byname: 
-  copyright: ''
-  hash: 289229dfb7a081dccb2b38c24ad305a79f652f6267d17c4b2bc1fe3ee0392a60
-  license: ''
-  license_text: ''
-./modules/unictype/property-byname-tests: 
-  copyright: ''
-  hash: e061b6520b59a6c6f962c37c3f29912812835aa6976b99c3f967ec945e3267d5
-  license: ''
-  license_text: ''
-./modules/unictype/property-combining: 
-  copyright: ''
-  hash: d1f5657f5cb55dbf80b7d9de4cc88f189c9902550979f52df45ed1ff581cda89
-  license: ''
-  license_text: ''
-./modules/unictype/property-combining-tests: 
-  copyright: ''
-  hash: 26d850be0624a6da7b37f1284986abcc968a917cca02e5790aceed33c90c3e7f
-  license: ''
-  license_text: ''
-./modules/unictype/property-composite: 
-  copyright: ''
-  hash: 0bc02b36c12afaa79ff289bc9ab054adb7ba7f101eb5d83d21bec08726bb8a30
-  license: ''
-  license_text: ''
-./modules/unictype/property-composite-tests: 
-  copyright: ''
-  hash: de4e42b1b04b7b5d2a3f223bf57a7f963a6b044b975f3adfc5badfe9fe6c8a9d
-  license: ''
-  license_text: ''
-./modules/unictype/property-currency-symbol: 
-  copyright: ''
-  hash: 38931af79b678c17b54d008d68d06da42565307882a5ed84c9e2fabf46adabd4
-  license: ''
-  license_text: ''
-./modules/unictype/property-currency-symbol-tests: 
-  copyright: ''
-  hash: c44cbb3841cb6ee1c200948d5358c808d2afa5ed066e05fe761a162e5425c3a6
-  license: ''
-  license_text: ''
-./modules/unictype/property-dash: 
-  copyright: ''
-  hash: 6f6715eb86fe5d3935c25c84f223e5dc897b7facba8292a563feaa48aefc3dcf
-  license: ''
-  license_text: ''
-./modules/unictype/property-dash-tests: 
-  copyright: ''
-  hash: 336458f67010f6e373b025a1b95658b60a80b62fdc17fa653833d5632abae862
-  license: ''
-  license_text: ''
-./modules/unictype/property-decimal-digit: 
-  copyright: ''
-  hash: ab9d982292589986c136763105451afc4e550e1f766fb7cf7fd479554a7823fe
-  license: ''
-  license_text: ''
-./modules/unictype/property-decimal-digit-tests: 
-  copyright: ''
-  hash: f9dab010accb22da62438d64ff3b1d89cadc983abe41c90e0d36d3f95dacab58
-  license: ''
-  license_text: ''
-./modules/unictype/property-default-ignorable-code-point: 
-  copyright: ''
-  hash: 39cb9b635c390bb3472f20af716f07a55e56999934b777da88215a81431f8beb
-  license: ''
-  license_text: ''
-./modules/unictype/property-default-ignorable-code-point-tests: 
-  copyright: ''
-  hash: 725afdd41612957003a16ea422cd23f09b93706d334893b8d8d811286b2c6d21
-  license: ''
-  license_text: ''
-./modules/unictype/property-deprecated: 
-  copyright: ''
-  hash: 79536b50ac0f32280a1c63019a08bdb55d7c4f230f56d646d5ad96cced3c538e
-  license: ''
-  license_text: ''
-./modules/unictype/property-deprecated-tests: 
-  copyright: ''
-  hash: 89dbf3c37054f64ee5800dc34339646d8b855c002cdc860420a8714ee401640b
-  license: ''
-  license_text: ''
-./modules/unictype/property-diacritic: 
-  copyright: ''
-  hash: 2167518c89f96013d60de0d7bd69854028a5e3d6fdd2e71bbbfeb4cb9f3b1492
-  license: ''
-  license_text: ''
-./modules/unictype/property-diacritic-tests: 
-  copyright: ''
-  hash: 0d5be7c918de05603a8c0268d27d0db62f2b1d38bc193fe63213bba985b63ece
-  license: ''
-  license_text: ''
-./modules/unictype/property-extender: 
-  copyright: ''
-  hash: b8df4a5a2fd274644f43d95fbfde098fdb4c5452c4a38c64d8fa877bf7e9429a
-  license: ''
-  license_text: ''
-./modules/unictype/property-extender-tests: 
-  copyright: ''
-  hash: 05501a0275aad607ab69634a3dcd09e345d5f061e94bfe945296ed1d8e0281fb
-  license: ''
-  license_text: ''
-./modules/unictype/property-format-control: 
-  copyright: ''
-  hash: e97eb042dbf91fbcb84628c0e9ef5e8743f4e16c20f3822c91af3af81260d442
-  license: ''
-  license_text: ''
-./modules/unictype/property-format-control-tests: 
-  copyright: ''
-  hash: 300d3629279205e7d3aca2218dceb96dc4e8104c02b08bdf0ea499cec2b4345c
-  license: ''
-  license_text: ''
-./modules/unictype/property-grapheme-base: 
-  copyright: ''
-  hash: 1d406865136b5ad9914abcfbea83b6b26fc6ef93799878602b7ff8e531def3b9
-  license: ''
-  license_text: ''
-./modules/unictype/property-grapheme-base-tests: 
-  copyright: ''
-  hash: d0d6ae70d2541c74b54f3077f958dc88fd339c17141ebed95d2098aa07764b51
-  license: ''
-  license_text: ''
-./modules/unictype/property-grapheme-extend: 
-  copyright: ''
-  hash: 4ca0ea448f826a8dcc99962e3512270fedf561cbf72cab04d963a3b8fe9f2cc9
-  license: ''
-  license_text: ''
-./modules/unictype/property-grapheme-extend-tests: 
-  copyright: ''
-  hash: 251f5705f6a5351b1688c582f72007829eabf599395bd587462cec7c1ef4c7ce
-  license: ''
-  license_text: ''
-./modules/unictype/property-grapheme-link: 
-  copyright: ''
-  hash: 805c1470e3e0c3eccfe26fb3b1ac5f3cb9fa30b9cb4049116a50e551d2d2dadb
-  license: ''
-  license_text: ''
-./modules/unictype/property-grapheme-link-tests: 
-  copyright: ''
-  hash: 7e91764c19175d59c63329ebc8ba52dd5a1daedec9503307e7e445ec11baa949
-  license: ''
-  license_text: ''
-./modules/unictype/property-hex-digit: 
-  copyright: ''
-  hash: 0243a6070da96a337e17ba1eac120c0278e8365179fa37001eab65bc841dca16
-  license: ''
-  license_text: ''
-./modules/unictype/property-hex-digit-tests: 
-  copyright: ''
-  hash: ef1f4f62b88d9527516e4c387908dd597fcfc30ff2ef577a1e4f152dadeb7da7
-  license: ''
-  license_text: ''
-./modules/unictype/property-hyphen: 
-  copyright: ''
-  hash: a0821e75c179f78649d812ddbed18c56b1ab27bc11bbc92e1bbf601ceffc7ff6
-  license: ''
-  license_text: ''
-./modules/unictype/property-hyphen-tests: 
-  copyright: ''
-  hash: 765e3e90b923d1554a370caf1b6073e944952d55cc20decf5355706dd59c4a8b
-  license: ''
-  license_text: ''
-./modules/unictype/property-id-continue: 
-  copyright: ''
-  hash: 88c348e9357bae50819c40887ad325d0cb4dff384527221bc06c948478786b8e
-  license: ''
-  license_text: ''
-./modules/unictype/property-id-continue-tests: 
-  copyright: ''
-  hash: a1b963baf983a2e176537129d463352188b09a47bf5ab860665a23a90bf6e358
-  license: ''
-  license_text: ''
-./modules/unictype/property-id-start: 
-  copyright: ''
-  hash: 4eaaa206f01c7c53ec5c62c65bc68299c4fd87505eecc86dd9663c09993b4e9e
-  license: ''
-  license_text: ''
-./modules/unictype/property-id-start-tests: 
-  copyright: ''
-  hash: 4f8896c70d8c5c02d98b15396de19f3208b7bc17c16826cf6a36d9545f24b467
-  license: ''
-  license_text: ''
-./modules/unictype/property-ideographic: 
-  copyright: ''
-  hash: 882c18da5775cd65733fe4342190c2a1351a309f720c550014802c9c55a8caa3
-  license: ''
-  license_text: ''
-./modules/unictype/property-ideographic-tests: 
-  copyright: ''
-  hash: 34d8d3cedf758c4d81e744f4889e5bb1be1a5b27c5f329ca4b8f8a2b01e5419a
-  license: ''
-  license_text: ''
-./modules/unictype/property-ids-binary-operator: 
-  copyright: ''
-  hash: f4d8afcbedaee7883f98bbef9d064da30080ca5c30bb69e4c121ff4a35c086c7
-  license: ''
-  license_text: ''
-./modules/unictype/property-ids-binary-operator-tests: 
-  copyright: ''
-  hash: 7d1df1ed242c102a7db0885fdc9cfdddc800be84a7aff9ffa6ab7110b1fb9919
-  license: ''
-  license_text: ''
-./modules/unictype/property-ids-trinary-operator: 
-  copyright: ''
-  hash: 85d2ab0e8ac73b2661f0d86991e3a6542e27785b206750a77f89f6e6180006c4
-  license: ''
-  license_text: ''
-./modules/unictype/property-ids-trinary-operator-tests: 
-  copyright: ''
-  hash: 0db46545722b0074382db8f9778b93f2b2c999b373dd4e140c00038f5d457cde
-  license: ''
-  license_text: ''
-./modules/unictype/property-ignorable-control: 
-  copyright: ''
-  hash: 0b4df36bc55d43efa688f71468710e03f31101e74735e77c0e82bbb40ea8cf83
-  license: ''
-  license_text: ''
-./modules/unictype/property-ignorable-control-tests: 
-  copyright: ''
-  hash: 361a567ee30e5c3d66e49c322fb943dcf379c416efd298b8e765a86df7b8d4a3
-  license: ''
-  license_text: ''
-./modules/unictype/property-iso-control: 
-  copyright: ''
-  hash: e691953d49f2f1fe84f5f6e2fad1186c4eb762f027e33299658e4c5eba30660b
-  license: ''
-  license_text: ''
-./modules/unictype/property-iso-control-tests: 
-  copyright: ''
-  hash: f57f712359bfefdae3dc796024f0624204633b914daddf063ba299e36beacab4
-  license: ''
-  license_text: ''
-./modules/unictype/property-join-control: 
-  copyright: ''
-  hash: 2ed9d5ffc6571d30341e7b1b5ee17937ed6848102b257849a78a9acf2d261c19
-  license: ''
-  license_text: ''
-./modules/unictype/property-join-control-tests: 
-  copyright: ''
-  hash: 20570eaa864f5eb7f27a5597716ec2f511096ed75bfb8903ea3e59a92e160a95
-  license: ''
-  license_text: ''
-./modules/unictype/property-left-of-pair: 
-  copyright: ''
-  hash: de0c6b86d8d0ada6338276d41346fb709516ae12d09e310279a596a00e396ff0
-  license: ''
-  license_text: ''
-./modules/unictype/property-left-of-pair-tests: 
-  copyright: ''
-  hash: 590a1e14f34adabb021272f1b8df2edc4b9d326e3d37ab5c6ad047e0fbb7fe48
-  license: ''
-  license_text: ''
-./modules/unictype/property-line-separator: 
-  copyright: ''
-  hash: 31ace60527e36197ca50741b94ede127b3d953900b68e432c978d9e363696245
-  license: ''
-  license_text: ''
-./modules/unictype/property-line-separator-tests: 
-  copyright: ''
-  hash: c0cb63221d49fa05a3cac59d948f26d1f1dbe145bac9ab3e52bce1c35dc324bb
-  license: ''
-  license_text: ''
-./modules/unictype/property-logical-order-exception: 
-  copyright: ''
-  hash: 5ce0b27c3dd8909d431c6e4fc485b095c37b9b7bf6a9cb5ddd863016ee4916e9
-  license: ''
-  license_text: ''
-./modules/unictype/property-logical-order-exception-tests: 
-  copyright: ''
-  hash: 2a19434dd65dc663a0a31d11122a41add9e9b346f5bddf108681c4c97d027f49
-  license: ''
-  license_text: ''
-./modules/unictype/property-lowercase: 
-  copyright: ''
-  hash: bb6f6bc847beef7154a8d672ab49526095d80c1685e6c049d1a17e06e97cb65e
-  license: ''
-  license_text: ''
-./modules/unictype/property-lowercase-tests: 
-  copyright: ''
-  hash: 93ab2f7aa19d1e31a2174820fc431dccae2ea8570e02c565302a9a8669e541f5
-  license: ''
-  license_text: ''
-./modules/unictype/property-math: 
-  copyright: ''
-  hash: d51d7a6043ebde3d28240ce9cf896dce5017ce282d5a60589f9a45df6f3eeacc
-  license: ''
-  license_text: ''
-./modules/unictype/property-math-tests: 
-  copyright: ''
-  hash: c0187d2319a48367927d734d8717a6f3475d9f592ec5f93fae146fb1aae36bfa
-  license: ''
-  license_text: ''
-./modules/unictype/property-non-break: 
-  copyright: ''
-  hash: 9529ee336877c9f543b53e369cda856846cd228dc4328e6bd5700adba5a6917f
-  license: ''
-  license_text: ''
-./modules/unictype/property-non-break-tests: 
-  copyright: ''
-  hash: 0a031731584038381b6726f6c922ff9b6a410cdae8463459d058cc19d78c70cf
-  license: ''
-  license_text: ''
-./modules/unictype/property-not-a-character: 
-  copyright: ''
-  hash: 032b1ced5ad9146c168553ed7664c4465377ba81ac24d6ca3399afb41fce68d1
-  license: ''
-  license_text: ''
-./modules/unictype/property-not-a-character-tests: 
-  copyright: ''
-  hash: 85e321f2da30ee77b0814267fdd770456081e20c7bf329f70ba2ba7f61aeee9c
-  license: ''
-  license_text: ''
-./modules/unictype/property-numeric: 
-  copyright: ''
-  hash: 2b392ef4aaee21cd825ff65ccf6ed2351218207039ba0912ddab67332c266819
-  license: ''
-  license_text: ''
-./modules/unictype/property-numeric-tests: 
-  copyright: ''
-  hash: 4d5a8bc0c7fe8c7a5ac0e41e3e4eca8d9d7368351b5eb0399354b2f007336946
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-alphabetic: 
-  copyright: ''
-  hash: c8920d7560743d923cb04f88984708ca0e40aad30ece7c522f58fefffccaa025
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-alphabetic-tests: 
-  copyright: ''
-  hash: e190d41fcc74a02992ba27d74b2ab5dead491cb30bd75bfa7ff4320276f290b9
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-default-ignorable-code-point: 
-  copyright: ''
-  hash: cb0ce01f186191ae95f50c643dc0c04c1c6c986aee315d3ea1b370edc2a68a7c
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-default-ignorable-code-point-tests: 
-  copyright: ''
-  hash: 0df1f3fbeb35eb0ab93cfc5adfdd023b7115f80225f7400f34d953ad6d6c37ea
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-grapheme-extend: 
-  copyright: ''
-  hash: ee90750261ed1c1f4c584fc10986d17fdc4cddce44fa4f92d1e04fef8cf89b89
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-grapheme-extend-tests: 
-  copyright: ''
-  hash: b026224a7126897dedcd0514c64f777a9dac1a5ae42a6b26123e159696235660
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-id-continue: 
-  copyright: ''
-  hash: 0d606c7ce244000d32f047c6859e7bed0de5ee72c5cb9139af200640d52a87b3
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-id-continue-tests: 
-  copyright: ''
-  hash: 1b855a92d302210152900e5826d662991b9ed9d0094ca122b35e365ebdc888a5
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-id-start: 
-  copyright: ''
-  hash: 85e293b375f6400da29a181cd5df1c39df4fd8a41b712ded5aa67941cb73c911
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-id-start-tests: 
-  copyright: ''
-  hash: 3787fadee72a0c5e9bbf920aa4d9e7cfb938e742afe3eadf696661aae3869d4a
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-lowercase: 
-  copyright: ''
-  hash: dd9158fe00af3634fbf4894a7a7d39f49a096a56a5ddcf8de0269dae9917a9a2
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-lowercase-tests: 
-  copyright: ''
-  hash: 22cefe2852788dd4e347abebb8fc057f6d419a7b5f2c2396ac04f76ab7b3a352
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-math: 
-  copyright: ''
-  hash: 6f137bffdd881747e667c7e0223af5418369adbfb07e6a260213f598352a7aed
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-math-tests: 
-  copyright: ''
-  hash: a2a527587449bcf12ec99eea4279691d0e67841ba3dda949d1305c1c685f1d56
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-uppercase: 
-  copyright: ''
-  hash: b46091eca6344298f01cf3212389d8d4219cdcdc47f34c0717036423e955084d
-  license: ''
-  license_text: ''
-./modules/unictype/property-other-uppercase-tests: 
-  copyright: ''
-  hash: 023d04db2180a4dea322146510e8eff99d5beb44e8128afa8f8e88d144050042
-  license: ''
-  license_text: ''
-./modules/unictype/property-paired-punctuation: 
-  copyright: ''
-  hash: 1d859b46eabc16a1e57b9b2954afc69340c3a79670e89e873a87410b9ba41c26
-  license: ''
-  license_text: ''
-./modules/unictype/property-paired-punctuation-tests: 
-  copyright: ''
-  hash: 3dc6788141d18e07dd8dc0fb0053166f630315bc8215bbb3b4930e29cc5a654b
-  license: ''
-  license_text: ''
-./modules/unictype/property-paragraph-separator: 
-  copyright: ''
-  hash: 4bde987c281721186520942769b713f1fb72e6b89f0efdf22a801459ca6c1da5
-  license: ''
-  license_text: ''
-./modules/unictype/property-paragraph-separator-tests: 
-  copyright: ''
-  hash: 8ea598596aa3c7f2196847f5d2b04d91118d8432591a7900bad55e59f21e0957
-  license: ''
-  license_text: ''
-./modules/unictype/property-pattern-syntax: 
-  copyright: ''
-  hash: dd0e266d0cdbed6c8f67a2a71b31f1bcc921de800608bf487117fb9d579ad5b6
-  license: ''
-  license_text: ''
-./modules/unictype/property-pattern-syntax-tests: 
-  copyright: ''
-  hash: 74b934ab1b9469ba24a85a4adfc447a0fe30b71205d0885c37e71ade8f4abe6b
-  license: ''
-  license_text: ''
-./modules/unictype/property-pattern-white-space: 
-  copyright: ''
-  hash: cd23f486d1e33e059c0653c4c339679e9c9401dbf04f14c3c3eb3261d51b26b1
-  license: ''
-  license_text: ''
-./modules/unictype/property-pattern-white-space-tests: 
-  copyright: ''
-  hash: 71c170c4866379e63f3bb731ab85f2675e40b871062cc884df1de5be1837761e
-  license: ''
-  license_text: ''
-./modules/unictype/property-private-use: 
-  copyright: ''
-  hash: cb7550618124824da04c13ec2bd6b80a6444e05bee1220dd98489e250e7a9240
-  license: ''
-  license_text: ''
-./modules/unictype/property-private-use-tests: 
-  copyright: ''
-  hash: 3cd8463e98f9176d4dd6cc366180e41338763176fa4706ac27d183badd11aba8
-  license: ''
-  license_text: ''
-./modules/unictype/property-punctuation: 
-  copyright: ''
-  hash: dc281e36df6d442fa0f68bbc7e04a254cbd5c115d2f043b734db537a7f59e49e
-  license: ''
-  license_text: ''
-./modules/unictype/property-punctuation-tests: 
-  copyright: ''
-  hash: 73665fbcda85e14c9462050cf75e9afc536fd913bd1d5900cf97f412b497fca1
-  license: ''
-  license_text: ''
-./modules/unictype/property-quotation-mark: 
-  copyright: ''
-  hash: 802d39421d4852f167495adab8835f95bfb039d9cf3da4e96402513bfae74c86
-  license: ''
-  license_text: ''
-./modules/unictype/property-quotation-mark-tests: 
-  copyright: ''
-  hash: 249c1e649ef3751f101e913435432f9c49b0d0df5b01b3d473c00459170d717b
-  license: ''
-  license_text: ''
-./modules/unictype/property-radical: 
-  copyright: ''
-  hash: 9dc8bbd17a314eae8e7fa2194634004a5b4119c7e3c80d455da08635995f3bcd
-  license: ''
-  license_text: ''
-./modules/unictype/property-radical-tests: 
-  copyright: ''
-  hash: 8605e5c3719893234523ef1acb9b061be8ec1066d7fdd54e5ea53c38ec151877
-  license: ''
-  license_text: ''
-./modules/unictype/property-sentence-terminal: 
-  copyright: ''
-  hash: 8b91030220afed7743fb6e5e30128a21ca543fbc5780d8065aa1b31aeb1df6c7
-  license: ''
-  license_text: ''
-./modules/unictype/property-sentence-terminal-tests: 
-  copyright: ''
-  hash: 530a93e6d04220fd9172a9a905cdc32fe57e19be686fe220d871a07332f40572
-  license: ''
-  license_text: ''
-./modules/unictype/property-soft-dotted: 
-  copyright: ''
-  hash: 4f18089a0aad15e3dfd60873a0c3834432563e1f3ef02fe9f6f04d1eac9793f2
-  license: ''
-  license_text: ''
-./modules/unictype/property-soft-dotted-tests: 
-  copyright: ''
-  hash: db01ce3d54221e1475114ddb8c40f65bb5474c7c62a31ec1b88b9e29fc4c6e64
-  license: ''
-  license_text: ''
-./modules/unictype/property-space: 
-  copyright: ''
-  hash: f315c7db18916c69554448fdd4e8475c871bffb1d8b24f0dfb61ca5d85b6c46f
-  license: ''
-  license_text: ''
-./modules/unictype/property-space-tests: 
-  copyright: ''
-  hash: 2d0b377aa6b8a819f06a0ddfa1efa005ed4f7f576f4ea7020452d6c4b17f32a9
-  license: ''
-  license_text: ''
-./modules/unictype/property-terminal-punctuation: 
-  copyright: ''
-  hash: e2e1592f8c1590e78277581cca7c7c445c368a77fb36b2d70a4b9dc3a34e6774
-  license: ''
-  license_text: ''
-./modules/unictype/property-terminal-punctuation-tests: 
-  copyright: ''
-  hash: 4f9997e3fe9d4ebed7a77eb0fd05d89815ae32ff9ff8031c812940c81a1efafb
-  license: ''
-  license_text: ''
-./modules/unictype/property-test: 
-  copyright: ''
-  hash: 2875a882df3810f71e1fa58cdbdc8ba8655cc5fb7f71bffd1b484291cc30d5bc
-  license: ''
-  license_text: ''
-./modules/unictype/property-test-tests: 
-  copyright: ''
-  hash: 49c056d8f126c9d246e06fe986e974f68defb79f7f140ad3544b2c29df529bcf
-  license: ''
-  license_text: ''
-./modules/unictype/property-titlecase: 
-  copyright: ''
-  hash: 3424c3cad8bf8349bf8461d39d1a115224cfbb9158038a54cb40d2be6c5b2120
-  license: ''
-  license_text: ''
-./modules/unictype/property-titlecase-tests: 
-  copyright: ''
-  hash: 68aa95f02e391e2973eca93c11bb41b987c0c684de9d768e3396a58a7dd1bece
-  license: ''
-  license_text: ''
-./modules/unictype/property-unassigned-code-value: 
-  copyright: ''
-  hash: 7d90d0183c752ec332e42ff788c34355da36a0493e00c7760940fc7e20135428
-  license: ''
-  license_text: ''
-./modules/unictype/property-unassigned-code-value-tests: 
-  copyright: ''
-  hash: cbfaaa154729897cb18d5d837c467f75104ddbc1cb4c7336df9abd0cfb1a81fd
-  license: ''
-  license_text: ''
-./modules/unictype/property-unified-ideograph: 
-  copyright: ''
-  hash: 5f82e9650128f62edabfa02bd2206d49f1d23ef1cfde0fdb4c0c073cf59c9264
-  license: ''
-  license_text: ''
-./modules/unictype/property-unified-ideograph-tests: 
-  copyright: ''
-  hash: 507f4c45bf2809f3017279e85b2b365bda51244f4ea729fe03ba64a34038210a
-  license: ''
-  license_text: ''
-./modules/unictype/property-uppercase: 
-  copyright: ''
-  hash: 70abaed515023d6afc46706ad95faedb80654165fc422cd8373401302d52ca1f
-  license: ''
-  license_text: ''
-./modules/unictype/property-uppercase-tests: 
-  copyright: ''
-  hash: e193081d132ebc0d073d04c4a1f36482e8966efa2d71941c323638700fa18129
-  license: ''
-  license_text: ''
-./modules/unictype/property-variation-selector: 
-  copyright: ''
-  hash: 09f553c5824dc3d20487e71b22ed1c43c89e77956f5db9f769946e92cae72cca
-  license: ''
-  license_text: ''
-./modules/unictype/property-variation-selector-tests: 
-  copyright: ''
-  hash: 11704488bd5afbd4917ed521aaccd46ac3b38f3aa83264e59db51015e4f48ff7
-  license: ''
-  license_text: ''
-./modules/unictype/property-white-space: 
-  copyright: ''
-  hash: e2f24576777878c97b0dfcbbb1df20226d1d41094831016337b91f77798b7405
-  license: ''
-  license_text: ''
-./modules/unictype/property-white-space-tests: 
-  copyright: ''
-  hash: 36b16726463f04af8d26b36416ca251e30dd47fdb7ec970403e0374c579cab29
-  license: ''
-  license_text: ''
-./modules/unictype/property-xid-continue: 
-  copyright: ''
-  hash: 987e6db719b50516e803a9244c23943e9d086183f863846550d21130150c82b0
-  license: ''
-  license_text: ''
-./modules/unictype/property-xid-continue-tests: 
-  copyright: ''
-  hash: 492a0ada9d94175fe3770661d3f231e5b9d71a1a5013a6d7075319e0eece9504
-  license: ''
-  license_text: ''
-./modules/unictype/property-xid-start: 
-  copyright: ''
-  hash: 174f854ffe740306b5020504fd505eb8b5952185d32ce77b1cab4745b5c49277
-  license: ''
-  license_text: ''
-./modules/unictype/property-xid-start-tests: 
-  copyright: ''
-  hash: 4796f6dadd2aead564c00995d88c9e6226cc3c128f72bd64f3ef82db90784f14
-  license: ''
-  license_text: ''
-./modules/unictype/property-zero-width: 
-  copyright: ''
-  hash: 038f0bd94d08940987f80a3d3e3e27de60d394d652fba7f22706c1621b21dc31
-  license: ''
-  license_text: ''
-./modules/unictype/property-zero-width-tests: 
-  copyright: ''
-  hash: 0707ef51a9013ca150a7d623b2d1911acd92345e0baa0c7705276f85cc35d964
-  license: ''
-  license_text: ''
-./modules/unictype/scripts: 
-  copyright: ''
-  hash: fc0ee5870e8d757e967e0a9f128e9586560851ff7514e8bdf199eb876b442bdc
-  license: ''
-  license_text: ''
-./modules/unictype/scripts-all: 
-  copyright: ''
-  hash: c00aaee85d9c7895fc040082fd619c1eb344047070f916e39b4b17c315aba6bd
-  license: ''
-  license_text: ''
-./modules/unictype/scripts-tests: 
-  copyright: ''
-  hash: bb3ba53f7c6b1f28677c2d12df775f79b9b353dc7dca8eaa1dbb502a0f9d5720
-  license: ''
-  license_text: ''
-./modules/unictype/syntax-c-ident: 
-  copyright: ''
-  hash: 1c8901c3c1d2b9e9bbd683173217f122327141ec2215681b693943cc55fdc06e
-  license: ''
-  license_text: ''
-./modules/unictype/syntax-c-ident-tests: 
-  copyright: ''
-  hash: 123c21cdbadb06d99e5b097714ad472c50e4ed364fad3d97d7f3003d77b33513
-  license: ''
-  license_text: ''
-./modules/unictype/syntax-c-whitespace: 
-  copyright: ''
-  hash: 75dd8a020ca18c0a26e3d4708fe09f2c32dcb4b9f4e34cd005f65e7d9c576dad
-  license: ''
-  license_text: ''
-./modules/unictype/syntax-c-whitespace-tests: 
-  copyright: ''
-  hash: aea812d7be9ef3e9722b0f0487cf7fc24ca0b0e51f547fc4695c42573e5e824a
-  license: ''
-  license_text: ''
-./modules/unictype/syntax-java-ident: 
-  copyright: ''
-  hash: 648109158cd0ea8cae5103e40be04bd32626edcce12a516612d0586e9d6d6d9c
-  license: ''
-  license_text: ''
-./modules/unictype/syntax-java-ident-tests: 
-  copyright: ''
-  hash: ef0ebc71a20170d2bd658f3d21546f7bd96f6dfaa6c0bc762e0facbcb7471e7e
-  license: ''
-  license_text: ''
-./modules/unictype/syntax-java-whitespace: 
-  copyright: ''
-  hash: f2a070894d55a1a11b3bc214ad6d007f9b24932a204311ceff15f22f6d026db9
-  license: ''
-  license_text: ''
-./modules/unictype/syntax-java-whitespace-tests: 
-  copyright: ''
-  hash: 2c5288f2e01a728b760497bd94f4c460e0f462c6d025fa6d752a5f81b83208aa
-  license: ''
-  license_text: ''
-./modules/unilbrk/base: 
-  copyright: ''
-  hash: 29d4ffad9a27050e59b897eb5485b88b77b0b36343526d8d97fa89ebc45675b9
-  license: ''
-  license_text: ''
-./modules/unilbrk/tables: 
-  copyright: ''
-  hash: d5b2dbbfbbacbfc56105ff4bc9acdcc81b78c7d8fc243e56f60556bc335af848
-  license: ''
-  license_text: ''
-./modules/unilbrk/u16-possible-linebreaks: 
-  copyright: ''
-  hash: fb2b033ab8de0b38a406eb24d58ec648859c3a0daefae77a3696f50c1af32358
-  license: ''
-  license_text: ''
-./modules/unilbrk/u16-possible-linebreaks-tests: 
-  copyright: ''
-  hash: fbfe78f87743c86c8f7e03b624e7e33d3d7720493f3fe0b94c182b8979451e0d
-  license: ''
-  license_text: ''
-./modules/unilbrk/u16-width-linebreaks: 
-  copyright: ''
-  hash: fad0c3b357ebd62c279df0e1df7131aa5d32dc21a6bcfc3492b28caa10322eb3
-  license: ''
-  license_text: ''
-./modules/unilbrk/u16-width-linebreaks-tests: 
-  copyright: ''
-  hash: cc378551fc21c3e7697f37eaad7f1a7cb567ebd744da77caa3f5584eb5f4b209
-  license: ''
-  license_text: ''
-./modules/unilbrk/u32-possible-linebreaks: 
-  copyright: ''
-  hash: e4e6fd32876d026ea4d6225b5882b1a0f874e8c4769cea4a29501a775f24624b
-  license: ''
-  license_text: ''
-./modules/unilbrk/u32-possible-linebreaks-tests: 
-  copyright: ''
-  hash: bc7097904f67f5422302f3c361fd2db5cec933083cb98dcb5dcc1b4f64a0f160
-  license: ''
-  license_text: ''
-./modules/unilbrk/u32-width-linebreaks: 
-  copyright: ''
-  hash: 5d80370161a248c9751945e228bcc0bcd8d1d8a502b880f1cbe6576e30cf55b8
-  license: ''
-  license_text: ''
-./modules/unilbrk/u32-width-linebreaks-tests: 
-  copyright: ''
-  hash: b8b0f5957fff79f41d13af8b0343a21b96e70fffc16fdcb57e1e3cc904a34fbf
-  license: ''
-  license_text: ''
-./modules/unilbrk/u8-possible-linebreaks: 
-  copyright: ''
-  hash: aa74f0b3f28f7d3dc25556a32bb2fa75814a7ee31bee6f2893ad7b36c057f07e
-  license: ''
-  license_text: ''
-./modules/unilbrk/u8-possible-linebreaks-tests: 
-  copyright: ''
-  hash: 53170e22e1f25e6953c13ea92e1bf95b90edb709828a99cecab8e1430d810337
-  license: ''
-  license_text: ''
-./modules/unilbrk/u8-width-linebreaks: 
-  copyright: ''
-  hash: 93e6b87973701eba658c8fa334b4c1073d826268ed30da0fcf575f09dac5a901
-  license: ''
-  license_text: ''
-./modules/unilbrk/u8-width-linebreaks-tests: 
-  copyright: ''
-  hash: aed16d1c061f3f35fddc06ffe21674359c1f408eccf11b76128c66dcabde665a
-  license: ''
-  license_text: ''
-./modules/unilbrk/ulc-common: 
-  copyright: ''
-  hash: 9a542448cea2b4551dbe74db6db19d6a710a9852a22366389e4bde5720704dd5
-  license: ''
-  license_text: ''
-./modules/unilbrk/ulc-possible-linebreaks: 
-  copyright: ''
-  hash: a8ae35611c7f64d0f14765c7c432fd80dcb2d522898c2baafe870eab574f94c0
-  license: ''
-  license_text: ''
-./modules/unilbrk/ulc-possible-linebreaks-tests: 
-  copyright: ''
-  hash: 66540e1eacff19c056c6f522a61e19234bfb6e1ef88f8a1def60051272923714
-  license: ''
-  license_text: ''
-./modules/unilbrk/ulc-width-linebreaks: 
-  copyright: ''
-  hash: 4d8019fb733c5d022283c22399191899fe50ea419b772baf123fd6a2a9642f0f
-  license: ''
-  license_text: ''
-./modules/unilbrk/ulc-width-linebreaks-tests: 
-  copyright: ''
-  hash: ab389d2a8210afd8fa6f14184c42bed9763f9bc35f300703515b0fde7d4023ca
-  license: ''
-  license_text: ''
-./modules/uniname/base: 
-  copyright: ''
-  hash: 14222ba2a3831447be1c5f3821c04fd881c40b0011a712c6ea4380b5e0d7627c
-  license: ''
-  license_text: ''
-./modules/uniname/uniname: 
-  copyright: ''
-  hash: f8203167c7d48cbc145295b4987e3949bc4fcaefeb920a3bd869979a3751242b
-  license: ''
-  license_text: ''
-./modules/uniname/uniname-tests: 
-  copyright: ''
-  hash: e8ed561ff853cf6328b746f8a2f8b3c04609757e43e47c62cfde89bb927f6965
-  license: ''
-  license_text: ''
-./modules/uninorm/base: 
-  copyright: ''
-  hash: 55708fb81393394b4c7140b2a5317365173587180c3269f8fd500c04dc6ab541
-  license: ''
-  license_text: ''
-./modules/uninorm/canonical-decomposition: 
-  copyright: ''
-  hash: 0c842b02f4a51325fa53847ff43c6b266598ae61f3ebd376c6f04234d099a4b6
-  license: ''
-  license_text: ''
-./modules/uninorm/canonical-decomposition-tests: 
-  copyright: ''
-  hash: f466cfc0bda31b447c9123811c53a3d07befc8b189a14a10e504ffada3c213e4
-  license: ''
-  license_text: ''
-./modules/uninorm/compat-decomposition: 
-  copyright: ''
-  hash: a8448f11d9af55dc734db18330636fc5597007bd38d015b0dce43653a4d95143
-  license: ''
-  license_text: ''
-./modules/uninorm/compat-decomposition-tests: 
-  copyright: ''
-  hash: dfc9f69fa13843e2845a6d18df5748b8539cb64a93a69104b5cbda4c53c773cb
-  license: ''
-  license_text: ''
-./modules/uninorm/composition: 
-  copyright: ''
-  hash: ed68f5f00207cc044c32fc7e9803a2d8b3aacba259c755b39004cf2257dadcab
-  license: ''
-  license_text: ''
-./modules/uninorm/composition-tests: 
-  copyright: ''
-  hash: 143cce642d1aa68831d8ddeab1ebc3e0146099c05ced2dffd438a9bb4d69d5ac
-  license: ''
-  license_text: ''
-./modules/uninorm/decompose-internal: 
-  copyright: ''
-  hash: ddb12f59e41add6ed130a093f703313546e67c18717773a2666a4a7bf7a9bd9e
-  license: ''
-  license_text: ''
-./modules/uninorm/decomposing-form: 
-  copyright: ''
-  hash: bf3de6d60b1205900b4c31b36b6e00febdb46344e9026a355f8491cd49b8b4f4
-  license: ''
-  license_text: ''
-./modules/uninorm/decomposing-form-tests: 
-  copyright: ''
-  hash: a08e924c595e8eac1e915d262fbcb92e69b7115d8e3ee02fc857a00594202287
-  license: ''
-  license_text: ''
-./modules/uninorm/decomposition: 
-  copyright: ''
-  hash: 278f4492a2ab7f569353ad541ea108f2d9983e3bac359d848d422628c99d1e8d
-  license: ''
-  license_text: ''
-./modules/uninorm/decomposition-table: 
-  copyright: ''
-  hash: cd1abae2797adce6e27d5eeda1610f8ccffdfa17c6d774a67a90a9bb41d008ab
-  license: ''
-  license_text: ''
-./modules/uninorm/decomposition-tests: 
-  copyright: ''
-  hash: c9b2dfa9fe54b63937cfb0d5c629e850a6c22aa224c8190fe4917ea8e01fddbc
-  license: ''
-  license_text: ''
-./modules/uninorm/filter: 
-  copyright: ''
-  hash: 633ce3bb5d3271ee9e2eb6c1c70ce097f50b84e47358a2f2b6fe6487daaa7c1f
-  license: ''
-  license_text: ''
-./modules/uninorm/filter-tests: 
-  copyright: ''
-  hash: f1dd9689e14716782d10b036b74ac51d552d5eb95815d98d73d9e05465f12f37
-  license: ''
-  license_text: ''
-./modules/uninorm/nfc: 
-  copyright: ''
-  hash: 60058c5f1110cd6e42a99597ecd15d0d6c31ad22df871e1950ab8437181ffc96
-  license: ''
-  license_text: ''
-./modules/uninorm/nfc-tests: 
-  copyright: ''
-  hash: 6a0c689cd819d5e0a9885c65ae694a08e25eb08c50452e3fe23d5304e2ec46b7
-  license: ''
-  license_text: ''
-./modules/uninorm/nfd: 
-  copyright: ''
-  hash: ca777b00f508579277d7aaa803482277d4aede656f6cbe85ca7ca28430484344
-  license: ''
-  license_text: ''
-./modules/uninorm/nfd-tests: 
-  copyright: ''
-  hash: be9139e6cae2e3a1532af1e0b57b0c07057941b4ed2ddccd3db64a803bd82d07
-  license: ''
-  license_text: ''
-./modules/uninorm/nfkc: 
-  copyright: ''
-  hash: e73c029c73f8ffbe7adc1aa3a17d84758a58fed8e3633fab4c7ca48f8f9ca01d
-  license: ''
-  license_text: ''
-./modules/uninorm/nfkc-tests: 
-  copyright: ''
-  hash: a324be7602d5247af463f546da060584d4922db40058f93e535ee94369624a15
-  license: ''
-  license_text: ''
-./modules/uninorm/nfkd: 
-  copyright: ''
-  hash: 216c1ffcd9a03874199fccd2ea75e41a63e40e0c58c486c729a5ebd10e2baf27
-  license: ''
-  license_text: ''
-./modules/uninorm/nfkd-tests: 
-  copyright: ''
-  hash: 7d8600486ccfb54a1c4b0ae4cae9c529305055357cfa7698b37d3c6a8fdd4c3e
-  license: ''
-  license_text: ''
-./modules/uninorm/u16-normalize: 
-  copyright: ''
-  hash: 254ec15f4087c7b0e7d73adb91e09e1f00b8410b15cfced0389027f5f3d25a5f
-  license: ''
-  license_text: ''
-./modules/uninorm/u16-normcmp: 
-  copyright: ''
-  hash: 60b267a1ee14fc708de9a0bd87ca61e72e80825cad6bc6ff135729454537e3d6
-  license: ''
-  license_text: ''
-./modules/uninorm/u16-normcmp-tests: 
-  copyright: ''
-  hash: 2650b0af205c8cc429eed30048ac9a4dad0b894d7f90d702061ead69e32e8caf
-  license: ''
-  license_text: ''
-./modules/uninorm/u16-normcoll: 
-  copyright: ''
-  hash: fee77c1acd7117d103bf8735b316146e124e0a217e801751129718102d3980e9
-  license: ''
-  license_text: ''
-./modules/uninorm/u16-normcoll-tests: 
-  copyright: ''
-  hash: 5f868bfe3fde2026592d72aa80de2d4323c477c55aa8eda9dac137b8dfbf3389
-  license: ''
-  license_text: ''
-./modules/uninorm/u16-normxfrm: 
-  copyright: ''
-  hash: 6da763d8b900521a6e278440e419f025be68f1f90e61a082f347d292e2e3b48c
-  license: ''
-  license_text: ''
-./modules/uninorm/u32-normalize: 
-  copyright: ''
-  hash: 728b89052e03740cbfdeeee3cfeeb93c1856853fb07f3b04a52a7f4d0f3386ea
-  license: ''
-  license_text: ''
-./modules/uninorm/u32-normcmp: 
-  copyright: ''
-  hash: ef451854caeca2c8ceaa38128fc3ecc46ac88e450438a45f49163a8d6459b0f5
-  license: ''
-  license_text: ''
-./modules/uninorm/u32-normcmp-tests: 
-  copyright: ''
-  hash: 7237480a01f8c518eedfc6749df570f5c2115c1d144d1cda8390caa84e01bea0
-  license: ''
-  license_text: ''
-./modules/uninorm/u32-normcoll: 
-  copyright: ''
-  hash: b7eb853b14b60ce750a977c0a753b00e7bae1e25a4dc49b7e1f3e577399f3b9c
-  license: ''
-  license_text: ''
-./modules/uninorm/u32-normcoll-tests: 
-  copyright: ''
-  hash: 26c01f5e545110a25cd7c5e459320fbadcbc428a9e6d18294cd779d42b4fecab
-  license: ''
-  license_text: ''
-./modules/uninorm/u32-normxfrm: 
-  copyright: ''
-  hash: b55dc62687502a41c881449b9bdc29f233d37e40e5e63df427030d99d02bef7b
-  license: ''
-  license_text: ''
-./modules/uninorm/u8-normalize: 
-  copyright: ''
-  hash: 67725ebcf8da9754aa7be1162f4ee96607ac824a6031afdd87a62ef3d17810e4
-  license: ''
-  license_text: ''
-./modules/uninorm/u8-normcmp: 
-  copyright: ''
-  hash: 3c986b68b5dd7426bb420158436b7298d3ecab8e151606e900e5ecaba89681d4
-  license: ''
-  license_text: ''
-./modules/uninorm/u8-normcmp-tests: 
-  copyright: ''
-  hash: 53594b9d7b20e4f6767f43618ac2a4f9f9aaa8028da81dd773bd8f725d065aa3
-  license: ''
-  license_text: ''
-./modules/uninorm/u8-normcoll: 
-  copyright: ''
-  hash: 149b1a7f74ac5e6727721ce233443cfc06ed98033f9f0724d185a4e7ea669729
-  license: ''
-  license_text: ''
-./modules/uninorm/u8-normcoll-tests: 
-  copyright: ''
-  hash: 29bbf4e6bc068279d9f6ecb257f7c09203f568dae1362ea6343a86caef24573c
-  license: ''
-  license_text: ''
-./modules/uninorm/u8-normxfrm: 
-  copyright: ''
-  hash: 28e882bcc408f734dbe4a30c8907c4ab6c7803e7d1c4c828f3c830efbe198b91
-  license: ''
-  license_text: ''
-./modules/unistd: 
-  copyright: ''
-  hash: dbd2f26b0321b56b0a24ae997cb7a3f1d20e4d054e578a2da4f5f35ec2e491d1
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/unistd-safer: 
-  copyright: ''
-  hash: e13cb7d10c4c353c4534a10e50f2add94102296c420d682bcfd7e46042860f5f
-  license: ''
-  license_text: ''
-./modules/unistd-tests: 
-  copyright: ''
-  hash: c5a369a6a22a5c28685b41272e0c158001cf10f53b58bad411602fc4542476ef
-  license: ''
-  license_text: ''
-./modules/unistdio/base: 
-  copyright: ''
-  hash: cb84e6cd2695bb4f4172d2c8a0918b3d339c7ccc9003c5548a655c11ef038257
-  license: ''
-  license_text: ''
-./modules/unistdio/u-printf-args: 
-  copyright: ''
-  hash: a0c39a7cd90d51f1067f83b90bb694c68e18eb7fb39702444070608e55c12e8e
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-asnprintf: 
-  copyright: ''
-  hash: e5a1c81801f1b344c3821ebe2a309887e4af4254e6ae4f6200f382b66c35e446
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-asnprintf-tests: 
-  copyright: ''
-  hash: 32c4fd1e0b2cdfe673e68a3aab7cf3108e45729f79abdd5b98e8c0a804b9746c
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-asprintf: 
-  copyright: ''
-  hash: a3db1508f6b3c88bb92133f3ece2af5b665e6ac3f28096a3843cd72f4aca5927
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-printf-parse: 
-  copyright: ''
-  hash: ce2adac94e7b1b6ab6becda606586f2ce214e270fdf123b1f90475ec44978b82
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-snprintf: 
-  copyright: ''
-  hash: 936f2aa7eb538828d32e402413cda30c439eee1c8c5fa3d50ca1e1e0791c9065
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-sprintf: 
-  copyright: ''
-  hash: 4f9d3bdc4ecaf39bbb4d5587d4c9980f2dcded7fce5c2ce68d46c10586f8b778
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-u16-asnprintf: 
-  copyright: ''
-  hash: 8829c634236443e3fd488b05fd8c222627430c7ac48ee5256aad8709ad82d67d
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-u16-asprintf: 
-  copyright: ''
-  hash: 8223e90b776e0f011ec0fcc8d5d86239db472e6fec9f4b59ef5f451b658336f1
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-u16-snprintf: 
-  copyright: ''
-  hash: be3778392c62064afca5dbef4b4eddee43c8fff3f6e3f0cbb1f216382bff5a5c
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-u16-sprintf: 
-  copyright: ''
-  hash: d8fa0b52ad2772bc36ce74b51b05322f3c0e2ecc3797d5dc28c05e4fcb9af336
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-u16-vasnprintf: 
-  copyright: ''
-  hash: 39b53e2cf3419ccfeb2f825be2e6d255c750de08abfcc80f7769118e4c15d912
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-u16-vasprintf: 
-  copyright: ''
-  hash: ad8b4e11e4f5a36c527d2e0a0023b74ca6e332791894d2057990b47314d3c490
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-u16-vsnprintf: 
-  copyright: ''
-  hash: 6d3ae7a9bd95ebc852c1bf5ec893e08ca0d1d395c0d2b3a80d427f98a166be37
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-u16-vsprintf: 
-  copyright: ''
-  hash: 008c05b23a6db2628eb914823dbc1d1e1ffc00f6fcdf03be9b07ab4fcdf9e423
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-vasnprintf: 
-  copyright: ''
-  hash: 79062a7a8a415fa52fc8ac9c12333f59d9d23497f740d7cb158c321c67f99d30
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-vasnprintf-tests: 
-  copyright: ''
-  hash: 6d2007f23f43d2b3e81692e0ae50880bcbb48177372edae183a19d48cb3f8f8f
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-vasprintf: 
-  copyright: ''
-  hash: 41a2ff271a2c3cfe20383034c9fb6435057adcadb678e34eb00362b9dcb2d24f
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-vasprintf-tests: 
-  copyright: ''
-  hash: 7e555fc4132ab88db55c5acf19bf9b6fad003ab6a0386396959579a013327b64
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-vsnprintf: 
-  copyright: ''
-  hash: b7f6994eb06dcae1f3e609d63f59edef32a47f7dee16172c5631b0a4ce241375
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-vsnprintf-tests: 
-  copyright: ''
-  hash: b34bc4e356dde5443e4f217134e96ae90baebd5961b4b1e60a20ea4640fe39c3
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-vsprintf: 
-  copyright: ''
-  hash: d992d7cacc2843a1ee28dd7645010c6243f981342a2672247852edd3c758ce13
-  license: ''
-  license_text: ''
-./modules/unistdio/u16-vsprintf-tests: 
-  copyright: ''
-  hash: ad42ae89ce30aefca64040557c94850bb25b76a89e76037b65703cc566312ab4
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-asnprintf: 
-  copyright: ''
-  hash: 420179fe1ab744c708eeee5a4c8d8f5dad764ccdefd530a40c9bfe0fcb7fbcc2
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-asnprintf-tests: 
-  copyright: ''
-  hash: 8181ceb0d445dc7158c18f6448eaf893d71f57b76962acdb30ba0c303221d2c8
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-asprintf: 
-  copyright: ''
-  hash: 4b11f321da844ca6e09623c0f19929295e253a97937a01561fa4746fda7f4df6
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-printf-parse: 
-  copyright: ''
-  hash: 5e822828c5cc06a435f1ce53ee019565338480f5f360811cf3442c3b34c75e73
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-snprintf: 
-  copyright: ''
-  hash: 9d3e3d30f71e91fdc5b5e03a0b6cd0c325987732aed11f760e460a78b3cc03be
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-sprintf: 
-  copyright: ''
-  hash: b2bf7b19524e9af5f873aa6746e0b9541a8674ed0c719cf785b34640ebc9bce7
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-u32-asnprintf: 
-  copyright: ''
-  hash: c6db48a7b18e3180257faf8806786872780482b6aae288432f27a13b94ae8461
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-u32-asprintf: 
-  copyright: ''
-  hash: 2579aec352a8fc8d5c74f20b1085688f9828b3759f08b10c11b22892c34871bf
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-u32-snprintf: 
-  copyright: ''
-  hash: 94944d66a8c7f2fc8aee1a402dc12406ac66b367e28c2b1da44338e501a05ef5
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-u32-sprintf: 
-  copyright: ''
-  hash: 9a7d4d5bcf8be7e7913c99a0dafd8cf2db3608475f1a412f8c50acdf2ad45e35
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-u32-vasnprintf: 
-  copyright: ''
-  hash: e8010b11eb33ce3e5f17d3d42583d655ee1da1b1876e4b190b224c891eecd4b9
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-u32-vasprintf: 
-  copyright: ''
-  hash: 3f8169aa39520c68945f195873e0eb3109147fef1f3ca8d1e4f586073feb0b23
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-u32-vsnprintf: 
-  copyright: ''
-  hash: 5c72f750e5e15748ef48465141a5c80060b8a0e5e24c7fc0bfc4af600ee43e43
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-u32-vsprintf: 
-  copyright: ''
-  hash: b41115de72a702c2f6471a8efac119032669525cc835f48ea347c33026f48f3b
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-vasnprintf: 
-  copyright: ''
-  hash: a573d4003a595c0075c5337d0deb65198f6ab5a5dcb643a2b4af9b96d01debf6
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-vasnprintf-tests: 
-  copyright: ''
-  hash: 36037a8dc95c519a7e55a1b4f8c56e58a8e3a5a250ffff8bfda2758140ed3f65
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-vasprintf: 
-  copyright: ''
-  hash: 882213d6b43cd083fcc15a1165057fdd63d9eb9d5b58a073c2ab1f2d69e3caf7
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-vasprintf-tests: 
-  copyright: ''
-  hash: cd3da5fa9a934100c549d656d1d64487a57c72087b28137c2b42af09c5437b0f
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-vsnprintf: 
-  copyright: ''
-  hash: 2cdec23651eda4713ebf64ee4762c9721011b6bcff7570d2ba9dbb8fc1c261b6
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-vsnprintf-tests: 
-  copyright: ''
-  hash: c68b4af23046464830afb456b98f78c099691d6468eb684aef2dc6808c188a65
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-vsprintf: 
-  copyright: ''
-  hash: ebd2451d6c2e41fc7c5271270f372213a92f03ef2daadd2182972b433e554896
-  license: ''
-  license_text: ''
-./modules/unistdio/u32-vsprintf-tests: 
-  copyright: ''
-  hash: 1acdac65177d0a64e2669c3b2210dd86bc1cbad6cf8204cebbd385657193ce92
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-asnprintf: 
-  copyright: ''
-  hash: 671e88d83c47cad90e09e8183d6415bcb4c18035322c98d07a863aeaf6fa0b54
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-asnprintf-tests: 
-  copyright: ''
-  hash: 10a61fe9519293ace37569fdc3cb3e030735c425f3253a7c97a9c4af28834a02
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-asprintf: 
-  copyright: ''
-  hash: 9fe5db8cf1422dc97b9b723452837bf7eba50f2ce70f38744fed356cb67ba6c6
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-printf-parse: 
-  copyright: ''
-  hash: 44082b101deb9af1103053eb19fb0390cd5b28b367c5de92e84ba92d818ba40f
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-snprintf: 
-  copyright: ''
-  hash: 79b5f87048e482b8d4bbd8322eb3cd9ea61083ee9654688c21eba9924d05eb3c
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-sprintf: 
-  copyright: ''
-  hash: 4477280d827c0700517e29715526f76cc614fde226c78f7dc367e1e78236703e
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-u8-asnprintf: 
-  copyright: ''
-  hash: aa014092e59d71b5f6ec447c5f47f7596fc5accddd217e9fc6032baff8e01142
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-u8-asprintf: 
-  copyright: ''
-  hash: b81a9f24da7506d62addb380cb0899892063ee4bcfa3c39b1782d056cc5e7b98
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-u8-snprintf: 
-  copyright: ''
-  hash: eab1371efd0a40b90692743ed735eaba5eaf3870f968f88d07e30d8baa2a2272
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-u8-sprintf: 
-  copyright: ''
-  hash: b06d07e2cc7e3afff9faadfa604c069ca8cf659693881606dc8627b7ec5a0e1c
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-u8-vasnprintf: 
-  copyright: ''
-  hash: c67caefd2283651d78359cec0a2d90b0d5aeb97a3c5db710f666b690452d85ca
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-u8-vasprintf: 
-  copyright: ''
-  hash: a08013161a7462b4b53e50b9264b664d384727fc249569c17a885e05e94af322
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-u8-vsnprintf: 
-  copyright: ''
-  hash: 61bae80d81e22834e041ca1deb3421979390ac879e971a01e5fcf1bc32cf7bee
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-u8-vsprintf: 
-  copyright: ''
-  hash: 609118650b7ee936ae050628649117774d883713b8a6cb8c5e1c241c74ab81f2
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-vasnprintf: 
-  copyright: ''
-  hash: 55dcb014930de61418a0dc35670e9d20a7ea72ce01aa0757cc87482bc11eec88
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-vasnprintf-tests: 
-  copyright: ''
-  hash: 116b70b260b697d44cddecc4170f10dfec7461493a99589aea489e9697dfaf1f
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-vasprintf: 
-  copyright: ''
-  hash: f831f573cfd6f1abe875d5fe09542645d419f50eb2bd0f86ae396b86d874c816
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-vasprintf-tests: 
-  copyright: ''
-  hash: 6e1fbf837a8c5423857ac068329f2bab9fbd674db7b813b2a13b224ccd13718c
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-vsnprintf: 
-  copyright: ''
-  hash: b9eb6dace1eee830b408454c93d614798f2832e95c9f976d964b2956454726a8
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-vsnprintf-tests: 
-  copyright: ''
-  hash: 1be08e23a34822134bc7f1747b68357d4ce2a8f0690d5a06e3b16f0fb0b6c8f2
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-vsprintf: 
-  copyright: ''
-  hash: 36876a19f42af01cf95e1f627a66a3b4fb8774dbc13367d748b0eb2534612450
-  license: ''
-  license_text: ''
-./modules/unistdio/u8-vsprintf-tests: 
-  copyright: ''
-  hash: 84b3a8b35732e99760883086f7ea042ad872e4691b82cdc12004b433c6cd3898
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-asnprintf: 
-  copyright: ''
-  hash: aef4b8ca6ca35a4e2b162dad823919bdefdf406831025f419dc5e8068d11ec1d
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-asnprintf-tests: 
-  copyright: ''
-  hash: 1e801a641f59b3b47c5685bef89c04f17748c884d1db640f8808bbfa2562b021
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-asprintf: 
-  copyright: ''
-  hash: 03a7f927e5cada2a4c5828bc4b3a212b6a0be29cb146459d2cc6a355c7d6ed6b
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-fprintf: 
-  copyright: ''
-  hash: 47e1a7a54213b0cb11c7d73c3ef899ab5947f84f5bd4aa4ee1473daf8ded4178
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-printf-parse: 
-  copyright: ''
-  hash: e24404a5be2431850f0f1feb51f9fac37bdf6aab0b5bfc8ad170c9257abe81c7
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-snprintf: 
-  copyright: ''
-  hash: 8bcd8d35147496ef3250a46a6e5271502f8ff69cbfd483af5eb93a5d874c9be6
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-sprintf: 
-  copyright: ''
-  hash: 03de557028b609bc44f43a6c2dd375a744c55b482e028f6a0ac404ae45c38c5e
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vasnprintf: 
-  copyright: ''
-  hash: 2d955b7e918bba4cf7dc36e075eb2b0d83d4e29fd648db3ed93d231daf7a1530
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vasnprintf-tests: 
-  copyright: ''
-  hash: 1c8d7e070a14e0424fc140adc0e006bbb94e1e97a6ccf7f929b3f8b72616eb02
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vasprintf: 
-  copyright: ''
-  hash: 836850e1658f7235dff277c8c273b21c5c85d7eb024bb4cc979aea52e1aaff04
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vasprintf-tests: 
-  copyright: ''
-  hash: 30d398df554c29d695b98ab4bbd6d0e2ed3e38713a6455fcfecf6324b7b1935d
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vfprintf: 
-  copyright: ''
-  hash: a517b7505ee60d4a22c9632833a3e9a85edbac52a2882110025727efe7886b26
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vsnprintf: 
-  copyright: ''
-  hash: 51bff1a79ad0658b32c869972f5c1fbcf51339da26f92e2de991e828ae0c59ce
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vsnprintf-tests: 
-  copyright: ''
-  hash: 9b378029e95da2a44f7dc99b6b24d4148ba72916a20ee18228b335f49c9c13b7
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vsprintf: 
-  copyright: ''
-  hash: eb869efc315f53bd130d3288515fad6772428e711947a3166d07dc0b686b006b
-  license: ''
-  license_text: ''
-./modules/unistdio/ulc-vsprintf-tests: 
-  copyright: ''
-  hash: aebae0fdefdd4531b226beb5e736dfcf790a849d91eb8abee309b6d2def3d0cf
-  license: ''
-  license_text: ''
-./modules/unistr/base: 
-  copyright: ''
-  hash: db12f54bab99e17db66374a1cbe7b437ef0698fd82e152c408337de17b2f092b
-  license: ''
-  license_text: ''
-./modules/unistr/u16-check: 
-  copyright: ''
-  hash: ad6c444a5a5599ada9d5af6c97f77bfeeaf93f462d31efcfeb022793738e2310
-  license: ''
-  license_text: ''
-./modules/unistr/u16-chr: 
-  copyright: ''
-  hash: 6c894150648cf9c4991eb5f1320e36878a0ad878b1973f9a7f53744ae092188f
-  license: ''
-  license_text: ''
-./modules/unistr/u16-cmp: 
-  copyright: ''
-  hash: 6c1680cbdeffbfe7254af009a9b38e4fd7c2a8d04d6cbb827f5b8c79581de104
-  license: ''
-  license_text: ''
-./modules/unistr/u16-cmp2: 
-  copyright: ''
-  hash: 7d0f86845e9623a2a43cea7ac77f2033321dd70b9eb86b3cff8479eb8f8092ec
-  license: ''
-  license_text: ''
-./modules/unistr/u16-cpy: 
-  copyright: ''
-  hash: 4c2c3026a1bd49c91ccc758b866e7796578166a2aa65dafb4966719a13784ce1
-  license: ''
-  license_text: ''
-./modules/unistr/u16-cpy-alloc: 
-  copyright: ''
-  hash: c62421466f75814033d6587c3beae0f81ad0163be8d79ab76e96294d5be98fa1
-  license: ''
-  license_text: ''
-./modules/unistr/u16-endswith: 
-  copyright: ''
-  hash: fd68d80d149e1f8b89805dc96f07f05f71d16744dbc36c88ff10277272d5827c
-  license: ''
-  license_text: ''
-./modules/unistr/u16-mblen: 
-  copyright: ''
-  hash: 26c0544bfdb15aa81c21e8cca721659799fc9eb4af9859124775f26f2a3a705a
-  license: ''
-  license_text: ''
-./modules/unistr/u16-mbsnlen: 
-  copyright: ''
-  hash: 270ddf040b389f659a422772337a42fc0ec8dd948c8c10451154f6d844ee6b05
-  license: ''
-  license_text: ''
-./modules/unistr/u16-mbtouc: 
-  copyright: ''
-  hash: 3e7eff841306b06d86124014854b26de8789fb0ce6f8712fa55b055f224dc01b
-  license: ''
-  license_text: ''
-./modules/unistr/u16-mbtouc-unsafe: 
-  copyright: ''
-  hash: c0e51d9a7694fa751055b2101e4145eb3c274590735f9e3aaa7f2ba527181a2b
-  license: ''
-  license_text: ''
-./modules/unistr/u16-mbtoucr: 
-  copyright: ''
-  hash: b4d4a7d76a589c82835ed877110de2f60d8784b5967cbe25f0d76cbb1a2da887
-  license: ''
-  license_text: ''
-./modules/unistr/u16-move: 
-  copyright: ''
-  hash: 9a0ecd1db4dcb2318df5febbce8fdda68bed7d0e159505d9d34f35b1c81620c1
-  license: ''
-  license_text: ''
-./modules/unistr/u16-next: 
-  copyright: ''
-  hash: e2886f5dc60d6da76a941b4ba981a844116081c6002290af2034b04bc33d24c9
-  license: ''
-  license_text: ''
-./modules/unistr/u16-prev: 
-  copyright: ''
-  hash: b10276bd1b4800ac02a835a6a1304a196318ceb8ba7007cc39163874d6b2b414
-  license: ''
-  license_text: ''
-./modules/unistr/u16-set: 
-  copyright: ''
-  hash: 114fbcd3a3fed8c29138b66ac993b9245c5defb057304fda3b051515c3875ff1
-  license: ''
-  license_text: ''
-./modules/unistr/u16-startswith: 
-  copyright: ''
-  hash: 1c99a909517d107b4bc043ab2289b7c6e9bba9474e4dd7e84bc2926b38e9e279
-  license: ''
-  license_text: ''
-./modules/unistr/u16-stpcpy: 
-  copyright: ''
-  hash: 768b6daf4c471a2a53acef0cacdfe8e4149f46ceb14ab399c3b2ba7b83d4f5b3
-  license: ''
-  license_text: ''
-./modules/unistr/u16-stpncpy: 
-  copyright: ''
-  hash: 0ddc4dc25205318206f6d5672095fab98b5db9c46a147fad733625ecd65123f8
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strcat: 
-  copyright: ''
-  hash: 88ee8f819e444554daf43fea856b453474a12bee6c17437accad02cf95ee6735
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strchr: 
-  copyright: ''
-  hash: dcea6f78f71dd2109e6110bd7a16fa2d0a22b874796525e0408a254480565d2a
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strcmp: 
-  copyright: ''
-  hash: 9d508e0abbece1745811f8dae554e715a7d8810d5592374ef22a48a71bc83086
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strcoll: 
-  copyright: ''
-  hash: 1fe6ba935b495dc3478561c04d876888a347fe69f38317c38428da74b126b0bd
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strcpy: 
-  copyright: ''
-  hash: af4022a6903937a21af7a08c5717154046fdd57e878c927d2edec273d2a926a6
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strcspn: 
-  copyright: ''
-  hash: d81d7f1d978cd2385ef84886511f43055c67086231b11f06adca968444603ac2
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strdup: 
-  copyright: ''
-  hash: c589b243730f3ce78ba1ed578ed46050b66267618dca7ae20f79f7cb1275795f
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strlen: 
-  copyright: ''
-  hash: 85de6c72712b4e42a20ae5fd7aead9d06d1e78fa6fc9a479ab0a4d985ddb7f8e
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strmblen: 
-  copyright: ''
-  hash: 757f17cdeeb24d993e1d0f25ee11241f4592f31df2ff9b8d714fa40f1a425bc7
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strmbtouc: 
-  copyright: ''
-  hash: 8b6dd01329ab9c2282e3cc33f1d47413579448ceb31527062d902bf4203e4d41
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strncat: 
-  copyright: ''
-  hash: fe1e70a83c71ee2ec211d24de4c48d8b9811b03bd8db37317832f52292fc5a4a
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strncmp: 
-  copyright: ''
-  hash: 25d145ad99710676d8aeada4370f22d6782b5b340ff43bcf914b24266d700cab
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strncpy: 
-  copyright: ''
-  hash: 058c662917c80ac2a3b1e1265b2aef2942cb80af1fc7647692d735ea0e91429f
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strnlen: 
-  copyright: ''
-  hash: bc1f56a19f7521d6d6fd729687ebf5f1722a86bcad21e4222c85701fe89c9be3
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strpbrk: 
-  copyright: ''
-  hash: b18ea47f78d4c249674e38e7b0d10f07914a2f961ce737e9734a59ebeafd5e97
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strrchr: 
-  copyright: ''
-  hash: a6037543d1928cad924bb02facd245aef6c2419603ae2a837e7f314885d1d754
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strspn: 
-  copyright: ''
-  hash: b0c52081086d9124b0ccdf547c3d3a350928da09fffb4a14f309e574fc1bb6bf
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strstr: 
-  copyright: ''
-  hash: a4d8fadace1392d4a8c2bf1d2d9001cf52051b7cecadf246c46980a1219661c2
-  license: ''
-  license_text: ''
-./modules/unistr/u16-strtok: 
-  copyright: ''
-  hash: 6ab1255e7878f7e66c14b305cd9c23c25767e21f0b902e92f75b2de2b133e85a
-  license: ''
-  license_text: ''
-./modules/unistr/u16-to-u32: 
-  copyright: ''
-  hash: 1ed07813c21251360d34df1c66a3daccd46125db5a9fc2567c1496e997bb66cc
-  license: ''
-  license_text: ''
-./modules/unistr/u16-to-u8: 
-  copyright: ''
-  hash: 4be6380172f47f003a1063b623d36f0a85c64ea132e0cb472f53461599799806
-  license: ''
-  license_text: ''
-./modules/unistr/u16-uctomb: 
-  copyright: ''
-  hash: 96a71e89b7fa7eb1cfe1ebd8e41ceabf497aa60f4640968470ed47918aafb1e4
-  license: ''
-  license_text: ''
-./modules/unistr/u32-check: 
-  copyright: ''
-  hash: d30089eb527ed45788420d61fb178c2d0b33a244eb675a679a9b6fd2fef42555
-  license: ''
-  license_text: ''
-./modules/unistr/u32-chr: 
-  copyright: ''
-  hash: 1ef545b51ec0c964f4a9476466a69e63f79c453c5d5263f0b24bfb9618acdcbe
-  license: ''
-  license_text: ''
-./modules/unistr/u32-cmp: 
-  copyright: ''
-  hash: a89c5d8292e8294b4e754de419a6bacd5f1af4a6fa42dd0eb5c5833cd60cdff4
-  license: ''
-  license_text: ''
-./modules/unistr/u32-cmp2: 
-  copyright: ''
-  hash: 59b45d7fd7ecfd2c32cd59c72eb001f51c33df3f1d790f91be50da090076f70e
-  license: ''
-  license_text: ''
-./modules/unistr/u32-cpy: 
-  copyright: ''
-  hash: 19a8f09d63a3fc5788ed016282639b16e694ce41efef0b9c98cb998cd6cda60a
-  license: ''
-  license_text: ''
-./modules/unistr/u32-cpy-alloc: 
-  copyright: ''
-  hash: bbe7c52e264a76ae6b197122f7ef7d5644bae478ae870e3877a6d275cf272437
-  license: ''
-  license_text: ''
-./modules/unistr/u32-endswith: 
-  copyright: ''
-  hash: 12d65828740c811526f183278620b0767e19b7e189d698648b48fec0bcf641b1
-  license: ''
-  license_text: ''
-./modules/unistr/u32-mblen: 
-  copyright: ''
-  hash: dfd5b7f9f5ddd7f8cda044e2ce8e4b9812b85498250cc94f9a1afc31e3ce9f7a
-  license: ''
-  license_text: ''
-./modules/unistr/u32-mbsnlen: 
-  copyright: ''
-  hash: c31250e54523ca128b3ed988d971d7e11660e697418e817492b0bf560f6c4224
-  license: ''
-  license_text: ''
-./modules/unistr/u32-mbtouc: 
-  copyright: ''
-  hash: 97fab0b684c47ef8efe41fb02737feafbf66aa909ed50d38a9f2b22b177eb150
-  license: ''
-  license_text: ''
-./modules/unistr/u32-mbtouc-unsafe: 
-  copyright: ''
-  hash: adf485282664d86d231c518cf90e384edff8e45d6856c08a74d01bdffe9c1b31
-  license: ''
-  license_text: ''
-./modules/unistr/u32-mbtoucr: 
-  copyright: ''
-  hash: 43802ecda3d739f61ee96e307a9e89513827787a3fea19d6bc619e2fe75ce235
-  license: ''
-  license_text: ''
-./modules/unistr/u32-move: 
-  copyright: ''
-  hash: 598e84fe64fcc32320d43558f207c4c2f650cca4176da169ebdb525e96870337
-  license: ''
-  license_text: ''
-./modules/unistr/u32-next: 
-  copyright: ''
-  hash: a1643b07f52eee7629ead82e69379068917e0731aceb00c5758875c59b7c8147
-  license: ''
-  license_text: ''
-./modules/unistr/u32-prev: 
-  copyright: ''
-  hash: 4d810016048f7288e2ed8abbe5aad802e978554e6bd59751bd32ef757a2a44bd
-  license: ''
-  license_text: ''
-./modules/unistr/u32-set: 
-  copyright: ''
-  hash: e4c2e34d50001462cac8a78eeb9a2934842aa8fcd830c164b8c5c6a9b29e6989
-  license: ''
-  license_text: ''
-./modules/unistr/u32-startswith: 
-  copyright: ''
-  hash: 3c5ca341b07d6b8cb9d89b7c9112d3800ceb600f646ffbcaf130f419ae525439
-  license: ''
-  license_text: ''
-./modules/unistr/u32-stpcpy: 
-  copyright: ''
-  hash: b446f2c8936a11f4cd5e1aeb26c2b5ee54e00895f295c64150bedbe7d7bf9aaf
-  license: ''
-  license_text: ''
-./modules/unistr/u32-stpncpy: 
-  copyright: ''
-  hash: 1316df8fbcf81888ec6a060e7b50dc78bfa42fb1984fa53cf718c80904c3094f
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strcat: 
-  copyright: ''
-  hash: 4c925e546f690a456f6e577a025389a0b3eb5b209801629047b2dde3b94f3509
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strchr: 
-  copyright: ''
-  hash: 56f174656fdf4adad996c9f8c5c24a5f740352e7628b1ba77506deb6a37f9cdc
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strcmp: 
-  copyright: ''
-  hash: 7065d4bc58252885bb48ffd390e2598b13e53b629f99b1bb9ce9c64d6bc3ebfb
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strcoll: 
-  copyright: ''
-  hash: 5613745c45e9990b47ddb6d591605f89411d5270bc593481cd5009218c2396a6
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strcpy: 
-  copyright: ''
-  hash: fcc34d80ea5d8c6e8f9b81a5f304c610e56a561c384184f7828b174b8030d889
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strcspn: 
-  copyright: ''
-  hash: 2bc19f0ef48e258551cd82ccd6ae6acab80afd51324e942dbc96d2777e9e0e06
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strdup: 
-  copyright: ''
-  hash: a86383941494d5eabe2c7c18986a45f1949520c0bb308324490f6c8c33bcad06
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strlen: 
-  copyright: ''
-  hash: cac5e41b27597a0e6ea06e373da8c27d86c950ac67e32dead50003e539f7fe43
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strmblen: 
-  copyright: ''
-  hash: 0a39dd66f226db1655fa8adde6900e597ce8cb093af6419a0773394bf43e8bf2
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strmbtouc: 
-  copyright: ''
-  hash: b549c1a44c55d0ab2c49f1adebb1920287cd23f3706b970f4597894c034d5e86
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strncat: 
-  copyright: ''
-  hash: 57f9cd08214329a7a22ae525087199e02b869335a7d205fabf671f4980de6899
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strncmp: 
-  copyright: ''
-  hash: e96953d0ea23e21638cfb21463b1dc6a24727b137c96a1a3d55d2863f182f198
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strncpy: 
-  copyright: ''
-  hash: 3c1ed4cd48c6daf7faca50c6ea9e58bad9306e1ec96b392ce6941db4e9ae4341
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strnlen: 
-  copyright: ''
-  hash: 28f35912d4dd18d1efb1ec1b5ab7370f6c8d5ca60fa4672627d18b96fe6971ce
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strpbrk: 
-  copyright: ''
-  hash: 3d1e9ba187b678b79f07715d90f0fd805860a04670b5b4ec832db44a11c791e2
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strrchr: 
-  copyright: ''
-  hash: 354743e1655d52b8664156e34b7bbd99f6c10f09221923cfcd72a00f531cc34e
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strspn: 
-  copyright: ''
-  hash: 2c0deed50d3efbf74245bafc93dca86fd3cac1120db9190f93ad2ce047b0931b
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strstr: 
-  copyright: ''
-  hash: 876a50ab36555d6512bff19b244be2ce5f7bdbda514aabc36e7b5ea80559572b
-  license: ''
-  license_text: ''
-./modules/unistr/u32-strtok: 
-  copyright: ''
-  hash: 529d687fd41eb8bd1e8c79f8c17b630e83b4293186976cadb38afc021a6a2a0d
-  license: ''
-  license_text: ''
-./modules/unistr/u32-to-u16: 
-  copyright: ''
-  hash: 022d4994ff8e18312f8980e63443531a9e85316a1fe116717032e2a79d294bb6
-  license: ''
-  license_text: ''
-./modules/unistr/u32-to-u8: 
-  copyright: ''
-  hash: fd3ab8952b1edc44a7b37328238e9a9d259c19ee9ac7d6931f0ebaef8776bc37
-  license: ''
-  license_text: ''
-./modules/unistr/u32-uctomb: 
-  copyright: ''
-  hash: 1af030b215d042441496451065fa2a829bef744bba02b1b9ab1e0b2c069f7b89
-  license: ''
-  license_text: ''
-./modules/unistr/u8-check: 
-  copyright: ''
-  hash: e762bd6549a1b7739cfdde71aa4fdc5bcb65de7297b68d3bf0253b675c66ec2c
-  license: ''
-  license_text: ''
-./modules/unistr/u8-chr: 
-  copyright: ''
-  hash: 0f0f61a73f9c721fffacf395adf6390efc059183552a212b322f17396d8badfd
-  license: ''
-  license_text: ''
-./modules/unistr/u8-cmp: 
-  copyright: ''
-  hash: e53af4cf3c4bbdaf8b40dcfd3d2d9ba20534b044f44a92db805c3acc2ac558f4
-  license: ''
-  license_text: ''
-./modules/unistr/u8-cmp2: 
-  copyright: ''
-  hash: 00fccbb392a1ea9e5a35b9e5b0e92734f0b03ef7c1bf58e88234e80be6d15034
-  license: ''
-  license_text: ''
-./modules/unistr/u8-cpy: 
-  copyright: ''
-  hash: a8d050dbe93417ef2632e1cd18f25c1ef0d1b02b74ef16a7968e9e3756afad40
-  license: ''
-  license_text: ''
-./modules/unistr/u8-cpy-alloc: 
-  copyright: ''
-  hash: 7b4a814d0a03e059042bee4ad27e13d8bc3d280393db8d95e0d4bef3466e0f60
-  license: ''
-  license_text: ''
-./modules/unistr/u8-endswith: 
-  copyright: ''
-  hash: 39adcf4c5bd6e19f7600028d7625f6b4b0e7cbb6b2af481f6ecd787fdf9188ec
-  license: ''
-  license_text: ''
-./modules/unistr/u8-mblen: 
-  copyright: ''
-  hash: 408faa587e56fbb1d478e61d61dd03cdc116d3dd92d9b54e6c0c9bfdff5b5276
-  license: ''
-  license_text: ''
-./modules/unistr/u8-mbsnlen: 
-  copyright: ''
-  hash: f0f2db825748512cee734ad6fa30b49a4609d6f0bd990758476030ab197d3a96
-  license: ''
-  license_text: ''
-./modules/unistr/u8-mbtouc: 
-  copyright: ''
-  hash: 518c26f031f4bf33f4ada1641e839d4332c8e1ed7e5c6044b3d9042aff5d4ba0
-  license: ''
-  license_text: ''
-./modules/unistr/u8-mbtouc-unsafe: 
-  copyright: ''
-  hash: 3de70315efd5082b08b82696cb8607aed3a9ce70772847e7404961630d4565d1
-  license: ''
-  license_text: ''
-./modules/unistr/u8-mbtoucr: 
-  copyright: ''
-  hash: fa50e84a06148660a72bf6793ab1ab735d876fc58d4af10d3da13089aebbba73
-  license: ''
-  license_text: ''
-./modules/unistr/u8-move: 
-  copyright: ''
-  hash: 266f706359ff6fa14c20e575e16bc5485d3353b6f89c410ac93dcf41601669b8
-  license: ''
-  license_text: ''
-./modules/unistr/u8-next: 
-  copyright: ''
-  hash: 1b8d63ec73c8841e2de255038e733d06312add264d5a9d6493a37238415f3476
-  license: ''
-  license_text: ''
-./modules/unistr/u8-prev: 
-  copyright: ''
-  hash: 8d5b54525b1e206aceacc33ac18db8f242f680e4ff2108dc4f339cad3d3846bd
-  license: ''
-  license_text: ''
-./modules/unistr/u8-set: 
-  copyright: ''
-  hash: 0758300e7315732a1bdd6e409ed9ae5a66e81f6af5196c56a13bea90e59ac0d0
-  license: ''
-  license_text: ''
-./modules/unistr/u8-startswith: 
-  copyright: ''
-  hash: ce09cc33ab2257e14a2c13048216ca38145c2a027391108dcad6645cf38d134b
-  license: ''
-  license_text: ''
-./modules/unistr/u8-stpcpy: 
-  copyright: ''
-  hash: f51e9e6b3a4e4d55ce408f8332ced953ef2701226945794ca9a736debd142f6a
-  license: ''
-  license_text: ''
-./modules/unistr/u8-stpncpy: 
-  copyright: ''
-  hash: 0509c5614f94701a66adc81cf069f2eceff65e00afe2e8af7e7ee372242fc0ec
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strcat: 
-  copyright: ''
-  hash: 3d7e5b83ffd692c82ae35edff74365fc2fef6c51d569eb72c701838ceb1ed064
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strchr: 
-  copyright: ''
-  hash: 371da7bd92f6327fe7ed4e7adf4a92ac13860b0d5b70cbf74ce84dcc5734c189
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strcmp: 
-  copyright: ''
-  hash: 27ac4927a7266ecefb5276252d4ac2aa9fbac030608f00440a41862cc4c9e3ec
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strcoll: 
-  copyright: ''
-  hash: eb8ef55b39888bc59996029734bc4765e587347fd6849c9eabeb537484ad0e47
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strcpy: 
-  copyright: ''
-  hash: 8acb4839e489dfc0b194d9845c1b8818b932ef8788ca3a59091e65274a17cf7a
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strcspn: 
-  copyright: ''
-  hash: 901bde35d4a19fe0038605f60c0121c979df786313ef257d26f7a0cb6ddea390
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strdup: 
-  copyright: ''
-  hash: 72155a23384c8d68b0792478ea50cef86bf0dbbedede0fc0b21c9692bf679840
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strlen: 
-  copyright: ''
-  hash: 78e1bea871c30a4bb4a24717de55076cb9e9e44b7a82f92c0e29dcfa8c70b47f
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strmblen: 
-  copyright: ''
-  hash: 39d415aa0c53cd0bb4390fc79b42f7fed602cb124da5c9fe08ca0f6ecf66dced
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strmbtouc: 
-  copyright: ''
-  hash: a2eb24ffc4cd94e7a7c9f774f864b1e8c9ca8d8fb8ab56fc5bf6ec16c06792f8
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strncat: 
-  copyright: ''
-  hash: 313fefe65e273b4a185b3cb48174e459e354a2aaf8323bf44a5ed65e84e703cc
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strncmp: 
-  copyright: ''
-  hash: 8eddf5eb56c701e04fc346f2637657d112e6ffd19b9b5067cdc426c80d7ab648
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strncpy: 
-  copyright: ''
-  hash: b8f595c135b53ac6810786b317c5f72b21daf539a08428a70a72d02b1cfafbd9
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strnlen: 
-  copyright: ''
-  hash: df5a00a46fb2149c3bb563bbae6cd56749db185256df83503027242f7127e329
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strpbrk: 
-  copyright: ''
-  hash: cf46d198446f93fc02a87a29251104030023b02667c191c15d097d443a257882
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strrchr: 
-  copyright: ''
-  hash: 67af768301a77434ce2e829df7f6cc95d934376737252d5687fe2ed4f99d6058
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strspn: 
-  copyright: ''
-  hash: b254b4d4af0993182505511f6b69a9b43f2fd89167d945c4dec7381b4cd0d393
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strstr: 
-  copyright: ''
-  hash: 6ae0bfddf7d25b1db21f7f2022846bd2b9bb1fda741de649f263f1bd422da1af
-  license: ''
-  license_text: ''
-./modules/unistr/u8-strtok: 
-  copyright: ''
-  hash: 6789a23f8b70334a2d70c3957f6e3794923c47f9366315d7ec20d169082ff0c9
-  license: ''
-  license_text: ''
-./modules/unistr/u8-to-u16: 
-  copyright: ''
-  hash: 6b1b43f09949fb6925196b2be1a666c19623dffdeeb7412037f390acc3fa99d5
-  license: ''
-  license_text: ''
-./modules/unistr/u8-to-u32: 
-  copyright: ''
-  hash: d12ae67b97c01738122febaaa36ed901a5cdb13adb9bff527d723b25cb2830b8
-  license: ''
-  license_text: ''
-./modules/unistr/u8-uctomb: 
-  copyright: ''
-  hash: 91b24fa371c552ef8e0b7ade2830d19fff02c16a71c5cf7540a6df6d37df8786
-  license: ''
-  license_text: ''
-./modules/unitypes: 
-  copyright: ''
-  hash: 3c84fbb1b5987bd3154848f1f8a9455771418452fd66b92cb4e246849d683ac0
-  license: ''
-  license_text: ''
-./modules/uniwbrk/base: 
-  copyright: ''
-  hash: d482b7472bbc6482fd9e9f0dd92f23cc0ca9e68ea603067ecf03925aa83dfdde
-  license: ''
-  license_text: ''
-./modules/uniwbrk/table: 
-  copyright: ''
-  hash: 2799bba2f5960a06740d6d655215f499af718df4c8cc88d09787c6f95d16cc32
-  license: ''
-  license_text: ''
-./modules/uniwbrk/u16-wordbreaks: 
-  copyright: ''
-  hash: d7f70f6d8c5b458af47173ce7928ae07ba100b05546ee8ba67d1ff4f2a9339e4
-  license: ''
-  license_text: ''
-./modules/uniwbrk/u16-wordbreaks-tests: 
-  copyright: ''
-  hash: c0ad0afa38eb38012d0efeb296d1e3c3552da44da4fe9c9edf7c4c49ad839c1a
-  license: ''
-  license_text: ''
-./modules/uniwbrk/u32-wordbreaks: 
-  copyright: ''
-  hash: 3078e02d1f069bff3f8954303d781186bd57696ce962b99fd6d463edcaa7886e
-  license: ''
-  license_text: ''
-./modules/uniwbrk/u32-wordbreaks-tests: 
-  copyright: ''
-  hash: 63feee9699766ae3a2d981e1afce46021c4162eb71fe500dec6cb7425c8f051e
-  license: ''
-  license_text: ''
-./modules/uniwbrk/u8-wordbreaks: 
-  copyright: ''
-  hash: 8b9a2479ce00d2ea86f22bf74d08fd9e4144e6f802e825345a069a97544b64bf
-  license: ''
-  license_text: ''
-./modules/uniwbrk/u8-wordbreaks-tests: 
-  copyright: ''
-  hash: f449dca432c9d000b9dcf7156aebdacb6a5458a2aaa98b163031199f4d7a0a5c
-  license: ''
-  license_text: ''
-./modules/uniwbrk/ulc-wordbreaks: 
-  copyright: ''
-  hash: 1960fd867aafb45907b1a05155d61fd72f1298a693482083df733ad1f4ac5b22
-  license: ''
-  license_text: ''
-./modules/uniwbrk/ulc-wordbreaks-tests: 
-  copyright: ''
-  hash: cf79df0da1d74f9bc16ddfb86ae51b61a11053258ca11d95a60edad1a55975f1
-  license: ''
-  license_text: ''
-./modules/uniwbrk/wordbreak-property: 
-  copyright: ''
-  hash: 8d79911936415bdaa5a026169572855d941dd4c7e3a5b73929ee71014485e918
-  license: ''
-  license_text: ''
-./modules/uniwidth/base: 
-  copyright: ''
-  hash: 3586e1904006e2ff3b99c322d51a9d93d5ae389bb64cc98c42574fde384b9d96
-  license: ''
-  license_text: ''
-./modules/uniwidth/u16-strwidth: 
-  copyright: ''
-  hash: 647245c0f7f5245e452c16a7277d9fa55dce164e88828579f741cd7161453550
-  license: ''
-  license_text: ''
-./modules/uniwidth/u16-strwidth-tests: 
-  copyright: ''
-  hash: fc680b14fa92a63747604225594434c464e284f4ddd63cd26ca707b9218f204e
-  license: ''
-  license_text: ''
-./modules/uniwidth/u16-width: 
-  copyright: ''
-  hash: a6a6448321623e86774b6707c62650ff8a42e78980b5225ec46ffbf15cabd495
-  license: ''
-  license_text: ''
-./modules/uniwidth/u16-width-tests: 
-  copyright: ''
-  hash: ffc13ce1b559cb247a4eee44d1dee158808875bf29e78f5e5a71a6661e5a0194
-  license: ''
-  license_text: ''
-./modules/uniwidth/u32-strwidth: 
-  copyright: ''
-  hash: 4f122cf229d732419564e8ae27aba5c45041cc3af9a7df0cc8e4b077f19dab08
-  license: ''
-  license_text: ''
-./modules/uniwidth/u32-strwidth-tests: 
-  copyright: ''
-  hash: d68ce5199592ac78150411b271dd19a9bedb90e2da4a4e786fffd7a76f005a98
-  license: ''
-  license_text: ''
-./modules/uniwidth/u32-width: 
-  copyright: ''
-  hash: e31da64c351f3a30e812efbec790479ca725fc6a73c6f9ab9097f83f6952b958
-  license: ''
-  license_text: ''
-./modules/uniwidth/u32-width-tests: 
-  copyright: ''
-  hash: 8966b816cbed7089ccb6d1958a94464d24ddc56835b9f2373c1883f63a1fbeab
-  license: ''
-  license_text: ''
-./modules/uniwidth/u8-strwidth: 
-  copyright: ''
-  hash: c4026a9176a0c66b80e93cf80a633682b9301a186a0f741dc9bda322e3520497
-  license: ''
-  license_text: ''
-./modules/uniwidth/u8-strwidth-tests: 
-  copyright: ''
-  hash: b51f991886abd37c01ac192f25153fee276acc957110eaa0d00d7dd878960193
-  license: ''
-  license_text: ''
-./modules/uniwidth/u8-width: 
-  copyright: ''
-  hash: 13f689e5bdf202aa24b776a52e12d49e0e0f6787793d093ada614e8648b8c447
-  license: ''
-  license_text: ''
-./modules/uniwidth/u8-width-tests: 
-  copyright: ''
-  hash: 2bb505810e270e60abdcfef3b629aa17611580d374703e82bdbcffa25b6e7a07
-  license: ''
-  license_text: ''
-./modules/uniwidth/width: 
-  copyright: ''
-  hash: 6c90cc51c79e162e44efaac12316c8c1bf904251dfc30ff95df903a60fddb7ac
-  license: ''
-  license_text: ''
-./modules/uniwidth/width-tests: 
-  copyright: ''
-  hash: d2a94933efed06c9b2c93e453c51e0bea1644b13025a45bb2e4d7f7a134f017d
-  license: ''
-  license_text: ''
-./modules/unlink-busy: 
-  copyright: ''
-  hash: cf3b5582b7024760963d496c895961062b40655c4ccbfffa69c4203ee899b799
-  license: ''
-  license_text: ''
-./modules/unlinkdir: 
-  copyright: ''
-  hash: 961f9dbc8abeddbe1de620774438544ed07d32a8d57b0d2608262dc90b4c2d40
-  license: ''
-  license_text: ''
-./modules/unlocked-io: 
-  copyright: ''
-  hash: 10a29316112d376a40710e21f2374085247898d6f97d15efcbaa0c988a9db134
-  license: ''
-  license_text: ''
-./modules/unsetenv: 
-  copyright: ''
-  hash: 0a83211b238e02290f061d8551bb8dcb6a28d255aec01b89844b3bfb0ba80574
-  license: ''
-  license_text: ''
-./modules/update-copyright: 
-  copyright: year list to include the current year
-  hash: 2e4db6b5e36ca243b23f39ecc1ff04ee1fa625a292c7ff68a561922fce57955f
-  license: ''
-  license_text: ''
-./modules/update-copyright-tests: 
-  copyright: ''
-  hash: 6ae199954037613567109fe39c4c6783d33b89a42e800e808670137daeba71a0
-  license: ''
-  license_text: ''
-./modules/uptime: 
-  copyright: ''
-  hash: 8af60d16f2c9279ddb4a52fa629fdf58f78c8b7f48841926bf691e7cc2733f82
-  license: ''
-  license_text: ''
-./modules/useless-if-before-free: 
-  copyright: ''
-  hash: b4fbea16aa89a4f83a76bfc53ce22893a237dcba989f0fc80e539dca0fc8406f
-  license: ''
-  license_text: ''
-./modules/userspec: 
-  copyright: ''
-  hash: f7690daa1d2f1b753e9787040ee16f8dc4809bd04085a7c984a4e909e61320af
-  license: ''
-  license_text: ''
-./modules/utf16-ucs4: 
-  copyright: ''
-  hash: da66714c26922eab20bebafafce8d764b26eff8bcb3d63150d0d80880d0b7971
-  license: ''
-  license_text: ''
-./modules/utf16-ucs4-unsafe: 
-  copyright: ''
-  hash: 5cf44d0d88cb9cbf183eb2d13627b2bb4b6241ec46624b43f75b21178d86bbc7
-  license: ''
-  license_text: ''
-./modules/utf8-ucs4: 
-  copyright: ''
-  hash: 7918cc934ad409a54d593def98245ee9ab76c5e4e0101659121492e86323714c
-  license: ''
-  license_text: ''
-./modules/utf8-ucs4-unsafe: 
-  copyright: ''
-  hash: 3f8a718d34aec97dc029e79cd6d883b739bc502c9f56520b2b3932a0e4dbc7eb
-  license: ''
-  license_text: ''
-./modules/utime: 
-  copyright: ''
-  hash: 0086e6436338f3bdcf0779814b2ac35c4f0c043fe03fcdd4c5445bd97544ab6d
-  license: ''
-  license_text: ''
-./modules/utimecmp: 
-  copyright: ''
-  hash: 32fe4db3bb7f813c99e96b80a7ae085537894b2879ee5dcf1b693363ee3e2867
-  license: ''
-  license_text: ''
-./modules/utimens: 
-  copyright: ''
-  hash: 1a3764888caba4228270901f1c6865fcd6f1fc997f9671616e63032837541d15
-  license: ''
-  license_text: ''
-./modules/vararrays: 
-  copyright: ''
-  hash: 11b57911d704f4e91720bc43fd37031fb2572f5f0c87207182343c00279f7924
-  license: ''
-  license_text: ''
-./modules/vasnprintf: 
-  copyright: ''
-  hash: 0ca1ad02eaa6ba3485e86ae626ef721e9c68bad2f7eed1b0b44dbdfa04c31f7c
-  license: ''
-  license_text: ''
-./modules/vasnprintf-posix: 
-  copyright: ''
-  hash: 6c49ae496f80e7370811c077c14e8a248c1321bc096d0370be6ef63da30b58a7
-  license: ''
-  license_text: ''
-./modules/vasnprintf-posix-tests: 
-  copyright: ''
-  hash: a745a55e48911374b99312c61633baba5b40028ffb4a5d4eae397f71d7a09223
-  license: ''
-  license_text: ''
-./modules/vasnprintf-tests: 
-  copyright: ''
-  hash: c9038b619e31e485f0f5f1772bcb765d4e4fe573fb052364bd9d87e718e4d7f7
-  license: ''
-  license_text: ''
-./modules/vasprintf: 
-  copyright: ''
-  hash: 2a5bf142e7b62113b71434bdb41f540a22fa3e2f4988d2cdb1a49889c0ae1b6a
-  license: ''
-  license_text: ''
-./modules/vasprintf-posix: 
-  copyright: ''
-  hash: 87d9366296e00893359df81249d4af46b24987917cdbcb9ddd9917a6384e0e01
-  license: ''
-  license_text: ''
-./modules/vasprintf-posix-tests: 
-  copyright: ''
-  hash: 0e4e5d206d990fae9f7f9e583594e056290c7ca384fd5f3b2b25846cc4954472
-  license: ''
-  license_text: ''
-./modules/vasprintf-tests: 
-  copyright: ''
-  hash: 93d7f8b56d3b48d585accaeec8a52e9d82fb0c3bd5be43f87b58ce1d5c0d684d
-  license: ''
-  license_text: ''
-./modules/vc-list-files: 
-  copyright: ''
-  hash: 4060528cc071faf648d4863fa61da87a9d56296ba1dedf4d26a394ac10e20b75
-  license: ''
-  license_text: ''
-./modules/vc-list-files-tests: 
-  copyright: ''
-  hash: 672846856b1ad2139f324d719545476ad87078aca3ac134ac448c3378a251b45
-  license: ''
-  license_text: ''
-./modules/vdprintf: 
-  copyright: ''
-  hash: d90bc5e200dd487a23da97197e9d41b5c7914746b77c99e0c4541ebc7cfe9a0b
-  license: ''
-  license_text: ''
-./modules/vdprintf-posix: 
-  copyright: ''
-  hash: 52c74541d4c3fe58758a1b96a6f3492d64f9512c13452020ab184ca8276c1d23
-  license: ''
-  license_text: ''
-./modules/vdprintf-posix-tests: 
-  copyright: ''
-  hash: 4d157c167b21f081760beceb2bf3cd1d8d2ed7ca3e85d70f261c10544a14fd57
-  license: ''
-  license_text: ''
-./modules/verify: 
-  copyright: ''
-  hash: 7b7a55bf8b12b6b043c75e5b36238844c0d81146a20dc6cc4e10615da92bde26
-  license: ''
-  license_text: ''
-./modules/verror: 
-  copyright: ''
-  hash: 31ffe5f9045730d63c11a0e4f2c6099ed5b6add722f8a850c7d15a599939160e
-  license: ''
-  license_text: ''
-./modules/version-etc: 
-  copyright: ''
-  hash: 076ea07214d3703eead804ba12f0102d732b07f8b26b85a033e982959cd64289
-  license: ''
-  license_text: ''
-./modules/version-etc-fsf: 
-  copyright: variable for FSF projects
-  hash: 3a09b4e87ffd6f7781b9f472c86691351c56cbdf817a6616c015c7501a22abf5
-  license: ''
-  license_text: ''
-./modules/version-etc-tests: 
-  copyright: ''
-  hash: 1327777f181a8daca2a09ff369d10d2152cd63509e9adf5947ed0f223be007cc
-  license: ''
-  license_text: ''
-./modules/vfprintf-posix: 
-  copyright: ''
-  hash: d64c2cba406b12fcf7403bec84b3248b8aec004325b88a397c41745482edff33
-  license: ''
-  license_text: ''
-./modules/vfprintf-posix-tests: 
-  copyright: ''
-  hash: ef6a0dd485a1a8fa70f5f69cf73e58d5212671dbe76ea475035af6aa8ca211fa
-  license: ''
-  license_text: ''
-./modules/vprintf-posix: 
-  copyright: ''
-  hash: 6413862a090be5b48381c212df58e7ff0125aec71cc08741bee814809663f79a
-  license: ''
-  license_text: ''
-./modules/vprintf-posix-tests: 
-  copyright: ''
-  hash: 71e75a75b9e1323affcb2af3b37aa0f9c82187679520918b0ce50e63dc83a229
-  license: ''
-  license_text: ''
-./modules/vsnprintf: 
-  copyright: ''
-  hash: 2b8244a8bc283b9b7fba2aa42f4b195f8fe366ded5a28f34a26afa42fa342922
-  license: ''
-  license_text: ''
-./modules/vsnprintf-posix: 
-  copyright: ''
-  hash: 7afbc43f411ec81ee764b7423797914265905513ffa6fabcfa4852806a276167
-  license: ''
-  license_text: ''
-./modules/vsnprintf-posix-tests: 
-  copyright: ''
-  hash: c538b182d94e371856cf95289d1df542721db6100735e0afdd794c77cf6507ec
-  license: ''
-  license_text: ''
-./modules/vsnprintf-tests: 
-  copyright: ''
-  hash: 517e24da52633b20a362061b8d5e2d4a75312ef2da2ed5327bc740f9094a6638
-  license: ''
-  license_text: ''
-./modules/vsprintf-posix: 
-  copyright: ''
-  hash: 7502f2e441ffbf13ecaaec0b1f6b068fc924286e387c3dadf15e722fdbe435d5
-  license: ''
-  license_text: ''
-./modules/vsprintf-posix-tests: 
-  copyright: ''
-  hash: ef57fa5c23966009d7847ddbc32559229f2c378ab7769efb6009ab98230bd0c4
-  license: ''
-  license_text: ''
-./modules/wait-process: 
-  copyright: ''
-  hash: b7a74c9e6cd90602d200af87be99f780df780c45a2fee29eadaf2ca03f84339e
-  license: ''
-  license_text: ''
-./modules/warnings: 
-  copyright: ''
-  hash: e81b2d723d4d214468c22e2397796f0c4b9fc0f2828bc4ca5f4568a2e96cddd5
-  license: ''
-  license_text: ''
-./modules/wchar: 
-  copyright: ''
-  hash: 7bea4b53cc8e946a5f0639f58ad45143022b056c62d1e7510dbf24d27a83f2bc
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/wchar-tests: 
-  copyright: ''
-  hash: 2577576be9eddcb707d89988c439d01cbd84985f87119bc5dcc4712579bbc58e
-  license: ''
-  license_text: ''
-./modules/wcrtomb: 
-  copyright: ''
-  hash: 3ce48f52a57c00a01fc38354c9d389e2180b97a960003f6de07b667b4972b24b
-  license: ''
-  license_text: ''
-./modules/wcrtomb-tests: 
-  copyright: ''
-  hash: 40dfd7d5da9bca4d0b61cdaea8cbee2bebbb0dda4e9aee53236eef6d5ba59585
-  license: ''
-  license_text: ''
-./modules/wcsnrtombs: 
-  copyright: ''
-  hash: 3f6c8e9f0e197e5311863cffb9acbb2139c632022ad052e6c9daa48a46b3baed
-  license: ''
-  license_text: ''
-./modules/wcsnrtombs-tests: 
-  copyright: ''
-  hash: d827f4771c76ced1482bb8c9c9804b1dbbb17f8b6aa78e2707e3c23f6eeaaf51
-  license: ''
-  license_text: ''
-./modules/wcsrtombs: 
-  copyright: ''
-  hash: fe05078bfac5d8e0cec4b9ca0737209213b5836fab881ad5f531fc80aeac555d
-  license: ''
-  license_text: ''
-./modules/wcsrtombs-tests: 
-  copyright: ''
-  hash: f76281c8192c2e2c685def38b47ce5224f53ceacc652ee10c7cb1f5a59b3d0b1
-  license: ''
-  license_text: ''
-./modules/wctob: 
-  copyright: ''
-  hash: 841e8708f6cd2c554c2a193f9a81d57f65649c8d2b1f7ec92fd75cb65e33ae58
-  license: ''
-  license_text: ''
-./modules/wctype: 
-  copyright: ''
-  hash: 18d8213d39c0529c7c20e76f90d3ab686509c23b402a2028018fb36685488102
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./modules/wctype-tests: 
-  copyright: ''
-  hash: be49f6d3db8c36ed9d867050a33ba9826edd677df187bc17e2624a5b11ada570
-  license: ''
-  license_text: ''
-./modules/wcwidth: 
-  copyright: ''
-  hash: 1b1ac1d7efd6291414a3a3f489f1268fc9112d32461579c05c975be64b29c020
-  license: ''
-  license_text: ''
-./modules/wcwidth-tests: 
-  copyright: ''
-  hash: 05a5f992e1791afad928046facae2139a90fde83646d3f8b05fd584e7faeffc2
-  license: ''
-  license_text: ''
-./modules/winsz-ioctl: 
-  copyright: ''
-  hash: c183aec307c705feb0625eb00b95f57e9713dda4959e9b277134f7b54af6a0ec
-  license: ''
-  license_text: ''
-./modules/winsz-termios: 
-  copyright: ''
-  hash: 00bc2319cc9a43155ebfcaa9e11de69606dc9ca6b1e4f24365b2d599b378e442
-  license: ''
-  license_text: ''
-./modules/write: 
-  copyright: ''
-  hash: 65f0f043199edd0909f48c2fe00dcbdac4b987b3055131bc1fecb779928057a7
-  license: ''
-  license_text: ''
-./modules/write-any-file: 
-  copyright: ''
-  hash: 0b2868daa83fb7b0fc6971227f8890ebe1b0a16077fb3574d936cbd33cd4ab6d
-  license: ''
-  license_text: ''
-./modules/xalloc: 
-  copyright: ''
-  hash: a75de21c7c6ac9d05414cf8ca65d2f1f28ec4e09bfa78549f2c24916f9a779ba
-  license: ''
-  license_text: ''
-./modules/xalloc-die: 
-  copyright: ''
-  hash: c1f26355f82c42d68e2e87babfdd932bcc4ac0bc4ced0df5cc539ca91ce47d93
-  license: ''
-  license_text: ''
-./modules/xconcat-filename: 
-  copyright: ''
-  hash: 132e60d6315cb64826b2bbf055e133c55e5a1676982b1fc84c06258c05fff824
-  license: ''
-  license_text: ''
-./modules/xgetcwd: 
-  copyright: ''
-  hash: a7e09cd1f414ba952c6567940e45b0b546f60a736da453f52e8c86011386e77d
-  license: ''
-  license_text: ''
-./modules/xgetdomainname: 
-  copyright: ''
-  hash: 9b5f18896883e9d6b7b85dc9dafcec3a4caf07cbec4870f37c5922d4d10d84e6
-  license: ''
-  license_text: ''
-./modules/xgethostname: 
-  copyright: ''
-  hash: 069989cc88c61eb54c68862011d9cd7ed14ba4ce66c77a5459368e7618ea4d6c
-  license: ''
-  license_text: ''
-./modules/xmalloca: 
-  copyright: ''
-  hash: 1db0db3c1ceba00f88e5deafe38523a85a4161ed736a582c367c7e4b5b5b60b6
-  license: ''
-  license_text: ''
-./modules/xmemcoll: 
-  copyright: ''
-  hash: 39fc9b14d693e26ef8d1d17e75b9baaaf7ab622e5214aaff03687a8c0afc29a6
-  license: ''
-  license_text: ''
-./modules/xmemdup0: 
-  copyright: ''
-  hash: 67a8b2bd891aa98a97f64fd443cecf85ccfa37f19b3a0efc1f085c95debf3471
-  license: ''
-  license_text: ''
-./modules/xmemdup0-tests: 
-  copyright: ''
-  hash: f736c0573ad3d34f23a78072056d2122ff924e78e7ce98793455cd9f4436948f
-  license: ''
-  license_text: ''
-./modules/xnanosleep: 
-  copyright: ''
-  hash: 9140638a34c9d2e4b145028fb8693d47fcb704ac35b46e473674c9ed7fea8434
-  license: ''
-  license_text: ''
-./modules/xprintf: 
-  copyright: ''
-  hash: 9c52d5d2c0ec5381b883d458857e5eb9fd2050a86b96958b3d94d967b687721a
-  license: ''
-  license_text: ''
-./modules/xprintf-posix: 
-  copyright: ''
-  hash: 04d54e931a50cfc4cd35870f39dcfff7ff21fc089013aa07b3b3f6bd148b820d
-  license: ''
-  license_text: ''
-./modules/xprintf-posix-tests: 
-  copyright: ''
-  hash: 2f816dd982317210b6b67aea3640c552e241359673bef69e1d8eafa0f238ba62
-  license: ''
-  license_text: ''
-./modules/xreadlink: 
-  copyright: ''
-  hash: 95a60a683231c9a0f5320b1e632c3054686a043fdebabed3e896a49f499c8e01
-  license: ''
-  license_text: ''
-./modules/xsetenv: 
-  copyright: ''
-  hash: 337217e257fc903155c3a171aa46257094e0d9912711837ce03805e93e47755f
-  license: ''
-  license_text: ''
-./modules/xsize: 
-  copyright: ''
-  hash: 95dc1d636c6c00acd3ed20e5ce784c788f897935eb4f3655264213de86dae482
-  license: ''
-  license_text: ''
-./modules/xstriconv: 
-  copyright: ''
-  hash: 942bc357d4e8965fd14b1c754c058955bc6c0cd1b795350453d172625d279047
-  license: ''
-  license_text: ''
-./modules/xstriconveh: 
-  copyright: ''
-  hash: 4943c4561755ac0e324ebf8e5f238ff15eefe650675186fb5b1793e988dd5559
-  license: ''
-  license_text: ''
-./modules/xstrndup: 
-  copyright: ''
-  hash: 7ba0a68faaec8f490d934f91875d49013c87b87520d685467174869110eabcbe
-  license: ''
-  license_text: ''
-./modules/xstrtod: 
-  copyright: ''
-  hash: 128b4ee0746da30fc9f29a1b5f6f95c1401cce18c4242713b24c93f1bf6e8918
-  license: ''
-  license_text: ''
-./modules/xstrtoimax: 
-  copyright: ''
-  hash: d8abe54149e8816b18398bfde53b3e3e804f43ffc85f35e79717798cf5f88915
-  license: ''
-  license_text: ''
-./modules/xstrtoimax-tests: 
-  copyright: ''
-  hash: ed0c5056e3fe1f25e1e8a01656c9be74ae5d5e45506319d4e5bd21703e1a5422
-  license: ''
-  license_text: ''
-./modules/xstrtol: 
-  copyright: ''
-  hash: 5cb690ca8bad394d9dc7d2ad5680a49b852c3440914d33562a358485a9ca202a
-  license: ''
-  license_text: ''
-./modules/xstrtol-tests: 
-  copyright: ''
-  hash: 50cd2e95398b90848b7d08a47ae7e303a749118f10ce1c6c960c7fe230d22c55
-  license: ''
-  license_text: ''
-./modules/xstrtold: 
-  copyright: ''
-  hash: d29ee03b049e8dafc8f9899418c0b422b9e45283103d405408e6d4d8ed9697f6
-  license: ''
-  license_text: ''
-./modules/xstrtoumax: 
-  copyright: ''
-  hash: 42a9aee1373bf0049f1683212a889da6e6e16873e8a637cc64d1903d7a76f2dd
-  license: ''
-  license_text: ''
-./modules/xstrtoumax-tests: 
-  copyright: ''
-  hash: 27cbe25f094974926313b006fdf804274814be11ea6a0812164eae08ec470449
-  license: ''
-  license_text: ''
-./modules/xvasprintf: 
-  copyright: ''
-  hash: a6af5f93a0c236af2d1b802283c3bdce0ea1f2c4dd55454e7e277fc06f94247e
-  license: ''
-  license_text: ''
-./modules/xvasprintf-posix: 
-  copyright: ''
-  hash: 4bc8e2e9c2de1645326347861bed0bfa82dd17c40147bf9ef30d3c0c395b3c4e
-  license: ''
-  license_text: ''
-./modules/xvasprintf-tests: 
-  copyright: ''
-  hash: 96c4599e808fbaee60ca768b38fe00a99c224201f3bfa8c359e10bb5887dba9a
-  license: ''
-  license_text: ''
-./modules/yesno: 
-  copyright: ''
-  hash: 8b1282449041c482e56df4a5f090b6e7547efd0f06069cc96a430c198de978e6
-  license: ''
-  license_text: ''
-./modules/yesno-tests: 
-  copyright: ''
-  hash: 3a33d863e2dfedfb3896bf992c73a1a454a66db29d80b309a77766db787e118b
-  license: ''
-  license_text: ''
-./modules/yield: 
-  copyright: ''
-  hash: e86a78bb30ab1dd3068ebdc30c9f5cbc3f61f5fc8c33c26f63bda382c8900ba7
-  license: ''
-  license_text: ''
-./posix-modules: 
-  copyright: 2002-2008 Free Software Foundation, Inc
-  hash: a5ccaf8a1eb82ecf46eb6b2aa5c191573ba82514eb2a06faae04e262348940c7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/locale/fr/LC_MESSAGES/test-quotearg.mo: 
-  copyright: ''
-  hash: aa0b83acbe74a54fa3cd8a775c76808e83114c0a544170c7390bce7ef812a035
-  license: ''
-  license_text: ''
-./tests/locale/fr/LC_MESSAGES/test-quotearg.po: 
-  copyright: ''
-  hash: 78381df0a60b4cf5be4ba6df357926269fa34959f18832cdf96c0badc79895e4
-  license: ''
-  license_text: ''
-./tests/nan.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 0e920a53922496135430d09f3bfebfc1f03f63142e1f0ff761e842e96d506a56
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-alignof.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 8bf8f28addd7565ad3f4256848a2aed22f6b4d89ba5b501f5d3e45273b84af36
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-alloca-opt.c: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 7be92bd4805798798cc208871e587c60cff48c8fe695b08405cf2dcc866ddbfc
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-arcfour.c: 
-  copyright: 2005 Free Software Foundation
-  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-arctwo.c: 
-  copyright: 2005 Free Software Foundation
-  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-argmatch.c: 
-  copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc
-  hash: 374d3cdd98263ea28ad0f3d8c21f8aaf953562d377316a56f32a69534d13603b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-argp-2.sh: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: aa582c3a737c286f43630868ea734856d5d74809aed1e967403b6d1e21a96ec6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-argp-version-etc-1.sh: 
-  copyright: Free Software Foundation, Inc / [0-9]\{4,4\}//' | / 2009 Free Software Foundation, Inc
-  hash: 14124a44a2d4160fc8d3bde7bef3491c53725766368df8d5b97c5473869753bd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-argp-version-etc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9894dd1ed11fe0f5567b33d83bddb190020bbbb37e5792cd8a76a9145eb3e7cc
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-argp.c: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: 3b0ecdaec3be7ac59ab04ba51095836c4843d5fe2016294aef19667d894b0503
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-argv-iter.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 87ef6b17b9a78fc466aa9cc85627af6f6e0ac63b0d7c82998d4dab47a9bd298f
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-arpa_inet.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 79ac8a737e1a83e3bad62ce1868e706a2b08bf46afa32c67681e91beb53462a1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-array-mergesort.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f9c4ef4dc591cbeac70eba11e9533d59181f12cf12d362e00782f45ecd9c36ed
-  license: "LGPL-3+ "
-  license_text: ''
-./tests/test-array_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: e03fc7928bfbe8781c744e1c21b70a907264b62c59bce976a7ac04694d5ff6a2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-array_oset.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: c0bae0da40c7a22d6504b362bb30545716f1f9ad8bd5ca4a817a809f88197808
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-atexit.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 03e140710061dad22ceba20a744340059a599decc42a1f0a57061c370b674eeb
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-atexit.sh: 
-  copyright: ''
-  hash: e693dded1c3bbe595a21498a71264cec8bb24a8356518618974847660d760774
-  license: ''
-  license_text: ''
-./tests/test-avltree_list.c: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 7eda006f64201339fc1716ebf20c065d5bdad5b0c385ae538ed09804b9100628
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-avltree_oset.c: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 30f270cd2b85bb909eaa7bbd80590b7f31be418ab29815c404aa0266290f320a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-avltreehash_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-base64.c: 
-  copyright: 2004, 2008 Free Software Foundation, Inc
-  hash: f1a00fd1ea70356a96758211f9ee6ac4b85a24414ac54c1d218c21c6df7f8a15
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-binary-io.c: 
-  copyright: 2005, 2007-2008 Free Software Foundation, Inc
-  hash: c45b392e94b4c908c583df305c095c968079bb2bbe726a7feefc0c7400de5a58
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-binary-io.sh: 
-  copyright: ''
-  hash: 1ed5b40114bb55012cd28394883f8711c6a892ec24cc5ae55877736ff7753a9a
-  license: ''
-  license_text: ''
-./tests/test-bitrotate.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: b31c900c0b50eeae92b228ab5590bb3f390daf91535632322fe28d791eb1e0b1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-btowc.c: 
-  copyright: "!= WEOF); / 2008 Free Software Foundation, Inc / == c);"
-  hash: 5ebcafef18833867faa6529b403f9ea8209c5b226325a645d7f4213d0daf22c1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-btowc1.sh: 
-  copyright: ''
-  hash: b4bac8f44ded39802e8ffbefa260cde10c90ae2f9cb7a3639bcf747a93fe871e
-  license: ''
-  license_text: ''
-./tests/test-btowc2.sh: 
-  copyright: ''
-  hash: 0cc0919cbfb0a866d644d13cc08068596b5dac38fb9fe437415b812d0c3b0370
-  license: ''
-  license_text: ''
-./tests/test-byteswap.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 54ff0c61e08753f6557e58cbd5a9ec794ca5f2e7f51c605f4188f2803a5da67f
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-c-ctype.c: 
-  copyright: 2005, 2007-2008 Free Software Foundation, Inc / == (c >= 0 && c < 0x80));
-  hash: 13becd45e283e22f97fac9aa9901241affa9a90f9e2e0a10efd1267cb9bada9e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-c-stack.c: 
-  copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc
-  hash: 3b31d9428c61805262bd02ba033b43f2e82e1152a2cc23f48bae221a7b86dce1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-c-stack.sh: 
-  copyright: ''
-  hash: 5ff4f37644ece982d306be694f3a8f1b7ab0be3f227b9134ed02bf92044cfd94
-  license: ''
-  license_text: ''
-./tests/test-c-stack2.sh: 
-  copyright: ''
-  hash: 0f27101d5e51c1531872dbbbfbb5b506368d7d6a144a87856a97f8c6ae1f4ab4
-  license: ''
-  license_text: ''
-./tests/test-c-strcase.sh: 
-  copyright: ''
-  hash: 08c6d116921579362a23059ad95ba47ee824ef9404b810f66d92b225af9669da
-  license: ''
-  license_text: ''
-./tests/test-c-strcasecmp.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-c-strcasestr.c: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-c-strncasecmp.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-c-strstr.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-canonicalize-lgpl.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 75c8baa24049fa693e9d21c4e974cbf52f43450a5b050bec610517bc05fe9464
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-canonicalize-lgpl.sh: 
-  copyright: ''
-  hash: 81afe45f5b4980a73878cb5e648cd582ecf66655103424ffe60cb82e671243eb
-  license: ''
-  license_text: ''
-./tests/test-canonicalize.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7c61f923516c2bb3723a7449064aadf6b2ecf9568d3e1e05f1869841160852ad
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-canonicalize.sh: 
-  copyright: ''
-  hash: 179eb3794b8e41c6c38fb9483fc9591a1a45870367cf8694ab22293d2a6fb124
-  license: ''
-  license_text: ''
-./tests/test-carray_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-ceilf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-ceilf2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-ceill.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e09b1df767b4364cee38177843c6dcd444e346b8bb5b5161b90d8acec2dbf97b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-closein.c: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: 60b704da91782d85057f15589b9adc2d33e1d034e212d4fe256a6e2bc65ffab7
-  license: "GPL "
-  license_text: ''
-./tests/test-closein.sh: 
-  copyright: ''
-  hash: 24747fa1e687723c702708fb4c239cf6e54f59d0a1ba915784eb47e86e4c29ad
-  license: ''
-  license_text: ''
-./tests/test-cond.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: cdf0a1afb208f062d159f0bae1e25a2c661d41e33bae74c541e2bd6700dbd280
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-copy-acl.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-copy-acl.sh: 
-  copyright: ''
-  hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
-  license: ''
-  license_text: ''
-./tests/test-copy-file.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-copy-file.sh: 
-  copyright: ''
-  hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
-  license: ''
-  license_text: ''
-./tests/test-count-one-bits.c: 
-  copyright: 2007-2008 Free Software Foundation
-  hash: 0a1addad31c87ba1dc9b2149bec84703e74bf936dc6807f45f0df6c679c99eba
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-crc.c: 
-  copyright: 2005, 2006, 2007 Free Software Foundation
-  hash: e926964a3909208530797cd9796ec1651f592cdf9925dcc36e6e5a566968712f
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-des.c: 
-  copyright: 2005, 2007 Free Software Foundation
-  hash: 2be8e95b0dea714ec5eea7bb03ba88c5768d2dc5376db963fa25bfaae842c979
-  license: "GPL "
-  license_text: ''
-./tests/test-dirent-safer.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 5a22d0608d61b123ddda55784e14d7d257b9110344b8e19243968d9fa0fd2eff
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-dirname.c: 
-  copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-  hash: 502e96f62d9a5b6ce322bbae2e2710d9e0d9865dbc4afa1e08fe7abf01fea73e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-dprintf-posix.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e6f0b4694e38d2d1e76dc966dd73d4afb089176883b07410a1b7f22f1e133b33
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-dprintf-posix.sh: 
-  copyright: ''
-  hash: 87cd228811d69c325ed0768128a0b3f461e85a1cf16115f64a097d662d3f21d1
-  license: ''
-  license_text: ''
-./tests/test-dup2.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-dup3.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-echo.sh: 
-  copyright: ''
-  hash: 167c0f782ed61e0c577c8644fe6afd5a8c987ce1f93ba3f28228fe90928fddfe
-  license: ''
-  license_text: ''
-./tests/test-environ.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 7f9aff3986d989fd5967abe2d2b072d678411dd664064aef0639f7a7602921bd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-errno.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: ca54e2c0451c2ff331290635dc29a1c8f47a42e28a5e85dec52c78e70fa8e810
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-exclude.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 8ebd7047d8c758e1bb24cb360d2ab93d441a88f10b84384950d69c2977c4165d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-exclude1.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-exclude2.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-exclude3.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-exclude4.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-exclude5.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-exclude6.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-exclude7.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fbufmode.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: f8bb902cbd6174946430fea20f8b499d96ef441a74fe87b603adc43f53b24ba9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fchdir.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1ede59e2649f54965b96b11e3defba44f756e66e2f0c750d5f950f4dbe196fa7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fcntl-h.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 356ce47d3e2061b396a00244416fae41a78a4ff320458994f76699c2d5b742d2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fcntl-safer.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fdopendir.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9847782c540349bedfe816a98eff2e2a2b21de374b5eb0bbaa3f59cbb61ae561
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fflush.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 69eca960097ee5c280d159ba1477c6fdf640149e0e14e210b536524114a79618
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fflush2.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 0cb46425ac00337c0a55933b576d483da8c84792991892297731d9ffc746f4bd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fflush2.sh: 
-  copyright: ''
-  hash: 9d3df2d637b481f1d5f1437b111dc2061bcf8e995843af8856817103951b1483
-  license: ''
-  license_text: ''
-./tests/test-file-has-acl.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 6c2949f3e460929b2f8bf6c01aed469b5cc37a1eb1233352638770c3930df5df
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-file-has-acl.sh: 
-  copyright: ''
-  hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
-  license: ''
-  license_text: ''
-./tests/test-filenamecat.c: 
-  copyright: 1996-2007, 2009 Free Software Foundation, Inc
-  hash: 2421876d5280739ca72e375a556c1af16509b646f18f3217c4a71c9539b47234
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-filevercmp.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: e9a609c14b8dce43bffbf6d67ec08a74092aa14c279914cd27cf603657ead587
-  license: "GPL "
-  license_text: ''
-./tests/test-flock.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: ed2f3659a200c467c8c3c35b233e01ef87c935180aed9e91946bce9883ea62fe
-  license: "GPL-2+ "
-  license_text: ''
-./tests/test-floorf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-floorf2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-floorl.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 8dd61603c1d098520aa003282269b173ff24e36a22c995a82098236b60c0bd12
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fnmatch.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0949276b897ba2ca32389bb684582366b42e011338d888e27529fe47643863a0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fopen-safer.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fopen.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fopen.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fpending.c: 
-  copyright: 2004, 2007-2008 Free Software Foundation, Inc
-  hash: f674acf1725bc698a2a895260a0ed04e4e7d75079bc902bc25df4eda4626648c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fpending.sh: 
-  copyright: ''
-  hash: db7046a61b7536849f3d58ac4a230b874a449d61a4f33331d2a39e3eb40cf26f
-  license: ''
-  license_text: ''
-./tests/test-fprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 745ab000bd06f41a498df49ee0daf9fa7feaa93b9f16156e4b958405becd413b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fprintf-posix.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fprintf-posix.sh: 
-  copyright: ''
-  hash: 99530f369d42274f641c5404f05d6eac54cef4816643f576b94631d3bd50e8ab
-  license: ''
-  license_text: ''
-./tests/test-fprintf-posix2.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 61c448e81f453607a13ca6af87bb998cbde812213f3c001d9ad5bcff9cfe6f57
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fprintf-posix2.sh: 
-  copyright: ''
-  hash: 57de5c6be9adb4eb8e8cc416f2c47f934f82f4d3ce6256ce7e72fdfd6a727377
-  license: ''
-  license_text: ''
-./tests/test-fpurge.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: fc4f811164270032bce572b9c4f9537ea36963aa67e630a450c0258599c8ddec
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-freadable.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 8f818a6a890d5569df82559a4e62b02dfbceff150985e779e219669eebf9ec5a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-freadahead.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 9833934459a057c2572f209afac01879e5ca8a3efda95d6790d17ab9938d1917
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-freadahead.sh: 
-  copyright: ''
-  hash: 7d4e9892370ff589533c590bd88ec5f6aea65ce8126c798ab48f96d87cc0de4f
-  license: ''
-  license_text: ''
-./tests/test-freading.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 36417f8adf8660daefb24719abfcd2d6df61a952656fe82370e243753bce4bd6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-freadptr.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-freadptr.sh: 
-  copyright: ''
-  hash: d77d62afd49fb9b006aa3f1b2e41fb246f8f4e6ed232637b8c5efb02e31f6e9d
-  license: ''
-  license_text: ''
-./tests/test-freadptr2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-freadptr2.sh: 
-  copyright: ''
-  hash: 9e8bf4b4fdad153f5bcaf5d3d9a51c2b362cc5e21262c769e87e36bf29f6f3d3
-  license: ''
-  license_text: ''
-./tests/test-freadseek.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: dd89379556b28cba841ae08e74f0d92b1739c31a7e399dcdec050f4e73a51430
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-freadseek.sh: 
-  copyright: ''
-  hash: 8c922bdee150c36bbbc68d2273511885bd4f54145ec4e0e0b74333e9ab68c5e1
-  license: ''
-  license_text: ''
-./tests/test-freopen.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 1794fac0885679928991ce38c01ee4e5e23331ca73e89de6fa05c0d731ac9ae6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-frexp.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-frexpl.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 06e5c7a95b4f9162db1d74f609c89b24736a09affac663df79cce627cac4355a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fseek.c: 
-  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: ae3126d4ce719f8e50ae5bd6defb067f936333ddd967e018d9d63614e1510ba7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fseek.sh: 
-  copyright: ''
-  hash: a221109e451414ff3596a9e2fc85ecad8dc9a4b5d41c4be22ca4e8d4bdaaedcf
-  license: ''
-  license_text: ''
-./tests/test-fseek2.sh: 
-  copyright: ''
-  hash: 9312e62b8100ef1a5c959e559f4347907430ddca9ad4854cd611110b0768ad4d
-  license: ''
-  license_text: ''
-./tests/test-fseeko.c: 
-  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: 1560dd162ef0b3cfb7b9b2202b21bf9933c216776fc89f20361e521f162b3ce6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fseeko.sh: 
-  copyright: ''
-  hash: 5d1445019d710edf18f8405db195d0e08c95a9f8bb20b59f25e5f0d22e19dba8
-  license: ''
-  license_text: ''
-./tests/test-fseeko2.sh: 
-  copyright: ''
-  hash: 4c322333a62415b01f183b120936fc72916ad98c98b42ee36bc50c14d8651559
-  license: ''
-  license_text: ''
-./tests/test-fseterr.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 9573252bfae2fe4f10686e73eb86cc0d662f2e25a23b7a4f70036ae38ca30ddf
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fstrcmp.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: a7b983fc8ba0e4d673899f2631eae4461eeb11be8a5a01a6f57ff6790dde39f9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fsync.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: c3f28d94e1d2539f92e889ad3322fbc9b5fcb9c406f9840452cf355766627792
-  license: "GPL-2+ "
-  license_text: ''
-./tests/test-ftell.c: 
-  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: b7573164fb69e7149847239bf7ceb7db79f453822f1cbda04e22a52283b3281d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-ftell.sh: 
-  copyright: ''
-  hash: 86795dd7b612958804e50342aecbc2d23222542142f4e6a6408e4f10a1f6a2dc
-  license: ''
-  license_text: ''
-./tests/test-ftell2.sh: 
-  copyright: ''
-  hash: 9290b195ad04a0d882c97eea29fb2ce8c5a4a9eedd6b43841d516a027908ccd2
-  license: ''
-  license_text: ''
-./tests/test-ftello.c: 
-  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: e34687ed84f4523c387c8408a168176c62b7e3da1d7e5c51fd2dbfdd11b61cf9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-ftello.sh: 
-  copyright: ''
-  hash: 3fecd8a2adefe6f15a998f136266ef37222cf6273ba1da4cce7d097635bde45e
-  license: ''
-  license_text: ''
-./tests/test-ftello2.sh: 
-  copyright: ''
-  hash: d6d309f9866760abce0c773c476943b19b6201596ed4ce4b3163ca3c5510c760
-  license: ''
-  license_text: ''
-./tests/test-func.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: bc81ef2fd91ed0c929de4c4958fe9d6af9f4b08a310f02929b7244bc9c3821db
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fwritable.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 319d6c836c355f4f63122cc2f7ba0756183810d27488a8e5a4f09305d31c19d9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-fwriting.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 499f0954d31a94d7067eb0be27b75766f56ab69c0494e2845759fb24d1703f4e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-gc-arcfour.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-arctwo.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-des.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-hmac-md5.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-hmac-sha1.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-md2.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-md4.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-md5.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-pbkdf2-sha1.c: 
-  copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation
-  hash: 7799cf357547a841ccf3afeb7e5d9143abc19ee0a898cb087d2de1bb492bae59
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-rijndael.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc-sha1.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-gc.c: 
-  copyright: 2005, 2006 Free Software Foundation
-  hash: 8cb1d73b6c4bd47920f369b94539807ae13559bf31d128fea4584223d60675a0
-  license: "GPL "
-  license_text: ''
-./tests/test-getaddrinfo.c: 
-  copyright: 2006-2009 Free Software Foundation, Inc
-  hash: 97815c6bb90ea2860ebdfcd9dfc8554dcbfa522d7aa8ba38ddecbc126e096a8d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-getdate.c: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: 935427c30258eb6e5a9b394cc5d96c1427d7abe260fe0b81fe448b30a4171ba3
-  license: "GPL "
-  license_text: ''
-./tests/test-getdelim.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: c90cc89f32a451ccbfe0910eb584fd389f60f2b051affa2dbe2bdc9d80097081
-  license: "GPL "
-  license_text: ''
-./tests/test-getdtablesize.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 434e5606cbd9d33002d0e279a6af31645a13f37bf9492b61df63bdd7fac591ce
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-gethostname.c: 
-  copyright: 2008, 2009 Free Software Foundation
-  hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-getline.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 324eb53650a3b992efd3fc0cce526be56e493dac9a686c8f32b40a845358556d
-  license: "GPL "
-  license_text: ''
-./tests/test-getndelim2.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: ad18c635ec03c40547062fe271ebb6703e1d91c537b7adf63937c9ae962c1913
-  license: "GPL "
-  license_text: ''
-./tests/test-getopt.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-getopt.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-getopt_long.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-getpass.c: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 9a0c1937fde38c70927a4eeb336d442bd6127bc5eb69e09a5cd4deb09e2fc195
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-gettimeofday.c: 
-  copyright: 2005, 2007 Free Software Foundation
-  hash: 5b419f77d9b7e6e89f7289f386cd548243e4e4adc21e9a52d41d21a027fdf8ee
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-glob.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 90a78aa60a23cad4495713152d6c476d4e43d510a6392ab6368173e374d14d04
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-hash.c: 
-  copyright: 2009 Free Software Foundation
-  hash: a74fab88b5cf12f0e0d435a4a5e3fd5e55078cae553004def0998b9222616a24
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-hmac-md5.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-hmac-sha1.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-i-ring.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 6f100cd5549d218db3fc88df418a556f9aac62f0bcf54163da4ad21c84ccb129
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-iconv-utf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-iconv.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-iconvme.c: 
-  copyright: 2004, 2005 Free Software Foundation, Inc
-  hash: d82c108598a30a83eb25992c35c31945f938c62e30203a312361e842c432d069
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-idpriv-drop.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 887a2d06234e0105a076274b1c0cb5a4b97b25977378f755f305ead016dae39e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-idpriv-drop.sh: 
-  copyright: ''
-  hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
-  license: ''
-  license_text: ''
-./tests/test-idpriv-drop.su.sh: 
-  copyright: ''
-  hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
-  license: ''
-  license_text: ''
-./tests/test-idpriv-droptemp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 036d78805f967b4753cdba6e50cac8854f7b24390bbf73b5a2d7f0fd6e1c903c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-idpriv-droptemp.sh: 
-  copyright: ''
-  hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
-  license: ''
-  license_text: ''
-./tests/test-idpriv-droptemp.su.sh: 
-  copyright: ''
-  hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
-  license: ''
-  license_text: ''
-./tests/test-inttypes.c: 
-  copyright: 2006-2007 Free Software Foundation, Inc
-  hash: 8ca6a2b71d7f538cc79e407439bcd512ffca9203636f7cb336cd8c0d12d322fa
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isfinite.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 192e0aefe852ad279cf33f30acbf1e6a5a685ea90a52bda5174baf39c06cd339
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isinf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 467c934361d927c8eb3bb47ae9844379ca009c7ebc4845dd28e567813ab1efcb
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnan.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: f1159b7f32f37a46e32fc884afa11c72818e02511e9332ee213bd99ffe3319f8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnand-nolibm.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnand.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnand.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnanf-nolibm.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnanf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnanf.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnanl-nolibm.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: d24217e860acd20ff34dacb3bc316ab34a3af4a1d47241da882a51348e4bc34b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnanl.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a6dad044535d0b8182f8331618c092ddc94769e6aee495678f102047711f05e7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-isnanl.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 1ccd58e1e4f6b9d59404fddbe589f2e34e40ea508081a567040c100b60b197c3
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-ldexpl.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 7ee31a7a49ffebce6a7c8f0225d169567e0be429e67a89882ae1670f5ae9075c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-link.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 26cc2a58a305192996a7e8ee065b4bf8254c9b13d4e9f4efbe3c77777e2fc065
-  license: "GPL-2+ "
-  license_text: ''
-./tests/test-link.sh: 
-  copyright: ''
-  hash: 1b15e579dd41f894ef55727093cb2490e586dd857fcd726339f4a59203a8fa68
-  license: ''
-  license_text: ''
-./tests/test-linked_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-linkedhash_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-locale.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 13e3a273bd14c7064068652cb01722dab29c3661de434218afc58cf29f5900d8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-localename.c: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: 7695c1b31209fab6aba6c16e3b612f606d1eae1b0720f1781148cab7fd964e7e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-lock.c: 
-  copyright: 2005, 2008 Free Software Foundation, Inc
-  hash: b995e7ccbf41d3f3ae5e9ed223ede35060a5c1ac152baaf9793fd8bd43210b93
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-lseek.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 67b2fb2011956d378309801b9f809b54658434eb8b2a5c6a77b87090bfbfa9ef
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-lseek.sh: 
-  copyright: ''
-  hash: 103b304131e87f84ebdf7fe51ddbca5d1de74d1b231c0e8d0f1f74edb60aacf4
-  license: ''
-  license_text: ''
-./tests/test-lstat.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 9cafdb021e073473c5f16a5b4f74a2ac31579de14aadebbdef5a0f625250d0e8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-malloca.c: 
-  copyright: 2005, 2007 Free Software Foundation, Inc
-  hash: 687b864c60a0a939b2d06d15f71bedc6640551c5a46b9d97cf954b7b9dad01aa
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-math.c: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: 5e0b0077a9753a2a6ab13b7d12ba7a95c37cc998e3886d96a0c15b55bd951f48
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbmemcasecmp.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbmemcasecmp.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbmemcasecmp1.sh: 
-  copyright: ''
-  hash: 7304bc74f3d3a258e8210ea8a863f27aab54802b024dabb25a34b9549960b9f5
-  license: ''
-  license_text: ''
-./tests/test-mbmemcasecmp2.sh: 
-  copyright: ''
-  hash: d16fd0422c4a2d96385d5b90b9c0f2c8f969de1dd4a33c5bb02fa4ac381f6f4d
-  license: ''
-  license_text: ''
-./tests/test-mbmemcasecmp3.sh: 
-  copyright: ''
-  hash: eb492e8155da1b1de4e2250f06e478962793d6cabe9a519fd2384d15110677e7
-  license: ''
-  license_text: ''
-./tests/test-mbmemcasecoll.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbmemcasecoll1.sh: 
-  copyright: ''
-  hash: faed7a5be2e3810c0ffc7a90a52082c8f5cf3db405497a7e9010d2c719231ff6
-  license: ''
-  license_text: ''
-./tests/test-mbmemcasecoll2.sh: 
-  copyright: ''
-  hash: f4fab277f9f292c7d753f3600aff43593c48069a4a3f6265958aa87a8c312491
-  license: ''
-  license_text: ''
-./tests/test-mbmemcasecoll3.sh: 
-  copyright: ''
-  hash: 331ac5a20f06f5d44432e5fa4396101952cb6e60bbaf36beee49e11ca7933770
-  license: ''
-  license_text: ''
-./tests/test-mbrtowc.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 9e6ff6c6e393938dfae1ad3aa59b09a1aff3de7914e1d9b850ea0c62a2865a0a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbrtowc1.sh: 
-  copyright: ''
-  hash: aa376c39dd66d55e6cbbc2acb3c88909aef3ab2b5dd2b88b64237d1a5113a325
-  license: ''
-  license_text: ''
-./tests/test-mbrtowc2.sh: 
-  copyright: ''
-  hash: d05e570292161c8c07a2800cbb86f2f1daad410c45f9cc4d75885cb775ef3edd
-  license: ''
-  license_text: ''
-./tests/test-mbrtowc3.sh: 
-  copyright: ''
-  hash: a961e18d55829ef9ae6b5b67be607ed9c09ad44805d1958dec5a216b8b2d4dd2
-  license: ''
-  license_text: ''
-./tests/test-mbrtowc4.sh: 
-  copyright: ''
-  hash: edcefd4d5f047e46e09c57c8f49fd8a5acf6198d6e1457b0b0f8d0a35c8acb36
-  license: ''
-  license_text: ''
-./tests/test-mbscasecmp.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbscasecmp.sh: 
-  copyright: ''
-  hash: c400cba3bdc37f57ff59514590ef1c1ffb525def25363dc057cb795350258088
-  license: ''
-  license_text: ''
-./tests/test-mbscasestr1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbscasestr2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbscasestr2.sh: 
-  copyright: ''
-  hash: 7625b9217b1cb7efd0991f90f4f63de80e96364a81c197d42ff0ea48ff92474a
-  license: ''
-  license_text: ''
-./tests/test-mbscasestr3.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbscasestr3.sh: 
-  copyright: ''
-  hash: 7bea28d4bcddc0db1d408f47ea4d152507a19397c06a739f5f996b2dcbb95f8c
-  license: ''
-  license_text: ''
-./tests/test-mbscasestr4.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbscasestr4.sh: 
-  copyright: ''
-  hash: 7499e59252f59878b81950d351ed8786d455589a88cd005e7ff98abd521ae4b7
-  license: ''
-  license_text: ''
-./tests/test-mbschr.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: e5d6bd10ed694e87f1e1f158fda3d9e3bfe798703c35c003123ad801a988cd9e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbschr.sh: 
-  copyright: ''
-  hash: 7a680a0884655b6591b91b98d2e0192e1defe778a12f3a5bf271aa6a761692a5
-  license: ''
-  license_text: ''
-./tests/test-mbscspn.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbscspn.sh: 
-  copyright: ''
-  hash: 15cc680a7cb6f0f0f80715a88a5c62b67c5ae2c99589420be9f5a7312d252e3a
-  license: ''
-  license_text: ''
-./tests/test-mbsinit.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 0a0f9a89e23f44ce8d21a21ec2345e1f3022ba9e3e35e2705f7347e5d3da89c9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsinit.sh: 
-  copyright: ''
-  hash: 104168895eecfbae80f96f8abd4c73822d9dcb2ce305f8020a0424fe2d55a660
-  license: ''
-  license_text: ''
-./tests/test-mbsncasecmp.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsncasecmp.sh: 
-  copyright: ''
-  hash: 50eadc9df534559ed5509be4a6af2522252ace74a00646bceff01daa139b622d
-  license: ''
-  license_text: ''
-./tests/test-mbsnrtowcs.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsnrtowcs1.sh: 
-  copyright: ''
-  hash: 5db850b49c6897a60588a348aadf7f5ad696f27f58876613cb686088e82065ad
-  license: ''
-  license_text: ''
-./tests/test-mbsnrtowcs2.sh: 
-  copyright: ''
-  hash: c861368b11ee095bb6d9f0229cc3a369b8a0244e453dc686b3540a954bc1b155
-  license: ''
-  license_text: ''
-./tests/test-mbsnrtowcs3.sh: 
-  copyright: ''
-  hash: a8194d6aefb2a02a416354be9e9474c0c19403adf757cb21204119931c188056
-  license: ''
-  license_text: ''
-./tests/test-mbsnrtowcs4.sh: 
-  copyright: ''
-  hash: db2098f520d0c8aeebc9ec8e24bcb668e5ce3afd425e13c07d4bd7c3a7ab51d6
-  license: ''
-  license_text: ''
-./tests/test-mbspbrk.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbspbrk.sh: 
-  copyright: ''
-  hash: b68f5c5e76fdb5ff39f3a4b137f26afec83fbedd80132cb547663c5113395523
-  license: ''
-  license_text: ''
-./tests/test-mbspcasecmp.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbspcasecmp.sh: 
-  copyright: ''
-  hash: 0dc0b806a5fc1a9d2110db05246da688cf15390dc3d79948a5d6a2bbf2040af3
-  license: ''
-  license_text: ''
-./tests/test-mbsrchr.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 336d238f34950347720810d4eba15e4d22a9aa84098f3ec41fd2856d8aedf6d7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsrchr.sh: 
-  copyright: ''
-  hash: f8f59a2913930da2af1851dc24468f2921742b6091b86a65e284b38b418a1397
-  license: ''
-  license_text: ''
-./tests/test-mbsrtowcs.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsrtowcs1.sh: 
-  copyright: ''
-  hash: fb24fa64654c7d2c588311970717aea290a3291349f8a5611aaa761713119cc6
-  license: ''
-  license_text: ''
-./tests/test-mbsrtowcs2.sh: 
-  copyright: ''
-  hash: 8d030f6028e543b4d93dfb8f14b84edd1541dc11d65ce84d512191a78bc1b4fe
-  license: ''
-  license_text: ''
-./tests/test-mbsrtowcs3.sh: 
-  copyright: ''
-  hash: b23b005a9360d7365bfc10ca426905259d2d38be17a55283e063f01a62ec8332
-  license: ''
-  license_text: ''
-./tests/test-mbsrtowcs4.sh: 
-  copyright: ''
-  hash: 207d7ee682369340ed853b46675579d3be4a2707c2299493f560022e518ab334
-  license: ''
-  license_text: ''
-./tests/test-mbsspn.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 2708b6a1359116604ffd1f0488e510bef6ee687588f481e0cad37ed0ec848913
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsspn.sh: 
-  copyright: ''
-  hash: e0bd7e62a91c072db88164046ecd6f42c88ce44a634a76eb1c83c248831dd936
-  license: ''
-  license_text: ''
-./tests/test-mbsstr1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsstr2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsstr2.sh: 
-  copyright: ''
-  hash: 1d805ef1e6eab2c44e8668fa623a5d246869cb3f39a685c4a3135996e45ead77
-  license: ''
-  license_text: ''
-./tests/test-mbsstr3.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-mbsstr3.sh: 
-  copyright: ''
-  hash: 880ac90918e954ae500cce18004a2592619063b0cb6de41740f197f38df9d415
-  license: ''
-  license_text: ''
-./tests/test-md2.c: 
-  copyright: 2005 Free Software Foundation
-  hash: abf2f70a1887b653b034add8c99c0436a2e3751e63f73929660b24930fa9f795
-  license: "GPL "
-  license_text: ''
-./tests/test-md4.c: 
-  copyright: 2005 Free Software Foundation
-  hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
-  license: "GPL "
-  license_text: ''
-./tests/test-md5.c: 
-  copyright: 2005 Free Software Foundation
-  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-memchr.c: 
-  copyright: 2008-2009 Free Software Foundation
-  hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-memchr2.c: 
-  copyright: 2008-2009 Free Software Foundation
-  hash: 8d79550f65f0123da4f6be14234e0fe15616b4ddea78f81d77dd51fd37973be6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-memcmp.c: 
-  copyright: 2008-2009 Free Software Foundation
-  hash: e18a4806f468c3a8e062e5dce871b138ea023af8f3f3aecc2830380fc2d28f6c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-memmem.c: 
-  copyright: 2004, 2007-2009 Free Software Foundation
-  hash: 382e52373b1850a70886e1a8b5e6036b56dc71e1a7308522c9bc833e27a18406
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-memrchr.c: 
-  copyright: 2008-2009 Free Software Foundation
-  hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-netdb.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: cf4bf72aa3b66b389ba6ec0da06aefe83c95f0654339a77a8704612bb9599120
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-netinet_in.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: a848df8c2e882b20250b3a4d479e8fada3d528f8fce8c5627355d6304c80b4dc
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-obstack-printf.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 9feff5ec7cbb16735b6c9d63f6b8c2bd3d3f4c5553f9b996be3f8cfe4240e4c4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-open.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-open.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-openat-safer.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d06869d5a44b4d7270af94cdbbb1d4190957d4292c3af8b9564002d4e4d1c985
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-parse-duration.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 35362dc2615751df013220bee2763c001ae65724f6a65a56708d422de57273a8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-parse-duration.sh: 
-  copyright: ''
-  hash: 2fe603e83804acfadc681a8ed77a25f4146601c1502c37ef8ee8714cfba3919b
-  license: ''
-  license_text: ''
-./tests/test-perror.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 63d18ff5d46be6478f9569c7270da67595712bcaf5d1057c6948359c2cc04bf5
-  license: "GPL "
-  license_text: ''
-./tests/test-perror.sh: 
-  copyright: ''
-  hash: 83349ba638f6ffc10680f2e78e438f0e6f20a812237b89ded57d8b48a10ffc79
-  license: ''
-  license_text: ''
-./tests/test-pipe-filter-gi1.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-pipe-filter-gi1.sh: 
-  copyright: ''
-  hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
-  license: ''
-  license_text: ''
-./tests/test-pipe-filter-gi2-child.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 00ffadb86a75c8f0e27d3d9e7c2c7061b6f4fd0bf9f0ab3ea26323aa6824c621
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-pipe-filter-gi2-main.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c786b65d8861d3f3889afb7eb1b454ce25bce48f093eee46d8d331939cc7ba71
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-pipe-filter-gi2.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-pipe-filter-ii1.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-pipe-filter-ii1.sh: 
-  copyright: ''
-  hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
-  license: ''
-  license_text: ''
-./tests/test-pipe-filter-ii2-child.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: bac3649c854de7b46c60ca030b7a379e4abe24edddb70e3dc6e6cf9f1bfc7e8c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-pipe-filter-ii2-main.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 8c157d6df939e6d434fec71cdf844cfe366d062d871530d04c05a4f12ae9559d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-pipe-filter-ii2.sh: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-pipe.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 87b0ce6f07c7dc998dccca7755d36b68474a4fa9fa1c5479346bbd2a228eeaf9
-  license: "GPL "
-  license_text: ''
-./tests/test-pipe.sh: 
-  copyright: ''
-  hash: 5dbadef404d16dd74e75f251acc266a81438820ea0ab58d558a96804b6d1dd30
-  license: ''
-  license_text: ''
-./tests/test-pipe2.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 73c73a849418178f4ce6c9ad2e85a4a66257efbeeb4c1848901ab0c3bcd6a2cd
-  license: "GPL "
-  license_text: ''
-./tests/test-poll.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 7970e5d5d232352391d076f73881bb98e1eaa9346930e8f191a49ce549b152eb
-  license: "GPL "
-  license_text: ''
-./tests/test-popen-safer.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-popen-safer2.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-popen.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-popen.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-posix_spawn1.c: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-posix_spawn1.in.sh: 
-  copyright: ''
-  hash: 7e7d5c66755ac83d083956f83bfe65ca2c9536cd8b0bd4555a6ba2a03e118aae
-  license: ''
-  license_text: ''
-./tests/test-posix_spawn2.c: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-posix_spawn2.in.sh: 
-  copyright: ''
-  hash: 781d49e1169694f7f7b1db78fc097258bfd1c59d1af21f695f2159606a696251
-  license: ''
-  license_text: ''
-./tests/test-posix_spawn3.c: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-printf-frexp.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-printf-frexpl.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: d9ae7fb6f3efade21dd6bd4f8e39296b78ebe14a2b6904928a9ef5f08847f210
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-printf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: e0609f5e2368ee405f7f4a205a106a397a6c889e06ede598f31189fd2786ea64
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-printf-posix.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-printf-posix.output: 
-  copyright: ''
-  hash: 213315ade646809669a3e177d40a9b01d9430eb55ba1cd18dbc5b5e154433a5a
-  license: ''
-  license_text: ''
-./tests/test-printf-posix.sh: 
-  copyright: ''
-  hash: 239e312ff4456b546521d2f0bd0ef84e7286d685ba3477b95b13b0f8aa071f84
-  license: ''
-  license_text: ''
-./tests/test-printf-posix2.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: f0fff3bfac69b0e70b8370a65b5668bb8c0049c0bd3c7d673c22591f45effae1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-printf-posix2.sh: 
-  copyright: ''
-  hash: 5c422546366bb292df14233c6829abd4a7154bbc5b7dbf1b21fe2dd4601b8f6f
-  license: ''
-  license_text: ''
-./tests/test-priv-set.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 459b0d2a4e2ca34dd43609ddf4f6fc9da4ac8485be1f363e50eac88501417fcc
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-quotearg.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 104703e4201fb5c043c5e3504cebdaf76bee31f82635cd179c12eb576cb8e015
-  license: "GPL "
-  license_text: ''
-./tests/test-quotearg.sh: 
-  copyright: ''
-  hash: 7e0d01aab336e5acc014edc2ff951d5234d4e4bad05e5680cca7931c706e5172
-  license: ''
-  license_text: ''
-./tests/test-random_r.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 6a99ec02e3274e3054358cfae33be3f646de66a86a4c1190e2459dd79154f0c5
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-rawmemchr.c: 
-  copyright: 2008 Free Software Foundation
-  hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-rbtree_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-rbtree_oset.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: e04eacd107bad187ffb5fdb4d4955f66622e0e7f6cee9eb82e80d40657f6cffb
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-rbtreehash_list.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-read-file.c: 
-  copyright: 2006-2007 Free Software Foundation
-  hash: fe25f8bab073df345c729dec8f6148396d6926783db8a074ab9b9f120ebacd68
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-rijndael.c: 
-  copyright: 2005 Free Software Foundation
-  hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-round1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: d481632fac56dafed412331dc1d3c962088c31ca9c3b36086d3667160fd6d480
-  license: "GPL "
-  license_text: ''
-./tests/test-round2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 78cd3c59fce9fcf77a9e67787f5add6ab91b27cb39939cec7db1472ba23e07da
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-roundf1.c: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: 3d1da36b9e0486cd4e508d505e52d43a8e69194525626087e0570a15fb56bd69
-  license: "GPL "
-  license_text: ''
-./tests/test-roundf2.c: 
-  copyright: ''
-  hash: 2b662978b800617f406056d17c4f610c9ac9a637fe6b41e53db7b8728d9a3386
-  license: ''
-  license_text: ''
-./tests/test-roundl.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 78692de38971d672500f95f537d99c3625af5e163292a68f569e9b1c0db3deba
-  license: "GPL "
-  license_text: ''
-./tests/test-safe-alloc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 06fa48a371192b3703bb2e5e10ccd93a9034d93b7dcff205253b40547dc5f425
-  license: "LGPL-2.1+ (with incorrect FSF address) "
-  license_text: ''
-./tests/test-sameacls.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 1df2ca38b822fca6b61b6dc422c4b420e8b7ef60e85c53952d92ac21156b8c65
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sched.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: a1d056a4d72baa204719a7171a5f9cb61426312897c83f8d72c0d329008fe2a6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-search.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: a75b46b1de8003eaa9822f8ee5de3e28bfd9dfa3808094ed1476e96a9f8b0d9b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-select-fd.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: c39dad9c674c2b86a8b6fabc120a1231d76298f5616852e8ca555a36d57dd057
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-select-in.sh: 
-  copyright: ''
-  hash: 900e4c2984ffcf50df1cf8f155327f6fc7f9fb45b05e89a8e6117c6615fa0bef
-  license: ''
-  license_text: ''
-./tests/test-select-out.sh: 
-  copyright: ''
-  hash: 81a7eb6dd45c11e05d7d72c30afe3a86103b6f785beccfede7592fbece606a1f
-  license: ''
-  license_text: ''
-./tests/test-select-stdin.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 2233f158677785767dc09bb2110060927bc2c348fc26ffc95bc44b538dd69287
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-select.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 919c5a7db661553ac0cd6de0a423e3fc6d9c988e0a86fa524fae055862fd6ec8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-set-mode-acl.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: cd6ee6081a51d9b3f3794b017a6b074ff3bc14d6825fd5f251c5fd2d46841250
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-set-mode-acl.sh: 
-  copyright: ''
-  hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
-  license: ''
-  license_text: ''
-./tests/test-sha1.c: 
-  copyright: 2005, 2008, 2009 Free Software Foundation, Inc
-  hash: e18f52207f18a229817e86984ad67f9af48bc951d8a18ad1ba9665584fa5d716
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sigaction.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 26868ca82f9158a85f3775c877b40da4441122e03a940c9d02dfc347ff66b161
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-signal.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a2a63d1070f8da740d3d59dd751aef9681d8f4a1b47d41d92c5258448a7902a0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-signbit.c: 
-  copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-  hash: fa9d9d09e834d032dab7e5344a9125bc3a844d179a74b3eac76bc464ca94566e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sigpipe.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 8babbc5c4c5cf6baadd089082b26b393e84a3d336446bdf26c6170bb3b86fd55
-  license: "GPL "
-  license_text: ''
-./tests/test-sigpipe.sh: 
-  copyright: ''
-  hash: d27845fc8088e77081e32717c8dd8327ed122194c62751c93ef8faff8ee9218c
-  license: ''
-  license_text: ''
-./tests/test-sleep.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: c4c76435bbec1e1ae7a9b8292a1bf834366e04668c11ff07e19eda173e195eb2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-snprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7fce32e7bb5b8d3bda5a1df8212fb1d14ec7a02dc5e72ebb28dd9225dad5e397
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-snprintf-posix.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 9c968e1b41c6112dfd570d39aae8c0902a54036c53b751224852c002c65aada0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-snprintf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a8fc7710afcd71af941318a653e85e172eb11dcf342d0362c2bee74cc1361c0a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sockets.c: 
-  copyright: 2008, 2009 Free Software Foundation
-  hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: bfa4989be540f363296df2cabc7bf499303561023475f1a5272b0a1898cf4746
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sprintf-posix.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 643c16861240bef0649dd4bcefe6ef1d9996a7d9bf4e16d3f70ecd7d22619764
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-stat-time.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 13ed608bac62ec91a2526f569107d3f2c029da8a2935eca78a4cc53839419da8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-stdbool.c: 
-  copyright: 2002-2007 Free Software Foundation, Inc
-  hash: c84624aac5e8ef0d17ac6cfba2d9902112d8652ff84f75943bbaab5483a15104
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-stddef.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a7f33ad88ddc3e59c999ce92e4d5c33162876f2dbd2f812612f5f875e098a0e1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-stdint.c: 
-  copyright: 2006-2008 Free Software Foundation, Inc
-  hash: 23f2d98a74e19ebc217c7540652a726c29f8393ff93360bc7d491d73ef222896
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-stdio.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 2ac4b9dd417d2756a7b7531075a8de408eaa834699dcacc33968d0acd485708a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-stdlib.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 054829fa60196e2c3f2af8a2ae7f5906b69a5ca770ea3f67f4bf20e58459cc39
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-stpncpy.c: 
-  copyright: 2003, 2008 Free Software Foundation, Inc
-  hash: f0900ada3225a1fce15fe1f412789c086482da205d663e8d29b7d44f0a74ff6c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-stpncpy.out.aix433: 
-  copyright: ''
-  hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
-  license: ''
-  license_text: ''
-./tests/test-stpncpy.out.glibc: 
-  copyright: ''
-  hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
-  license: ''
-  license_text: ''
-./tests/test-strcasestr.c: 
-  copyright: 2007, 2008 Free Software Foundation, Inc
-  hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-strchrnul.c: 
-  copyright: 2008 Free Software Foundation
-  hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-strerror.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 14a1d27bf7519c28518b2fa09cdbff600099f8fbbdcdd31d19f1e17abd42eec1
-  license: "GPL "
-  license_text: ''
-./tests/test-striconv.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-striconveh.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: d58780303b58b650191816c9c6f6d31acc192c6b06da016cd940a1daaad76347
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-striconveha.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 5613eb13fd03278f3cfae673d2742357a77a24e39aa5464290122bd1f5cc17e9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-string.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 0ba6f6d137f27b2f588c41cd0dd4a7f44a8611d2b5650a7623304eb04f2a985c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-strings.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 1218735581f6fd81e89c932786b84ad7efdb3fd0a98b512cfb6ef7179ee629b9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-strsignal.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 911cff60ea0d2142906a8b6e37b8e316a82700ce9dc6f4419abb1544eeb16255
-  license: "GPL "
-  license_text: ''
-./tests/test-strstr.c: 
-  copyright: 2004, 2007, 2008, 2009 Free Software Foundation
-  hash: 921b584d5b441ef5314ef79cacb914b5734b212d15a5d3e34d83a3cac45985c7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-strtod.c: 
-  copyright: 2008 Free Software Foundation
-  hash: 94d0b9d07d2cb7df156fa576ff2f5508151924b4eec0f0394e315fc6c43fde83
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-strverscmp.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 73715c12c4e50afe8feb14d326eb9d0092f449850bf20bda4a2a09965c37fd2d
-  license: "GPL "
-  license_text: ''
-./tests/test-symlinkat.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 688324a6ce6943ee6fcd5c4bbc12a6ed11ead304de5c082acac34fa5d620244a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sys_select.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: e6cbee138afbf2346834176c831267687d1d62f0cc1c182a06b826921c4a2a0b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sys_socket.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 27b064bea275a251fd55f12386c38305cfa83d0e2ce5d9b781fc898d400773c6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sys_stat.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 04013ed74812f946e4b59b34d20190ec2cd9ceb8574f5fc52edcd6eac76c352a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sys_time.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 3ebfc9d43b3f8649e84a73cd567fca4c7ae4d825da72da4ed90e6e5a99d94fff
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sys_times.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: b4313ff79695d9b7f87cdd1971b9abde2045f25322923a3e6489c6feea1eacdc
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sys_utsname.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b1a0f7f5778c07e508753fb8758e87eccbf547386a4590bc130135b051293a38
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-sysexits.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 7c3f18282922b3f9c1ebb90c97f14450d340a78ca9e554109d2696866155c1d4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-time.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: e2a57979e9a7175aef1b8845af8f151674553744316aac9805c8db52cbb6dfb2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-times.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: f96de125f14181292c4c8e2e4c0974b25583ad38f9ef6a77d6460b0a6be47bb8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-tls.c: 
-  copyright: 2005, 2008 Free Software Foundation, Inc
-  hash: a371f1638584ea868f8774f0863ed063f15ec220e756dc6cd961ac59be40da55
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-trunc1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-trunc2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-truncf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-truncf2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-truncl.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 503c95b4810a0f30ba1704d1103337c932b495da73ef6c06c21d7a26583b3d60
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-tsearch.c: 
-  copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc
-  hash: 5fc9ed83fc429236699dce56057e9d206682791a0228c09393bd282e8874f20b
-  license: "LGPL-3+ "
-  license_text: ''
-./tests/test-tsearch.sh: 
-  copyright: ''
-  hash: 4a91b1aa51229c44027a90338ac75c18482cd83b1c5a42abbbd5e586cc77bdde
-  license: ''
-  license_text: ''
-./tests/test-u64.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e479b4ed53ff1ef1ddb7c68c062cc0b016685511ba81a14bfa6c2971d06cab71
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-uname.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 95dd080068a87ec7a8f8dd8f9c52cfcc3eb411fdc69747e76099b7f55491e9e0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-unistd.c: 
-  copyright: 2007, 2009 Free Software Foundation, Inc
-  hash: 9dec8ae8ec34dede0933ebdae6fea6044297491dfbba7df3544444a73b7cf7fb
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-update-copyright.sh: 
-  copyright: 1990-2005, 2007-2009 Free Software / @{} 1990-2005, 2007-2009 Free Software / 2009 Free Software Foundation, Inc / &copy; 90,2005,2007-2009
-  hash: 31a6cf464a511c9f798d56d6107ef0eb41dafac06037c8e04649f9ae2d9f2e67
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vasnprintf-posix.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 4033ae875db9b7dec68ccfb88dc9e8ac872f79ccd3ff8c1bbf475994065a67a3
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vasnprintf-posix2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 264ce034a6a0e2af38dd9a7f56d3fc621770b161c40e4868673d2197175d7e9d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vasnprintf-posix2.sh: 
-  copyright: ''
-  hash: a2853f3c4b9322d67eeb514a02f551027226143c613f10e2f07141cea27ef400
-  license: ''
-  license_text: ''
-./tests/test-vasnprintf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 61a80e32eb8210bc664d982ac7156c97f5b068023f47eeef9b2712eaa0cf5358
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vasprintf-posix.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: ec33ca31cf67dba4a443c9cd11bebb34a58110f2c2c15ffb891f9d22b628f47a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vasprintf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 2bd69a93dc485bffe1c49f3d6e4b411651ed41f823fb47f163b9487c35df55e9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vc-list-files-cvs.sh: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 5592779105d6e3c84009c3743f19ba267e3c947df43bd05fce6250d51d38acd8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vc-list-files-git.sh: 
-  copyright: 2008, 2009 Free Software Foundation, Inc
-  hash: cba59ad2fc05be9c59e16bb50f191c185f4d87a147deb9477fab63dbeaba6169
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vdprintf-posix.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 8fc71c626ad4e8b2da0fb5b1661b55fc288ffc3242744e43fd24edf0b22d8d03
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vdprintf-posix.sh: 
-  copyright: ''
-  hash: f3166adb33bacdb3b2da94ac726284ed8403a179c0f69b2e9490d82210ef3ed6
-  license: ''
-  license_text: ''
-./tests/test-verify.c: 
-  copyright: 2005 Free Software Foundation, Inc
-  hash: 17fec5a9ababc4561b627d90f689ea9e12ae05c2cabf962750d3472bb98dcc3c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-version-etc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 166966c01aec43b6eea70f77889719b4ca98d4f9333c9e7b8ff9fb10235eaf2b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-version-etc.sh: 
-  copyright: Free Software Foundation, Inc / [0-9]\{4,4\}//' | / 2009 Free Software Foundation, Inc
-  hash: c2dcff71edecfe89df84edb38bc7cf657c88b91a82456014937488b7eed9cf8c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vfprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vfprintf-posix.sh: 
-  copyright: ''
-  hash: 51b6714415c10dd04271db0038eb39b1bd3c5881b43025900606e5ae92334fc2
-  license: ''
-  license_text: ''
-./tests/test-vprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vprintf-posix.sh: 
-  copyright: ''
-  hash: a6ebb7e5988deb06cbc675b3be4c82c3366db7423e770607fdb9e5079331a9bc
-  license: ''
-  license_text: ''
-./tests/test-vsnprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 08921df8083c6cf72f8107df0955a905c1cfc1a7639420651e479889b858372f
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vsnprintf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 38a886365a5b7333bcddff2e6f7e078b4ccd8affc79c69d525fb628b81e77163
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-vsprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 5ff40ad8122a4316b3880b33fa58711292cfe9daf80cf886bc3bf7b4c8b8f7b6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-wchar.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: b9f590d320dde15ebc89d1b241f7f1affa3e77afaf21eb72b9d0d848c666aa15
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-wcrtomb.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: a7e09560f0d1bcf0d97e0961f8aea91e910f34af271cf323261f13ffa0ae7711
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-wcrtomb.sh: 
-  copyright: ''
-  hash: a44d114e1ecf5712c05a7280fb46e7eed4ba1d93c1afbd19f628ee14485c0f17
-  license: ''
-  license_text: ''
-./tests/test-wcsnrtombs.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-wcsnrtombs1.sh: 
-  copyright: ''
-  hash: 33a1c921605c916d076531d447e2cd6371d22857bb403db1f372526fb35fa98f
-  license: ''
-  license_text: ''
-./tests/test-wcsnrtombs2.sh: 
-  copyright: ''
-  hash: 4ee200893e30f53de0d3366bbac9c7e8524cc201b1d9debd643ad7c3acb63aba
-  license: ''
-  license_text: ''
-./tests/test-wcsnrtombs3.sh: 
-  copyright: ''
-  hash: a593e2317d40fa30cf64732ee7d952ddc68ef2f69e9d9130b17b10f28e8d3d6f
-  license: ''
-  license_text: ''
-./tests/test-wcsnrtombs4.sh: 
-  copyright: ''
-  hash: de5e3b2ff8be87faf053ba51d5846ac4e10322c76bc4b4f2a20357eae2a0489b
-  license: ''
-  license_text: ''
-./tests/test-wcsrtombs.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-wcsrtombs1.sh: 
-  copyright: ''
-  hash: 7f6c7ca6878d2632a37f8f54060bcc41aa415a85487a76f7a374ba03a218e71a
-  license: ''
-  license_text: ''
-./tests/test-wcsrtombs2.sh: 
-  copyright: ''
-  hash: 738099bbea2049911db3bee0ae7d1cba4043ff740759d77197cfca1f5743d55a
-  license: ''
-  license_text: ''
-./tests/test-wcsrtombs3.sh: 
-  copyright: ''
-  hash: b5b4068a795461636f1fca1ce581a918e6298eb6d915f6fd5f9ec34597d9397f
-  license: ''
-  license_text: ''
-./tests/test-wcsrtombs4.sh: 
-  copyright: ''
-  hash: a3a4b7ceb64d8c8d819c6552cc46779e6264e5dd6bf3e0774d71504aeb22a135
-  license: ''
-  license_text: ''
-./tests/test-wctype.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 3913b2dadee190c3c7363a11f4698e6dc6e54e77ff0f6f815989f716687b8c66
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-wcwidth.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 621775bd4bf289a67327498e46edf2e12d578a8ba977b62f871f1957de3e43c5
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-xfprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 2a603870f561fd13002c29e2de6553989048d747097638326de087abc5d9c70d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-xmemdup0.c: 
-  copyright: 2008-2009 Free Software Foundation, Inc
-  hash: 4b2575757caf38d863f415b5079c56fd838ffe4a807c81bc83bd296dcbfcaee6
-  license: "GPL "
-  license_text: ''
-./tests/test-xprintf-posix.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a3af7c6b24629c4787aa5231313b8f64c3b33cf955dc694a5294ae299c3d0ca5
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-xprintf-posix.sh: 
-  copyright: ''
-  hash: 1ce067e6f56dcb6a5a56ce1246d36be56fcc7f66b31106e803156fd220d3e1d0
-  license: ''
-  license_text: ''
-./tests/test-xstrtoimax.c: 
-  copyright: ''
-  hash: c5c3852fa55a1f51008c37b7783d23de2f4d137cf90ff959870b62f6e59587ac
-  license: ''
-  license_text: ''
-./tests/test-xstrtoimax.sh: 
-  copyright: ''
-  hash: 5d15991c8b4c13c05fc12f220e26c34f702a317d8998b1d016379ce9e18b3565
-  license: ''
-  license_text: ''
-./tests/test-xstrtol.c: 
-  copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005
-  hash: de7b5c726b634ae4f59358f375b594790755ca1a9cc5ca12cd7192f7ad89d763
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-xstrtol.sh: 
-  copyright: ''
-  hash: 79873e8a91e9b9088083cb4ef4d0909822f0d7ba1ecbbc98bcb63322735abcbf
-  license: ''
-  license_text: ''
-./tests/test-xstrtoul.c: 
-  copyright: ''
-  hash: 54c2b16099a222e6bc15d83a1911f4725f1e7ba22a3f302408dacfd3bd5c05a5
-  license: ''
-  license_text: ''
-./tests/test-xstrtoumax.c: 
-  copyright: ''
-  hash: 257441d9c0f1b24b0d758658b014fae6ae1c9f17a4453ccd246dde4897eaa45a
-  license: ''
-  license_text: ''
-./tests/test-xstrtoumax.sh: 
-  copyright: ''
-  hash: 4ad7ec4f7631fa5d7ab92d91e1ff3b565a3a8b6f75e0f1b86d89d8030d8252c8
-  license: ''
-  license_text: ''
-./tests/test-xvasprintf.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: ac9ad8e875af014830c20d9e09da1311639c83e409ad8db3f4ffebd240e713f4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/test-yesno.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 3f971eee932cdc6643afc7e82875800dbd694b7d7cce5e5898866d3838e5f8e6
-  license: "GPL "
-  license_text: ''
-./tests/test-yesno.sh: 
-  copyright: ''
-  hash: 6d197acd4b62c8295898322d0a74a7d9b6af375c6612d23e8c718d7d3e034d32
-  license: ''
-  license_text: ''
-./tests/unicase/test-casecmp.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 087298e7ab0c96019fc4bbda3234ee52643b112a91685571bec731d121ff32a9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-cased.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unicase/test-ignorable.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unicase/test-is-cased.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 77f0f5c8da18d68e55012ca31cd200ccaaf62ce13a0437f969525b324746cab9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-is-casefolded.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 8a64df7d2b39cf72a790f65a4380a5257f3906c479a5c7ff2866e2caf521459e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-is-lowercase.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e780f461c5ab26573a2f7a337d9dea72d1b535ce9b8c99aa74286904c35e5350
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-is-titlecase.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ed0e9f7db4df9c5e31d50ff099af7ffd491810832336d9a7b1fa2af8405d927b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-is-uppercase.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c166575b45c29d58756309538901f3ca2bc4976a7afe7bc9d5c96c2a940702a6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-locale-language.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 7902cd50a3a989d21413e91019f1101ca387732e3a3549e9ee5142a2968122a2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-locale-language.sh: 
-  copyright: ''
-  hash: 028ff70d75eaa2008146f1da86917178198eacf5cd2951201c91392e88636645
-  license: ''
-  license_text: ''
-./tests/unicase/test-mapping-part1.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-mapping-part2.h: 
-  copyright: == c); / == mapping[i].value); / 2007-2009 Free Software Foundation, Inc
-  hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-predicate-part1.h: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-predicate-part2.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-casecmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: fbaf1cf87ef4e2cb6c22e345726fbeca61d4f4fde17fe328cd36f69e383210ff
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-casecoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a478780b48f6135ed858b897f9cd56b995fa2bea4331f359e845712e7a921b9b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 780d80975734f219ef2f735b4735e8977dca243032a3d46705d14bea69577b74
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-is-cased.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4234fb2ee9a3330beba45d579838054b73cb027a32343e6a5bfecb31cb63b5a0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-is-casefolded.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f43cf1df76813ed4ff41af0649ec88984148a1a58474b0510aaef5991f58e476
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-is-lowercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 41ab69760cda76f92490056f713aa78ab1fc91f29b6e85dc11364f4d52cea2cd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-is-titlecase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 7082f5c82633a0a232479102690aec07d560deb2fa2febf9433eb417b2893b6e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-is-uppercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: beeb3d8e2907686e31ae7bcacffa24dabd5b8341e95e71008118a27c965127a9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ec459a8224c2ed7f817f50477cce68cd280caadf3f43fdc758e094ba738dad44
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 364955699731118e15b5c015a5b0e2a0ca481108df690c7d2ca72113bdef9bbd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u16-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 256d31e7737c279ab0a7fe336bbc2d8a3b2f5c3646a923645408fb5cd647232f
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-casecmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9179bf8a4dd90067464a8a095910c5a6f53ff0c8b7d4d4d970fb9905caeccab6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-casecoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 46cde4ad2bde5e77ddf09650e34490837d03ffa5566c3665745417de0e7d3a1f
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4d907542dd3a62d941844298dfe70f36057246c130a8906db2071703fcc5ea26
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-is-cased.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: afdd64c3cbdb2db2a6d0a0385c23cadd7acde81fe68ef08c39d1af0e65c1c302
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-is-casefolded.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 406ff64a31f1889065d2f75d3e1352d13da79827438f5af6f72920b26e01be5e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-is-lowercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 925d3f074e4eba6fd371968cdf931e8f266dc18f42c4da065890ec4059e99eb9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-is-titlecase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 7093a37ec59985094b8e3315f0f3195d83b1656d652ebc113e5d419c996cf396
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-is-uppercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1378c386b1283dfea9232ebf982922c37fc43e31aa750dbcae3a513d599a37f6
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d7cfcd257ced2d32004af0d357e3e5dfcd9299fdc83447b6fd59f2b0430cb2b9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 54ba07d46dd17204c8df179dae285eae06fc47dac38440471866ccfb285780b7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u32-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9517acce3a3c32363be5998282902d14b76512c2d95007ae0426073b0ae3e66d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-casecmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e55c357f7afbc9a0cfe0f69c8736e09ac327cf0efa110bd54358b26552c15d91
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-casecoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: cb8087d7a4cd6f72c7df00d9b74cbb14bbe7ff92f76de65ad5e2688c4008f1cc
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-casefold.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 46aa95b956c978d68693a6a7d28e6119e702da6d5852b422cae8ac60feb56e7a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-is-cased.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d2e06421cfef63befc22d5867d91edcde0be66c6e5da6ab56407c62655210ad4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-is-casefolded.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 8847ed4d063cb5ef6b9ad3824c768719bf92ceb9dc999867a7e22fe80da46a62
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-is-lowercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 40b3b6176251c3ba3f01a9dfd5ad1e90fc294c6d2187e04c7623d12dbd036e75
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-is-titlecase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4addcc8d4a006652f4e0af349822acb9ceabab38e19f7bf45f2264ce526c734e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-is-uppercase.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d647fd8d839c47edffa85a2edc6a9b5f9d740295d42b861e2097069fc1d973cd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 40ee18dae3078615adcadd02bc1525436c511d80eb00a52c9c7e44cb0e260d19
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: daea8586484638f8dff9c0f3972a5e1cc4632eb4c26528f93972f8ba9f1c0435
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-u8-toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 92775e814bc7c28fd54cd36641f38bacbb6e32645a9901abb6d77a7dd3266e15
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-uc_tolower.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unicase/test-uc_totitle.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unicase/test-uc_toupper.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unicase/test-ulc-casecmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a70362d42f608ae8519496f614eab7f6840506198a7b35a54688aae06f8ec537
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-ulc-casecmp1.sh: 
-  copyright: ''
-  hash: e11e26a26c3195042709f1c53297ff0ee32afb9250cee9144746a30ed82ac770
-  license: ''
-  license_text: ''
-./tests/unicase/test-ulc-casecmp2.sh: 
-  copyright: ''
-  hash: c5f5915062ac34dd725d099fa932f794f216eb1ba89a42b3c10f1c017f83e698
-  license: ''
-  license_text: ''
-./tests/unicase/test-ulc-casecoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4889e501871ae3a0ada5fb5a8099116bbf289c47ced06d26b7d1bcb98f805e51
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unicase/test-ulc-casecoll1.sh: 
-  copyright: ''
-  hash: 60778acf09ad204d99a6e1e57b880e68d7f53c81bc1dc0473c865922ff99020b
-  license: ''
-  license_text: ''
-./tests/unicase/test-ulc-casecoll2.sh: 
-  copyright: ''
-  hash: 085a2bd9d34dba3e6eb2f389ff01804bfde543909a631b591f44799a8632ce0c
-  license: ''
-  license_text: ''
-./tests/uniconv/test-u16-conv-from-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u16-conv-to-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: ee723fe33867bbe1788462de1e330317d6949f49144cabd6e8e38efca0d447cb
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u16-strconv-from-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u16-strconv-to-enc.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 7cc68dc5f7b4f76a27bf80ef26a988398dd0a4288934033f8e604467ebbbddc1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u32-conv-from-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u32-conv-to-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 9d55d78e2f579b4085948278faa02c153cf2889171a763786c40a320053fefb9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u32-strconv-from-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u32-strconv-to-enc.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: f046bf7ce16400906bfb439be832a1e91647af489a78820eb57d0b4ca94f0810
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u8-conv-from-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u8-conv-to-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: b699c5da15c5e1fdb4bf45482b3895de5a4bdf4febbf595cfe241f5eca8d335a
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u8-strconv-from-enc.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniconv/test-u8-strconv-to-enc.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 92b274f28c6b1980e1ffc2bce550639bea47dd069072090dfbbf3db06ee6ab96
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-bidi_byname.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-bidi_name.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-bidi_of.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-bidi_test.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-block_list.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-block_of.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-block_test.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-categ_C.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Cc.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Cc) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Cf.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Cf) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Cn.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Co.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Co) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Cs.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Cs) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_L.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Ll.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Lm.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Lm) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Lo.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Lt.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Lt) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Lu.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_M.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Mc.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Me.c: 
-  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Me)
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Mn.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_N.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Nd.c: 
-  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Nd)
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Nl.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Nl) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_No.c: 
-  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_No)
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_P.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Pc.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Pc) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Pd.c: 
-  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pd)
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Pe.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Pf.c: 
-  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pf)
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Pi.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Pi) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Po.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Ps.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_S.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Sc.c: 
-  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Sc)
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Sk.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Sk) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Sm.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_So.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Z.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Z) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Zl.c: 
-  copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Zl)
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Zp.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Zp) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_Zs.c: 
-  copyright: uc_is_general_category (c, UC_CATEGORY_Zs) / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-categ_and.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-categ_and_not.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-categ_byname.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-categ_name.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-categ_none.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-categ_of.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-categ_or.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-categ_test_withtable.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-combining.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-ctype_alnum.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_alpha.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_blank.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_blank "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_cntrl.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_cntrl "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_digit.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_digit "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_graph.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_lower.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_print.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_punct.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_space.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_space "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_upper.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-ctype_xdigit.c: 
-  copyright: uc_is_xdigit  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-decdigit.c: 
-  copyright: == mapping[i].value); / == -1); / 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-decdigit.h: 
-  copyright: ''
-  hash: d15c2fbaf8a835d6cbc0c2da37cd84fba9905ba6199f021dd4def95e741aeb94
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./tests/unictype/test-digit.c: 
-  copyright: == mapping[i].value); / == -1); / 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-digit.h: 
-  copyright: ''
-  hash: 08530a09f8d458d98e4012b13ec2ab5df415027736aa50e44d5bce7643faffb1
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./tests/unictype/test-mirror.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-numeric.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-numeric.h: 
-  copyright: ''
-  hash: d6f23324b218034f2f4c008b20dc43866a71580a56841aac37368dc517c0ea52
-  license: "*No copyright* GENERATED FILE"
-  license_text: ''
-./tests/unictype/test-pr_alphabetic.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_ascii_hex_digit.c: 
-  copyright: uc_is_property_ascii_hex_digit  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_arabic_digit.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_arabic_digit "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_arabic_right_to_left.c: 
-  copyright: uc_is_property_bidi_arabic_right_to_left  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_block_separator.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_block_separator "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_boundary_neutral.c: 
-  copyright: uc_is_property_bidi_boundary_neutral  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_common_separator.c: 
-  copyright: uc_is_property_bidi_common_separator  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_control.c: 
-  copyright: uc_is_property_bidi_control  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_embedding_or_override.c: 
-  copyright: uc_is_property_bidi_embedding_or_override  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_eur_num_separator.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_eur_num_separator "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_eur_num_terminator.c: 
-  copyright: uc_is_property_bidi_eur_num_terminator  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_european_digit.c: 
-  copyright: uc_is_property_bidi_european_digit  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_hebrew_right_to_left.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_hebrew_right_to_left "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_left_to_right.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_non_spacing_mark.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_other_neutral.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_pdf.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_pdf "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_segment_separator.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_segment_separator "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_bidi_whitespace.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_bidi_whitespace "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_byname.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-pr_combining.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_composite.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_currency_symbol.c: 
-  copyright: uc_is_property_currency_symbol  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_dash.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_dash "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_decimal_digit.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_decimal_digit "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_default_ignorable_code_point.c: 
-  copyright: uc_is_property_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_deprecated.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_deprecated "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_diacritic.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_extender.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_extender "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_format_control.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_format_control "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_grapheme_base.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_grapheme_extend.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_grapheme_link.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_grapheme_link "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_hex_digit.c: 
-  copyright: uc_is_property_hex_digit  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_hyphen.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_hyphen "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_id_continue.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_id_start.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_ideographic.c: 
-  copyright: uc_is_property_ideographic  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_ids_binary_operator.c: 
-  copyright: uc_is_property_ids_binary_operator  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_ids_trinary_operator.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_ids_trinary_operator "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_ignorable_control.c: 
-  copyright: uc_is_property_ignorable_control  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_iso_control.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_iso_control "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_join_control.c: 
-  copyright: uc_is_property_join_control  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_left_of_pair.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_line_separator.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_line_separator "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_logical_order_exception.c: 
-  copyright: uc_is_property_logical_order_exception  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_lowercase.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_math.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_non_break.c: 
-  copyright: uc_is_property_non_break  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_not_a_character.c: 
-  copyright: uc_is_property_not_a_character  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_numeric.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_other_alphabetic.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_other_default_ignorable_code_point.c: 
-  copyright: uc_is_property_other_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_other_grapheme_extend.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_other_grapheme_extend "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_other_id_continue.c: 
-  copyright: uc_is_property_other_id_continue  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_other_id_start.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_other_id_start "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_other_lowercase.c: 
-  copyright: uc_is_property_other_lowercase  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_other_math.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_other_uppercase.c: 
-  copyright: uc_is_property_other_uppercase  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_paired_punctuation.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_paired_punctuation "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_paragraph_separator.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_paragraph_separator "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_pattern_syntax.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_pattern_syntax "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_pattern_white_space.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_pattern_white_space "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_private_use.c: 
-  copyright: uc_is_property_private_use  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_punctuation.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_quotation_mark.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_quotation_mark "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_radical.c: 
-  copyright: uc_is_property_radical  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_sentence_terminal.c: 
-  copyright: uc_is_property_sentence_terminal  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_soft_dotted.c: 
-  copyright: uc_is_property_soft_dotted  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_space.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_space "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_terminal_punctuation.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_test.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-pr_titlecase.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_titlecase "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_unassigned_code_value.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_unified_ideograph.c: 
-  copyright: uc_is_property_unified_ideograph  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_uppercase.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_variation_selector.c: 
-  copyright: uc_is_property_variation_selector  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_white_space.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_white_space "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_xid_continue.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_xid_start.c: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-pr_zero_width.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_property_zero_width "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-predicate-part1.h: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-predicate-part2.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-scripts.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-sy_c_ident.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-sy_c_whitespace.c: 
-  copyright: "2007 Free Software Foundation, Inc / uc_is_c_whitespace "
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unictype/test-sy_java_ident.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unictype/test-sy_java_whitespace.c: 
-  copyright: uc_is_java_whitespace  / 2007 Free Software Foundation, Inc
-  hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
-  license: GPL-3+ GENERATED FILE
-  license_text: ''
-./tests/unilbrk/test-u16-possible-linebreaks.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unilbrk/test-u16-width-linebreaks.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unilbrk/test-u32-possible-linebreaks.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unilbrk/test-u32-width-linebreaks.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unilbrk/test-u8-possible-linebreaks.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unilbrk/test-u8-width-linebreaks.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unilbrk/test-ulc-possible-linebreaks.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unilbrk/test-ulc-width-linebreaks.c: 
-  copyright: 2008 Free Software Foundation, Inc
-  hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniname/UnicodeDataNames.txt: 
-  copyright: ''
-  hash: a1676b8b73689618daa1662cabf719b5da50cf74a63224111534949d3e4297fb
-  license: ''
-  license_text: ''
-./tests/uniname/test-uninames.c: 
-  copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc
-  hash: 75aa6d9c3dd3d7292e5386895029004117b7bb082ce4f21227c105dc6af43b00
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniname/test-uninames.sh: 
-  copyright: ''
-  hash: 853dcc547f6774df0e14d3d22621c60a885132801e94352425dc0992f91b1fb4
-  license: ''
-  license_text: ''
-./tests/uninorm/NormalizationTest.txt: 
-  copyright: ''
-  hash: 886760af898381620a8980841c646ae70e894b5292c3138e6dfd75b6904deffb
-  license: ''
-  license_text: ''
-./tests/uninorm/test-canonical-decomposition.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a448e6e47900ce6ef19b5c003b18e330f376cd946cbd71d73028af86abe135dd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-compat-decomposition.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1a1be0d3a07610958181e24240ac9a5ecbf2ab378eee5f10e83361662f9c4846
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-composition.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a9cfc5518ecd4051f86fd4d69f17642c965db52574d6e05e7a6c48d910e863b8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-decomposing-form.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 69576c1fa17d13a8886c698b7d02742d961e36583f54b708bbd69ad096c32a93
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-decomposition.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e098c1a33862ac43c6a81a23842bcc036bc222abd16cabf7585b40c5ffa9f13b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-nfc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e9e561889a62796cb7a20a6a9044b31b813500f2a501e285020f9150b1bd8e9b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-nfd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 9e4d1ad511a5edfbe76247e671aeba2f3a2ccb7d048d408440d9d64a2b6bfd86
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-nfkc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f852f8cc0ef2cc1d6145b5040910d25bad300da7f4f217b441bf42f48c5b684f
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-nfkd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 996838de5e25b4e10b7be70b8e0139e15b9852eec680d7813b7ac0e9cd4a4254
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u16-nfc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b698b4d1c028fb6ecf50c5fbd520583195bbb1d0e55ad4b6e098487c6ad28d38
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u16-nfd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4c837d69f99444f70aa8a5a6b4ac325ffcca6a95ec60cb4fc052a53d8bbe2a44
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u16-nfkc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 498eacf1ec13365c3b4a66b32f14a6a10374555a75e6a3a68916446e76c2b146
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u16-nfkd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0b13b0dddc12354427fafcf78195149905174c48a77bdfea7de548c164de9ec8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u16-normcmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u16-normcmp.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u16-normcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ceee340b1298ce1b06479da651ec2099f4356abfe07c42a2cf75b2f3ccc53855
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-nfc-big.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 0d2777874284fe0a8c91d2b3b2a5399b823cb2dad79d585383eb83c79b57c81c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-nfc-big.sh: 
-  copyright: ''
-  hash: 756efd18ad52a52ef3c82289a3036f7c5fff9304a556162298fa05572b3ad8d5
-  license: ''
-  license_text: ''
-./tests/uninorm/test-u32-nfc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1b33b266858f6f5526266ebd1602fa80e26475d58bdeb7e6c376bfb53ba04963
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-nfd-big.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 63854a2632b7cbc28cf0082fff71e81449b3459399888d8c59085994b440fbd1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-nfd-big.sh: 
-  copyright: ''
-  hash: 7df6600ba689632b1923565f4cea0c349205eb81ab54e48adbe2b4f19f1a0710
-  license: ''
-  license_text: ''
-./tests/uninorm/test-u32-nfd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1d11efc667f9a1a96ae0c1cf7a7ff48efeb6343fd34d5bf65bc009926b652e1b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-nfkc-big.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 03584a064142db823aa30f198f34140a95768d7cb752d9bc2b4fd2b5064d9967
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-nfkc-big.sh: 
-  copyright: ''
-  hash: 9c1bbb4dc3679b54e635a3f50ac29520d1bdf8fcff118b56b01b7760af61a802
-  license: ''
-  license_text: ''
-./tests/uninorm/test-u32-nfkc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 4cb74b532545362c81ed6ff3a88bc7ae33d0663e9262942ee6c264d1190e1fbd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-nfkd-big.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 12acb786931e36a2d9a6ba2d9807d967a72b06b659b6e37181b20b6168235f5f
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-nfkd-big.sh: 
-  copyright: ''
-  hash: 59c7882b0d8e4cb0a3f3b3d4deceaed6b01da8bcd5dcd430931782d394e9a581
-  license: ''
-  license_text: ''
-./tests/uninorm/test-u32-nfkd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 35ed77ced7909ca500b2c08af6836d013992774deafe0846b72ecfa13d6f031c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-normalize-big.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-normalize-big.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-normcmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-normcmp.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u32-normcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 3b3591a744117db52df87ebfee1374c242580690a9d38dd72b9264d47d519b12
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u8-nfc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1cc025cec921d4f28a082455f5ee5c4c03ba8293305aa7b8c3b0c1fbba30c4fa
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u8-nfd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: ab1a65db2659f7732acdd205f0b1ea3117f4b85013e5c38a9f46d225ad2ae0f0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u8-nfkc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d7082ba6f4b74e4554c6653e18151eb793cdda74f1b47770530230295d2e3e2e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u8-nfkd.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: a813ff37ff6161e75f5290a0fc5a2e80284c57f42d059e4ba9bd16159a1fdfc8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u8-normcmp.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u8-normcmp.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-u8-normcoll.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: d7aa94f225cc5310484036b430a51f201b05b9bc7784316c1d21f6a605a339ea
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uninorm/test-uninorm-filter-nfc.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: b66d309ad83a237d8d0a247cedfab3884798bad886cc15f3a6ba1d9f5e13b9ad
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-asnprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 4cd1fc1c179cccfb1ae23beba8905574b7607b734ca02cb70a1267216322a5a4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-asnprintf1.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 76a1f62bd7c8d5161add6df04b31cd91ada3814cc0ca69bd9753a73a17dfcea4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-printf1.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 909d6f0cefa405afb2e1072bb26eb4df9ba77e176f713b5f446a0c35b6b45ee7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-vasnprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 3d425ccab1f150ddf5f5b81607ce8bfcfdd0c2ccb574609fe36a93297b08258e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-vasnprintf2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: c42edbef700ece3826498e7ec7562a528f72171d32e1dcadd5589aade0a62cc1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-vasnprintf2.sh: 
-  copyright: ''
-  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
-  license: ''
-  license_text: ''
-./tests/unistdio/test-u16-vasnprintf3.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 6b80497faada59178ae32663d8cc7aac6607d31f69c43bd2ab2a411492bfa495
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-vasnprintf3.sh: 
-  copyright: ''
-  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
-  license: ''
-  license_text: ''
-./tests/unistdio/test-u16-vasprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: d559b3310501b16f524c4cf845f697c47b883582976b38184410d2f88971682c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-vsnprintf1.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: bbea74e4dfbebb15cf5bdf3dae5d9e5b9c0fecf7b81cd5d597686a27b8e12570
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u16-vsprintf1.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 51f1b19e6f03063d8833db2914a0b59598e146143ff42eb5789564b39888d994
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-asnprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: d249b9b64091c3e4f41e6e9b0e7e856c278716eb4db6a989f603c9859fedf963
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-asnprintf1.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 8b746d35a6ed28682834e7bd2e553b62a12e899d022589df093e016b38fb03af
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-printf1.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 2aa402941192f63adcad98959781ac2774070979f335f1332164a3863cc54404
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-vasnprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 2d05aa67379ffb2f79eb2308a4bc06bfd43b048ee90b89ae18730279e363c524
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-vasnprintf2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: b083a2377405a07fe51eb035ad09a0489bf65067207a0566910712abcb30726b
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-vasnprintf2.sh: 
-  copyright: ''
-  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
-  license: ''
-  license_text: ''
-./tests/unistdio/test-u32-vasnprintf3.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 4fcf74ce885ab101762032b20b3ad9f1cfbfb52430e736add8c65743ec40eade
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-vasnprintf3.sh: 
-  copyright: ''
-  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
-  license: ''
-  license_text: ''
-./tests/unistdio/test-u32-vasprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: eabc0bb1a9dbe71c93902c4a1490621caad6c67d3e03f4ac411b05807cb595e4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-vsnprintf1.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 2fb5c97c1868ff9f912aae2bc8784dbe759e65cfcb02ac8263da73868a208a49
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u32-vsprintf1.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: 36cf2e191798aa14ab7c7a791b0d61357029ec015af3c1feb99aaf853e1b8803
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-asnprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: f2754ecea17ff7e997c7ba8312c71a022f600e49807de5f420c8bb62f0871cd8
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-asnprintf1.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 46bdc3f468fe19b87aaacbecbd84f662c90c6ab838125defd47e5412c9bd67c1
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-printf1.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 1b1973376c0d8b5d5f884d50b7b1ab402e3e31243b03bc3f8e9c3251e39c66ec
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-vasnprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: feffbb7a585c58b542b866102777167000d487253536607fd7500a6f21c5a1d5
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-vasnprintf2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 6964834677d5fd9d5fcec4e56ebc23c309ef467f98ae1827e81e9739de99eaa2
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-vasnprintf2.sh: 
-  copyright: ''
-  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
-  license: ''
-  license_text: ''
-./tests/unistdio/test-u8-vasnprintf3.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 59c1d2cbfeabd9ca557c7c72f2f556faab45e78c6113db11244cbe00eafb4c91
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-vasnprintf3.sh: 
-  copyright: ''
-  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
-  license: ''
-  license_text: ''
-./tests/unistdio/test-u8-vasprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 005e299ef65aa2dfd2c981e1fb5ae933957acfc190152132b9bd9da6b75afc68
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-vsnprintf1.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: f0f1a7e874f9cdb481d2920816076e14198c8279ed8878458668578ce82643d5
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-u8-vsprintf1.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: ecfe8f24ee3cdd3323a0192f09dd50590f4201122e5b203aa84879ae682ff319
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-asnprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: f460de9dace19bfa0b9e79f25557bd411248db7e9c41ded07d1b450087c5e1cb
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-asnprintf1.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: cd00792dc677501bacb09b04f578ee318c85955822b7e39b71f20ded701252f9
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-printf1.h: 
-  copyright: 2007 Free Software Foundation, Inc
-  hash: 52719b059d0fe4592ec7de9c12156520eacdf740e6a9b43edaf32d1650a8c992
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-vasnprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 38f11760c3832f5b714de061118c87e63e5e70c624e5f25bb835676b6055e6b4
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-vasnprintf2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: be7efc5b5cb950d1b005d9fe5af23b12c0eb89bc049db7294d999044a6329e1e
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-vasnprintf2.sh: 
-  copyright: ''
-  hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
-  license: ''
-  license_text: ''
-./tests/unistdio/test-ulc-vasnprintf3.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 90ffc7b3f6cb85309a0e342f0f768c7a4c2c729a08d2b831a0f549e8e01718d0
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-vasnprintf3.sh: 
-  copyright: ''
-  hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
-  license: ''
-  license_text: ''
-./tests/unistdio/test-ulc-vasprintf1.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 0db7617d589e3703964119869d14691abb2498a1fc25d64a755eec64dfd07413
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-vsnprintf1.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: bb840d45e39a1be31b0b4daad61d03d30d8376f10220704e06c94f655cc3a564
-  license: "GPL-3+ "
-  license_text: ''
-./tests/unistdio/test-ulc-vsprintf1.c: 
-  copyright: 2007-2009 Free Software Foundation, Inc
-  hash: d062894ca1aa3e3cc138093e10d57c39a38df1464ffcf75538249c801da83c35
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwbrk/test-u16-wordbreaks.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 11ab1e7ac1c6c7ba08cea587aadb03a6aa110a3169c7bf643d0ea2764e240537
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwbrk/test-u32-wordbreaks.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f49f7bebcb1395a7fa915f963b4a677a3698fc1d2e5ff93f955be0299357baee
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwbrk/test-u8-wordbreaks.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: bb82bf9821127ceb2c7da498d0c101d05faef0dd319c018e41d56ed0f3ac1c31
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwbrk/test-ulc-wordbreaks.c: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: 1609df8eadc7abda56ce3dec4a2ec747326360d74afb059c522331d5b242533c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwbrk/test-ulc-wordbreaks.sh: 
-  copyright: ''
-  hash: d1d3525c27882f7ded09b3b5fa177ebddcfb16a75b19ef3804ae6f4731f2962c
-  license: ''
-  license_text: ''
-./tests/uniwidth/test-u16-strwidth.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: e5c07a0d8d419dff0b836a33748dee1cc6e0f9d71808ca383caefda4c8f0d551
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwidth/test-u16-width.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 6874b1458a692740482ff6e7172bf490f6dcc01985040b888e7bd2d7f7243261
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwidth/test-u32-strwidth.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: a4d26a909a61a615cf5aa5b183b291ca10258e5123a9eea0aec24856da402b1d
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwidth/test-u32-width.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: e651f14a8b91f79e7b9cbf7403e88af982c9d37e0b1a5327c89da40f1bde988c
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwidth/test-u8-strwidth.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: fcf5c6c2c481b0375772edb286bed88b0ca421d6736214ae4e0a64567beb75c7
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwidth/test-u8-width.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 9e7db4127bec42b0e97fa3a07242099cb818e1e533c208c158bcc2969c7d7c31
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwidth/test-uc_width.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwidth/test-uc_width2.c: 
-  copyright: 2007-2008 Free Software Foundation, Inc
-  hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
-  license: "GPL-3+ "
-  license_text: ''
-./tests/uniwidth/test-uc_width2.sh: 
-  copyright: ''
-  hash: 26f58b4ef6788b773c28c79baabad9e1739f820166b24458450bfa7cd542370f
-  license: ''
-  license_text: ''
-./tests/zerosize-ptr.h: 
-  copyright: 2009 Free Software Foundation, Inc
-  hash: f1e50a6aba1af63593fff7b9ec71317ade999e0e10d738a6594aa3de16536da7
-  license: "GPL-3+ "
-  license_text: ''
-./top/GNUmakefile: 
-  copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc
-  hash: 1db2e4a3959febe32d5c70280a5b28547600d854b8d1b61ec85d3a9b670a2b23
-  license: "GPL-3+ "
-  license_text: ''
-./top/maint.mk: 
-  copyright: 2001-2009 Free Software Foundation, Inc
-  hash: eef091164cb5f26dc538fb6b3940b82d779d05390f32dffea43d1161be06adc1
-  license: "GPL-3+ "
-  license_text: ''
-./users.txt: 
-  copyright: ''
-  hash: f5c05b7f2c33b93dcda0aa8f108195721e70410ef027614d4e342b00ccd15536
-  license: ''
-  license_text: ''
diff --git a/debian/clscan/new.txt b/debian/clscan/new.txt
new file mode 100644 (file)
index 0000000..ca5c1ae
--- /dev/null
@@ -0,0 +1,146673 @@
+File: ./COPYING
+Hash: 60c25a32bddb8e12cdd819cc29ec9a6d941431c6a013a71e2878536fa16d4dd7
+License: 
+Copyright: Free Software Foundation, and
+Licence-Text: 
+#Header: 
+#$Id: COPYING,v 1.3 2006-10-26 16:20:28 eggert Exp $
+#The files in here are mostly copyright (C) Free Software Foundation, and
+#are under assorted licenses.  Mostly, but not entirely, GPL.
+#
+#Many modules are provided dual-license, either GPL or LGPL at your
+#option.  The headers of files in the lib directory (e.g., lib/error.c)
+#state GPL for convenience, since the bulk of current gnulib users are
+#GPL'd programs.  But the files in the modules directory (e.g.,
+#modules/error) state the true license of each file, and when you use
+#'gnulib-tool --lgpl --import <modules>', gnulib-tool either rewrites
+#the files to have an LGPL header as part of copying them from gnulib
+#to your project directory, or fails because the modules you requested
+#were not licensed under LGPL.
+#
+#Some of the source files in lib/ have different licenses.  Also, the
+
+File: ./ChangeLog
+Hash: 0fc0c9c0235be8c8ba21d40facf534e03437b77886effa77a634fc9a1929b3e8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#2009-09-07  Eric Blake  <ebb9@byu.net>
+#
+#      rename: modernize replacement
+#      * modules/rename (Depends-on): Add stdio.
+#      (configure.ac): Declare witness.
+#      * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
+#      stdio take care of replacement.
+#      * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
+#      * modules/stdio (Makefile.am): Substitute them.
+#      * lib/stdio.in.h (rename): Declare replacement.
+#      * lib/rename.c (includes): Allow cross-compilation to non-windows
+#      machines.
+#      * doc/posix-functions/rename.texi (rename): Improve
+#      documentation.
+
+File: ./DEPENDENCIES
+Hash: 3c8640aeff44fe6c30a27836e926fcaa6f6a5f4d35d8c540f71f7c568cf60d4f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#The following packages are needed by maintainers for using
+#'gnulib-tool'.  In general, Gnulib prefers the latest stable
+#version of each package, but in some cases it also supports
+#older versions; this caters to commonly-used software
+#distributions that may lag behind the latest stable package.
+#Support for older versions is not guaranteed, though, and
+#the version numbers in the following list may be incremented
+#at any time.
+#
+#* A C runtime, compiler, linker, etc.
+#  + Mandatory. Using the platform's native 'cc' gives good portability
+#    exposure, but you can also use GCC 2.95 or newer.
+#  + GCC Homepage:
+#    http://gcc.gnu.org/
+#  + Download:
+
+File: ./MODULES.html.sh
+Hash: 30633aa046887d3d7c2edee238d5e009b260d8eaec001809cdcdcef205089d59
+License: GPL-3+ 
+Copyright: 2002-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+##
+## Copyright (C) 2002-2009 Free Software Foundation, Inc.
+##
+## 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
+
+File: ./Makefile
+Hash: 7ad5a3ccd8892f7a29384dd4ed455a2c57cdadf2624c943f51127745751ffbe7
+License: 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Makefile for gnulib central.
+## Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+##
+## Copying and distribution of this file, with or without modification,
+## in any medium, are permitted without royalty provided the copyright
+## notice and this notice are preserved.
+#
+## Produce some files that are not stored in the repository.
+#all:
+#
+## Produce the documentation in readable form.
+#info html dvi pdf:
+#      cd doc && $(MAKE) $@ && $(MAKE) mostlyclean
+#
+## Perform some platform independent checks on the gnulib code.
+
+File: ./NEWS
+Hash: 141ae5843fb9df760bf1e31402eb714cf1261d9c6db16e4db30aeba3acf9e663
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Important notes
+#---------------
+#
+#User visible incompatible changes
+#---------------------------------
+#
+#Date        Modules         Changes
+#
+#2009-09-04  link-follow     The macro LINK_FOLLOWS_SYMLINK is now tri-state,
+#                            rather than only defined to 1.
+#
+#2009-09-03  openat          The include files are standardized to POSIX 2008.
+#                            For openat, include <fcntl.h>; for
+#                            fchmodat, fstatat, and mkdirat, include
+#                            <sys/stat.h>; for fchownat and unlinkat,
+
+File: ./README
+Hash: 3da1ae1f2de3a84a70abca2325e281203ffe123afbc003420697463b56efd35c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Gnulib
+#======
+#
+#While portability across operating systems is not one of GNU's primary
+#goals, it has helped introduce many people to the GNU system, and is
+#worthwhile when it can be achieved at a low cost.  This collection helps
+#lower that cost.
+#
+#Gnulib is intended to be the canonical source for most of the important
+#"portability" and/or common files for GNU projects.  These are files
+#intended to be shared at the source level; Gnulib is not a typical
+#library meant to be installed and linked against.  Thus, unlike most
+#projects, Gnulib does not normally generate a source tarball
+#distribution; instead, developers grab modules directly from the
+#source repository.
+
+File: ./build-aux/announce-gen
+Hash: 9ebe62448e2c3a71f08521ec64d65dd561761e446347edc914f396fe810040ba
+License: GPL-3+ 
+Copyright: 2002-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/usr/bin/perl -w
+## Generate a release announcement message.
+#
+#my $VERSION = '2009-09-01 06:47'; # UTC
+## The definition above must lie within the first 8 lines in order
+## for the Emacs time-stamp write hook (at end) to update it.
+## If you change this file with Emacs, please let the write hook
+## do its job.  Otherwise, update this string manually.
+#
+## Copyright (C) 2002-2009 Free Software Foundation, Inc.
+#
+## 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.
+
+File: ./build-aux/bootstrap
+Hash: f97568fc9b26977bf8aa781f26a1f5df7c9e5dc7c8d9a4e54e2c8d7892765096
+License: GPL-3+ 
+Copyright: 2003-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+#
+## Bootstrap this package from checked-out sources.
+#
+## Copyright (C) 2003-2009 Free Software Foundation, Inc.
+#
+## 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.
+
+File: ./build-aux/bootstrap.conf
+Hash: 95cc00b43d60d3bff61561355253d777ac82e105338bf23faf29168086d392c2
+License: GPL-3+ 
+Copyright: 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Bootstrap configuration.
+#
+## Copyright (C) 2006, 2007 Free Software Foundation, Inc.
+#
+## 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
+
+File: ./build-aux/compile
+Hash: 1a1d949ff906c036a902a8021154e8f127f6bdeaa7b22843a9bd13badc24253a
+License: GPL GENERATED FILE
+Copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Wrapper for compilers which do not understand `-c -o'.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009  Free Software
+## Foundation, Inc.
+## Written by Tom Tromey <tromey@cygnus.com>.
+##
+## 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,
+
+File: ./build-aux/config.guess
+Hash: 1fc09da52d50a533ff9166226320f69603e3c5189271118a66d0cc514e6a3d71
+License: GPL-2+ GENERATED FILE
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999 / 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Attempt to guess a canonical system name.
+##   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+##   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+##   Free Software Foundation, Inc.
+#
+#timestamp='2009-08-19'
+#
+## This file 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 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
+
+File: ./build-aux/config.libpath
+Hash: ac72222f705d2427683a67b643cf25045db2915ab66319cf535c68b847472ad3
+License: GPL-3+ GENERATED FILE
+Copyright: 1996-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Output a system dependent set of variables, describing how to set the
+## run time search path of shared libraries in an executable at run time.
+##
+##   Copyright 1996-2008 Free Software Foundation, Inc.
+##   Taken from GNU libtool, 2003
+##   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
+##
+##   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
+
+File: ./build-aux/config.rpath
+Hash: c52259321cfea86c34876e34db5356168f319d7f0dda0fd76efa9dce5e6fea4d
+License: 
+Copyright: 1996-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Output a system dependent set of variables, describing how to set the
+## run time search path of shared libraries in an executable.
+##
+##   Copyright 1996-2008 Free Software Foundation, Inc.
+##   Taken from GNU libtool, 2001
+##   Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
+##
+##   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.
+##
+## The first argument passed to this file is the canonical host specification,
+##    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
+## or
+
+File: ./build-aux/config.sub
+Hash: 6e2b7e1143d443ea670be8edea2db4d9a6ac57e6f22aa4a88443959ab8ad42c7
+License: GPL-2+ GENERATED FILE
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Configuration validation subroutine script.
+##   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+##   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+##   Free Software Foundation, Inc.
+#
+#timestamp='2009-08-19'
+#
+## This file is (in principle) common to ALL GNU software.
+## The presence of a machine in this file suggests that SOME GNU software
+## can handle that machine.  It does not imply ALL GNU software can.
+##
+## This file 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 of the License, or
+
+File: ./build-aux/csharpcomp.sh.in
+Hash: 13d53b69f8e2663d2abeb4053b3cd45b2b3f99563e826a5fd67abcf4ac201e22
+License: GPL-3+ 
+Copyright: 2003-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Compile a C# program.
+#
+## Copyright (C) 2003-2006 Free Software Foundation, Inc.
+## Written by Bruno Haible <bruno@clisp.org>, 2003.
+##
+## 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.
+
+File: ./build-aux/csharpexec.sh.in
+Hash: 08e6e1564fcf7509ae893ac7b3121aa831344458a4ff420c1994918d9792b151
+License: GPL-3+ 
+Copyright: 2003, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Execute a C# program.
+#
+## Copyright (C) 2003, 2005 Free Software Foundation, Inc.
+## Written by Bruno Haible <bruno@clisp.org>, 2003.
+##
+## 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.
+
+File: ./build-aux/depcomp
+Hash: ab3cbcc8d9b25ff49daba60a573055149a8330158ab61b0602538a1cdf27e9f8
+License: GPL GENERATED FILE
+Copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## depcomp - compile a program generating dependencies as side-effects
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
+## Software Foundation, Inc.
+#
+## 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
+
+File: ./build-aux/elisp-comp
+Hash: 650765cd58e0b384cc47b3c257ea4955be8b26117eb05106cd7a39ef002314ed
+License: GPL GENERATED FILE
+Copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Copyright (C) 1995, 2000, 2003, 2004, 2005, 2009 Free Software
+## Foundation, Inc.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Franc,ois Pinard <pinard@iro.umontreal.ca>, 1995.
+##
+## 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
+
+File: ./build-aux/gendocs.sh
+Hash: 203ece29ab9caad64ebd3b3a75725444676b43bd66f2f22b8fc836c5bab0ec78
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc / 2003, 2004, 2005, 2006, 2007, 2008, 2009
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## gendocs.sh -- generate a GNU manual in many formats.  This script is
+##   mentioned in maintain.texi.  See the help message below for usage details.
+#
+#scriptversion=2009-04-08.09
+#
+## Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009
+## Free Software Foundation, Inc.
+##
+## 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,
+
+File: ./build-aux/git-version-gen
+Hash: a08c7e5c0619d75de3d15e0bdf4ff226dc7f5a89a1e3c6f7b1d5b664b96cf692
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Print a version string.
+#scriptversion=2008-04-08.07
+#
+## Copyright (C) 2007-2008 Free Software Foundation
+##
+## 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, 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.
+
+File: ./build-aux/gitlog-to-changelog
+Hash: 9cca6130908ff793b8a1af70cc476f55970e378cddd4177d5a602decbeb94542
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/usr/bin/perl
+## Convert git log output to ChangeLog format.
+#
+#my $VERSION = '2009-08-12 16:49'; # UTC
+## The definition above must lie within the first 8 lines in order
+## for the Emacs time-stamp write hook (at end) to update it.
+## If you change this file with Emacs, please let the write hook
+## do its job.  Otherwise, update this string manually.
+#
+## Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+## 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.
+
+File: ./build-aux/gnupload
+Hash: bff7381ec4c19e81634ea630fca8a053cfe1333142662cd70b32c4fe46f3e36e
+License: GPL 
+Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Sign files and upload them.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation
+##
+## 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
+
+File: ./build-aux/install-reloc
+Hash: 613894d1c2a2855e0f3eb82986175598d077c45c05dbac2f339031487a83f4e4
+License: GPL-3+ 
+Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## install-reloc - install a program including a relocating wrapper
+## Copyright (C) 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+## Written by Bruno Haible <bruno@clisp.org>, 2003.
+##
+## 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.
+##
+
+File: ./build-aux/install-sh
+Hash: 5dcf8a8dd376f4c95767a2dcb626e89a66d6f2fda2352f534a296ac6cc9a20b3
+License: MIT/X11 (BSD like) 
+Copyright: 1994 X Consortium
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## install - install a program, script, or datafile
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## This originates from X11R5 (mit/util/scripts/install.sh), which was
+## later released in X11R6 (xc/config/util/install.sh) with the
+## following copyright and license.
+##
+## Copyright (C) 1994 X Consortium
+##
+## 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
+
+File: ./build-aux/javacomp.sh.in
+Hash: a2fa68883ebe7994ced1edf628a9c6cb6d79ef3edfd0c14996e1e14ef0d7c4c6
+License: GPL-3+ 
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Compile a Java program.
+#
+## Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+## Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+##
+## 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.
+
+File: ./build-aux/javaexec.sh.in
+Hash: 8b8c346d69504f34a6426de103455a52b09deb2a0c5a74bb8d4368cad9d6b8d4
+License: GPL-3+ 
+Copyright: 2001, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Execute a Java program.
+#
+## Copyright (C) 2001, 2006 Free Software Foundation, Inc.
+## Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+##
+## 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.
+
+File: ./build-aux/ldd.sh.in
+Hash: 6bfa3933015b9b05e431eb13f03e5297cc73bb56bc426d811f1fa41ec7844650
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Determine the dynamically linked dependencies of a program.
+#
+## Copyright (C) 2006 Free Software Foundation, Inc.
+## Written by Bruno Haible <bruno@clisp.org>, 2006.
+##
+## 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.
+
+File: ./build-aux/link-warning.h
+Hash: cb78032cfaf626adb1bc97576502516519b4888988a51aaa1c4963817b48b0e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* GL_LINK_WARNING("literal string") arranges to emit the literal string as
+#   a linker warning on most glibc systems.
+#   We use a linker warning rather than a preprocessor warning, because
+#   #warning cannot be used inside macros.  */
+##ifndef GL_LINK_WARNING
+#  /* This works on platforms with GNU ld and ELF object format.
+#     Testing __GLIBC__ is sufficient for asserting that GNU ld is in use.
+#     Testing __ELF__ guarantees the ELF object format.
+#     Testing __GNUC__ is necessary for the compound expression syntax.  */
+## if defined __GLIBC__ && defined __ELF__ && defined __GNUC__
+##  define GL_LINK_WARNING(message) \
+#     GL_LINK_WARNING1 (__FILE__, __LINE__, message)
+##  define GL_LINK_WARNING1(file, line, message) \
+#     GL_LINK_WARNING2 (file, line, message)  /* macroexpand file and line */
+##  define GL_LINK_WARNING2(file, line, message) \
+
+File: ./build-aux/mdate-sh
+Hash: ae36e3c36cd08de4a5aaadc7311d0863108cbc4fcda21b18e902f6218e675035
+License: GPL GENERATED FILE
+Copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Get modification time of a file or directory and pretty-print it.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free
+## Software Foundation, Inc.
+## written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, June 1995
+##
+## 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,
+
+File: ./build-aux/missing
+Hash: d8c7220550f4985316cb4c11d4c304b84debd55902b7528ad3f944a478f0c90e
+License: GPL GENERATED FILE
+Copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Common stub for a few missing GNU programs while installing.
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
+## 2008, 2009 Free Software Foundation, Inc.
+## Originally by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
+#
+## 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,
+
+File: ./build-aux/mkinstalldirs
+Hash: fbad76aa017d3ccba0cfd78db353d5c15c571f4617320fd53b7ee67c788cbc65
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## mkinstalldirs --- make directory hierarchy
+#
+#scriptversion=2009-04-28.21; # UTC
+#
+## Original author: Noah Friedman <friedman@prep.ai.mit.edu>
+## Created: 1993-05-16
+## Public domain.
+##
+## This file is maintained in Automake, please report
+## bugs to <bug-automake@gnu.org> or send patches to
+## <automake-patches@gnu.org>.
+#
+#nl='
+#'
+
+File: ./build-aux/mktempd
+Hash: 5c32320b58d10b6b74af578eb9a1bf5015360211ac2b2932f4303648b3e7a354
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Create a temporary directory, much like mktemp -d does.
+#
+## Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+## 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.
+
+File: ./build-aux/move-if-change
+Hash: 804812198e7aadc810a167cc8015b32770e16ac23315a92f8ce3bba2c1ecbfe1
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc / 2002-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Like mv $1 $2, but if the files are the same, just delete $1.
+## Status is zero if successful, nonzero otherwise.
+#
+#VERSION='2007-09-28 23:10'; # UTC
+## The definition above must lie within the first 8 lines in order
+## for the Emacs time-stamp write hook (at end) to update it.
+## If you change this file with Emacs, please let the write hook
+## do its job.  Otherwise, update this string manually.
+#
+## Copyright (C) 2002-2007 Free Software Foundation, Inc.
+#
+## 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
+
+File: ./build-aux/ncftpput-ftp
+Hash: 462b4e7cc8f6796fd32420382ed3f3f5e2246d58bd186469614dcd8d3a89a239
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## 
+## Copyright 2008 Free Software Foundation.
+## 
+## 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
+
+File: ./build-aux/pmccabe.css
+Hash: 0d101dc42f369f71b997fc77eb3bc11d765e5c437b6824ef244bda483f9a1c48
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#body {
+#
+#    font-family: Helvetica, sans-serif;
+#
+#}
+#
+#.page_title {
+#
+#    font: 18pt Georgia, serif;
+#/*    font-size: 1.5em;
+#    font-weight: bold; */
+#    color: darkred;
+#    border-bottom: 2px solid darkred;
+#}
+
+File: ./build-aux/pmccabe2html
+Hash: a93c5cea3b0bf8641cfbe982861478458a8419d5adffa3e4e88c5c5450d54ebe
+License: GPL-3+ 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/usr/bin/awk -f
+## pmccabe2html - pmccabe to html converter
+#
+## Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#
+## 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.
+##
+
+File: ./build-aux/po/Makefile.in.in
+Hash: 5580fc36bc0f59414a3844a04f9f2f4185bddc3a262525fa98898da44a4a9e95
+License: 
+Copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+Licence-Text: 
+#Header: 
+## Makefile for PO directory in any package using GNU gettext.
+## Copyright (C) 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
+##
+## This file can be copied and used freely without restrictions.  It can
+## be used in projects which are not available under the GNU General Public
+## License but which still want to provide support for the GNU gettext
+## functionality.
+## Please note that the actual code of GNU gettext is covered by the GNU
+## General Public License and is *not* in the public domain.
+##
+## Origin: gettext-0.17
+#GETTEXT_MACRO_VERSION = 0.17
+#
+#PACKAGE = @PACKAGE@
+#VERSION = @VERSION@
+
+File: ./build-aux/po/remove-potcdate.sin
+Hash: ff1cc3a86fdab7c5764e80f794afd6f5e81d05421c0e52dc27c4cc93e9546f19
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Sed script that remove the POT-Creation-Date line in the header entry
+## from a POT file.
+##
+## The distinction between the first and the following occurrences of the
+## pattern is achieved by looking at the hold space.
+#/^"POT-Creation-Date: .*"$/{
+#x
+## Test if the hold space is empty.
+#s/P/P/
+#ta
+## Yes it was empty. First occurrence. Remove the line.
+#g
+#d
+#bb
+#:a
+
+File: ./build-aux/reloc-ldflags
+Hash: 7455efaa7fbcc667838f3599223fba7bddc4873e38527f938e7168c709602ffb
+License: GPL-3+ GENERATED FILE
+Copyright: 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Output a system dependent linker command for putting a relocatable library
+## search path into an executable.
+##
+##   Copyright 2003 Free Software Foundation, Inc.
+##   Written by Bruno Haible <bruno@clisp.org>, 2003.
+##
+##   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
+
+File: ./build-aux/relocatable.sh.in
+Hash: 9999da027001765970462a1eefc6bb884cbed4f8e7c548585f0b21c86e9851da
+License: GPL-3+ 
+Copyright: 2003, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## The functions in this file provide support for relocatability of
+## shell scripts.  They should be included near the beginning of each
+## shell script in a relocatable program, by adding @relocatable_sh@
+## and causing the script to be expanded with AC_CONFIG_FILES.  A
+## small amount of additional code must be added and adapted to the
+## package by hand; see doc/relocatable-maint.texi (in Gnulib) for
+## details.
+##
+## Copyright (C) 2003, 2005-2007 Free Software Foundation, Inc.
+##
+## 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.
+##
+
+File: ./build-aux/texinfo.tex
+Hash: 6e6bda9f2252f034e86fb076cb53b27dbe4b35c676205310c46642a86d6bf51d
+License: GPL-3+ 
+Copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995
+Licence-Text: 
+#Header: 
+#% texinfo.tex -- TeX macros to handle Texinfo files.
+#% 
+#% Load plain if necessary, i.e., if running under initex.
+#\expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
+#%
+#\def\texinfoversion{2009-08-14.15}
+#%
+#% Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
+#% 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+#% 2007, 2008, 2009 Free Software Foundation, Inc.
+#%
+#% This texinfo.tex file 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.
+
+File: ./build-aux/update-copyright
+Hash: a49986e631d5bcdc1ae01896d48c4012ff114f92427b2290dc166a7512804b56
+License: GPL 
+Copyright: target rule in maint.mk from gnulib's / 1990-2005, 2007-2009 Free Software / statement is not recognized because the / statements to be updated. For example, you might wish to / &copy; 90,2005,2007-2009 / statement must be formated correctly in / year list to include the current year / 2009 Free Software Foundation, Inc / year intervals. (See "Environment variables" / @{} 1990-2005, 2007-2009 Free Software / statement is recognized in a file and the final
+Licence-Text: 
+#Header: 
+##!/usr/bin/perl -0777 -pi
+## Update an FSF copyright year list to include the current year.
+#
+#my $VERSION = '2009-08-14.18:56'; # UTC
+#
+## Copyright (C) 2009 Free Software Foundation, Inc.
+##
+## 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, 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
+
+File: ./build-aux/useless-if-before-free
+Hash: 3328c2c72241c0c23c28e4c19a5a353b08e308334956478cce81534a6a5cf7e2
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/usr/bin/perl -T
+## Detect instances of "if (p) free (p);".
+## Likewise for "if (p != NULL) free (p);".  And with braces.
+## Also detect "if (NULL != p) free (p);".
+## And with 0 in place of NULL.
+#
+#my $VERSION = '2009-04-16 15:57'; # UTC
+## The definition above must lie within the first 8 lines in order
+## for the Emacs time-stamp write hook (at end) to update it.
+## If you change this file with Emacs, please let the write hook
+## do its job.  Otherwise, update this string manually.
+#
+## Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+## This program is free software: you can redistribute it and/or modify
+
+File: ./build-aux/vc-list-files
+Hash: 37cfcaca7e77bc33ad04c6bc2f69980b41136c6610fa24b30dd929126d28e8eb
+License: GPL-3+ 
+Copyright: $year Free Software Foundation, Inc / 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## List version-controlled file names.
+#
+## Print a version string.
+#scriptversion=2009-07-21.16; # UTC
+#
+## Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#
+## 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
+
+File: ./build-aux/x-to-1.in
+Hash: 435c01c15a67e002b489e7cd3ceaa0680f4817e6410f07f8209bc67a061f9498
+License: GPL-3+ 
+Copyright: 2001, 2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+##
+## Copyright (C) 2001, 2003, 2006 Free Software Foundation, Inc.
+##
+## 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
+
+File: ./check-module
+Hash: 0773e749793f3ec28522fb356985b4f51ce4d7f17b99c7f1ec92a80bfff8b026
+License: GPL-3+ 
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc / 2006 Free Software Foundation, Inc.\n"
+Licence-Text: 
+#Header: 
+##!/usr/bin/perl -w
+## Check a gnulib module.
+#
+## Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#
+## This file 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.
+##
+
+File: ./config/argz.mk
+Hash: 6931c96d920bb98e9705beea49aa8e61ce728439d16bcc702289e9f16d04fe90
+License: GPL 
+Copyright: 1995-1998, 2000-2002, 2006 Free Software Foundation, Inc."\
+Licence-Text: 
+#Header: 
+## Generate argz.c and argz.in.h from glibc sources.
+#
+#glibc_dir = ../glibc
+#glibc_dir = /mirror/d/glibc
+#
+#argz_names = \
+#  append addsep ctsep insert next stringify count \
+#  extract create delete replace
+#argz_files = $(patsubst %, $(glibc_dir)/string/argz-%.c, $(argz_names))
+#
+#define print-header
+#  printf '%s\n'                                                               \
+#"/* Functions for dealing with '\0' separated arg vectors."           \
+#"   Copyright (C) 1995-1998, 2000-2002, 2006 Free Software Foundation, Inc."\
+#"   This file is part of the GNU C Library."                          \
+
+File: ./config/srclist-update
+Hash: 07d2f67dd25798899d772b1db8639368147e43615c175443b9d8720f7ae0d428
+License: GPL-3+ 
+Copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## $Id: srclist-update,v 1.19 2007-03-30 23:44:27 karl Exp $
+##
+## Check for files in directory $1 being up to date, according to the
+## list on stdin.  Don't actually make any changes, just show the diffs.
+##
+## Copyright (C) 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
+##
+## 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
+
+File: ./config/srclist.txt
+Hash: 82bb09655cee0a765f990da640454c5099c5e49f722a0d14d35fde12270d2983
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## $Id: srclist.txt,v 1.152 2007-06-21 18:41:50 karl Exp $
+## Files for which we are not the source.  See ./srclistvars.sh for the
+## variable definitions.
+#
+#$GNUCONFIG/config.guess               build-aux
+#$GNUCONFIG/config.sub         build-aux
+##
+#$AUTOMAKE/lib/compile         build-aux
+#$AUTOMAKE/lib/depcomp         build-aux
+#$AUTOMAKE/lib/elisp-comp      build-aux
+#$AUTOMAKE/lib/gnupload                build-aux
+#$AUTOMAKE/lib/install-sh      build-aux
+#$AUTOMAKE/lib/mdate-sh                build-aux
+#$AUTOMAKE/lib/missing         build-aux
+#$AUTOMAKE/lib/mkinstalldirs   build-aux
+
+File: ./config/srclistvars.sh
+Hash: 009a6f6d36cf2b47a67c2e404d912b491cb310a8653631b8302a8691da1b7f6b
+License: GPL-3+ 
+Copyright: 2002, 2003, 2004 2005, 2006, 2008
+Licence-Text: 
+#Header: 
+## $Id: srclistvars.sh,v 1.28 2006-08-22 19:38:57 eggert Exp $
+## Variables for srclist-update and srclist.txt.
+## Will change for each user.
+#
+## Copyright (C) 2002, 2003, 2004 2005, 2006, 2008
+## Free Software Foundation, Inc.
+#
+## This file 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
+
+File: ./doc/COPYING.LESSERv2
+Hash: c5e2ab2668641c2e13afa9e23551ae614f835ac715d30aec90e5d7bada5ecbff
+License: 
+Copyright: the / 1991, 1999 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#                GNU LESSER GENERAL PUBLIC LICENSE
+#                     Version 2.1, February 1999
+#
+# Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+# 51 Franklin Street, 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.
+#
+#[This is the first released version of the Lesser GPL.  It also counts
+# as the successor of the GNU Library Public License, version 2, hence
+# the version number 2.1.]
+#
+#                          Preamble
+#
+#  The licenses for most software are designed to take away your
+
+File: ./doc/COPYING.LESSERv3
+Hash: f5b4a69119b8d0acfc04d77831874f339432846e9ed129e412b15fb328c9d2c6
+License: 
+Copyright: 2007 Free Software Foundation, Inc. <http://fsf.org/>
+Licence-Text: 
+#Header: 
+#                 GNU LESSER GENERAL PUBLIC LICENSE
+#                       Version 3, 29 June 2007
+#
+# Copyright (C) 2007 Free Software Foundation, Inc. <http://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
+
+File: ./doc/COPYINGv2
+Hash: 2b241f6064bd3616cb72a4d0c6dae9821c891d4c8fd63493b6ad9933c3be72c9
+License: 
+Copyright: 1989, 1991 Free Software Foundation, Inc. / the software, and
+Licence-Text: 
+#Header: 
+#                  GNU GENERAL PUBLIC LICENSE
+#                     Version 2, June 1991
+#
+# Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+# 51 Franklin Street, 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.
+#
+#                          Preamble
+#
+#  The licenses for most software are designed to take away your
+#freedom to share and change it.  By contrast, the GNU General Public
+#License is intended to guarantee your freedom to share and change free
+#software--to make sure the software is free for all its users.  This
+#General Public License applies to most of the Free Software
+
+File: ./doc/COPYINGv3
+Hash: cbf8d8990150fe3b4cd5e988bb081217b05d988766f352fed4de6d2e5a35a58e
+License: 
+Copyright: on the software, and (2) offer you this License / 2007 Free Software Foundation, Inc. <http://fsf.org/>
+Licence-Text: 
+#Header: 
+#                    GNU GENERAL PUBLIC LICENSE
+#                       Version 3, 29 June 2007
+#
+# Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+# Everyone is permitted to copy and distribute verbatim copies
+# of this license document, but changing it is not allowed.
+#
+#                            Preamble
+#
+#  The GNU General Public License is a free, copyleft license for
+#software and other kinds of works.
+#
+#  The licenses for most software and other practical works are designed
+#to take away your freedom to share and change the works.  By contrast,
+#the GNU General Public License is intended to guarantee your freedom to
+
+File: ./doc/Copyright/assign.changes.manual
+Hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
+License: 
+Copyright: holder so / to the Foundation is to sign an assignment / on the new version
+Licence-Text: 
+#Header: 
+#The way to assign copyright to the Foundation is to sign an assignment
+#contract.  This is what legally makes the FSF the copyright holder so
+#that we can register the copyright on the new version.
+#I'm assuming that you wrote these changes yourself;
+#if other people wrote parts, we may need papers from them.
+#
+#If you are employed to do writing (even at a university), or have
+#made an agreement with your employer or school saying it owns text
+#you write, then you and we need a signed piece of paper from your
+#employer disclaiming rights to your changes.
+#
+#The disclaimer should be signed by a vice president or general manager
+#of the company.  If you can't get at them, anyone else authorized to
+#license manuals produced there will do.  Here is a sample wording:
+
+File: ./doc/Copyright/assign.future.manual
+Hash: 3a9d0d9203ccf9ec91b1a02ec08b28760a917204fc438de6b33a5e0f5c85e3e5
+License: 
+Copyright: holder so / to the Foundation is to sign an assignment / on the new version
+Licence-Text: 
+#Header: 
+#The way to assign copyright to the Foundation is to sign an assignment
+#contract.  This is what legally makes the FSF the copyright holder so
+#that we can register the copyright on the new version.
+#I'm assuming that you wrote these changes yourself;
+#if other people wrote parts, we may need papers from them.
+#
+#If you are employed to do writing (even at a university), or have
+#made an agreement with your employer or school saying it owns text
+#you write, then you and we need a signed piece of paper from your
+#employer disclaiming rights to your changes.
+#
+#The disclaimer should be signed by a vice president or general manager
+#of the company.  If you can't get at them, anyone else authorized to
+#license manuals produced there will do.  Here is a sample wording:
+
+File: ./doc/Copyright/assign.manual
+Hash: fc744c2d1b5aa2c596922b17b46b760d852e99717883fe9fd547d5f5bd318a9c
+License: 
+Copyright: on this manual to the Foundation is to / interest
+Licence-Text: 
+#Header: 
+#The way to assign copyright on this manual to the Foundation is to
+#sign an assignment contract.
+#
+#In addition, if you have made an agreement with an employer or school
+#to give them rights to such work, or if it might be considered part of
+#your job, then you and we need a signed piece of paper from your
+#employer or school, disclaiming rights to the manual.
+#
+#The disclaimer should be signed by a vice president or general manager
+#of the company.  If you can't get at them, anyone else authorized to
+#license works produced there will do.  Here is a sample wording:
+#
+#  Digital Stimulation Corporation hereby disclaims all copyright interest
+#  in the manual, "The Automatic Manual", written by Mr. Write, including
+#  both the present version of the manual and his/her future changes and
+
+File: ./doc/Copyright/assign.translation.manual
+Hash: 5fd32468982f7402a68b288a2906b1351ffe45a2bb839b5ae13ab97a63827460
+License: 
+Copyright: on the new version. I'm assuming that you / holder so that / to the Foundation is to sign an assignment
+Licence-Text: 
+#Header: 
+#The way to assign copyright to the Foundation is to sign an assignment
+#contract.  This is what legally makes the FSF the copyright holder so that
+#we can register the copyright on the new version.  I'm assuming that you
+#did all the translating yourself; if other people wrote parts, we may need
+#papers from them as well.
+#
+#If you are employed to do writing (even at a university), or have
+#made an agreement with your employer or school saying it owns text
+#you write, then you and we need a signed piece of paper from your
+#employer disclaiming rights to your changes.
+#
+#The disclaimer should be signed by a vice president or general manager
+#of the company.  If you can't get at them, anyone else authorized to
+#license manuals written there will do.  Here is a sample wording:
+
+File: ./doc/Copyright/conditions.text
+Hash: a0ea940fa380501407151c5ccd168afabc1749eab7ed1ccda3b32b2b85b9255a
+License: 
+Copyright: holder, the Foundation can sue anyone who tries to / to the Free Software Foundation / laws, even though / means signing a contract that makes the Free / law for helping / to defend users' freedom, by means
+Licence-Text: 
+#Header: 
+#Legal Issues about Contributing Code to GNU   last updated 8 Feb 2009
+#
+#Project GNU has to be careful to obey copyright laws, even though
+#these laws are wrong when they stop people from sharing generally
+#useful published information such as software, because we are in the
+#public eye.  We also use copyright to defend users' freedom, by means
+#of copyleft (though this does not excuse copyright law for helping
+#to make software proprietary).
+#
+#This means that if you want to contribute software to GNU, you have to
+#do something to give us legal permission to use it.  There are three
+#ways this can be done:
+#
+#* Assign the copyright to the Free Software Foundation.
+#This allows the FSF to act to stop violations of the GPL.
+
+File: ./doc/Copyright/disclaim.changes.manual
+Hash: 757e8f68162152a11f39cc06de884e60f95476ecd4cd382194c22af4d7c2dbfe
+License: 
+Copyright: interest in my
+Licence-Text: 
+#Header: 
+#I'd like to ask you to sign a disclaimer for your changes,
+#thus putting them in the public domain.  (For small to medium changes
+#such as this, that is just as good for us as assigning copyright.)
+#I'm assuming that you wrote these changes yourself;
+#if other people wrote parts, we may need papers from them.
+#
+#    I, <name of person>, hereby disclaim all copyright interest in my
+#    changes and enhancements to the manual <manual>.
+#
+#    I affirm that I have no other intellectual property interest that
+#    would undermine this release.  I represent that these changes and
+#    enhancements are my own and not a copy of someone else's work.
+#
+#    <signature and date>
+
+File: ./doc/Copyright/disclaim.manual
+Hash: 8bb37e0674a0a2ffd0a89682057126b8e58280dde15573436bf8b307c5db7c92
+License: 
+Copyright: interest in my / interest
+Licence-Text: 
+#Header: 
+#I'd like to ask you to sign a disclaimer for the manual, thus putting
+#it in the public domain.  (For a small manual such as this, it's not
+#worth our trying to assert a copyleft.)
+#
+#    I, <name of person>, hereby disclaim all copyright interest in my
+#    manual <manual> which does <one-line desription>.
+#
+#    I affirm that I have no other intellectual property interest
+#    that would undermine this release, and will do nothing to undermine
+#    it in the future.  I represent that the work is my own and not
+#    a copy of someone else's work.
+#
+#    <signature and date>
+#
+#*Don't forget to include the date.*
+
+File: ./doc/Copyright/disclaim.program
+Hash: 1004a718603464ea52341822431714f6de8c4bdcf58f20f53f418a13c0457c30
+License: 
+Copyright: interest in my / interest
+Licence-Text: 
+#Header: 
+#I'd like to ask you to sign a disclaimer for the program, thus putting
+#it in the public domain.  (For a small program such as this, it's not
+#worth our trying to assert a copyleft.)
+#
+#    I, <name of person>, hereby disclaim all copyright interest in my
+#    program <program> which does <one-line desription>.
+#
+#    I affirm that I have no other intellectual property interest
+#    that would undermine this release, and will do nothing to undermine
+#    it in the future.  I represent that the work is my own and not
+#    a copy of someone else's work.
+#
+#    <signature and date>
+#
+#*Don't forget to include the date.*
+
+File: ./doc/Copyright/request-assign.changes
+Hash: 2ba32591db9fee4f110bdbcbe22f674ab921b555585aa905d212b9c56b4c01c4
+License: 
+Copyright: registration, what country are you a citizen of?]
+Licence-Text: 
+#Header: 
+#Please email the following information to assign@gnu.org, and we will
+#send you the assignment form that covers the changes you have already
+#written.  That form will cover subsequent corrections to those
+#changes, but it will not cover other unrelated future changes to the
+#same program.
+#
+#Please use your full legal name (in ASCII characters) as the subject line of the message.
+#---------------------------------------------------------------------
+#REQUEST:  SEND FORM FOR CHANGES ALREADY MADE
+#
+#[What is the name of the program or package you're contributing to?]
+#
+#
+#[Did you copy any files or text written by someone else in these changes?
+#Even if that material is free software, we need to know about it.]
+
+File: ./doc/Copyright/request-assign.future
+Hash: 9ba7d169c4fc06b01a773daf5ff5c2a9b2e52ac0b79a3d41aa123c51c9755a03
+License: 
+Copyright: registration, what country are you a citizen of?]
+Licence-Text: 
+#Header: 
+#Please email the following information to assign@gnu.org, and we
+#will send you the assignment form for your past and future changes.
+#
+#Please use your full legal name (in ASCII characters) as the subject
+#line of the message.
+#----------------------------------------------------------------------
+#REQUEST: SEND FORM FOR PAST AND FUTURE CHANGES
+#
+#[What is the name of the program or package you're contributing to?]
+#
+#
+#[Did you copy any files or text written by someone else in these changes?
+#Even if that material is free software, we need to know about it.]
+
+File: ./doc/Copyright/request-assign.program
+Hash: f1c1a0ce3e67f88c09551e5dde215d5bf03022945d5fce5d47eb781f971a6699
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Please email the following information to fsf-records@gnu.org, and we
+#will send you the assignment form that covers your program.
+#
+#Please use your full legal name (in ASCII characters) as the subject
+#line of the message.
+#
+#
+#[What is the name of the program or package you're contributing?]
+#
+#
+#[Will this become part of a larger GNU package?  If so, what package?]
+#
+#
+#[Did you copy any files or text written by someone else into the
+#program?  Even if that material is free software, we need to know
+
+File: ./doc/Copyright/request-disclaim.changes
+Hash: 5d1569edac388e95ffe46d8a867730615f1a0ff33075596038d3e7a3eb06ee36
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Please email the following information to assign@gnu.org, and we will
+#send you the disclaimer form for your changes.  This form is preferred
+#when your changes are small, they do not add any nontrivial new
+#files, and you are finished making them (aside perhaps from small bug
+#fixes).
+#
+#If you would like to make further contributions to the same package,
+#and you would like to avoid the need to sign more papers when you
+#contribute them, you have another option: to sign a copyright
+#assignment covering your future changes.  If that is what you want to
+#do, please tell the maintainer you would prefer to sign an assignment
+#of past and future changes.
+#
+#
+#Please use your full legal name (in ASCII characters) as the subject
+
+File: ./doc/INSTALL
+Hash: 71a35b239f3b448ef8b27fd63a6722f5cbec0a5bc5f700deb5038afa3caa84ba
+License: 
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
+Licence-Text: 
+#Header: 
+#Installation Instructions
+#*************************
+#
+#Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+#2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   Copying and distribution of this file, with or without modification,
+#are permitted in any medium without royalty provided the copyright
+#notice and this notice are preserved.  This file is offered as-is,
+#without warranty of any kind.
+#
+#Basic Installation
+#==================
+#
+#   Briefly, the shell commands `./configure; make; make install' should
+
+File: ./doc/INSTALL.ISO
+Hash: 6e5a01010be07ff0d4d534b3b790b151a8e39cbc596c45033bf1d82ec269eed6
+License: 
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
+Licence-Text: 
+#Header: 
+#Installation Instructions
+#*************************
+#
+#Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+#2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   Copying and distribution of this file, with or without modification,
+#are permitted in any medium without royalty provided the copyright
+#notice and this notice are preserved.  This file is offered as-is,
+#without warranty of any kind.
+#
+#Basic Installation
+#==================
+#
+#   Briefly, the shell commands './configure; make; make install' should
+
+File: ./doc/INSTALL.UTF-8
+Hash: 0b6f2758c270e39f2120bc2beb256a3dcdd878e3ab6f36c81cfe1110d4a65fbb
+License: 
+Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
+Licence-Text: 
+#Header: 
+#Installation Instructions
+#*************************
+#
+#Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+#2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   Copying and distribution of this file, with or without modification,
+#are permitted in any medium without royalty provided the copyright
+#notice and this notice are preserved.  This file is offered as-is,
+#without warranty of any kind.
+#
+#Basic Installation
+#==================
+#
+#   Briefly, the shell commands â€˜./configure; make; make install’ should
+
+File: ./doc/Makefile
+Hash: e588412f4808f445922802b7c5310650b2edc4fc1d22da096884812313562f82
+License: 
+Copyright: 2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Makefile for gnulib doc.
+## Copyright (C) 2004, 2006-2009 Free Software Foundation, Inc.
+##
+## Copying and distribution of this file, with or without modification,
+## are permitted in any medium without royalty provided the copyright
+## notice and this notice are preserved.
+#
+#doc = gnulib
+#
+#MAKEINFO = env LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo
+#TEXI2HTML = $(MAKEINFO) --no-split --reference-limit=2000 --html
+#
+#%.info: %.texi
+#      LANG= LC_MESSAGES= LC_ALL= LANGUAGE= makeinfo --no-split --reference-limit=2000 $<
+
+File: ./doc/README
+Hash: 5eb4b0ac21e256e6b201f1d6038cfc9fe8c0d168484e6471bda54699c84b88c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Misc notes
+#----------
+#
+#regexprops-generic.texi is generated via a utility in findutils.
+#
+#How to update gnulib manual on www.gnu.org
+#------------------------------------------
+#
+#1) You need a non-anonymous checkout of the web pages directory.
+#
+#   $ cvs -d :ext:jas@cvs.savannah.gnu.org:/web/gnulib \
+#         checkout gnulib
+#
+#2) Get familiar with the instructions for web page maintainers.
+#   http://www.gnu.org/server/standards/readme_index.html
+
+File: ./doc/acl-cygwin.txt
+Hash: 7512950629f04d795e20ac566c5fc7f846b829a09031acfd3ba424841e3f6e71
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#$ getfacl --help
+#Usage: getfacl [-adn] FILE [FILE2...]
+#Display file and directory access control lists (ACLs).
+#
+#  -a, --all      display the filename, the owner, the group, and
+#                 the ACL of the file
+#  -d, --dir      display the filename, the owner, the group, and
+#                 the default ACL of the directory, if it exists
+#  -h, --help     output usage information and exit
+#  -n, --noname   display user and group IDs instead of names
+#  -v, --version  output version information and exit
+#
+#When multiple files are specified on the command line, a blank
+#line separates the ACLs for each file.
+#For each argument that is a regular file, special file or
+
+File: ./doc/acl-resources.txt
+Hash: 65da96ac4e110970dd7bee204441e94d575e83310791c7f95365082981b55962
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#General introduction:
+#  http://www.suse.de/~agruen/acl/linux-acls/online/
+#
+#
+#POSIX ACLs
+#
+#Documents from POSIX.1e (headers & functions) and POSIX.2c (utilities):
+#  http://wt.xpilot.org/publications/posix.1e/download.html
+#
+#
+#Linux ACLs
+#
+#Introduction:
+#  http://www.suse.de/~agruen/acl/linux-acls/online/
+#Hands-on tutorial:
+
+File: ./doc/agpl-3.0.texi
+Hash: 77c3f2a9718accc065836d61cf2575b50220f1f3c121e281fec0a06ee3ad8b46
+License: 
+Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer
+Licence-Text: 
+#Header: 
+#@c The GNU Affero General Public License.
+#@center Version 3, 19 November 2007
+#
+#@c This file is intended to be included within another document,
+#@c hence no sectioning command or @node.
+#
+#@display
+#Copyright @copyright{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/}
+#
+#Everyone is permitted to copy and distribute verbatim copies of this
+#license document, but changing it is not allowed.
+#@end display
+#
+#@heading Preamble
+
+File: ./doc/alloca-opt.texi
+Hash: ba0ad6232fbf3ba81b9dece15497df973cbcf4a4b7e2295ca66b0bed803d82da
+License: 
+Copyright: 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'alloca-opt'.
+#
+#@c Copyright (C) 2004, 2007 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The alloca-opt module provides for a function @code{alloca} which allocates
+#memory on the stack, where the system allows it. A memory block allocated with
+#@code{alloca} exists only until the function that calls @code{alloca} returns
+#or exits abruptly.
+
+File: ./doc/alloca.texi
+Hash: abaafa45b821b2064d735be4848a476c92e67742811e7c991eefbf8b0314210c
+License: 
+Copyright: 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'alloca'.
+#
+#@c Copyright (C) 2004, 2007 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The alloca module provides for a function @code{alloca} which allocates
+#memory on the stack, where the system allows it. A memory block allocated with
+#@code{alloca} exists only until the function that calls @code{alloca} returns
+#or exits abruptly.
+
+File: ./doc/c-ctype.texi
+Hash: 02681cc5ffcc4bb503782c8ce7f5b053f524a61d77b10dfd3c8d29e8696a8cd5
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'c-ctype'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-ctype} module contains functions operating on single-byte
+#characters, like the functions in @code{<ctype.h>}, that operate as if the
+#locale encoding was ASCII.  (The "C" locale on many systems has the locale
+#encoding "ASCII".)
+
+File: ./doc/c-strcase.texi
+Hash: 12a8966489a243d56b5727a843e8d199ce1be4cbddf810d6e0546fc0d47c0db9
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'c-strcase'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strcase} module contains case-insensitive string comparison
+#functions operating on single-byte character strings, like the functions in
+#@code{<strings.h>}, that operate as if the locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+
+File: ./doc/c-strcaseeq.texi
+Hash: 07a09de098c41135d2b8c252e34d16942a2df705d4165259604efc2bc89f32df
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'c-strcaseeq'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strcaseeq} module contains an optimized case-insensitive
+#string comparison function operating on single-byte character strings, that
+#operate as if the locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+
+File: ./doc/c-strcasestr.texi
+Hash: 28f551e29d750587564a6c9d605d880b4adc908e73ba20486dad95089bcbe988
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'c-strcasestr'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strcasestr} module contains a case-insensitive string search
+#function operating on single-byte character strings, that operate as if the
+#locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+
+File: ./doc/c-strstr.texi
+Hash: dc0b4e2b4ae14f6c0b231a1cb517386171cdd2e79bad16e5c8468a6d3f05d863
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'c-strstr'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strstr} module contains a substring search function operating
+#on single-byte character strings, that operate as if the locale encoding
+#was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+
+File: ./doc/c-strtod.texi
+Hash: f12b034c095af6fedebe50970c03692a308cd6d76c710040021e05e14111d0e6
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'c-strtod'.
+#
+#@c Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strtod} module contains a string to number (@samp{double})
+#conversion function operating on single-byte character strings, that operates
+#as if the locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+
+File: ./doc/c-strtold.texi
+Hash: acd8d275bc49ba09e74845ef9ab62f76fe1ec2a82b7358a85790af57c33de3eb
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c Documentation of gnulib module 'c-strtold'.
+#
+#@c Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{c-strtold} module contains a string to number (@samp{long double})
+#conversion function operating on single-byte character strings, that operates
+#as if the locale encoding was ASCII.
+#(The "C" locale on many systems has the locale encoding "ASCII".)
+
+File: ./doc/ctime.texi
+Hash: c54a4356bb5de6dc3dd73b82b8ba0e40975a2cf465b639f8cf8456097c6f8658
+License: 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@node ctime
+#@section ctime
+#@findex ctime
+#
+#@c Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{ctime} function need not be reentrant, and consequently is
+#not required to be thread safe.  Implementations of @code{ctime}
+
+File: ./doc/error.texi
+Hash: a5f78c9c537fb0dbb6b9d6740073f5c7cf4f1bc3af0531c33806fbfd624de688
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@node error and progname
+#@section error and progname
+#@findex error
+#@findex progname
+#@vindex program_name
+#
+#@c Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+
+File: ./doc/fdl-1.2.texi
+Hash: 6f673a8c0082124229a9a100543bd41368cfe3db307ab0db0b89cf84c611cf1b
+License: 
+Copyright: law / holder saying it can be / @{} 2000,2001,2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c The GNU Free Documentation License.
+#@center Version 1.2, November 2002
+#
+#@c This file is intended to be included within another document,
+#@c hence no sectioning command or @node.
+#
+#@display
+#Copyright @copyright{} 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.
+#@end display
+#
+#@enumerate 0
+
+File: ./doc/fdl-1.3.texi
+Hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
+License: 
+Copyright: law / holder saying it can be / @{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c The GNU Free Documentation License.
+#@center Version 1.3, 3 November 2008
+#
+#@c This file is intended to be included within another document,
+#@c hence no sectioning command or @node.
+#
+#@display
+#Copyright @copyright{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
+#@uref{http://fsf.org/}
+#
+#Everyone is permitted to copy and distribute verbatim copies
+#of this license document, but changing it is not allowed.
+#@end display
+#
+#@enumerate 0
+
+File: ./doc/fdl.texi
+Hash: ed01a43bc4273db8688a62f70b1b61c27a10e4fe3ba749a71c8f1704f7d11a84
+License: 
+Copyright: law / holder saying it can be / @{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c The GNU Free Documentation License.
+#@center Version 1.3, 3 November 2008
+#
+#@c This file is intended to be included within another document,
+#@c hence no sectioning command or @node.
+#
+#@display
+#Copyright @copyright{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
+#@uref{http://fsf.org/}
+#
+#Everyone is permitted to copy and distribute verbatim copies
+#of this license document, but changing it is not allowed.
+#@end display
+#
+#@enumerate 0
+
+File: ./doc/func.texi
+Hash: f8cd19fcf35037aa6fd49e493bd85eb6f696afa87e1bc56fbf2ee045329f20e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node func
+#@section func
+#
+#The @code{func} module makes sure that you can use the predefined
+#identifier @code{__func__} as defined by C99 in your code.
+#
+#A small example is:
+#
+#@smallexample
+##include <config.h>
+##include <stdio.h> /* for printf */
+#
+#int main (void)
+#@{
+#    printf ("%s: hello world\n", __func__);
+
+File: ./doc/gcd.texi
+Hash: aa4594d335a46b562a96ebd76cabc7451a3ba2737bf0b032f1b66f18ab3fc5cb
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@node gcd
+#@section gcd: greatest common divisor
+#@findex gcd
+#
+#@c Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{gcd} function returns the greatest common divisor of two numbers
+#@code{a > 0} and @code{b > 0}.  It is the caller's responsibility to ensure
+
+File: ./doc/gendocs_template
+Hash: 61dc5a61685d6ce9d5377c109bba5dc71089a86add68e14628f17ca13697d849
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#<!--#include virtual="/server/header.html" -->
+#<title>%%TITLE%% - GNU Project - Free Software Foundation (FSF)</title>
+#<!--#include virtual="/server/banner.html" -->
+#<h2>%%TITLE%%</h2>
+#
+#<!-- This document is in XML, and xhtml 1.0 -->
+#<!-- Please make sure to properly nest your tags -->
+#<!-- and ensure that your final document validates -->
+#<!-- consistent with W3C xhtml 1.0 and CSS standards -->
+#<!-- See validator.w3.org -->
+#
+#<address>Free Software Foundation</address>
+#<address>last updated %%DATE%%</address>
+#
+#<p>This manual (%%PACKAGE%%) is available in the following formats:</p>
+
+File: ./doc/gendocs_template_min
+Hash: 8599a5f69e6110fe324e413e04c4920db1f37a9becf5db55f27a6d132bbfb8b2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#<?xml version="1.0" encoding="utf-8" ?>
+#<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+#    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+#<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+#
+#<head>
+#<title>%%TITLE%% - GNU Project - Free Software Foundation (FSF)</title>
+#<meta http-equiv="content-type" content='text/html; charset=utf-8' />
+#<link rel="stylesheet" type="text/css" href="/gnu.css" />
+#<link rev="made" href="webmasters@gnu.org" />
+#</head>
+#
+#<!-- This document is in XML, and xhtml 1.0 -->
+#<!-- Please make sure to properly nest your tags -->
+#<!-- and ensure that your final document validates -->
+
+File: ./doc/getdate.texi
+Hash: b49cb20e0eb9f85da9aeb64338b8442bd47b45259faf2e6fce118e6c90af6579
+License: 
+Copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
+Licence-Text: 
+#Header: 
+#@c GNU date syntax documentation
+#
+#@c Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+#@c 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#@node Date input formats
+#@chapter Date input formats
+
+File: ./doc/glibc-functions/accept4.texi
+Hash: b17ebc577f3ee392f19100a7b506ff1a38cc1328a92bea909d6d34690aa2bed2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node accept4
+#@subsection @code{accept4}
+#@findex accept4
+#
+#Gnulib module: accept4
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/acct.texi
+Hash: d37daf7575d441486ace90191eefb3bea667e4d10eff5e8a14a8c41493b0fab8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node acct
+#@subsection @code{acct}
+#@findex acct
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/addmntent.texi
+Hash: 859dc5755ca851474f5acfa8db53055f59573e5bbaf332b8dd8e5754fda11b50
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node addmntent
+#@subsection @code{addmntent}
+#@findex addmntent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/addseverity.texi
+Hash: 6e44d5223f4987a83f8c4db55cfdc1f9e81c6d998c1853716aba498d5d9a1535
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node addseverity
+#@subsection @code{addseverity}
+#@findex addseverity
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/adjtime.texi
+Hash: cbc4f68c7f77addbdc16bd13629e75db5fcff64a0567488ceb04a9459e6b992d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node adjtime
+#@subsection @code{adjtime}
+#@findex adjtime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/adjtimex.texi
+Hash: 5c618ea0205407dfab68f9bf13e88e944c25e7be821a02d1e42f49998b5ed63b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node adjtimex
+#@subsection @code{adjtimex}
+#@findex adjtimex
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/advance.texi
+Hash: 83424853aeaa0dbc7252aa0ae47b7e9f9b633576a94942c0519d53e8e4fbf526
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node advance
+#@subsection @code{advance}
+#@findex advance
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/aio_init.texi
+Hash: 9776ff627d5968a12d86d200038f926555e224daed04cde21769fc19b58856f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio_init
+#@subsection @code{aio_init}
+#@findex aio_init
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_err_exit_status.texi
+Hash: 5ad7e936e9599c8501ca2844805be318d773b5d5c7e96714c730596e5bf02292
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_err_exit_status
+#@subsection @code{argp_err_exit_status}
+#@findex argp_err_exit_status
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_error.texi
+Hash: 72fdeba016c2e94cd219221fd18adfb4d13c5ba9759e2a0ec006c587799f0239
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_error
+#@subsection @code{argp_error}
+#@findex argp_error
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_failure.texi
+Hash: 0f61197bb59045af63a046f1456ddcc1efe393b7d73e170c2c112ac960feedd3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_failure
+#@subsection @code{argp_failure}
+#@findex argp_failure
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_help.texi
+Hash: 773dd3780b48dabb78efa3e3f644e7c823f67de3b7e87ec93b0ec5cac2323bfc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_help
+#@subsection @code{argp_help}
+#@findex argp_help
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_parse.texi
+Hash: 3ca5263fc5663150b7dc9362a3114bd350d03d1e3e5be932c07299810577ebe2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_parse
+#@subsection @code{argp_parse}
+#@findex argp_parse
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_program_bug_address.texi
+Hash: 3abb0a66f95fb062ec1970dbc8bf29e7fbf683b64d7334d38c1c58e2e175a8ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_program_bug_address
+#@subsection @code{argp_program_bug_address}
+#@findex argp_program_bug_address
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_program_version.texi
+Hash: ff08b5d2808dc3501de2605f1631bd2e0a60676ba06b47d3a6faa09728c9989f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_program_version
+#@subsection @code{argp_program_version}
+#@findex argp_program_version
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_program_version_hook.texi
+Hash: 7a8f425b15b7e6abda323db20c96f40c5b56729b1bd3ddb9ab1f2130c590935c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_program_version_hook
+#@subsection @code{argp_program_version_hook}
+#@findex argp_program_version_hook
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_state_help.texi
+Hash: 10e9a562637cf6c60d5b43a4e8512e74cd9a74db87707e628300d49e0e4f2512
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_state_help
+#@subsection @code{argp_state_help}
+#@findex argp_state_help
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argp_usage.texi
+Hash: ece258de9630be5b079b97514e35aca806a96c4ebff29277d1c07379649f5e7d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp_usage
+#@subsection @code{argp_usage}
+#@findex argp_usage
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/argz_add.texi
+Hash: 18f2bcea93aa6152c099688d18a0b6ae9f76590ab025af5ec39e16865f55f96c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_add
+#@subsection @code{argz_add}
+#@findex argz_add
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_add_sep.texi
+Hash: 3cdf339fc9645ea7cdac7064100ed6a6fecefa47e48581d2c75e8335220b9fcd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_add_sep
+#@subsection @code{argz_add_sep}
+#@findex argz_add_sep
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_append.texi
+Hash: ae244a6da5f6ca8ef7107924f21425880f8154ab51c14f8fb43be0f5bb7c4f52
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_append
+#@subsection @code{argz_append}
+#@findex argz_append
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_count.texi
+Hash: 599ba24548a6631c721c4a913df6101ad0f19f0f7bfecd4549cc20fba44c1252
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_count
+#@subsection @code{argz_count}
+#@findex argz_count
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_create.texi
+Hash: 6b7edc8f20ff0749926679da311d9d61a120537cb7e071ee58074a4646d19ca8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_create
+#@subsection @code{argz_create}
+#@findex argz_create
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_create_sep.texi
+Hash: ecd63dedd9dabcd06f22d5430d23801af84b2cfd41025684200edc2f9f951256
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_create_sep
+#@subsection @code{argz_create_sep}
+#@findex argz_create_sep
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_delete.texi
+Hash: c5327fcde9bb049ceb161f6953d623b95ee853ed45e9616599b6acc5b2097039
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_delete
+#@subsection @code{argz_delete}
+#@findex argz_delete
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_extract.texi
+Hash: a09a50dff90d595c24ae23bdccfbb09746c37bffdc88cc2b94d1864b1a9e738b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_extract
+#@subsection @code{argz_extract}
+#@findex argz_extract
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_insert.texi
+Hash: 85103c1f755497213b705dcb1ecf79bf4d7564fe11243f89c5a611b642a6dde3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_insert
+#@subsection @code{argz_insert}
+#@findex argz_insert
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_next.texi
+Hash: 254e88751b133e09414abfe834861a0459847c67e138f81405303735f07fdf9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_next
+#@subsection @code{argz_next}
+#@findex argz_next
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_replace.texi
+Hash: f9fc8e8e0ef61fb433d129ebe214dbceab9d516d9500a9721fccc477e35cd882
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_replace
+#@subsection @code{argz_replace}
+#@findex argz_replace
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/argz_stringify.texi
+Hash: 2e019d0347b285bd91926d5e328effc134b65090ca4bdb5bed2e6ec696baea24
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz_stringify
+#@subsection @code{argz_stringify}
+#@findex argz_stringify
+#
+#Gnulib module: argz
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#
+#@item
+#This function is broken on some platforms:
+
+File: ./doc/glibc-functions/asprintf.texi
+Hash: 4d17afdfffec5aaf5d84729b98b8b39011e25b70ce4a732557fcbb77ec8941e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asprintf
+#@subsection @code{asprintf}
+#@findex asprintf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/authdes_create.texi
+Hash: af49562730f4bc1eae2bf729db613caedd3c19062f2e837d3c451c9dbbe0bf6d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node authdes_create
+#@subsection @code{authdes_create}
+#@findex authdes_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/authdes_getucred.texi
+Hash: 3962401affaa1079d18bf6751923e893ff9ad89ac80ef2a1e4319d506af10472
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node authdes_getucred
+#@subsection @code{authdes_getucred}
+#@findex authdes_getucred
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/authdes_pk_create.texi
+Hash: 49a5ec10bf2dcafa8d0765e2c3399c5485bda1fe79ab9e8b963d5b9b448df435
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node authdes_pk_create
+#@subsection @code{authdes_pk_create}
+#@findex authdes_pk_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/authnone_create.texi
+Hash: e2755104eebcd1c86babce2250ea655d235714bacc7ac9af5fff656edbb4ff04
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node authnone_create
+#@subsection @code{authnone_create}
+#@findex authnone_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/authunix_create.texi
+Hash: 2249d61f5ba791a25990c863209b5e439f4be7bacaa22901a17fca65ff57c5d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node authunix_create
+#@subsection @code{authunix_create}
+#@findex authunix_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/authunix_create_default.texi
+Hash: e2042c8ffb02a472907f345c6a79e7d47ebdb04ccdeda8fcc0d8e0247419d5ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node authunix_create_default
+#@subsection @code{authunix_create_default}
+#@findex authunix_create_default
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/backtrace.texi
+Hash: 9218fc11f85121754f3dce8759f4abfc2e96678cdcde0b64b8c5bc1dac4784fc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node backtrace
+#@subsection @code{backtrace}
+#@findex backtrace
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/backtrace_symbols.texi
+Hash: 8cd5973763a4a86ca3d03a9cd93b877ccae2393c527f1c27316b5179d6d4a5c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node backtrace_symbols
+#@subsection @code{backtrace_symbols}
+#@findex backtrace_symbols
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/backtrace_symbols_fd.texi
+Hash: 568caed6a6ac65d5fd1787fd3dffafa08ff544cb3fab9405ebefa12bbe3a264f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node backtrace_symbols_fd
+#@subsection @code{backtrace_symbols_fd}
+#@findex backtrace_symbols_fd
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/bdflush.texi
+Hash: c9d58ca272a569549bccbc6cf430bbd0e3766a2fd96f4f85d28b264e7c3aac4f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bdflush
+#@subsection @code{bdflush}
+#@findex bdflush
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/bind_textdomain_codeset.texi
+Hash: 99bf7d082540b4e76c5810e19f258198590dcbd8ed95ba7f249e11e2385ebbe5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bind_textdomain_codeset
+#@subsection @code{bind_textdomain_codeset}
+#@findex bind_textdomain_codeset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/bindresvport.texi
+Hash: 407362b84b67ca56f509dfede5907a628e1dbc66d95aaf1fade0d8278be1ab76
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bindresvport
+#@subsection @code{bindresvport}
+#@findex bindresvport
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin 1.5.x, mingw, BeOS.
+
+File: ./doc/glibc-functions/bindtextdomain.texi
+Hash: 893f7472a65a60adec27ff2fd59fc1b10ef4c8c79721df77b684108c5bd4b3c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bindtextdomain
+#@subsection @code{bindtextdomain}
+#@findex bindtextdomain
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/brk.texi
+Hash: 79f13ae11705a8f029f92450cb76d735a551947e2dc605f30eb41181253dcbfd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node brk
+#@subsection @code{brk}
+#@findex brk
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw.
+
+File: ./doc/glibc-functions/bswap_16.texi
+Hash: 8637c5832585d431bfc3e334d7b4f7b28dba3867e892c9bb3212b23a83fd7832
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bswap_16
+#@subsection @code{bswap_16}
+#@findex bswap_16
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/bswap_32.texi
+Hash: 45c27263a3c7a55e61f4965f1a769c37aec80440fea88a85fac0c011a534fab0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bswap_32
+#@subsection @code{bswap_32}
+#@findex bswap_32
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/bswap_64.texi
+Hash: 0c90737dd8475488dfe04bdea14b07139f68b9db3ffe7ef7413b6d0c90aa050f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bswap_64
+#@subsection @code{bswap_64}
+#@findex bswap_64
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/callrpc.texi
+Hash: b20e0a5aabcff3296d32c26431ce49c9d028ceed0945caea1ac15b3c39b11cc1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node callrpc
+#@subsection @code{callrpc}
+#@findex callrpc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/canonicalize_file_name.texi
+Hash: 88ff6a4a9c1a9c691748ecbfc050f992518fae1d30dc880577caea53f2fd759c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node canonicalize_file_name
+#@subsection @code{canonicalize_file_name}
+#@findex canonicalize_file_name
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/capget.texi
+Hash: 30ca364f553845f7411c9144e8fc54534e63b47c00f1d2d8b7d42651556ee971
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node capget
+#@subsection @code{capget}
+#@findex capget
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/capset.texi
+Hash: 0d46ec1a25dc5ae5c2a09e23c6df148f90bc4f6a3f339202728bc731521a79bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node capset
+#@subsection @code{capset}
+#@findex capset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/cbc_crypt.texi
+Hash: 2fafbda5215452dabaecd6ae338b1b42292fc7649957d7dfd53298e125c73aff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cbc_crypt
+#@subsection @code{cbc_crypt}
+#@findex cbc_crypt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/cfmakeraw.texi
+Hash: e17dc832db4056f94397e2cca5eebec2b7e7ebbf4dfd1961d7d04c2a54348d78
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cfmakeraw
+#@subsection @code{cfmakeraw}
+#@findex cfmakeraw
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/cfree.texi
+Hash: 3bf2ea530728c4bf2675d2c138bc897e2c61fb86e52eb1aaa5f595ee3ac1334f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cfree
+#@subsection @code{cfree}
+#@findex cfree
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/cfsetspeed.texi
+Hash: 3fa0159499537d1d12632e4721c20870e24b362744100c8ebf05001ac60def9a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cfsetspeed
+#@subsection @code{cfsetspeed}
+#@findex cfsetspeed
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/chroot.texi
+Hash: 939c1364cb648d6985389a66cee0f7eafea4bbfeb9d87202357b7a923da9c3c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node chroot
+#@subsection @code{chroot}
+#@findex chroot
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, BeOS.
+
+File: ./doc/glibc-functions/clearenv.texi
+Hash: 45a56cc1e9cf0437cab4c9d9ef7939585bcd832ff2630a99ac47277be6afa7ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clearenv
+#@subsection @code{clearenv}
+#@findex clearenv
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/clearerr_unlocked.texi
+Hash: 18ac3bd638d52e5eea084f0693462f14b38c9236ffa469c9d3523413afead17a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clearerr_unlocked
+#@subsection @code{clearerr_unlocked}
+#@findex clearerr_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/clnt_broadcast.texi
+Hash: 1c8663af16571cdf3d9365225d9a0e98784cc856191f3febbc639bd263193ca9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnt_broadcast
+#@subsection @code{clnt_broadcast}
+#@findex clnt_broadcast
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clnt_create.texi
+Hash: 9b8db11b5c1ea0786cad25ac17504a90a35d649d816e719443ded731822eebc4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnt_create
+#@subsection @code{clnt_create}
+#@findex clnt_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clnt_pcreateerror.texi
+Hash: eb667a76af61d29859afcfdcbfe23a1ba8685a7697247f375d88458d6272bd60
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnt_pcreateerror
+#@subsection @code{clnt_pcreateerror}
+#@findex clnt_pcreateerror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clnt_perrno.texi
+Hash: ad17b85da3516ff2f72cb23d033c48e8b7a2aac5a02c5d7a01d41c6aa6600db0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnt_perrno
+#@subsection @code{clnt_perrno}
+#@findex clnt_perrno
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clnt_perror.texi
+Hash: 82cd26d158a5d3c44dece6a886244ce36c49ebeffa26673909de77d5a788b10e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnt_perror
+#@subsection @code{clnt_perror}
+#@findex clnt_perror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clnt_spcreateerror.texi
+Hash: 209e1e3f9cdb5fb2ae93d82626397a91f86fc5de7e053a4e9dd9ee984590ac29
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnt_spcreateerror
+#@subsection @code{clnt_spcreateerror}
+#@findex clnt_spcreateerror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clnt_sperrno.texi
+Hash: 85facf37092f224547c9b22de2ce7120f6223b123880955f9741d4f1192ef962
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnt_sperrno
+#@subsection @code{clnt_sperrno}
+#@findex clnt_sperrno
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clnt_sperror.texi
+Hash: 3c5cb03e7db0c9890413fb8274e3e0825571fe513b5c3c4a8a1f381da141440a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnt_sperror
+#@subsection @code{clnt_sperror}
+#@findex clnt_sperror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clntraw_create.texi
+Hash: 369e8f51ad73920a35f5bb49c46788c9676a78b5c1efd70b19cfd8bacfc2e9ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clntraw_create
+#@subsection @code{clntraw_create}
+#@findex clntraw_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clnttcp_create.texi
+Hash: 4d775bbea4f66563fecb2274103849755071792c5af93c5f597ecc85ab8899f3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clnttcp_create
+#@subsection @code{clnttcp_create}
+#@findex clnttcp_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clntudp_bufcreate.texi
+Hash: a962c5041725d4a71eba817fb867bd2533442b43a7b467916e11b4d2fcfb6abd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clntudp_bufcreate
+#@subsection @code{clntudp_bufcreate}
+#@findex clntudp_bufcreate
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clntudp_create.texi
+Hash: b7e0dbcfcc8ab25b818f1f10021ffb0ffe9346f911c9a9d2e6c3831177732fe5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clntudp_create
+#@subsection @code{clntudp_create}
+#@findex clntudp_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/clntunix_create.texi
+Hash: 9e698ad851ba6e1fd147fe815aaf57881ff7dc062416604dbf2d545352bfcfff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clntunix_create
+#@subsection @code{clntunix_create}
+#@findex clntunix_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/clog10.texi
+Hash: acd1d6d0a6a71603c0428c8498650814dd43eb9d6baabdc9fd80237f71c3516b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clog10
+#@subsection @code{clog10}
+#@findex clog10
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/clog10f.texi
+Hash: 203698100193133e3bf5e65d9190cc87f10ec2adb8ad31f194c46c6bc5dd8f7c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clog10f
+#@subsection @code{clog10f}
+#@findex clog10f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/clog10l.texi
+Hash: 82e4a4440dbf9ba56b1f888e1715adc2e915ae8648ef4e9f1e7f35416ed36343
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clog10l
+#@subsection @code{clog10l}
+#@findex clog10l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/clone.texi
+Hash: a8582f08a00c2362dd1296178cbbf88992b956c0c3b535cf196b0bc2936a9a6b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clone
+#@subsection @code{clone}
+#@findex clone
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/crypt_r.texi
+Hash: cac89bde4b8094201459b5c860197e43c9d19a1edd5f4d19e61f5ae2388e36c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node crypt_r
+#@subsection @code{crypt_r}
+#@findex crypt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/cuserid.texi
+Hash: 0a6b5bac9d5e7c8e6bb2e247a67c1a11e93e5a19c3ae107a8a7f6ec904f7da68
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cuserid
+#@subsection @code{cuserid}
+#@findex cuserid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw.
+
+File: ./doc/glibc-functions/daemon.texi
+Hash: 2fd4f418d424f8b9ec2b30aef1ee09500ac5b4be47c7188da99adceaacfbe873
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node daemon
+#@subsection @code{daemon}
+#@findex daemon
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw, BeOS.
+
+File: ./doc/glibc-functions/dcgettext.texi
+Hash: 905acd2a435ee383e3a90021092c71b1e0353a4d830f8b3368f44b7e0f16621b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dcgettext
+#@subsection @code{dcgettext}
+#@findex dcgettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dcngettext.texi
+Hash: 25fe3abe9d3c981d8e134eb1eac98ed4d5431cb316b695e9f394e1730882e212
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dcngettext
+#@subsection @code{dcngettext}
+#@findex dcngettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/des_setparity.texi
+Hash: 25d06dfb2357289c755d22b55b35fc27d29e2cbd1890ff499f26685f4fd63577
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node des_setparity
+#@subsection @code{des_setparity}
+#@findex des_setparity
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dgettext.texi
+Hash: 77128e568c7dc65aa42f7e606fa4877bc5ed42b1e00fca2a430f035f9cebc529
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dgettext
+#@subsection @code{dgettext}
+#@findex dgettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dl_iterate_phdr.texi
+Hash: 62ea16c0513d25faf9ec94dacddf8fd09577503f95ac512b43dd64272f621007
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dl_iterate_phdr
+#@subsection @code{dl_iterate_phdr}
+#@findex dl_iterate_phdr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dladdr.texi
+Hash: a3b59426c942a6c73ba2a3ab0fdca76a02287d69dcd0af66101519b5c9f9d90f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dladdr
+#@subsection @code{dladdr}
+#@findex dladdr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dladdr1.texi
+Hash: e173046f4a96855e31bf1e8a5e8c06752872379e66c84803e099a466f56dc35c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dladdr1
+#@subsection @code{dladdr1}
+#@findex dladdr1
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dlinfo.texi
+Hash: cce858a4949abfcaf32a9011a7bc103723a2e8c5f3f68484d8771ba6041580c4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dlinfo
+#@subsection @code{dlinfo}
+#@findex dlinfo
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dlmopen.texi
+Hash: 88c9a180c401ca6f03ae86e95becba54896b826306370ca3b8a8507fc8e60f07
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dlmopen
+#@subsection @code{dlmopen}
+#@findex dlmopen
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dlvsym.texi
+Hash: 26ff4f9d467ee71d017515429de5fbfa4882051545692dbcb1c41de7af914f5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dlvsym
+#@subsection @code{dlvsym}
+#@findex dlvsym
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dn_expand.texi
+Hash: 63ce3292ca5569aa0366ad9c7de252d6fe18bafa7a89a5a2df6a635d5803e33f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dn_expand
+#@subsection @code{dn_expand}
+#@findex dn_expand
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/dngettext.texi
+Hash: ab37ed0effb5751971a1b3250c420469fd3bf15abc3ddfcd104904dbeb4580c1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dngettext
+#@subsection @code{dngettext}
+#@findex dngettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/drand48_r.texi
+Hash: 2b593e3e6fd04f9338b7138257ca7619720da7ed3fd534ee3e3a1e430c2785d6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node drand48_r
+#@subsection @code{drand48_r}
+#@findex drand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/drem.texi
+Hash: 568abf399954900f4cff6dd482ab33c057fe68b9a59bafe4bec9ae73f7865399
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node drem
+#@subsection @code{drem}
+#@findex drem
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, mingw.
+
+File: ./doc/glibc-functions/dremf.texi
+Hash: aff887dbc137c68938b4349c5ed83048621700344ed2835c697e57fc4be7ffbb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dremf
+#@subsection @code{dremf}
+#@findex dremf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, mingw.
+
+File: ./doc/glibc-functions/dreml.texi
+Hash: 5e5742ed947607742512dfd05cc9ec610d696663893755f51adbce805ccdd0a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dreml
+#@subsection @code{dreml}
+#@findex dreml
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/dup3.texi
+Hash: 16c23e59c857fb99c7bb7b25fe21d101a640baae3518a4cf20d572e9434992eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dup3
+#@subsection @code{dup3}
+#@findex dup3
+#
+#Gnulib module: dup3
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/dysize.texi
+Hash: 47a7fd72f74631c010e68a98e309a73c1c98bf25571524e582306739c239555b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dysize
+#@subsection @code{dysize}
+#@findex dysize
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ecb_crypt.texi
+Hash: f690509aa7eae66e6d744b6d94375a3c735a95b856afbe31631cc213d35a0b4a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ecb_crypt
+#@subsection @code{ecb_crypt}
+#@findex ecb_crypt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ecvt_r.texi
+Hash: a3766480ff58d17093f27198c734a920722b79f48f9ad3a220c417d3edce8342
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ecvt_r
+#@subsection @code{ecvt_r}
+#@findex ecvt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/encrypt_r.texi
+Hash: 979cf283d7e89b787857095878553ce9fdd52f37d25528614248c801640a4e3a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node encrypt_r
+#@subsection @code{encrypt_r}
+#@findex encrypt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/endaliasent.texi
+Hash: fb6325f2b1786c6daada61f5763b2eabe62ef7167e29c6def8dfec6b29b9efd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endaliasent
+#@subsection @code{endaliasent}
+#@findex endaliasent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/endfsent.texi
+Hash: 2ef59b14a9f5b3b4eff8dc92d40599d2989beb3056a9d905f3c287651b2051e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endfsent
+#@subsection @code{endfsent}
+#@findex endfsent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/endmntent.texi
+Hash: 902f99fbfabd3d3eaea54807c5d37d8ae32561911a61da4d7d826c453956b788
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endmntent
+#@subsection @code{endmntent}
+#@findex endmntent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/endnetgrent.texi
+Hash: b561dcd1b6c6b62e9a3a88367b4035c2c7254d8d090337ab0323e327358e23d3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endnetgrent
+#@subsection @code{endnetgrent}
+#@findex endnetgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/endrpcent.texi
+Hash: 2ec149a39480679f19e566cbfe837884852ce67563d81ddb5af842b60a2f7b75
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endrpcent
+#@subsection @code{endrpcent}
+#@findex endrpcent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/endspent.texi
+Hash: 23caa8ff196980b0fe2091e5ac0cd11117a6bc13a244ba4e59f2afe4d63f808e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endspent
+#@subsection @code{endspent}
+#@findex endspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/endttyent.texi
+Hash: 353485a83507aee8c9e0f8d7543cfde2ffd936dd4661252f07a58245a7f06e86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endttyent
+#@subsection @code{endttyent}
+#@findex endttyent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/endusershell.texi
+Hash: 3d7510451d51d0337b32959a55732d9db68c360bd0ddf5f7c342657074518413
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endusershell
+#@subsection @code{endusershell}
+#@findex endusershell
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/endutent.texi
+Hash: 1d2126a81c39601d25ce2479b13997eea4be84fe13500e6223a15603a36a7e79
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endutent
+#@subsection @code{endutent}
+#@findex endutent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/envz_add.texi
+Hash: 929a0bb40555c4cdf9b1d14eeb8e7c789a7a221706e2ee56ea67fb701185641f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node envz_add
+#@subsection @code{envz_add}
+#@findex envz_add
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/envz_entry.texi
+Hash: 28cf6f28a93c0ade5125892036a65037b8be5e0b2265132a56172664cb295d70
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node envz_entry
+#@subsection @code{envz_entry}
+#@findex envz_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/envz_get.texi
+Hash: 73dcfdab7c19f3e3b899aea56ac1cbe8433dc5d91c87650f0d62f50d9e29f1a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node envz_get
+#@subsection @code{envz_get}
+#@findex envz_get
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/envz_merge.texi
+Hash: da6f80f14d5cb2706ee602a6ebdcc7e2783bd46cc4dd1e217286de438f3b1bc7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node envz_merge
+#@subsection @code{envz_merge}
+#@findex envz_merge
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/envz_remove.texi
+Hash: 052e269cc2f4c958fc937cfe92377318ac659e361bdfde1ed31ef03cc8225a04
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node envz_remove
+#@subsection @code{envz_remove}
+#@findex envz_remove
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/envz_strip.texi
+Hash: 9f33728bf5d1263c41541e31829546c6be1bb7149bbee554414674b7a5a76f8f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node envz_strip
+#@subsection @code{envz_strip}
+#@findex envz_strip
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/epoll_create.texi
+Hash: e2be8db1d90a7447a960b5dd2f418cf2aae182562f396030b1d0b0ebba5e9289
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node epoll_create
+#@subsection @code{epoll_create}
+#@findex epoll_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/epoll_ctl.texi
+Hash: 9999e16055753d71a31950a02ef676ba0eea5e033afa1141140e66638120a8ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node epoll_ctl
+#@subsection @code{epoll_ctl}
+#@findex epoll_ctl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/epoll_wait.texi
+Hash: f9429a26d6f4f4f72fa6635a53726a953061d951e8626269cd305df15371327b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node epoll_wait
+#@subsection @code{epoll_wait}
+#@findex epoll_wait
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/erand48_r.texi
+Hash: 6669b6ab848630d8eb97b64fbb7732d3d5f0adb9cfb2efc13c602d06f44c3011
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node erand48_r
+#@subsection @code{erand48_r}
+#@findex erand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/err.texi
+Hash: f2822ce953258b67212742fa39cd8f3e71211dcb9ad9e1c08f1733549c5e87b4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node err
+#@subsection @code{err}
+#@findex err
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/error.texi
+Hash: 8cef704a2bef7f901913e2ecb6a79a974c5c929784cd1a3efb83762ff9f0f78c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node error
+#@subsection @code{error}
+#@findex error
+#
+#Gnulib module: error
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/error_at_line.texi
+Hash: cf9e32d64af320b9a0a362a3a2030fe267c9975dd806450fc034a5271fba6b68
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node error_at_line
+#@subsection @code{error_at_line}
+#@findex error_at_line
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/error_message_count.texi
+Hash: 64921e6e3cbf254851de971c005efed63de341e918d68815a9cbaf0144fc2474
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node error_message_count
+#@subsection @code{error_message_count}
+#@findex error_message_count
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/error_one_per_line.texi
+Hash: 41c37fa05255f035aae595ba8be8bf6a948f194d6e8f062a4dc1b3b3621b98c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node error_one_per_line
+#@subsection @code{error_one_per_line}
+#@findex error_one_per_line
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/error_print_progname.texi
+Hash: bc96d8956a86cae93032b2c4c2b2cf3d10a7c8eec32d2dd8a20d3eee8c26b4a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node error_print_progname
+#@subsection @code{error_print_progname}
+#@findex error_print_progname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/errx.texi
+Hash: a7cdc040dd2e090c274719420cedb80b530aacdfe42b7ede1d77a24a148456ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node errx
+#@subsection @code{errx}
+#@findex errx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/ether_aton.texi
+Hash: a842346260d42e4c0a45db5dd7cd75a3177bb0f0df8c990257803c214823ddad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ether_aton
+#@subsection @code{ether_aton}
+#@findex ether_aton
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ether_aton_r.texi
+Hash: fe43aa6c687d10c66577fc64c58745d2f5062b4b111066512e0416e4780c8143
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ether_aton_r
+#@subsection @code{ether_aton_r}
+#@findex ether_aton_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ether_hostton.texi
+Hash: fe52a6f7a718ca3e4bc6d97cb686fe2b65337b46a9fcaae9ef54f7d9ccef5ee7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ether_hostton
+#@subsection @code{ether_hostton}
+#@findex ether_hostton
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ether_line.texi
+Hash: 3cc5f18d0bece8d4994e39601f8c8889a33a4f38e50df1990fad90d20e90a0c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ether_line
+#@subsection @code{ether_line}
+#@findex ether_line
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ether_ntoa.texi
+Hash: babf9fe2efe3a0d0c4490b4ce7caec7f2b819fa28fa57afb55ab319051106de8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ether_ntoa
+#@subsection @code{ether_ntoa}
+#@findex ether_ntoa
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ether_ntoa_r.texi
+Hash: c2b5156ddda84f53d15db242391715e0f2ca131662587d0cd4d9e62f75b2da45
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ether_ntoa_r
+#@subsection @code{ether_ntoa_r}
+#@findex ether_ntoa_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ether_ntohost.texi
+Hash: c2091a64f35c0ae5d661860b1f60d57ad6944ad0403e4bf28a3cc7c96131aaa7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ether_ntohost
+#@subsection @code{ether_ntohost}
+#@findex ether_ntohost
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/euidaccess.texi
+Hash: 2a87b5e240d11086cffaf06df3881482e1ffa24627ab797f4715fc9a215386f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node euidaccess
+#@subsection @code{euidaccess}
+#@findex euidaccess
+#
+#Gnulib module: euidaccess
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/exp10.texi
+Hash: 28f79331e4b58884933515b29863bc9a52742bc7f370744a0e4a10452f099f06
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node exp10
+#@subsection @code{exp10}
+#@findex exp10
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/exp10f.texi
+Hash: 6bc7b61d534ef6f83c8461e72de721f5118651239555193971f3dad02fa23d46
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node exp10f
+#@subsection @code{exp10f}
+#@findex exp10f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/exp10l.texi
+Hash: f9565a3a532005973d9b6f51e0c7706ec6dc8d01c19746fa8e505147d54a29ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node exp10l
+#@subsection @code{exp10l}
+#@findex exp10l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fallocate.texi
+Hash: 31fafd55b211c7951256cf510c48929dbf0905c1d6adf6ce67a5f2c834d89e9b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fallocate
+#@subsection @code{fallocate}
+#@findex fallocate
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on older glibc versions and all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fcloseall.texi
+Hash: 2454b1a7e29b85b95416951cb3def913d0d4ff6d29f3a9d5ada2168be1b14e49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fcloseall
+#@subsection @code{fcloseall}
+#@findex fcloseall
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/fcvt_r.texi
+Hash: 1226fb28c13dfae15d1f84e2ace830d894b9a5785effc4bf23eae22e0819d4c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fcvt_r
+#@subsection @code{fcvt_r}
+#@findex fcvt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/fedisableexcept.texi
+Hash: 559755cb3f08a938aa3cae6ba68289ae9e8545baf594d71a8c7a6242d0371b94
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fedisableexcept
+#@subsection @code{fedisableexcept}
+#@findex fedisableexcept
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/feenableexcept.texi
+Hash: db385ebfb7a42feb0e9f02c96ef0ede1e5be24761c1ddbefc2f57da58df53306
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node feenableexcept
+#@subsection @code{feenableexcept}
+#@findex feenableexcept
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fegetexcept.texi
+Hash: 6ca79a91498b9b0bc91e5a1534a1e08167e795a7018a76dea8c52af2b42cb25b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fegetexcept
+#@subsection @code{fegetexcept}
+#@findex fegetexcept
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/feof_unlocked.texi
+Hash: 1845120fe96136edef181ead3d3d621b9fbfbc50ad928e98b75b0958c34d1bf8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node feof_unlocked
+#@subsection @code{feof_unlocked}
+#@findex feof_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/ferror_unlocked.texi
+Hash: cb31a7959c6e17cb428009f020898f3aa9f5a5a94d802a13b13b4d91987f3e0d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ferror_unlocked
+#@subsection @code{ferror_unlocked}
+#@findex ferror_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/fflush_unlocked.texi
+Hash: 7b77cc9354310377449aa1c5e033d3389b2ef98d4d87cdcaf133abc67e518637
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fflush_unlocked
+#@subsection @code{fflush_unlocked}
+#@findex fflush_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/ffsl.texi
+Hash: 7ff7df1ee7b12f75c430eb45418546d6ca7af38ee555686d46292d1c6b0d546e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ffsl
+#@subsection @code{ffsl}
+#@findex ffsl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ffsll.texi
+Hash: f42ded9a37fabd10750809c4fb7af7893b2feea0826b23d5ac2ce7574eef4094
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ffsll
+#@subsection @code{ffsll}
+#@findex ffsll
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetc_unlocked.texi
+Hash: fd047b70f29ecc5dfbe87e98fb2412798cc35c51efd44e6e2fc83f3893738c27
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetc_unlocked
+#@subsection @code{fgetc_unlocked}
+#@findex fgetc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetgrent.texi
+Hash: 0b18f0b797c2a7c1860c33c9304af2bfa428622038cbb34e5ada28bba02c0602
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetgrent
+#@subsection @code{fgetgrent}
+#@findex fgetgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetgrent_r.texi
+Hash: 85ec05e27db7a4cd0043130657bcc7d21de99ba3e8547888923170a8a0799df0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetgrent_r
+#@subsection @code{fgetgrent_r}
+#@findex fgetgrent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetpwent.texi
+Hash: a57008ebce017626f01d164e1f36cb66ddcaf81e7aa1d43cd1d92b0223d81ebb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetpwent
+#@subsection @code{fgetpwent}
+#@findex fgetpwent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetpwent_r.texi
+Hash: 75100ef488211123031efb59301d244ecb208b1cb9b65c4246803fa12ab4d41d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetpwent_r
+#@subsection @code{fgetpwent_r}
+#@findex fgetpwent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgets_unlocked.texi
+Hash: 3afe49da21531770e755913daf2957e563869eaf7311d0bbae6c4d2a664b00ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgets_unlocked
+#@subsection @code{fgets_unlocked}
+#@findex fgets_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/fgetspent.texi
+Hash: d22f7bf1109eaba8e95ebe8c050a77b9c677932e482068de0092aa1abc993d1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetspent
+#@subsection @code{fgetspent}
+#@findex fgetspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetspent_r.texi
+Hash: 88cce64476ac720a065d48f7ed83e89757d63c47b0397b2e4f66e30384ac5bc4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetspent_r
+#@subsection @code{fgetspent_r}
+#@findex fgetspent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetwc_unlocked.texi
+Hash: b29178e60e8b553881d945e4be798334def8c4123d44b176462d522bfe1af2f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetwc_unlocked
+#@subsection @code{fgetwc_unlocked}
+#@findex fgetwc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetws_unlocked.texi
+Hash: 73140a13f61673c53dbb5d6a98e4edbf6648d239c6cd9dfa1e58eec08b3ed1f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetws_unlocked
+#@subsection @code{fgetws_unlocked}
+#@findex fgetws_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fgetxattr.texi
+Hash: 690019b55ebc29fa70959ccca4ceea265daeeef5ab17782576151fab734ef1c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetxattr
+#@subsection @code{fgetxattr}
+#@findex fgetxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/fileno_unlocked.texi
+Hash: b114e30579686f868d9b5c0c1ebc7b367451428905308c9c5b44788b23cc5fa4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fileno_unlocked
+#@subsection @code{fileno_unlocked}
+#@findex fileno_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/finite.texi
+Hash: 29b265d6f1a1c66117c921380d2f8541ecb864d9bb4b99bd063377b2fc379fb1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node finite
+#@subsection @code{finite}
+#@findex finite
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.
+
+File: ./doc/glibc-functions/finitef.texi
+Hash: 327d8133425a2bca8406a7ae88aa480fc96ef29d5d813d12bef4d00fbb84c11a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node finitef
+#@subsection @code{finitef}
+#@findex finitef
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, mingw.
+
+File: ./doc/glibc-functions/finitel.texi
+Hash: f1dfd14d92d720128a297b18802208de0aef77b8a55724a3bab52e1479a959b7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node finitel
+#@subsection @code{finitel}
+#@findex finitel
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/flistxattr.texi
+Hash: f690841408ca5558193c7cb2548a0fde981b916ecc72db6ff57263c37ed95f21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node flistxattr
+#@subsection @code{flistxattr}
+#@findex flistxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/flock.texi
+Hash: 7efcc517b27c29ac838581e490b7de074f2a907c7d0e8019e6f1ca8837296a92
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node flock
+#@subsection @code{flock}
+#@findex flock
+#
+#Gnulib module: flock
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/fopencookie.texi
+Hash: 84f7e5764f5c5ba2402d7e79c475c8bdfacd7d6257c9f7b26fdb3330d7c09349
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fopencookie
+#@subsection @code{fopencookie}
+#@findex fopencookie
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/fputc_unlocked.texi
+Hash: eaa6f4ff0366284337b9d6cf787c8b90a4496e22f732d5b3c75a7ad81a701d60
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fputc_unlocked
+#@subsection @code{fputc_unlocked}
+#@findex fputc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/fputs_unlocked.texi
+Hash: edd6df84c06304c0437c886bb83502513adc2964f412e1083b0437c0375aea57
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fputs_unlocked
+#@subsection @code{fputs_unlocked}
+#@findex fputs_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fputwc_unlocked.texi
+Hash: 1ff188f75d9abcd7575d0fa34888759b6bb1e3f5f8a22b388e78dae16f032015
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fputwc_unlocked
+#@subsection @code{fputwc_unlocked}
+#@findex fputwc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fputws_unlocked.texi
+Hash: 1c1444e165a52b94709303c0bbe816b400d1f56a57e11dc5ea3b2d2caa8fd7ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fputws_unlocked
+#@subsection @code{fputws_unlocked}
+#@findex fputws_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fread_unlocked.texi
+Hash: b9d76fc01917357762291957d2a045fc020498ed7c8a767c6b27b2e3046e4fbe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fread_unlocked
+#@subsection @code{fread_unlocked}
+#@findex fread_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/freeifaddrs.texi
+Hash: d5198cf034f6423206e3904ec037f3d2d3cddd2d2a19eb6f4bd11bca16cfb781
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node freeifaddrs
+#@subsection @code{freeifaddrs}
+#@findex freeifaddrs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fremovexattr.texi
+Hash: 6ba4e774379ac053b21a8a26c04a2a2c453da0770521225903b9ed6de6e3067c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fremovexattr
+#@subsection @code{fremovexattr}
+#@findex fremovexattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/fsetxattr.texi
+Hash: 0fc330b04332599ebb973d94e987ef0f2b31b571ab2cd7a34947c41a12ae1a42
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fsetxattr
+#@subsection @code{fsetxattr}
+#@findex fsetxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/fstatfs.texi
+Hash: 7c08a51a0efa25dffbf458537d7aecd92c717d76e40ca2966251a39e1c8a70eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fstatfs
+#@subsection @code{fstatfs}
+#@findex fstatfs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fts_children.texi
+Hash: 94455de1757c151913c00f827b1a2cb6789f967ea511921a4f9c02f6ef1d5acb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fts_children
+#@subsection @code{fts_children}
+#@findex fts_children
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/fts_close.texi
+Hash: f24724092bc824c6d20defedcf74897ac95ebf70949559820a3bc366b0e1f58b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fts_close
+#@subsection @code{fts_close}
+#@findex fts_close
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/fts_open.texi
+Hash: 71e6cf5ee44d9e7d6be7a9d4d2ffdfa9e4b96b9ec8e5de10eaf3bbbae82ad330
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fts_open
+#@subsection @code{fts_open}
+#@findex fts_open
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/fts_read.texi
+Hash: 7b1858d353c66d3dbd174039b17a0a4d0b16e8c3899a13eed362f1a4c13244c1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fts_read
+#@subsection @code{fts_read}
+#@findex fts_read
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/fts_set.texi
+Hash: 256a8d88f0cc0955a51687ecf5615cf7a881767b10a089ca44992d99aa8b1429
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fts_set
+#@subsection @code{fts_set}
+#@findex fts_set
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/futimes.texi
+Hash: 037829991904df1c3901b1d01cb83109588552f04f88343861b5c4f4f1bf40bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node futimes
+#@subsection @code{futimes}
+#@findex futimes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/fwrite_unlocked.texi
+Hash: 974ebb20ba87289b7f0e6ddefcd90961129b8d175829ffce2e381725d2ba1945
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fwrite_unlocked
+#@subsection @code{fwrite_unlocked}
+#@findex fwrite_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/gamma.texi
+Hash: 9cb11d5b2e84aa422c9f2e2133ccd0932dfd228551eadc06b20ec078581b38aa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gamma
+#@subsection @code{gamma}
+#@findex gamma
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+
+File: ./doc/glibc-functions/gammaf.texi
+Hash: 7edaf91ce2d925820a9a78615837f905f281f4bc2790b11ce2c8772eee1ffee1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gammaf
+#@subsection @code{gammaf}
+#@findex gammaf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+
+File: ./doc/glibc-functions/gammal.texi
+Hash: 6e51220bdbd524db03f3041796922be83f750d1c72d031514e4ccb6818a1e395
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gammal
+#@subsection @code{gammal}
+#@findex gammal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/get_avphys_pages.texi
+Hash: 86b817fa554261cffad4b234b1c1f76b937059593d07a00c86d3952baeb25aec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node get_avphys_pages
+#@subsection @code{get_avphys_pages}
+#@findex get_avphys_pages
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/get_current_dir_name.texi
+Hash: c881b750dfad7180315ee97d2b221ffda075390499de4c95d673654bef8f112a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node get_current_dir_name
+#@subsection @code{get_current_dir_name}
+#@findex get_current_dir_name
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/get_myaddress.texi
+Hash: 57dd4818b22e5ed6e62a684c49b21a6e70f5d70f8819ad0d069ce50a11aece52
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node get_myaddress
+#@subsection @code{get_myaddress}
+#@findex get_myaddress
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/get_nprocs.texi
+Hash: e4ae1bf4f5a4a4d2fa18f4004fe315b6c3797753a31462fb10b80bab3eebeef5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node get_nprocs
+#@subsection @code{get_nprocs}
+#@findex get_nprocs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/get_nprocs_conf.texi
+Hash: 871ded04b70eb098a066433e66a0719f426de8652e8bf2a018c78cce4a8feab6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node get_nprocs_conf
+#@subsection @code{get_nprocs_conf}
+#@findex get_nprocs_conf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/get_phys_pages.texi
+Hash: 0b435c167f36008b1c489bbe6e654c84a71339cf253b6e0bf9f6375012ca3fac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node get_phys_pages
+#@subsection @code{get_phys_pages}
+#@findex get_phys_pages
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getaliasbyname.texi
+Hash: 65689c5a2dcbda4a359ef794eb15c9024496d01b08165a300e1e95910bb8a18a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getaliasbyname
+#@subsection @code{getaliasbyname}
+#@findex getaliasbyname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getaliasbyname_r.texi
+Hash: 7f5a394056e5e3ef999c0ef65ff789e3fd223586bf3ed8bb06e41f1b0198cdb3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getaliasbyname_r
+#@subsection @code{getaliasbyname_r}
+#@findex getaliasbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getaliasent.texi
+Hash: 0660506d75982e5d03be95aa0f0eb1a59daf650761a21da74b3eac6fcc147867
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getaliasent
+#@subsection @code{getaliasent}
+#@findex getaliasent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getaliasent_r.texi
+Hash: 66b222cfcd7497514392309a78bb93a837b1b127131214cafae44be18f39f75f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getaliasent_r
+#@subsection @code{getaliasent_r}
+#@findex getaliasent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getdate_r.texi
+Hash: dc9df7e7e7403e56c170c3b7a33bce22bdb2507b21a261c3a2274538a431816c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getdate_r
+#@subsection @code{getdate_r}
+#@findex getdate_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getdirentries.texi
+Hash: 3a012dd3241b1456caee10d79274eb940c4214014790fc72543bc952dcd7480c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getdirentries
+#@subsection @code{getdirentries}
+#@findex getdirentries
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getdomainname.texi
+Hash: cf1b6b4a46a7477005767cb622701ab85b7d6406b5d6491f46a8c4f65ebcf436
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getdomainname
+#@subsection @code{getdomainname}
+#@findex getdomainname
+#
+#Gnulib module: getdomainname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/getdtablesize.texi
+Hash: 06cf32c410472a7d90298a5830e61e20c06ede2e722334ae6e9f63aa9fb918af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getdtablesize
+#@subsection @code{getdtablesize}
+#@findex getdtablesize
+#
+#Gnulib module: getdtablesize
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/getfsent.texi
+Hash: 8fe4b7150bb087d51ba540574f6fd67b6f8d21603d46806af136aa0c804a4f03
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getfsent
+#@subsection @code{getfsent}
+#@findex getfsent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getfsfile.texi
+Hash: 4d6b165155cbcf1d90f346c076836501c493c3c4d5b3b50911fdde6a51d30a4f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getfsfile
+#@subsection @code{getfsfile}
+#@findex getfsfile
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getfsspec.texi
+Hash: 98cbde6d93830b56dd77d5410108faad88aa601e687bc9e7db3a330fc2faec5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getfsspec
+#@subsection @code{getfsspec}
+#@findex getfsspec
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getgrent_r.texi
+Hash: 415a963f427a26141a3101785143c8ae15441636078d0713398e1d6806cd824e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgrent_r
+#@subsection @code{getgrent_r}
+#@findex getgrent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getgrouplist.texi
+Hash: a49850ad2d6a07c35ad979f1159ebcb648b6cbe8736094494ca1469400eaf72d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgrouplist
+#@subsection @code{getgrouplist}
+#@findex getgrouplist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/gethostbyaddr_r.texi
+Hash: df45e5647825973d9f0dd763fa040795dcb4f5bc902da7282abcb73868525863
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostbyaddr_r
+#@subsection @code{gethostbyaddr_r}
+#@findex gethostbyaddr_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gethostbyname2.texi
+Hash: e719f389b44f23c32ed792b3458b6ea0553f49ed5f3ac8daf200f4b116f9a484
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostbyname2
+#@subsection @code{gethostbyname2}
+#@findex gethostbyname2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gethostbyname2_r.texi
+Hash: 7dffb2287bac4f81d6d7f64d5e7ec94935a87c3de4f3f32a5dd53d7cc95cc52a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostbyname2_r
+#@subsection @code{gethostbyname2_r}
+#@findex gethostbyname2_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gethostbyname_r.texi
+Hash: 19e1150763a82fe7e0239e6fde63ed8e2c97ca30a9d81e16934d038d8f015a8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostbyname_r
+#@subsection @code{gethostbyname_r}
+#@findex gethostbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gethostent_r.texi
+Hash: 0a7b5beeb6683459d5d242bebe81d29591081a3dc8337b6bf4794ef911d90a47
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostent_r
+#@subsection @code{gethostent_r}
+#@findex gethostent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getifaddrs.texi
+Hash: b6e093fdcea493b5eaf3d05eebf59cc8019e8c30ec1f918dca2ff11926e45f5d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getifaddrs
+#@subsection @code{getifaddrs}
+#@findex getifaddrs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getipv4sourcefilter.texi
+Hash: 6c4a84dbb00ebe732e345872cd6238e6b6a21d0c570782c5027f85a132939cdc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getipv4sourcefilter
+#@subsection @code{getipv4sourcefilter}
+#@findex getipv4sourcefilter
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getloadavg.texi
+Hash: 5c50122cf493b14e89404a2529742e0eb7f769eaf1ad2e2eb1de55c522f72070
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getloadavg
+#@subsection @code{getloadavg}
+#@findex getloadavg
+#
+#Gnulib module: getloadavg
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/getmntent.texi
+Hash: 118d57e88ed72fcb5c276a839dcf8b0c904f5692b6a0edb3f06e68455489f824
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getmntent
+#@subsection @code{getmntent}
+#@findex getmntent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, mingw, BeOS.
+
+File: ./doc/glibc-functions/getmntent_r.texi
+Hash: 48eb7d81bc253d4a805ba2492968265048fdcbb16ced813c0c7e47fa43786e19
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getmntent_r
+#@subsection @code{getmntent_r}
+#@findex getmntent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getnetbyaddr_r.texi
+Hash: 8836358d4db5b375335c43a5829364489815a6743c667794e43dfbe350165119
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetbyaddr_r
+#@subsection @code{getnetbyaddr_r}
+#@findex getnetbyaddr_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getnetbyname_r.texi
+Hash: 74b2ce77d900b1b43ab6ecf6d5ab1609135ccd0f61fbfbeaed71ec533218ce92
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetbyname_r
+#@subsection @code{getnetbyname_r}
+#@findex getnetbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getnetent_r.texi
+Hash: 9d9954b6b2c0763e4863e77e693ca5b27b4af1bb9628c68b09b84c5fbfd32569
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetent_r
+#@subsection @code{getnetent_r}
+#@findex getnetent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getnetgrent.texi
+Hash: c13ce3af9094527db4d66d68ef8b1753c8c544443356ccae7c3b6c80a8192153
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetgrent
+#@subsection @code{getnetgrent}
+#@findex getnetgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getnetgrent_r.texi
+Hash: 31b5ec65e6bdf042d6ec5850f70992b8512f0847207be624ae421c1eba543c4a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetgrent_r
+#@subsection @code{getnetgrent_r}
+#@findex getnetgrent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getnetname.texi
+Hash: 0a4a9be7822c9ece381caf81f9e18f6b702a742c21ad0cb63bbaeb38723fe229
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetname
+#@subsection @code{getnetname}
+#@findex getnetname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getopt_long.texi
+Hash: dad8eb73ad490ceaf3ee7e5c203f85a5bf4c98806402d26ebcd62dbaed58c7a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getopt_long
+#@subsection @code{getopt_long}
+#@findex getopt_long
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Interix 3.5.
+
+File: ./doc/glibc-functions/getopt_long_only.texi
+Hash: 38aefb0c9ffea52916f9d325982549e94f16a1f00e0fcbef4b0c17571276c80d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getopt_long_only
+#@subsection @code{getopt_long_only}
+#@findex getopt_long_only
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/getpagesize.texi
+Hash: 17c733598549bd7e5467f30df030367e9330861157dd95d74e0b470ba83f72a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpagesize
+#@subsection @code{getpagesize}
+#@findex getpagesize
+#
+#Gnulib module: getpagesize
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#BeOS.
+#@item
+#This function is broken on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/glibc-functions/getpass.texi
+Hash: 694469640b9f29046e9d2544e5ac1f53e9b4c5a8f5be710ac49bcab014eb3f6a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpass
+#@subsection @code{getpass}
+#@findex getpass
+#
+#Gnulib module: getpass or getpass-gnu
+#
+#Portability problems fixed by either Gnulib module @code{getpass} or @code{getpass-gnu}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+#
+#Portability problems fixed by Gnulib module @code{getpass-gnu}:
+#@itemize
+
+File: ./doc/glibc-functions/getprotobyname_r.texi
+Hash: aac24abffdfc1f64410dd5a2db7699f92d0dcff5a635a2a699f8751026986cad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getprotobyname_r
+#@subsection @code{getprotobyname_r}
+#@findex getprotobyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getprotobynumber_r.texi
+Hash: e2bf616350a39627ccee7c70afff54cc519b109982c4b47c8fd24d1c5a24a6dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getprotobynumber_r
+#@subsection @code{getprotobynumber_r}
+#@findex getprotobynumber_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getprotoent_r.texi
+Hash: 1b20b82271d78e1add8a6c551ecf444f41b8844b3aa86f658341c1da9c4ca1ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getprotoent_r
+#@subsection @code{getprotoent_r}
+#@findex getprotoent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getpt.texi
+Hash: c6fc22204ce304b1a58766533965391bf90544a87140bc3c144d1b2ec3c2005e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpt
+#@subsection @code{getpt}
+#@findex getpt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getpublickey.texi
+Hash: 1e5ed1f2dd2cd6f816c391c3c1400afff1a8594c11c520707eba9311d64d99ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpublickey
+#@subsection @code{getpublickey}
+#@findex getpublickey
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getpw.texi
+Hash: 3396864fd691dff5978be16d1c8ca280115900c5ab81b4ec3cd820be7c12b6cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpw
+#@subsection @code{getpw}
+#@findex getpw
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getpwent_r.texi
+Hash: d35394471916e21a74403c692013b97e794c9e13ee8b73d01ba8c40a30973da3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpwent_r
+#@subsection @code{getpwent_r}
+#@findex getpwent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getresgid.texi
+Hash: 4efd93f503f97b2da4db28219cb83a1d67ad3a1ee604faf21c7edb0cde3788e3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getresgid
+#@subsection @code{getresgid}
+#@findex getresgid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getresuid.texi
+Hash: 4f1280ba0721b8f9c76f825e14245c788548755fad562195beea6cba0ad1d1f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getresuid
+#@subsection @code{getresuid}
+#@findex getresuid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getrpcbyname.texi
+Hash: 905f78969e816bd350371c52ebe91dad4a5b048ee6f000151ac80b4a65e48b2e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrpcbyname
+#@subsection @code{getrpcbyname}
+#@findex getrpcbyname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/getrpcbyname_r.texi
+Hash: 44eac722eea8be2fcae7d693ea0284f9ab65ca59b43434d0fa9cdc3978586116
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrpcbyname_r
+#@subsection @code{getrpcbyname_r}
+#@findex getrpcbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getrpcbynumber.texi
+Hash: 19a049fa39885a88b1b1656784167616f7a0f06cc386b49b096128fe8a14849b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrpcbynumber
+#@subsection @code{getrpcbynumber}
+#@findex getrpcbynumber
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/getrpcbynumber_r.texi
+Hash: 5b8dd84e20a06df244b7d3edc8605103662dfe841148bf00b9a454ef95f02a88
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrpcbynumber_r
+#@subsection @code{getrpcbynumber_r}
+#@findex getrpcbynumber_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getrpcent.texi
+Hash: 548d13540a5fe2e1a3f06658f9888ec428a4921edbcb4e94fbb13845c393cf20
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrpcent
+#@subsection @code{getrpcent}
+#@findex getrpcent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/getrpcent_r.texi
+Hash: 19ab0f4d93c76eb06be0821328366797143747ba178622a0f9ad32e40bed4f3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrpcent_r
+#@subsection @code{getrpcent_r}
+#@findex getrpcent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getrpcport.texi
+Hash: cf4a3213ca4830fdea0aaa73c4e0d6bbecd11482e8b41445b0b799f0a900fd3d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrpcport
+#@subsection @code{getrpcport}
+#@findex getrpcport
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/getsecretkey.texi
+Hash: cb680a88fb1c4043d7ad5aeede48e3b45f280065222c98269e3b7e2f1ff3a4c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getsecretkey
+#@subsection @code{getsecretkey}
+#@findex getsecretkey
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getservbyname_r.texi
+Hash: 2d08f58dc31a7a5d6ce63b87427c82c10463d0677ed9a96c6744dac760cf7262
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getservbyname_r
+#@subsection @code{getservbyname_r}
+#@findex getservbyname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getservbyport_r.texi
+Hash: f488f6a67c41f08aaf2d078d1bee111c5ba850008601f5abe7cb2fcdf2dbd64a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getservbyport_r
+#@subsection @code{getservbyport_r}
+#@findex getservbyport_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getservent_r.texi
+Hash: 6f3fb5e0944a60104ac0c0367388c291c6bd330cf92a5ce3ea037bada24731ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getservent_r
+#@subsection @code{getservent_r}
+#@findex getservent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getsourcefilter.texi
+Hash: 15322732f310afc29502328c640113b0330af4800e7215f544f5bed24ed06e0e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getsourcefilter
+#@subsection @code{getsourcefilter}
+#@findex getsourcefilter
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getspent.texi
+Hash: 816a3e44c64019324be118cf732622c9b41800b00d54207318c5ca679391c448
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getspent
+#@subsection @code{getspent}
+#@findex getspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getspent_r.texi
+Hash: c90f3c1a8151fd685d77b05c06edad9008729c3d6da221cc0f5f83ffc04fd932
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getspent_r
+#@subsection @code{getspent_r}
+#@findex getspent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getspnam.texi
+Hash: e631c5008ad912f6ea71bb26ec876dfa92e9b2bd194088697e5d399c962b248c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getspnam
+#@subsection @code{getspnam}
+#@findex getspnam
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getspnam_r.texi
+Hash: 06de88fb505a2a1a6c2b68ab76d83c4b0cbbe1d455a47eda337bc53683c07825
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getspnam_r
+#@subsection @code{getspnam_r}
+#@findex getspnam_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 5.3, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gettext.texi
+Hash: c3e128d9a2aad55928c0e6dec0d5eb46e61499055328c6a496a176b7c9ac4c25
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gettext
+#@subsection @code{gettext}
+#@findex gettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getttyent.texi
+Hash: 6323d546b13f1fa19f8d12c7493f30c83d3069e5d758e42d85fff135a2af58d1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getttyent
+#@subsection @code{getttyent}
+#@findex getttyent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getttynam.texi
+Hash: d37f8ec697e742f31810a75c3856bdd3135ac59ca5aff77900a26735a96fc0c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getttynam
+#@subsection @code{getttynam}
+#@findex getttynam
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getusershell.texi
+Hash: cfab9f44b6e745d3d468f31d513f50ed5583cc39de18788eee15bf69ef1df781
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getusershell
+#@subsection @code{getusershell}
+#@findex getusershell
+#
+#Gnulib module: getusershell
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/getutent.texi
+Hash: 6f5c71a6983b4ea15e9a021b7b35f04339c8f553d0a6665bee201e2a4029e32d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutent
+#@subsection @code{getutent}
+#@findex getutent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getutent_r.texi
+Hash: f23aa1bb4cf2e15afff917913cf5fa875fcce3fd76bf28b6286146cf1a8312cb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutent_r
+#@subsection @code{getutent_r}
+#@findex getutent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getutid.texi
+Hash: 439997018c8b769dfb084615688bafe72428d4474bdfb0161939704cec828897
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutid
+#@subsection @code{getutid}
+#@findex getutid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getutid_r.texi
+Hash: 9ba7da53bc2795a796bdf6f0dd1b970e8c280d5f17ce03a6b670e9bccb38494b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutid_r
+#@subsection @code{getutid_r}
+#@findex getutid_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getutline.texi
+Hash: fe54ac8a004414583269fc3344705760ecb22c3c50e12363d49ade9a623af8dc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutline
+#@subsection @code{getutline}
+#@findex getutline
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getutline_r.texi
+Hash: 36891c71d337e6950a6843a4569e906ecbc3d31a1cced286b170ebf0444c16ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutline_r
+#@subsection @code{getutline_r}
+#@findex getutline_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getutmp.texi
+Hash: 5c40fd3e795045b2d723783cb2d898de33a3b0c6c7730816e237fe1cf9a4198b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutmp
+#@subsection @code{getutmp}
+#@findex getutmp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getutmpx.texi
+Hash: 860f5db05955b646b09ef98b56e1d0f553aba1321aff45ae114e2477330863e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutmpx
+#@subsection @code{getutmpx}
+#@findex getutmpx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getw.texi
+Hash: ab2d47caf89a7b4d27c816c5fa8ae1dc26e8bb1719b7513534a167d08bc66bba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getw
+#@subsection @code{getw}
+#@findex getw
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#BeOS.
+
+File: ./doc/glibc-functions/getwc_unlocked.texi
+Hash: e15241f0f79501082baf0556344152cb4ad99e048310bddd3307f49fcd782590
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getwc_unlocked
+#@subsection @code{getwc_unlocked}
+#@findex getwc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getwchar_unlocked.texi
+Hash: 4bc33b5e349b95a16b08328563f1705c3a8b377d4bba92760d98a3c2e53e0dcc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getwchar_unlocked
+#@subsection @code{getwchar_unlocked}
+#@findex getwchar_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/getxattr.texi
+Hash: 03a413c12f46294e620434f6988a843d1c7b71e9093540c05f8c052577dc98b5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getxattr
+#@subsection @code{getxattr}
+#@findex getxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/glob_pattern_p.texi
+Hash: e5a45525080d1fb6f20b346c999fc57bf1d945c563ca219e40b7df38385c616f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node glob_pattern_p
+#@subsection @code{glob_pattern_p}
+#@findex glob_pattern_p
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on most non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/gnu_dev_major.texi
+Hash: 2c8f2c8cd3092dac8fde1de1fa9eba83afac47e2d00f2579adf9f6ea6fa342ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gnu_dev_major
+#@subsection @code{gnu_dev_major}
+#@findex gnu_dev_major
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gnu_dev_makedev.texi
+Hash: 91456ec1cb52c337a02eab045a676bccd9b81ab87d293c4bb059c08f8cf09782
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gnu_dev_makedev
+#@subsection @code{gnu_dev_makedev}
+#@findex gnu_dev_makedev
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gnu_dev_minor.texi
+Hash: f4ba04dbd23ce77e3cefff8b4b2b5c60dfa80629d1069a98d9397a37023b61e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gnu_dev_minor
+#@subsection @code{gnu_dev_minor}
+#@findex gnu_dev_minor
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gnu_get_libc_release.texi
+Hash: ef4a4671b053aa45ce96e73496c747ef75fcdc144a722460e0be44456916ec38
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gnu_get_libc_release
+#@subsection @code{gnu_get_libc_release}
+#@findex gnu_get_libc_release
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/gnu_get_libc_version.texi
+Hash: b5114fbee7bd09824fa503582703e09f7f6b2a7585e6663c67a35609ed382e10
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gnu_get_libc_version
+#@subsection @code{gnu_get_libc_version}
+#@findex gnu_get_libc_version
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/group_member.texi
+Hash: 0e0b082f81548c68c61dd3a9eeda82ebf07d7b1fd5b61543994344e045a92408
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node group_member
+#@subsection @code{group_member}
+#@findex group_member
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/gsignal.texi
+Hash: b2b2657d25fbc80d269f5a0685e399bf312b4d68ba672a068f8f2431ad41b553
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gsignal
+#@subsection @code{gsignal}
+#@findex gsignal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/hasmntopt.texi
+Hash: 36f7270890737ec725e1cc0561841b5887be379932a7033ec8b834289f5d3a8b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hasmntopt
+#@subsection @code{hasmntopt}
+#@findex hasmntopt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/hcreate_r.texi
+Hash: abc69a457cc1547bbeecb52c53a69d35e837795fca08831198f38f4dfccd9c5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hcreate_r
+#@subsection @code{hcreate_r}
+#@findex hcreate_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/hdestroy_r.texi
+Hash: bf9ebc5b6f3dc6c2fef05616d7749656828c50f575497157021cd89b734630c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hdestroy_r
+#@subsection @code{hdestroy_r}
+#@findex hdestroy_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/herror.texi
+Hash: 7efb9d00e25020573fe0ca6d431f5327a0e107cfdb5d169ea32044a5b6a90981
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node herror
+#@subsection @code{herror}
+#@findex herror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/host2netname.texi
+Hash: b79d5bf0b0a6505453d8350062b6df0e9778f32ddb2362c3f8588bdef2810d9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node host2netname
+#@subsection @code{host2netname}
+#@findex host2netname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/hsearch_r.texi
+Hash: 5e162a4ac8adb0bbf7952b6adb65c2b16238a077bfe346cf416573a5d02bf8b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hsearch_r
+#@subsection @code{hsearch_r}
+#@findex hsearch_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/hstrerror.texi
+Hash: ff2896c321e129159b197b089ba7d3b2bd432f5c19892df7bbcce553a885f3f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hstrerror
+#@subsection @code{hstrerror}
+#@findex hstrerror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/in6addr_any.texi
+Hash: 3343d5d1d2109f64c2734eaff57f503f856d8cf36c052b02fbea1534b6b254ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node in6addr_any
+#@subsection @code{in6addr_any}
+#@findex in6addr_any
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This constant is missing on some platforms:
+#MacOS X 10.3, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/in6addr_loopback.texi
+Hash: f691c99e758b8950e9d2c3d2632ba2188ccce0bf0e2a694b5fc6bfb3d8d0e62f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node in6addr_loopback
+#@subsection @code{in6addr_loopback}
+#@findex in6addr_loopback
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This constant is missing on some platforms:
+#MacOS X 10.3, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet6_option_alloc.texi
+Hash: f8ee416c2fafae2cc7de879032e7e823c23f002bb1f0da2f9775c0365c34ba50
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet6_option_alloc
+#@subsection @code{inet6_option_alloc}
+#@findex inet6_option_alloc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet6_option_append.texi
+Hash: 32eed6853d5746e0ae79df426c83fbbe260b5d207cb80f91e936621abbc3c97c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet6_option_append
+#@subsection @code{inet6_option_append}
+#@findex inet6_option_append
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet6_option_find.texi
+Hash: 8baa6d877ecd7d6bb686c29f627489c85204f5aaf48caa2abaf89eec92dcb309
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet6_option_find
+#@subsection @code{inet6_option_find}
+#@findex inet6_option_find
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet6_option_init.texi
+Hash: 716e71d5494dfdb22f64896bde3fa8ae205c6bb991f7e9c6d0fc952c846f47dc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet6_option_init
+#@subsection @code{inet6_option_init}
+#@findex inet6_option_init
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet6_option_next.texi
+Hash: 13cbcc7303e27c83c1774694d78389e69aa86407793a5949c9d9405345911b82
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet6_option_next
+#@subsection @code{inet6_option_next}
+#@findex inet6_option_next
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet6_option_space.texi
+Hash: 6a338b1ab5bf78425879176034fbd8ce86ea60012693598f4ea14ecae1e3a5f6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet6_option_space
+#@subsection @code{inet6_option_space}
+#@findex inet6_option_space
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet_aton.texi
+Hash: 9a56198c1b11ffa7150833f8ee1d9a4028f6aa89bd414b1f7a0e7c543cff9f16
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_aton
+#@subsection @code{inet_aton}
+#@findex inet_aton
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/inet_lnaof.texi
+Hash: 20483661f4173ae4282bab0f288af2fa5e182b5412f23a427c4436a1f8265660
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_lnaof
+#@subsection @code{inet_lnaof}
+#@findex inet_lnaof
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/inet_makeaddr.texi
+Hash: ecbcf0e5b28d43d1b529117c3fc1158cf0098e7ce14f76ed0d567668319cb56e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_makeaddr
+#@subsection @code{inet_makeaddr}
+#@findex inet_makeaddr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/inet_net_ntop.texi
+Hash: 77ee21bd1f169d7eb033b898b34b45a0237e0df1410f25dd455a01729c3c05d6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_net_ntop
+#@subsection @code{inet_net_ntop}
+#@findex inet_net_ntop
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet_net_pton.texi
+Hash: 8091b168ada9dce7cbb5a6a514333edd9f7183085b640320a395810c26b5a4b4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_net_pton
+#@subsection @code{inet_net_pton}
+#@findex inet_net_pton
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet_neta.texi
+Hash: 3c964ed2f9db297bb4dcf3465662c790ab871bb6097a662047e7c1e08390065c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_neta
+#@subsection @code{inet_neta}
+#@findex inet_neta
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet_netof.texi
+Hash: d70586041f476627921035730357871373233e52c0c6e94f91818550e6b66eaf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_netof
+#@subsection @code{inet_netof}
+#@findex inet_netof
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/inet_network.texi
+Hash: f2254b279938a2eec4c6ecc5454ce2b3beb3bd6351d7975d0f0cd8790b21f533
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_network
+#@subsection @code{inet_network}
+#@findex inet_network
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/inet_nsap_addr.texi
+Hash: c1c16ad1ff261f383ff1c3afc2d485879cd52700b11d1b32d6dd64c261374cc3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_nsap_addr
+#@subsection @code{inet_nsap_addr}
+#@findex inet_nsap_addr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/inet_nsap_ntoa.texi
+Hash: 22cbce91c0a84fc930ea34428b2487e2cc500468c4078b1cb753e56d6c91d490
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_nsap_ntoa
+#@subsection @code{inet_nsap_ntoa}
+#@findex inet_nsap_ntoa
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/initgroups.texi
+Hash: 10e6d0b7a28afe505954b18d7222af105b5c0d8bdd5981dd65217435dc52cfa6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node initgroups
+#@subsection @code{initgroups}
+#@findex initgroups
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/initstate_r.texi
+Hash: 50335fba65ff9a2874843ef28cf645262a1f58db8252219f19d40c753f96617f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node initstate_r
+#@subsection @code{initstate_r}
+#@findex initstate_r
+#
+#Gnulib module: random_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/innetgr.texi
+Hash: 98fc724eab658d8ed65ba83432248a5d34c20a9d3d052ad6a96bfbcb9bcc62cb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node innetgr
+#@subsection @code{innetgr}
+#@findex innetgr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ioperm.texi
+Hash: 823826c8fd5e3e084b894cb58615b662b2bf53547e5e3808f4249cd4101bcadc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ioperm
+#@subsection @code{ioperm}
+#@findex ioperm
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/iopl.texi
+Hash: 3e7a8dd4e5b5ae33a9f5e799d208ddc48030ed9fee2c0d94b15262ab5b16030a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iopl
+#@subsection @code{iopl}
+#@findex iopl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/isctype.texi
+Hash: 889baa1d5aa326c2837dc4f72b30c184cea862b1a32ed8dc7d20b6b87d5f235f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isctype
+#@subsection @code{isctype}
+#@findex isctype
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/isfdtype.texi
+Hash: b493b5b3e930e6aa2d5182a88f186dbf845e087ff44fddeb94fb7989c9969514
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isfdtype
+#@subsection @code{isfdtype}
+#@findex isfdtype
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/isinff.texi
+Hash: 7b778ea3f39894bff3a41540003a2ea2ce14fef3bb60ef86d52ee6660ef0e805
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isinff
+#@subsection @code{isinff}
+#@findex isinff
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw.
+
+File: ./doc/glibc-functions/isinfl.texi
+Hash: d68b2173aab022dadd5e172ba5216fba620cd71f9e5b92a99548f1ae1ebfe338
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isinfl
+#@subsection @code{isinfl}
+#@findex isinfl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/isnanf.texi
+Hash: 1bce23ee271e7eef2d71e8db58edf3ca47dc80441668f74c81dbe8826bf87b2b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isnanf
+#@subsection @code{isnanf}
+#@findex isnanf
+#
+#Gnulib module: isnanf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/isnanl.texi
+Hash: efbd3688a2c450ca48c45b0136ced1c4aff2c88514808efec73f03fd9b78c319
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isnanl
+#@subsection @code{isnanl}
+#@findex isnanl
+#
+#Gnulib module: isnanl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/j0f.texi
+Hash: f018984a8e665058bcee8aba2e80e8d77c5ac1a803125c397151f46fe43e20e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node j0f
+#@subsection @code{j0f}
+#@findex j0f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+
+File: ./doc/glibc-functions/j0l.texi
+Hash: be8df2ff66c9633147a1dc233d630b26af08ffdfa1933cf4aaf9f4d09d5a5941
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node j0l
+#@subsection @code{j0l}
+#@findex j0l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/j1f.texi
+Hash: e6ea933aca4d80ea575f33af255ab6a3a2eda0cdd27784b83b53ca5d66211d21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node j1f
+#@subsection @code{j1f}
+#@findex j1f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+
+File: ./doc/glibc-functions/j1l.texi
+Hash: 36579052197222d9efc066047354b6a133e706205b9f137ecf4b71427b4fdc15
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node j1l
+#@subsection @code{j1l}
+#@findex j1l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/jnf.texi
+Hash: f14a75b388ab7fe56275dae1799ba1c17cde27b7e5d9b96b1a391a33b3df3efc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node jnf
+#@subsection @code{jnf}
+#@findex jnf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+
+File: ./doc/glibc-functions/jnl.texi
+Hash: 3349339e57b6eade070ba4b9cbe16e5a0618a9b85fddbc1a5247036cc12fa268
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node jnl
+#@subsection @code{jnl}
+#@findex jnl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/jrand48_r.texi
+Hash: 875e437face5769c385f1106637fd80c5bb8eb5b226ca64b99af6987eddd8647
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node jrand48_r
+#@subsection @code{jrand48_r}
+#@findex jrand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/key_decryptsession.texi
+Hash: f14cf546a9737b2f8028dafe7ef389ce9b886ba35d2542ddc8ae65517df1610d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node key_decryptsession
+#@subsection @code{key_decryptsession}
+#@findex key_decryptsession
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/key_decryptsession_pk.texi
+Hash: 5a61fcee114acb7ca73e3e27b17554cff55f4d20b58627e0d6482974bcfd9fc1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node key_decryptsession_pk
+#@subsection @code{key_decryptsession_pk}
+#@findex key_decryptsession_pk
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/key_encryptsession.texi
+Hash: a352d0f45112554f83095b1b11cfc6c2fe3dd18846a2e279d57a07069eaeaa29
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node key_encryptsession
+#@subsection @code{key_encryptsession}
+#@findex key_encryptsession
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/key_encryptsession_pk.texi
+Hash: 50ce495fb62eac5281e2a5197c60eb843d01fa0e0d74462c77c5f5d108c772bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node key_encryptsession_pk
+#@subsection @code{key_encryptsession_pk}
+#@findex key_encryptsession_pk
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/key_gendes.texi
+Hash: ff565b8a1f485504fddc3dd79b2a5298cafee45d9cfd295f06952f93cf0fc41c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node key_gendes
+#@subsection @code{key_gendes}
+#@findex key_gendes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/key_get_conv.texi
+Hash: 2d67dd92f660d35a6c01ee3ab092b29f019bce6e4cc42b7d6090ddcd22078945
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node key_get_conv
+#@subsection @code{key_get_conv}
+#@findex key_get_conv
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/key_secretkey_is_set.texi
+Hash: bd6b7b1dace7b7a1b74b4b0b2c58048aed86b897ffc611526f68c6c8582b5f8b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node key_secretkey_is_set
+#@subsection @code{key_secretkey_is_set}
+#@findex key_secretkey_is_set
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/key_setsecret.texi
+Hash: 6094078abb1f07ee4edafc08a32407f75d51ce0754608fbcf30285aa93aeeed9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node key_setsecret
+#@subsection @code{key_setsecret}
+#@findex key_setsecret
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/klogctl.texi
+Hash: e94f06a40c4d0334e6164193081d720d3919f87240350763f60fc1bd02243920
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node klogctl
+#@subsection @code{klogctl}
+#@findex klogctl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/lchmod.texi
+Hash: 41c523da30a051dd99ec2257cb0be4a516ebd67cf98f27fd1cdec7233791c0e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lchmod
+#@subsection @code{lchmod}
+#@findex lchmod
+#
+#Gnulib module: lchmod
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/lckpwdf.texi
+Hash: 6ce97709bb88f0181fdead5cdd63ba4ea2ff23e2133e08ef3ad6f38aad44d168
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lckpwdf
+#@subsection @code{lckpwdf}
+#@findex lckpwdf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/lcong48_r.texi
+Hash: cdf1fc0cf75c5dfa76850685b7dfa0970223c08ac3c313511109705f041e32e5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lcong48_r
+#@subsection @code{lcong48_r}
+#@findex lcong48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/lgamma_r.texi
+Hash: f1067f2deef4d6d086b613dafcf75e2d8a8b33516dcea3d650a4e53eb798be85
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lgamma_r
+#@subsection @code{lgamma_r}
+#@findex lgamma_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, OSF/1 5.1, mingw.
+
+File: ./doc/glibc-functions/lgammaf_r.texi
+Hash: 07fc9d2fb55d3b03b25613c659cd7a421cec84336ba790a0140f2b5170959e36
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lgammaf_r
+#@subsection @code{lgammaf_r}
+#@findex lgammaf_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
+
+File: ./doc/glibc-functions/lgammal_r.texi
+Hash: a202db76414d545a82571afd6b5b142038b5c76857892595291bd0956dbabded
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lgammal_r
+#@subsection @code{lgammal_r}
+#@findex lgammal_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/lgetxattr.texi
+Hash: b4016960542d19ab531b198fa260b565e234aa75f52e450a4ddac8c4153c2b86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lgetxattr
+#@subsection @code{lgetxattr}
+#@findex lgetxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/listxattr.texi
+Hash: 766b533e1039bda67b46b2abc106e61b68237807b365fa2d8c7cd9cedb09b7ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node listxattr
+#@subsection @code{listxattr}
+#@findex listxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/llistxattr.texi
+Hash: cb2cc96665e3469eab1aca6e9914d527d7deebeb1c577cf6e66e9927b5d0d9af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node llistxattr
+#@subsection @code{llistxattr}
+#@findex llistxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/loc1.texi
+Hash: 9949724a8185c91f3ef464d2aa050f0b5b43eaa8321a6a2515bd0b6999330021
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node loc1
+#@subsection @code{loc1}
+#@findex loc1
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/loc2.texi
+Hash: df9bf9c136fd206c3634b2407f5b42dc6c9288ce610651a6db47701b1370b762
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node loc2
+#@subsection @code{loc2}
+#@findex loc2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/locs.texi
+Hash: 1a2e4532efeb8ca8cc341d087d36601be44fa8bae2739f429d389c234c74841b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node locs
+#@subsection @code{locs}
+#@findex locs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/lrand48_r.texi
+Hash: 7b0e546feae99c2ea77f3129dd3efb78f581ebbc0ac49a32cf55bbac1a3c8d1e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lrand48_r
+#@subsection @code{lrand48_r}
+#@findex lrand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/lremovexattr.texi
+Hash: dac08211e81a4886e6300466d6179c752fa4e88d6e18909047d998eb01c48fe1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lremovexattr
+#@subsection @code{lremovexattr}
+#@findex lremovexattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/lsetxattr.texi
+Hash: e72b0131c569a6b2919740004a201d9042a5886861a99a6682116e0d74deedd0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lsetxattr
+#@subsection @code{lsetxattr}
+#@findex lsetxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/lutimes.texi
+Hash: 4494237aa78d1f5feae4a8716c80b67462a78776a0e04621a5e002a93c5e9db1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lutimes
+#@subsection @code{lutimes}
+#@findex lutimes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/madvise.texi
+Hash: 0abf4aaa28a84d398b86fc0b64fe40ba82661a7aa28be80be83ce5481999c24b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node madvise
+#@subsection @code{madvise}
+#@findex madvise
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/mallinfo.texi
+Hash: 53dc1fe63b43700cfc5595bb7c9b42bf254ea159738be0d6f19e32959922a525
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mallinfo
+#@subsection @code{mallinfo}
+#@findex mallinfo
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/malloc_get_state.texi
+Hash: 0f8db5157459002d516fab08a56deebcf940e6ed3025d83ef829c901798a9bf3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node malloc_get_state
+#@subsection @code{malloc_get_state}
+#@findex malloc_get_state
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/malloc_set_state.texi
+Hash: 4bf70c2bcd80fab43784d28c0b12af9e30854ed31c601ff859a7b01f3acfb720
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node malloc_set_state
+#@subsection @code{malloc_set_state}
+#@findex malloc_set_state
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/malloc_stats.texi
+Hash: 2298a8823b378dea8818f1d9a770ac197b8503a13a69fd7346fec1b8adc5badf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node malloc_stats
+#@subsection @code{malloc_stats}
+#@findex malloc_stats
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/malloc_trim.texi
+Hash: 8fa0f761ba3f7a709958c154bc5b00060432a7bc5d64dd87a029374c23b3c721
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node malloc_trim
+#@subsection @code{malloc_trim}
+#@findex malloc_trim
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/malloc_usable_size.texi
+Hash: e03768f538df19a72d96df56a8d72b851ed620417a3cfbf0f023984a7aa27cbc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node malloc_usable_size
+#@subsection @code{malloc_usable_size}
+#@findex malloc_usable_size
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/mallopt.texi
+Hash: 354303e13ef60ac8f163ce31970099caae693733e806a3d784b35c6502380d33
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mallopt
+#@subsection @code{mallopt}
+#@findex mallopt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/matherr.texi
+Hash: c9f25db9aa8e2d44cb7c2d7eb36e59a781374db3345e762d9947e00308b640af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node matherr
+#@subsection @code{matherr}
+#@findex matherr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 6.0, AIX 5.1, HP-UX 11, OSF/1 5.1, mingw.
+
+File: ./doc/glibc-functions/mcheck.texi
+Hash: 43737afc82a18aee7de3fedd13d407ddc56eb478a24e445430f3562474a8d00d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mcheck
+#@subsection @code{mcheck}
+#@findex mcheck
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/mcheck_check_all.texi
+Hash: 05f9d5fb933246bb5f0e7c78250f93db035e76fc439f2b23d51d878607946515
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mcheck_check_all
+#@subsection @code{mcheck_check_all}
+#@findex mcheck_check_all
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/mcheck_pedantic.texi
+Hash: 073bd20f56761fe3864be551f40f53acdf50e7f558c6283e8bb446e1a7507e0a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mcheck_pedantic
+#@subsection @code{mcheck_pedantic}
+#@findex mcheck_pedantic
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/memalign.texi
+Hash: f136fa4c4d15ffdbd5f531220ea80a0fe280ea744efe2df2464ca729ed50544a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memalign
+#@subsection @code{memalign}
+#@findex memalign
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/memfrob.texi
+Hash: 90bb532679e589dc002bdac93373fb237660eee372041a4d57bbc10bca2b4613
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memfrob
+#@subsection @code{memfrob}
+#@findex memfrob
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/memmem.texi
+Hash: 04f124a3fcb1df4da38a60d37d4857c9345452b7fbf71a71c6002a518c95ead1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memmem
+#@subsection @code{memmem}
+#@findex memmem
+#
+#Gnulib module: memmem or memmem-simple
+#
+#Portability problems fixed by either Gnulib module @code{memmem-simple}
+#or @code{memmem}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, OpenBSD 4.0, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@item
+#This function has reversed arguments on some older platforms:
+#Linux libc 5.0.9
+
+File: ./doc/glibc-functions/mempcpy.texi
+Hash: b858f2e5874b7b279e54b70d044ef9bd6b836bf3cdb7e62182ef094457ea7fb6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mempcpy
+#@subsection @code{mempcpy}
+#@findex mempcpy
+#
+#Gnulib module: mempcpy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/memrchr.texi
+Hash: f10096eec4df36c30bc322d5f37c71eb9e1295c8d1279caa10d7337adb9e9bfe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memrchr
+#@subsection @code{memrchr}
+#@findex memrchr
+#
+#Gnulib module: memrchr
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/mincore.texi
+Hash: d5ceb391e9ca3ad88142c561d35df48487b2b5244eb31c59c10c86148c729d52
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mincore
+#@subsection @code{mincore}
+#@findex mincore
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/mkostemp.texi
+Hash: b2b1685ff0c8b88ee8472b3ef555c792849913110ee83219aad70e59cb6ecb84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mkostemp
+#@subsection @code{mkostemp}
+#@findex mkostemp
+#
+#Gnulib module: mkostemp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/monstartup.texi
+Hash: 66ff5e7ec331a6bc6b660646ab8eb22538317c7d33f96fcabd0c5d425803cfad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node monstartup
+#@subsection @code{monstartup}
+#@findex monstartup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/mount.texi
+Hash: 89d49f190bf722b33bba60f3422d827ee83250869251d905394a34bf4bba6a9b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mount
+#@subsection @code{mount}
+#@findex mount
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/mprobe.texi
+Hash: 2ac42cda54a697d68ea2e325e4ba43eb65736cd30b4382aede8dc4824572f9b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mprobe
+#@subsection @code{mprobe}
+#@findex mprobe
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/mrand48_r.texi
+Hash: ffb500a2ff554d63422da2ea61c5b231549100a88736dd7fc3b506d3b5fb3094
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mrand48_r
+#@subsection @code{mrand48_r}
+#@findex mrand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/mremap.texi
+Hash: 4e3207e5e74599c816870d954202dcdae1715843b3df121a4f2e92175bff329d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mremap
+#@subsection @code{mremap}
+#@findex mremap
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/mtrace.texi
+Hash: db58f2773449db5048f8cfc6447f1ec6a5800205846cafe936b2e50df304b6c0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mtrace
+#@subsection @code{mtrace}
+#@findex mtrace
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/muntrace.texi
+Hash: e4ef0e069f49433b429895b055f989584f43aee61bc11729d0b12690d53265a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node muntrace
+#@subsection @code{muntrace}
+#@findex muntrace
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/netname2host.texi
+Hash: f6e22e73db730831231e52473244e21f49b9472597a7d25ee6374780b72b7be4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node netname2host
+#@subsection @code{netname2host}
+#@findex netname2host
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/netname2user.texi
+Hash: 297df46c6a600ed01680f8e1ab82d3eb8dfea80bafc392c63ff042c3066b957d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node netname2user
+#@subsection @code{netname2user}
+#@findex netname2user
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ngettext.texi
+Hash: 353e35ccc3655d2746555f2166fe50c9745ff46f8d3b9da62cdf4e2478edfd0d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ngettext
+#@subsection @code{ngettext}
+#@findex ngettext
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_add.texi
+Hash: 263e816d7afa10f2eff1d04d45ad18c9376fefc8387e038002157f1fb9b9e627
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_add
+#@subsection @code{nis_add}
+#@findex nis_add
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_add_entry.texi
+Hash: be462a1c0813a2fbe4a6c63c656728103b648f8ebf90d7d65cfd43b7c9bf2122
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_add_entry
+#@subsection @code{nis_add_entry}
+#@findex nis_add_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_addmember.texi
+Hash: 7072a94c1c6a763fbdb403984914dab8d19e94f4e006d2da05d793a5e9d79671
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_addmember
+#@subsection @code{nis_addmember}
+#@findex nis_addmember
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_checkpoint.texi
+Hash: e4226fd044059c8fe33f10a2fdb76cc5fc56b89c1d3311a5df12bfd78967e027
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_checkpoint
+#@subsection @code{nis_checkpoint}
+#@findex nis_checkpoint
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_clone_object.texi
+Hash: a464d80bc89c5ec658aa632ff8d84414cbbe990b840f5d53e82199e019a4222c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_clone_object
+#@subsection @code{nis_clone_object}
+#@findex nis_clone_object
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_creategroup.texi
+Hash: 5e4f2f700588803a40a7426e00f416c4be2652170b4665a3b23aa6e553094d81
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_creategroup
+#@subsection @code{nis_creategroup}
+#@findex nis_creategroup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_destroy_object.texi
+Hash: 86f6389d465a145bc9091b09bed0c51c1c7ee4d09f94612821e1b529fe29074a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_destroy_object
+#@subsection @code{nis_destroy_object}
+#@findex nis_destroy_object
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_destroygroup.texi
+Hash: e11e32b812c8f945ae14541ca337f9536b7a79ef57894734a37d2778596935ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_destroygroup
+#@subsection @code{nis_destroygroup}
+#@findex nis_destroygroup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_dir_cmp.texi
+Hash: 5ab7cef0103aeadbae156d28208185b62d0745b1f91b0201776b400d5fdbbd3d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_dir_cmp
+#@subsection @code{nis_dir_cmp}
+#@findex nis_dir_cmp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_domain_of.texi
+Hash: cb2e2f91fac66b3ef7cbbed96c046597d9402dac44e48715e298c5d3325b33e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_domain_of
+#@subsection @code{nis_domain_of}
+#@findex nis_domain_of
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_domain_of_r.texi
+Hash: e01fa11b120ba609cc2b03eb06432003342c5c2f6777c32b6b476bc8c80107ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_domain_of_r
+#@subsection @code{nis_domain_of_r}
+#@findex nis_domain_of_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_first_entry.texi
+Hash: 45660d94336a14941d4700b9f46ae7b03258556c408af401e0bc43e60c92fdc4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_first_entry
+#@subsection @code{nis_first_entry}
+#@findex nis_first_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_freenames.texi
+Hash: 33c1a1ff5e5749756bb71d4be9085a4e0906d101402c28d9b918a58d5c2ff30d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_freenames
+#@subsection @code{nis_freenames}
+#@findex nis_freenames
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_freeresult.texi
+Hash: d641a6f0bd155a2f4fb7439d570eccb55e645429ca22e9c07c97a8ab658afbc5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_freeresult
+#@subsection @code{nis_freeresult}
+#@findex nis_freeresult
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_freeservlist.texi
+Hash: a313a31d105e0e98d83014e7b059a110654b88e2bcd163dba39b969d19d33446
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_freeservlist
+#@subsection @code{nis_freeservlist}
+#@findex nis_freeservlist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_freetags.texi
+Hash: a3ff251aea66d507b2063975140b06150d679a9a9bf00017624ff85f8f6bd28f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_freetags
+#@subsection @code{nis_freetags}
+#@findex nis_freetags
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_getnames.texi
+Hash: d43fe192fa29a30b8f90ac61d180ccfe184211ed3f0977faa89ef0f7a07d6099
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_getnames
+#@subsection @code{nis_getnames}
+#@findex nis_getnames
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_getservlist.texi
+Hash: 1a83d9805324b888d5311711e68616fedd684b59f87f51d69b563dc9f00f6858
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_getservlist
+#@subsection @code{nis_getservlist}
+#@findex nis_getservlist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_ismember.texi
+Hash: 2857c63d04a9936f8ba3d20d28940517296bf8b20f803c8a743c104988d93034
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_ismember
+#@subsection @code{nis_ismember}
+#@findex nis_ismember
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_leaf_of.texi
+Hash: b6c67a9456cca5e2b69c86c0ecbbd2fedb8440c625e979a1f5566c64ab27f6d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_leaf_of
+#@subsection @code{nis_leaf_of}
+#@findex nis_leaf_of
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_leaf_of_r.texi
+Hash: 725eaebe89c74f16acce404fdf0f071aec15529fef9f090ef5c34be4d433546b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_leaf_of_r
+#@subsection @code{nis_leaf_of_r}
+#@findex nis_leaf_of_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_lerror.texi
+Hash: 4ffdf8647b3c5221348e69ed7337e739bdff92f8eb769471e9d6689991070429
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_lerror
+#@subsection @code{nis_lerror}
+#@findex nis_lerror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_list.texi
+Hash: d4769bf377fc70bdf55491b7a67377fd1a0aa1dd73dc058055d72c76e32af56c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_list
+#@subsection @code{nis_list}
+#@findex nis_list
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_local_directory.texi
+Hash: ba21442c5b7d1c1e7df74f813f51c39739ef4c44fdd4c3e30410aac44ffff269
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_local_directory
+#@subsection @code{nis_local_directory}
+#@findex nis_local_directory
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_local_group.texi
+Hash: 35d966e801ccbc175af0d271405896cdf076aee2a3963cccf9c344996b6ef16e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_local_group
+#@subsection @code{nis_local_group}
+#@findex nis_local_group
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_local_host.texi
+Hash: 61acdea5cc4f7e391d7a17ca71f48b4e99ce85adf87422596ff9b9fe9ad33c17
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_local_host
+#@subsection @code{nis_local_host}
+#@findex nis_local_host
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_local_principal.texi
+Hash: bda75c39fa29b305e57270533cd43fcff4b8957b7c33a88720f576e56d2df59c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_local_principal
+#@subsection @code{nis_local_principal}
+#@findex nis_local_principal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_lookup.texi
+Hash: dff8a627d19f85a944417280c3e06bac997c1e3e602fb256a92071677849b399
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_lookup
+#@subsection @code{nis_lookup}
+#@findex nis_lookup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_mkdir.texi
+Hash: 5cab157d00861d7ae6a2e0a5aa9eb68901e09a0368fe1f5a3eb24cf0ed06cae2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_mkdir
+#@subsection @code{nis_mkdir}
+#@findex nis_mkdir
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_modify.texi
+Hash: 5114449ba61f1c9ab605553b89b6123d3a32078f00e5a76e499b68d8366876c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_modify
+#@subsection @code{nis_modify}
+#@findex nis_modify
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_modify_entry.texi
+Hash: 293d5bb41a19fcfbea60ee5f78972517c0bcc93b6eddeb5e0b1f79ea538f3c49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_modify_entry
+#@subsection @code{nis_modify_entry}
+#@findex nis_modify_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_name_of.texi
+Hash: bd40e5451a5dadee1589a2ca890f0c4be95459bfd4710d3b00c0f7032a323d41
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_name_of
+#@subsection @code{nis_name_of}
+#@findex nis_name_of
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_name_of_r.texi
+Hash: 74450547b58277c638dc8c9fc5a9f77735cefc00af5581f21b477426174cba91
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_name_of_r
+#@subsection @code{nis_name_of_r}
+#@findex nis_name_of_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_next_entry.texi
+Hash: b5d18a883a8082cf62c0f70127d027f2d730dfee8bdf4fce9f78fac612a11059
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_next_entry
+#@subsection @code{nis_next_entry}
+#@findex nis_next_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_perror.texi
+Hash: 63e175ba3d8d9462bf33f5591c26da377537e4c2d19f98ce94b1bf4e6667cda4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_perror
+#@subsection @code{nis_perror}
+#@findex nis_perror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_ping.texi
+Hash: a283339d6df98d521b354c7c3a19f12800177c783e36c4496190befec8058db3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_ping
+#@subsection @code{nis_ping}
+#@findex nis_ping
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_directory.texi
+Hash: 0d12a211acc7071d10598c83dbc6b33b328ab633b38ba33d6ffcce607c22c16e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_directory
+#@subsection @code{nis_print_directory}
+#@findex nis_print_directory
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_entry.texi
+Hash: 3c03608e3d357f4f2ae81a76f45c8440141609a4fb7c6ed2db95ac5b426ce10d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_entry
+#@subsection @code{nis_print_entry}
+#@findex nis_print_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_group.texi
+Hash: d191e435ff63ff626db4247802381f0d2ca23de51ccd223ae5b0e3fa8798d383
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_group
+#@subsection @code{nis_print_group}
+#@findex nis_print_group
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_group_entry.texi
+Hash: 94235e89b9b74f3643923e90bf96ae311c285f6e306e968846b16b97edf831f9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_group_entry
+#@subsection @code{nis_print_group_entry}
+#@findex nis_print_group_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_link.texi
+Hash: db76e611302d621d742ecbc5f0b7748aa41a52c75fef66b7d51a9b61e47b31b8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_link
+#@subsection @code{nis_print_link}
+#@findex nis_print_link
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_object.texi
+Hash: 4b444fa06c5c0e05d28efd64f53953c251fe11cd356c7072f605f7b81fe44643
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_object
+#@subsection @code{nis_print_object}
+#@findex nis_print_object
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_result.texi
+Hash: 065717135cf4120bb8595486c857722fac9a7ff6efa0cb228ee5ed7bd4b0b62f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_result
+#@subsection @code{nis_print_result}
+#@findex nis_print_result
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_rights.texi
+Hash: ef827fc3aeb4e8739745772e04c2bb33dfb616b5c139e9899cef7de0b2c61ff9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_rights
+#@subsection @code{nis_print_rights}
+#@findex nis_print_rights
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_print_table.texi
+Hash: e0f15bef44e6d6c29b27cf7fb973a373c824b49e6f6cac7d78e1a4e24ffe9c8f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_print_table
+#@subsection @code{nis_print_table}
+#@findex nis_print_table
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_remove.texi
+Hash: 32a1b74e420a969df9b898f94512ffe55692fccd53e5bc0a8b49747dd12ae9c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_remove
+#@subsection @code{nis_remove}
+#@findex nis_remove
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_remove_entry.texi
+Hash: b942f308181744e8798341c6f5941ded24f4e0c7da25c1418c85aa877c6e8883
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_remove_entry
+#@subsection @code{nis_remove_entry}
+#@findex nis_remove_entry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_removemember.texi
+Hash: 25febaa8a16ad94e35bc18a7488d7982d4f78ce14918877d291c9c5c767bfd6a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_removemember
+#@subsection @code{nis_removemember}
+#@findex nis_removemember
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_rmdir.texi
+Hash: 1520922fcc74b7d84ab000e8f2cc44f6b632d3b360c994c96ce622aaac36c8ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_rmdir
+#@subsection @code{nis_rmdir}
+#@findex nis_rmdir
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_servstate.texi
+Hash: ae1e425890ce2bd608090b7d4fda1a425f4eb9e9d9f8a723ea19657380abe127
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_servstate
+#@subsection @code{nis_servstate}
+#@findex nis_servstate
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_sperrno.texi
+Hash: f10e0ad2db9f765254f6314102b1293f9016812a67324536afc77869bea491fd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_sperrno
+#@subsection @code{nis_sperrno}
+#@findex nis_sperrno
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_sperror.texi
+Hash: 0424f046ae5b85b906c4f37dde7692dda8837b71c3e8e5f2fe20a3803efdb6be
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_sperror
+#@subsection @code{nis_sperror}
+#@findex nis_sperror
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_sperror_r.texi
+Hash: 0b85879da12a5e9e29a941c50f3efd8e45e0541a0e18802f9a4506be929cb612
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_sperror_r
+#@subsection @code{nis_sperror_r}
+#@findex nis_sperror_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_stats.texi
+Hash: 42c64c2e6a6584e33cd7eb39921d729dbd6e6a26115b6d2826df92d6939149ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_stats
+#@subsection @code{nis_stats}
+#@findex nis_stats
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nis_verifygroup.texi
+Hash: be6731f73427f2734ac003d261a86ec8c46e25e1fc47cce640ccd74020f884c5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nis_verifygroup
+#@subsection @code{nis_verifygroup}
+#@findex nis_verifygroup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/nrand48_r.texi
+Hash: 7712ccaaa3bdcae2f7eb09d18a52fe84269c4bafff25c8852f4fcba3ac3e98d2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nrand48_r
+#@subsection @code{nrand48_r}
+#@findex nrand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/ntp_adjtime.texi
+Hash: 9e4776f50a88065a71713e5f612bce9632cc30b1f8bc4d2954a2446f9cb88aef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ntp_adjtime
+#@subsection @code{ntp_adjtime}
+#@findex ntp_adjtime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ntp_gettime.texi
+Hash: 43d0ca9a1f71946a1212081c572d4bbf1200a6741aac69b1615aab6a59449b55
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ntp_gettime
+#@subsection @code{ntp_gettime}
+#@findex ntp_gettime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/obstack_alloc_failed_handler.texi
+Hash: 5a162a65e8a06e06e90a6b0899fd99e63db1b413893f10ba7032f07f8aef588b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node obstack_alloc_failed_handler
+#@subsection @code{obstack_alloc_failed_handler}
+#@findex obstack_alloc_failed_handler
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/obstack_exit_failure.texi
+Hash: 2edf67bf7a1835c04266ee354618b79b2cf1a55504e63f8df43d88e33fa7adea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node obstack_exit_failure
+#@subsection @code{obstack_exit_failure}
+#@findex obstack_exit_failure
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/obstack_free.texi
+Hash: 07713f4fe1679f4214b0ef91479610382e1e71da8177afffda8ef741d4bf2bef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node obstack_free
+#@subsection @code{obstack_free}
+#@findex obstack_free
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/obstack_printf.texi
+Hash: b365a91c2948c92bec6e04ad47471246074c066e91a9c7280419a2b0565744ba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node obstack_printf
+#@subsection @code{obstack_printf}
+#@findex obstack_printf
+#
+#Gnulib module: obstack-printf or obstack-printf-posix
+#
+#Portability problems fixed by either Gnulib module
+#@code{obstack-printf} or @code{obstack-printf-posix}:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems fixed by Gnulib module @code{ostack-printf-posix}:
+
+File: ./doc/glibc-functions/obstack_vprintf.texi
+Hash: 0116c5a2b4b5e76cede18a9b00d4584b1fe9c48eab74d203c12d979e2b2e39c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node obstack_vprintf
+#@subsection @code{obstack_vprintf}
+#@findex obstack_vprintf
+#
+#Gnulib module: obstack-printf or obstack-printf-posix
+#
+#Portability problems fixed by either Gnulib module
+#@code{obstack-printf} or @code{obstack-printf-posix}:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems fixed by Gnulib module @code{ostack-printf-posix}:
+
+File: ./doc/glibc-functions/on_exit.texi
+Hash: f98b9178741dde52f30e55489bd237902b8cb9e5b46daed74deb35af2053adb3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node on_exit
+#@subsection @code{on_exit}
+#@findex on_exit
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/parse_printf_format.texi
+Hash: 08ec06c5f956c4070a8b8054be634cc362e5e0e26e4ec8caef463a3ab9cd4cc9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node parse_printf_format
+#@subsection @code{parse_printf_format}
+#@findex parse_printf_format
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/personality.texi
+Hash: 63ce42d8b39416dbcd2374b3db74e391930f2df790ac086e8b1e7f762ae2fd69
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node personality
+#@subsection @code{personality}
+#@findex personality
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/pipe2.texi
+Hash: 12ae9770c7677e3b83f1a72345d69c53783e89421def3b00a427828aa4aae3b7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pipe2
+#@subsection @code{pipe2}
+#@findex pipe2
+#
+#Gnulib module: pipe2
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/pmap_getmaps.texi
+Hash: 9d85f6d0f65096677f4732a2bc82f6afa1f50403b05bf01e92206309db3f8873
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pmap_getmaps
+#@subsection @code{pmap_getmaps}
+#@findex pmap_getmaps
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/pmap_getport.texi
+Hash: 43960c367109816c9e5617623378139b66ceb8f0b929615750e1c5f4843f9dd2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pmap_getport
+#@subsection @code{pmap_getport}
+#@findex pmap_getport
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/pmap_rmtcall.texi
+Hash: 03654d766f665bb32b4a7b827d20aa8f6bea089916d5f00fa3f88848d411778d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pmap_rmtcall
+#@subsection @code{pmap_rmtcall}
+#@findex pmap_rmtcall
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/pmap_set.texi
+Hash: 201b0d49ff805bb952b775dcdb25c33a70a6d0ee2aa959f9dcdce21ab7926ce5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pmap_set
+#@subsection @code{pmap_set}
+#@findex pmap_set
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/pmap_unset.texi
+Hash: 054bd3e1cd0792cb25c68df8fb153cd370444146dfc243b81cb187e177db8e48
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pmap_unset
+#@subsection @code{pmap_unset}
+#@findex pmap_unset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/pow10.texi
+Hash: f7912dfe94bb0f8ed4dee6d39483b4a4f76d7351546ef2c3e26fd901e252d2d6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pow10
+#@subsection @code{pow10}
+#@findex pow10
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/pow10f.texi
+Hash: 877756c67f392d56fce20c2950bec91968190c557374f63cd87a22763ce81b47
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pow10f
+#@subsection @code{pow10f}
+#@findex pow10f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/pow10l.texi
+Hash: a4c1ab66b2a92023aed121a70e545bc9d98b47f6df5d36b1351cc504e97d55d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pow10l
+#@subsection @code{pow10l}
+#@findex pow10l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/prctl.texi
+Hash: 2427ec4bec38663fd75581e4a8602ed0c541707f2cba09a65af9825adb32a23c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node prctl
+#@subsection @code{prctl}
+#@findex prctl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/printf_size.texi
+Hash: ccc98cc15667f89d94b22bc643ce60325dd868e79cd95487d7f6ad497a1210b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node printf_size
+#@subsection @code{printf_size}
+#@findex printf_size
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/printf_size_info.texi
+Hash: 237a32ff30c1e23980f4360ba09bfb50c6be4224fabd7a59919bd51aeffaaafc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node printf_size_info
+#@subsection @code{printf_size_info}
+#@findex printf_size_info
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/profil.texi
+Hash: 0285b1f65b72595b3cdc34f19758d6a7c23b39ca0f9fbea16ce0fd482b5633ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node profil
+#@subsection @code{profil}
+#@findex profil
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/program_invocation_name.texi
+Hash: db3aa2f7f6e63fde4dd4838f5ca464248be07d6ce02f604a2409cb704bb60f78
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node program_invocation_name
+#@subsection @code{program_invocation_name}
+#@findex program_invocation_name
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/program_invocation_short_name.texi
+Hash: 8fcb3035a868fc5dfa3c18c5064f3f8923e58487d6fd76f3c7b2b0655ee2d384
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node program_invocation_short_name
+#@subsection @code{program_invocation_short_name}
+#@findex program_invocation_short_name
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/pthread_getattr_np.texi
+Hash: 5590b31dad731bebfe2b8ceb8113ac27a6c50d9217e44e6ab3f30cead2c0d24e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_getattr_np
+#@subsection @code{pthread_getattr_np}
+#@findex pthread_getattr_np
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/pthread_kill_other_threads_np.texi
+Hash: e25942ee2f53e9ca33f05e74e0ae70f80054d143a1ee2b6fe1dfd8e3289969b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_kill_other_threads_np
+#@subsection @code{pthread_kill_other_threads_np}
+#@findex pthread_kill_other_threads_np
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/pthread_rwlockattr_getkind_np.texi
+Hash: f84f03d67a82f7e2c4af4bc8a182657f2a4551524d997213cee786e26dfbf543
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlockattr_getkind_np
+#@subsection @code{pthread_rwlockattr_getkind_np}
+#@findex pthread_rwlockattr_getkind_np
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/pthread_rwlockattr_setkind_np.texi
+Hash: 5ae7f4598ef73bf7ce5a8f90875cdcff75b082163e7d79da8ba002b34fb91ea2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlockattr_setkind_np
+#@subsection @code{pthread_rwlockattr_setkind_np}
+#@findex pthread_rwlockattr_setkind_np
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/pthread_yield.texi
+Hash: e1337bc33112135e65c647d51a8d5adee256835cb800205a520d0546efcf4873
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_yield
+#@subsection @code{pthread_yield}
+#@findex pthread_yield
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ptrace.texi
+Hash: 27af6240148516067e80c328ec3534ed7e40044622162395eef385f5719f584d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ptrace
+#@subsection @code{ptrace}
+#@findex ptrace
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ptsname_r.texi
+Hash: 1cc50cfb5fafbdd0153d9c1788a49c41bb87fc9100e76edd9175ae4fc9547845
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ptsname_r
+#@subsection @code{ptsname_r}
+#@findex ptsname_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/putgrent.texi
+Hash: 544f112128ba4307a201ac0244bdcf3352fce4cb574457ff2406b5b357d0d483
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putgrent
+#@subsection @code{putgrent}
+#@findex putgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/putpwent.texi
+Hash: 93178cf90ec4ac36c8ae75028fca56b82288ccb6f4fe145a418aa253bc3fe25c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putpwent
+#@subsection @code{putpwent}
+#@findex putpwent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/putspent.texi
+Hash: d6963772ef8e056c5e923c67f34fd2e931d6bf1f1e62dd2bae741ace73ec4265
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putspent
+#@subsection @code{putspent}
+#@findex putspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/pututline.texi
+Hash: afff12c0ed2226e45909cef2f6b409fddf503c4d0245a035fa85302e70bd9e10
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pututline
+#@subsection @code{pututline}
+#@findex pututline
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/putw.texi
+Hash: a7028bb2975807511cf4acd39f137c540e13cdcd67e0f00188a345645605ccc2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putw
+#@subsection @code{putw}
+#@findex putw
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#BeOS.
+
+File: ./doc/glibc-functions/putwc_unlocked.texi
+Hash: 570a8de4fa9f99fd2e735a412763e2dd138191615b64b9bb16bc3c3cd03b535a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putwc_unlocked
+#@subsection @code{putwc_unlocked}
+#@findex putwc_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/putwchar_unlocked.texi
+Hash: f69ccaf0b8879e1b32f8329370cbbd3eef8ebf53964299657799567911f280e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putwchar_unlocked
+#@subsection @code{putwchar_unlocked}
+#@findex putwchar_unlocked
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/pvalloc.texi
+Hash: 01f71af124d7774fd46b6a3c388a86a7a0039fc30d235d2ea226ee8bc659912b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pvalloc
+#@subsection @code{pvalloc}
+#@findex pvalloc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/qecvt.texi
+Hash: c2c83522e967fd4ceb406a9629d36310bedc29e77ba38d75f3a5367a178f8932
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node qecvt
+#@subsection @code{qecvt}
+#@findex qecvt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/qecvt_r.texi
+Hash: a1c7516fe37f8c935920a2793726be94fcb48c5064bf4fbcc516a47b9bf9d2db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node qecvt_r
+#@subsection @code{qecvt_r}
+#@findex qecvt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/qfcvt.texi
+Hash: 1b0d08244caaca9dd6f63183a50f81ee270c7250b6c4090fec67e3cf11e0e253
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node qfcvt
+#@subsection @code{qfcvt}
+#@findex qfcvt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/qfcvt_r.texi
+Hash: 06b32b91bdd122fb691306a30ee07dd366dc10afd4fb5f4b797675626c46cf22
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node qfcvt_r
+#@subsection @code{qfcvt_r}
+#@findex qfcvt_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/qgcvt.texi
+Hash: ec9dd3a171af5d5d31ec024141385d5bd30972d0d66e42dca15e845bd24f395f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node qgcvt
+#@subsection @code{qgcvt}
+#@findex qgcvt
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/quotactl.texi
+Hash: 836ab775c2feab3b068d36d672ad6123aad387f6fb1f5fa368f06a01ac807f2e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node quotactl
+#@subsection @code{quotactl}
+#@findex quotactl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/random_r.texi
+Hash: 5844e7a46c936938dfbf2ce4fdbcbe51d82a4074a6bc5b2414f2a107311479dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node random_r
+#@subsection @code{random_r}
+#@findex random_r
+#
+#Gnulib module: random_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/rawmemchr.texi
+Hash: a88efb16cc1008fb2069f17f86e19d4ca86a2ee95560cffd35e015f79d55c8b2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rawmemchr
+#@subsection @code{rawmemchr}
+#@findex rawmemchr
+#
+#Gnulib module: rawmemchr
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/rcmd.texi
+Hash: e257d1d57a345cddc907c3e227b0d51dfbece0c211d1b0e9d7b2519ba85090b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rcmd
+#@subsection @code{rcmd}
+#@findex rcmd
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/rcmd_af.texi
+Hash: 33267b7d2782d13d76324a3812e2ce79aae5bf28b639472be4e5dbeb29588118
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rcmd_af
+#@subsection @code{rcmd_af}
+#@findex rcmd_af
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/re_comp.texi
+Hash: 01bfce768f404c4fff73edfee715bcfea880485a92171532c28dd24ee902ddda
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_comp
+#@subsection @code{re_comp}
+#@findex re_comp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_compile_fastmap.texi
+Hash: df04f615fa59f124aea7423c97c3ab28d68bc4e7354fdba5bec20ec2189c38bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_compile_fastmap
+#@subsection @code{re_compile_fastmap}
+#@findex re_compile_fastmap
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_compile_pattern.texi
+Hash: ed911d035be21cdd51ea9886bfeac42f4b1528025c790409d988e1dd298ec0e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_compile_pattern
+#@subsection @code{re_compile_pattern}
+#@findex re_compile_pattern
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_exec.texi
+Hash: a1297936ebe8c37bd2e40e89c02f620cee30ab8e066c05b44c9e007fbcbebe85
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_exec
+#@subsection @code{re_exec}
+#@findex re_exec
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_match.texi
+Hash: b18566e77f75118465e53a1b14a0cf42da170947642f9c6d7d32272329b89661
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_match
+#@subsection @code{re_match}
+#@findex re_match
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_match_2.texi
+Hash: b456a65fbeabbb70c1ea7c3cc9d9af1c0d1fd7313ae2cab14bf0fcdfe8a9d949
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_match_2
+#@subsection @code{re_match_2}
+#@findex re_match_2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_search.texi
+Hash: 1546d42e4213de80f339e367568465dddb64971f935cca31fff6a46ceaa22107
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_search
+#@subsection @code{re_search}
+#@findex re_search
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_search_2.texi
+Hash: 81618d34a0a95e7bf19b0c3f6e9bb7dc853e954bc4bc0e91581cc76af5aec179
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_search_2
+#@subsection @code{re_search_2}
+#@findex re_search_2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_set_registers.texi
+Hash: 56b39a6302e400bfb705a54caefa53c2433d8b834ddd4f96e4322a2afd219580
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_set_registers
+#@subsection @code{re_set_registers}
+#@findex re_set_registers
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_set_syntax.texi
+Hash: 748a99045110cf56f79df6e0d5f4b234bf7dde20a723d93a0a673da3b03c90ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_set_syntax
+#@subsection @code{re_set_syntax}
+#@findex re_set_syntax
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/re_syntax_options.texi
+Hash: 0c830a2c8456fd51772baaa9a4090458bb2e6b76f76c386603a25c228f7b6ca6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node re_syntax_options
+#@subsection @code{re_syntax_options}
+#@findex re_syntax_options
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/readahead.texi
+Hash: 8f826416be974f9a1e522ef20f3a12a29ef06badbf895c58d04588577d843e0e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node readahead
+#@subsection @code{readahead}
+#@findex readahead
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/reboot.texi
+Hash: 821bc1ae818abe8915a90b46f5222f4ada16fbea77e88d86c0358421e73b709c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node reboot
+#@subsection @code{reboot}
+#@findex reboot
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/register_printf_function.texi
+Hash: 55330e647478ac89ec8173c27dc6ccde685c0c9ff1aa731f92c403c3643264f3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node register_printf_function
+#@subsection @code{register_printf_function}
+#@findex register_printf_function
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/remap_file_pages.texi
+Hash: 6ebd3f6be34b6b2bfd24e20710e6b8f9eb129fa6248ab974a952205fd4a98f67
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remap_file_pages
+#@subsection @code{remap_file_pages}
+#@findex remap_file_pages
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/removexattr.texi
+Hash: 84ac25baaee52cbb40f99f510e79d07b6b8428d24256042b6ae785a0868f9883
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node removexattr
+#@subsection @code{removexattr}
+#@findex removexattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/res_init.texi
+Hash: 388e462fc34d47868da844ac1b41166ca1d710720fc4cf90949471b6b22e06df
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node res_init
+#@subsection @code{res_init}
+#@findex res_init
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/res_mkquery.texi
+Hash: 0b93eb65d4f8eb234d2cf53f9be95119f92ba036e114bccffaad8f4217b8be95
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node res_mkquery
+#@subsection @code{res_mkquery}
+#@findex res_mkquery
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/res_query.texi
+Hash: 86b37d31764f008efaccff858dd736522731703d0e3db5df805ff8a8641830d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node res_query
+#@subsection @code{res_query}
+#@findex res_query
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/res_querydomain.texi
+Hash: 4febd67db3cafc50012c62f08b9150179b6b6a86fe3b563308abcf8aef41ea22
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node res_querydomain
+#@subsection @code{res_querydomain}
+#@findex res_querydomain
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/res_search.texi
+Hash: c61477ed9ea9b2f03e6d988d1459e5c85d6d767e5d5afd77688cbe1531c9d6bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node res_search
+#@subsection @code{res_search}
+#@findex res_search
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin 1.5.x, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/revoke.texi
+Hash: adf7f5046e9f85a1de13826a1877dab9bfb1e3f8926f96c31feb8fc9917c69a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node revoke
+#@subsection @code{revoke}
+#@findex revoke
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/rexec.texi
+Hash: 4beb711fc9303350ba038dd9e41dd18a54e9cd1df22fd2848b2ccdb633abc29a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rexec
+#@subsection @code{rexec}
+#@findex rexec
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, mingw, BeOS.
+
+File: ./doc/glibc-functions/rexec_af.texi
+Hash: 2d2addfd332aeac29c6e6f0199609364003aa36cfe6edb4da81edd73f408250d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rexec_af
+#@subsection @code{rexec_af}
+#@findex rexec_af
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/rpc_createerr.texi
+Hash: cd184775acd5c98bf80055c4f63cc5e4f1cf8be76c79f8359575324e96c0126c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rpc_createerr
+#@subsection @code{rpc_createerr}
+#@findex rpc_createerr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/rpmatch.texi
+Hash: 5626ebb2b2a3e883ddea5f7983fd541e62176b8fe1b90b6315281551744b773a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rpmatch
+#@subsection @code{rpmatch}
+#@findex rpmatch
+#
+#Gnulib module: rpmatch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/rresvport.texi
+Hash: a97f5ee77da3a964130fe12ad34f4429a25dc4e8983614eee3ff2228e41a5f05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rresvport
+#@subsection @code{rresvport}
+#@findex rresvport
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/rresvport_af.texi
+Hash: 5211bddef422718e87e6aed59cf45e467d35e86554b9620b72846aa840542485
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rresvport_af
+#@subsection @code{rresvport_af}
+#@findex rresvport_af
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/rtime.texi
+Hash: 2da678ee5e984b04b11b8441f6c38275bfce06b3d62f5bbf89e85c5510b10242
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rtime
+#@subsection @code{rtime}
+#@findex rtime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ruserok.texi
+Hash: 4521b929c1ed87ca5ae848c5a95d221964ecfdc3efb41a6f0d05adc5c438fb6c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ruserok
+#@subsection @code{ruserok}
+#@findex ruserok
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/ruserok_af.texi
+Hash: 54c8a002ff9e44fc49fb4bffd3bccdcc0f11e545b23463d9e3d3945bc8862e56
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ruserok_af
+#@subsection @code{ruserok_af}
+#@findex ruserok_af
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sbrk.texi
+Hash: 4d580822d85c2db8a05c71c6bbc254541a6ce7666158f73bc52fe573cc565151
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sbrk
+#@subsection @code{sbrk}
+#@findex sbrk
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw.
+
+File: ./doc/glibc-functions/scalbf.texi
+Hash: b16e449629ea32f221f6a63199f6b1691aa80be4d73e7215d8a0e1139149a9d6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalbf
+#@subsection @code{scalbf}
+#@findex scalbf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+
+File: ./doc/glibc-functions/scalbl.texi
+Hash: b30afc7e613e8f733f740a96f53c657699ace3dd840b3dd6859224ee96ca2385
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalbl
+#@subsection @code{scalbl}
+#@findex scalbl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sched_getaffinity.texi
+Hash: c3f41bc0b5cc0b9f81a9b3c03a45c74c58936a3ed3fda2d3983a1de9c0cdf054
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_getaffinity
+#@subsection @code{sched_getaffinity}
+#@findex sched_getaffinity
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sched_setaffinity.texi
+Hash: 2df764b35ee0d3f8a787b710f5154954dd0775e3daf75a5b9cfb34c1cd8c010c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_setaffinity
+#@subsection @code{sched_setaffinity}
+#@findex sched_setaffinity
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/seed48_r.texi
+Hash: 6f0ca8a62a531d471a5968c0b0117f6bfd1b3c4f8292a2f805e916f1b4ebea5d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node seed48_r
+#@subsection @code{seed48_r}
+#@findex seed48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/semtimedop.texi
+Hash: 80ac3efc9c4674b2a8c0fba162e409c061324e76e3715bb034e48f06d744c1ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node semtimedop
+#@subsection @code{semtimedop}
+#@findex semtimedop
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sendfile.texi
+Hash: 20c385fd8bd96b281377ff50c7eedf88fe7f424d965765b9ed3429976ffe788a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sendfile
+#@subsection @code{sendfile}
+#@findex sendfile
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 4.0, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setaliasent.texi
+Hash: c676df80fadf27ec301ff8d5668fb6e7aa5e057788c4b334847bcd9402724933
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setaliasent
+#@subsection @code{setaliasent}
+#@findex setaliasent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setbuffer.texi
+Hash: 840463919c23c80fb9256b4d89f5a8a975413c47a4b18d99a291d2c3fd775c74
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setbuffer
+#@subsection @code{setbuffer}
+#@findex setbuffer
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, mingw.
+
+File: ./doc/glibc-functions/setdomainname.texi
+Hash: d246fb85da1d127786c3c8c54fdd4662f2ab4234985ba4ec0f9e983a2856970d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setdomainname
+#@subsection @code{setdomainname}
+#@findex setdomainname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setfsent.texi
+Hash: 92cc739baa4eb3f52eefcad295bba2960905e5acec6e3f69afdb6cccac5b9d96
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setfsent
+#@subsection @code{setfsent}
+#@findex setfsent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setfsgid.texi
+Hash: a3e35a76fb66fc7edfe5eadb4fca7c217aa0f2dc521b0784d0e1e47749f1c49e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setfsgid
+#@subsection @code{setfsgid}
+#@findex setfsgid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setfsuid.texi
+Hash: 72853abaad0d3750b660aaa0496f1d95d3ea3a182bc34a16df3ea00a1b25ac1b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setfsuid
+#@subsection @code{setfsuid}
+#@findex setfsuid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setgroups.texi
+Hash: d47bf569c94762a70603caaa8b89619e1820828049b0a19af2694cf7928da98c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setgroups
+#@subsection @code{setgroups}
+#@findex setgroups
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sethostid.texi
+Hash: 2caed9ea890d6844a17a375c6b579ec03850c96c9aed240cea87bd0b882c9561
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sethostid
+#@subsection @code{sethostid}
+#@findex sethostid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sethostname.texi
+Hash: 6359c3be8e8047c37933b2a94e5323fc44e3be3ef72ad19957500e4d1449c832
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sethostname
+#@subsection @code{sethostname}
+#@findex sethostname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setipv4sourcefilter.texi
+Hash: 769bdc41e8ac069fabcdf83b06be2c5741e75b340352c2b9eafa1d294f032097
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setipv4sourcefilter
+#@subsection @code{setipv4sourcefilter}
+#@findex setipv4sourcefilter
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setkey_r.texi
+Hash: ff01f1e3f4faf132318c0d62ae42e6e536e83adf9f04b6987d397f18b871dda1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setkey_r
+#@subsection @code{setkey_r}
+#@findex setkey_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setlinebuf.texi
+Hash: 823f1a2c56b9bfd0fc25a9476ef59c90fadb49050d097037bc459d3d71e7c1e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setlinebuf
+#@subsection @code{setlinebuf}
+#@findex setlinebuf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, mingw.
+
+File: ./doc/glibc-functions/setlogin.texi
+Hash: 9eaafc78df2669e5b4e72a2e5a485085acb927d50e5be2953dbeb2d81701391f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setlogin
+#@subsection @code{setlogin}
+#@findex setlogin
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setmntent.texi
+Hash: b332b02169657299a7ca3ba9af1e7e3fc737d24cd2983f7a4d133af81b092961
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setmntent
+#@subsection @code{setmntent}
+#@findex setmntent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setnetgrent.texi
+Hash: 30d8d87126649c90573d67b04ff921db26d84a756946067181cb5946356b0c0a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setnetgrent
+#@subsection @code{setnetgrent}
+#@findex setnetgrent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setresgid.texi
+Hash: 4975dfd5771c4957030f086d8ac5ce7189cdde23f5e2bb67d0ff07d968e35479
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setresgid
+#@subsection @code{setresgid}
+#@findex setresgid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setresuid.texi
+Hash: cbd55c93dfbb005061c4332bb10d9cd19c08f8a184a1d192c45d42466ac5fc85
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setresuid
+#@subsection @code{setresuid}
+#@findex setresuid
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setrpcent.texi
+Hash: ca47e2ef511b58040b7786ede8b64eaa8d0cb58ac434221596b0d7243d1b480c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setrpcent
+#@subsection @code{setrpcent}
+#@findex setrpcent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/setsourcefilter.texi
+Hash: 9e3a447c3cd41174f4b9ea6a4eede7e34ee84c95483674ed06d20ff866e0bfc8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setsourcefilter
+#@subsection @code{setsourcefilter}
+#@findex setsourcefilter
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setspent.texi
+Hash: 68ed2648af0ebecb98d3bf880c5be4de1fce4929b0de543754c298c458c011fd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setspent
+#@subsection @code{setspent}
+#@findex setspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setstate_r.texi
+Hash: e4d7b351007b8e8def79a82d454f164d8f556f4bf6826632ba9d25a7145afb84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setstate_r
+#@subsection @code{setstate_r}
+#@findex setstate_r
+#
+#Gnulib module: random_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/settimeofday.texi
+Hash: fc6c7b74ed55751f1b9cd21d152fa6e70b668dcf57710351f309902b5e5affb9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node settimeofday
+#@subsection @code{settimeofday}
+#@findex settimeofday
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/setttyent.texi
+Hash: 872b4c7efffec76c314ae3692798b581b59be4b0a11eb6e347a2433f8d3d1b74
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setttyent
+#@subsection @code{setttyent}
+#@findex setttyent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setusershell.texi
+Hash: 477ef1c7ddfce9e2288f6a88e43c3ea8e145e597f6e804432e490c88a6fbdb7d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setusershell
+#@subsection @code{setusershell}
+#@findex setusershell
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setutent.texi
+Hash: 36be58898a9d9619f987500bb8ad48703b3b386cdb1dca7f13a8f722980c3f51
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setutent
+#@subsection @code{setutent}
+#@findex setutent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/setxattr.texi
+Hash: af409fa4c1d03fe81bac55d63c469cdc03226ca561f727c619154204da0bf115
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setxattr
+#@subsection @code{setxattr}
+#@findex setxattr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+
+File: ./doc/glibc-functions/sgetspent.texi
+Hash: 2f4846b40833b0c7688dfa37b976889a9f8cf678e31e3d1531283d9a60baf9f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sgetspent
+#@subsection @code{sgetspent}
+#@findex sgetspent
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sgetspent_r.texi
+Hash: 978bcfc4fc40a2fdb82866fb2987a7a8e76d94770f437d12d4fcd9f1f53520da
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sgetspent_r
+#@subsection @code{sgetspent_r}
+#@findex sgetspent_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sigandset.texi
+Hash: 5b76732bc467d481bed4bf2c89662fa7a83bd3efb8edbe663a459dacc489df5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigandset
+#@subsection @code{sigandset}
+#@findex sigandset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sigblock.texi
+Hash: d24395448034650dd3561cf398904e9423525f1ea310dcc9495ad4389678ff5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigblock
+#@subsection @code{sigblock}
+#@findex sigblock
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/siggetmask.texi
+Hash: 9547fcbda13bfb47700b223e5625b1dd8f7ead952650f7f1601796a5bd9bfd75
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node siggetmask
+#@subsection @code{siggetmask}
+#@findex siggetmask
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sigisemptyset.texi
+Hash: adc7331e09d3e1906354d3f1088b3d82a0f374a49d70553bf2a8bdf5dabd6d98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigisemptyset
+#@subsection @code{sigisemptyset}
+#@findex sigisemptyset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/significand.texi
+Hash: e3fc1148c171fbea7b8a88291964da753fc483cc72e395f90defc8f913dab945
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node significand
+#@subsection @code{significand}
+#@findex significand
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
+
+File: ./doc/glibc-functions/significandf.texi
+Hash: 914e8ed95038b7596b6f8664b5d356e94bf64fd371a8d34e5c6993514c247e80
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node significandf
+#@subsection @code{significandf}
+#@findex significandf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
+
+File: ./doc/glibc-functions/significandl.texi
+Hash: b914050d57690497a42bf4f9ea1629690571bf8f248678bb27144558244459bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node significandl
+#@subsection @code{significandl}
+#@findex significandl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sigorset.texi
+Hash: 0f90cd35021ca496fcca811f88941ad4c53f6bb7f4bb5309ac69e9cec7b2607a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigorset
+#@subsection @code{sigorset}
+#@findex sigorset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sigreturn.texi
+Hash: 4109f568a6d1455056f5d91d0c44277e0af12df9f48ead1d3b0b093d9cb88367
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigreturn
+#@subsection @code{sigreturn}
+#@findex sigreturn
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sigsetmask.texi
+Hash: 21b02d389a2a52be020e6d2debdbb63155256cbcd340a7139e37883d164a2f53
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigsetmask
+#@subsection @code{sigsetmask}
+#@findex sigsetmask
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/sigstack.texi
+Hash: b27976cb6de009f776f9d77d1e943fd892684d910082b2e313ab25dbd9929c56
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigstack
+#@subsection @code{sigstack}
+#@findex sigstack
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sigvec.texi
+Hash: c8f0aa7dc316b819ba924fdd1b032a56d1c51033556703a95693b7ad37469047
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigvec
+#@subsection @code{sigvec}
+#@findex sigvec
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/sincos.texi
+Hash: e099c2aa2af17f5445683b13950dc83c8f36a8c799ddd736778f60b769bfa978
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sincos
+#@subsection @code{sincos}
+#@findex sincos
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/sincosf.texi
+Hash: 9acbcc862d6641f66afd97f947372db43d1da508ebf44bb2e097cfb5dadfe08a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sincosf
+#@subsection @code{sincosf}
+#@findex sincosf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/sincosl.texi
+Hash: a89fd4b147815474f331d64f144fbd4d7d75f2227af7eb93441703a0b16d3c32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sincosl
+#@subsection @code{sincosl}
+#@findex sincosl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sprofil.texi
+Hash: c08fdfe99dcfab4dca1cb86b587f2240b31c837207173d7174db1f34d4062e2c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sprofil
+#@subsection @code{sprofil}
+#@findex sprofil
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/srand48_r.texi
+Hash: a1b31d907a31703ac36d663284071ace96275b5a27822fe0a1e5e4f1c2b603a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node srand48_r
+#@subsection @code{srand48_r}
+#@findex srand48_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/srandom_r.texi
+Hash: 2a08e55af0f00d7af009ec4676559ba9918f061ab74e235b22c59972ac050349
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node srandom_r
+#@subsection @code{srandom_r}
+#@findex srandom_r
+#
+#Gnulib module: random_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/ssignal.texi
+Hash: fcb2979253673c67d4c09487a6cc8cf39be3c2252c6ec496042be4023ea0a398
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ssignal
+#@subsection @code{ssignal}
+#@findex ssignal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/statfs.texi
+Hash: 9d6fc5e1c0bdfae6063e50e332eb0012b995748c979a5d8580eef86bfd8264ee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node statfs
+#@subsection @code{statfs}
+#@findex statfs
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/step.texi
+Hash: 426a0a4b16e9bcbd7d7aa2ec82179983156979e5d4f5cf3b4873f222927b3649
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node step
+#@subsection @code{step}
+#@findex step
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/stime.texi
+Hash: f64814a768ab3a8c2dfc527a6996a254ae0378f1372004713722faa0f7539d86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stime
+#@subsection @code{stime}
+#@findex stime
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/strcasestr.texi
+Hash: 6be97e12f20df96d2042b184ed047d50673dc850649541ba46094f6487dc5932
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcasestr
+#@subsection @code{strcasestr}
+#@findex strcasestr
+#
+#Gnulib module: strcasestr or strcasestr-simple
+#
+#Portability problems fixed by either Gnulib module @code{strcasestr-simple}
+#or @code{strcasestr}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x,
+#mingw, BeOS.
+#
+#@item
+
+File: ./doc/glibc-functions/strchrnul.texi
+Hash: c291b83d07a36362c9038066bdc0d7d21ec01dd7ae29f155f14de1706c7fc7f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strchrnul
+#@subsection @code{strchrnul}
+#@findex strchrnul
+#
+#Gnulib module: strchrnul
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/strfry.texi
+Hash: eca813b0b80cd6fd4f69613929302810c07d23628958246d8b381f371a8ab226
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strfry
+#@subsection @code{strfry}
+#@findex strfry
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strptime_l.texi
+Hash: 61de6a13e4b945c81a96495f6c1314565151113468844dc21ee8250c55736e4b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strptime_l
+#@subsection @code{strptime_l}
+#@findex strptime_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strsep.texi
+Hash: b489bf696b48cd524d457667002388a229416e42dc1a63eb63730caa7f9f834e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strsep
+#@subsection @code{strsep}
+#@findex strsep
+#
+#Gnulib module: strsep
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/strtod_l.texi
+Hash: 96d95390352ef1aaccbdef7d3046cd2710855e0956a86dd2d9ae0a73882d8d2f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtod_l
+#@subsection @code{strtod_l}
+#@findex strtod_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strtof_l.texi
+Hash: 3a7c917085697f19f398d2dff4f912cc2558df8b1a20619530347c1a32cf2a10
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtof_l
+#@subsection @code{strtof_l}
+#@findex strtof_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strtol_l.texi
+Hash: 1056e76e6f3b96576d6daa749628144d71173983258b917cfabdad15c2a5cc84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtol_l
+#@subsection @code{strtol_l}
+#@findex strtol_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strtold_l.texi
+Hash: 980aab34470b28f72b4d05de96192a884c5a5b4735613778864b58c978d2a052
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtold_l
+#@subsection @code{strtold_l}
+#@findex strtold_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strtoll_l.texi
+Hash: 7c77b5e468dba6520dad40a9029afb868c0e77759d1aded41f788d9512fa7fc1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoll_l
+#@subsection @code{strtoll_l}
+#@findex strtoll_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strtoq.texi
+Hash: 3ee5c14f722fd6571b509d168bebaa6eac29ae9fa67e06fa6185e1c6434f843a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoq
+#@subsection @code{strtoq}
+#@findex strtoq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw.
+
+File: ./doc/glibc-functions/strtoul_l.texi
+Hash: 2e9edb1ca6317be19540834bdc994101d4e1ba3acf938a92f0a208d703663327
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoul_l
+#@subsection @code{strtoul_l}
+#@findex strtoul_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strtoull_l.texi
+Hash: d72937fc153e6134f62f1e5e091dc1fba60c2bfe36ee0fde62e11f29af458254
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoull_l
+#@subsection @code{strtoull_l}
+#@findex strtoull_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/strtouq.texi
+Hash: 4d4e4b1560b347f7c940bf2f1ab536573b722bc14621595d1f58b0beb6fbcc56
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtouq
+#@subsection @code{strtouq}
+#@findex strtouq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw.
+
+File: ./doc/glibc-functions/strverscmp.texi
+Hash: 0434fb9a8d1d9eb76da42138e9dddaabb2ed83e8256c8125e1518d22996cdf13
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strverscmp
+#@subsection @code{strverscmp}
+#@findex strverscmp
+#
+#Gnulib module: strverscmp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/svc_exit.texi
+Hash: 742a22a37b97a093d94bfb5e450a99a8493496e7a45e9fbc9523dd8b1e8e26ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_exit
+#@subsection @code{svc_exit}
+#@findex svc_exit
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/svc_fdset.texi
+Hash: 86ac209423900ccf82784e29806514f557a75814e294a8ec878a178bc4a43d7a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_fdset
+#@subsection @code{svc_fdset}
+#@findex svc_fdset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svc_getreq.texi
+Hash: 0d0f553c97d0c006ff8fd51d80811496471a155c5f6142ef18346229375be10a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_getreq
+#@subsection @code{svc_getreq}
+#@findex svc_getreq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svc_getreq_common.texi
+Hash: 6eb644f28f759de13fb4a8a99336de8a03220b4313b734f69fd0f7592bec8385
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_getreq_common
+#@subsection @code{svc_getreq_common}
+#@findex svc_getreq_common
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/svc_getreq_poll.texi
+Hash: bd3b4fdaad69465c30adb4295f68efa66bf8f4ed1eb19fb4516ab39d442f9cfc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_getreq_poll
+#@subsection @code{svc_getreq_poll}
+#@findex svc_getreq_poll
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/svc_getreqset.texi
+Hash: 998123121ccd30984d17bd2695098f64638509b84567a5245ad531e5460c24a2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_getreqset
+#@subsection @code{svc_getreqset}
+#@findex svc_getreqset
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svc_max_pollfd.texi
+Hash: a8c742ad774e846b1ae0224476a8eafacf12814e0d2d92e51c10c19c89d47f72
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_max_pollfd
+#@subsection @code{svc_max_pollfd}
+#@findex svc_max_pollfd
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/svc_pollfd.texi
+Hash: a5eb6ae06444b07898b1ff83435e446b709bee52ac757f9bbe48742ee666ed57
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_pollfd
+#@subsection @code{svc_pollfd}
+#@findex svc_pollfd
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/svc_register.texi
+Hash: 1a6f4f41aac1621aa10a247323bad0698f2b0531c10b84782216e3728f0009ff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_register
+#@subsection @code{svc_register}
+#@findex svc_register
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svc_run.texi
+Hash: da083b143bb1db65e5210a2456b483c19b833f3d2d3e495fcf9b4b319b6a1fec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_run
+#@subsection @code{svc_run}
+#@findex svc_run
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svc_sendreply.texi
+Hash: d710e6624e82f543d3ad7fdefe76aefd4b88cd0142ad24f75d5403c7942f93dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_sendreply
+#@subsection @code{svc_sendreply}
+#@findex svc_sendreply
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svc_unregister.texi
+Hash: ad6885dfeb185cdf4f0ce763b440c8805f8e4b02ac9c44df6231576ac68918aa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svc_unregister
+#@subsection @code{svc_unregister}
+#@findex svc_unregister
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcerr_auth.texi
+Hash: 657d79eaada1f05fcd496f9faf8a85c5b914419aee6c0681b961250cba6b8bd2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcerr_auth
+#@subsection @code{svcerr_auth}
+#@findex svcerr_auth
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcerr_decode.texi
+Hash: 013d5c25e6c2ab654f6b6b95e33881fc2e774e31b404265acdba1610fe7ff4a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcerr_decode
+#@subsection @code{svcerr_decode}
+#@findex svcerr_decode
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcerr_noproc.texi
+Hash: 0093d9d2b2f48942af33a201c8aa57b2d588db21b684f0cb9622ba87f780ac97
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcerr_noproc
+#@subsection @code{svcerr_noproc}
+#@findex svcerr_noproc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcerr_noprog.texi
+Hash: 0411b3b4407bb4ebf4a5a86b619c044ee035b2a77fbcf2de14ab8c04a44708d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcerr_noprog
+#@subsection @code{svcerr_noprog}
+#@findex svcerr_noprog
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcerr_progvers.texi
+Hash: 63b59aa0eaba24585ee2ea85ba6b8d2ce2212ced66266f5fff5ef99043ca4675
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcerr_progvers
+#@subsection @code{svcerr_progvers}
+#@findex svcerr_progvers
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcerr_systemerr.texi
+Hash: 9a43f8242ce29eea2b3dabe6eba74372a66b998d24a8784634b931912ab118e5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcerr_systemerr
+#@subsection @code{svcerr_systemerr}
+#@findex svcerr_systemerr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcerr_weakauth.texi
+Hash: 60f129f48b216becf43b7a6e107572bad1c0aa12975c9b9e2dcb4de32ea12bb6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcerr_weakauth
+#@subsection @code{svcerr_weakauth}
+#@findex svcerr_weakauth
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcraw_create.texi
+Hash: 9875045015fb706eed8645e1d24f2b6d09cff0018b985afe987c567c3f262168
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcraw_create
+#@subsection @code{svcraw_create}
+#@findex svcraw_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svctcp_create.texi
+Hash: 76e63979ea96b2ce48409fcba007b8d2a2dd2d1da33cd8c4be2477376f860d6a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svctcp_create
+#@subsection @code{svctcp_create}
+#@findex svctcp_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcudp_bufcreate.texi
+Hash: ebad62a46d00b7f175d1ac81978d861de596d20f37be2a7e01c918ee9ad815bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcudp_bufcreate
+#@subsection @code{svcudp_bufcreate}
+#@findex svcudp_bufcreate
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcudp_create.texi
+Hash: e6c5c92dcfc4d6256d7c0c8704a3ab0156d7b8f8f4da9cdb264522e3cffcca68
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcudp_create
+#@subsection @code{svcudp_create}
+#@findex svcudp_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/svcunix_create.texi
+Hash: c2d36cc3e9b42dc5c0087798d08088d981fee60bb2b1fc134cb051015dfdf364
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node svcunix_create
+#@subsection @code{svcunix_create}
+#@findex svcunix_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/swapoff.texi
+Hash: d28e58cd281ea7d216c396bbe6cbb28c4ade6a1b1cb8f5d2bdfae763de8eb9bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node swapoff
+#@subsection @code{swapoff}
+#@findex swapoff
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/swapon.texi
+Hash: a2ae81f7c69492bebb553992ff91279a5e17c259426a305e78c4398175810bd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node swapon
+#@subsection @code{swapon}
+#@findex swapon
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#OpenBSD 3.8, AIX 5.1, IRIX 6.5, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sys_errlist.texi
+Hash: 9484aa6c644fd4efcf3f9c79bbb710107e54086b9d2cfea822a505e85b11d95f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys_errlist
+#@subsection @code{sys_errlist}
+#@findex sys_errlist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sys_nerr.texi
+Hash: 6c269f9e04c5d53a2917b1fddeb7d432f614326628f60cdf42128bdbc1b4bf58
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys_nerr
+#@subsection @code{sys_nerr}
+#@findex sys_nerr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This variable is missing on some platforms:
+#MacOS X 10.3, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sys_siglist.texi
+Hash: cdfa2194216664145565158d29ce28afe50425b6434879005d1f09fc2e353de8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys_siglist
+#@subsection @code{sys_siglist}
+#@findex sys_siglist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This constant is missing on some platforms:
+#MacOS X 10.3, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/syscall.texi
+Hash: 190444fde09ca92f5d3c1a088254e8ea24f8ad21e7e743bd7bc74d5e7c3d8422
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node syscall
+#@subsection @code{syscall}
+#@findex syscall
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/sysctl.texi
+Hash: 7caee75d99a482a34152821c313157a935611e93d37475e51fcfa966c389b00f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sysctl
+#@subsection @code{sysctl}
+#@findex sysctl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 5.3, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sysinfo.texi
+Hash: 2ad08e1570e50f92819f57b496af7be37f638f2c45f31ddf1445f35d928e58b8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sysinfo
+#@subsection @code{sysinfo}
+#@findex sysinfo
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/sysv_signal.texi
+Hash: 53654570fe739a0174eac69d3395bed8f5ee0a66ab1dce4870f0c6a9ef8da8d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sysv_signal
+#@subsection @code{sysv_signal}
+#@findex sysv_signal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/tdestroy.texi
+Hash: 2b159ca8f8ccd5a6ba34012b632072be835387cef1daa34853fdbdec8d11bfd3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tdestroy
+#@subsection @code{tdestroy}
+#@findex tdestroy
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/textdomain.texi
+Hash: 2b3b638baceaf30671d2612435628b02e3510a81bcb035c4d0953415beb44aa0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node textdomain
+#@subsection @code{textdomain}
+#@findex textdomain
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/timegm.texi
+Hash: b33fd6b9183cda8ba31a038b0646223cf342064f7f57f96a60c01adee101f593
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node timegm
+#@subsection @code{timegm}
+#@findex timegm
+#
+#Gnulib module: timegm
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/timelocal.texi
+Hash: aa7d6d8db5573d824931cad1a0e543b7ac6615fb9f76d7e294700027c2a7f901
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node timelocal
+#@subsection @code{timelocal}
+#@findex timelocal
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/tmpnam_r.texi
+Hash: 867eda2cdd3958cb2d0774ac423ace6f99f332061f97fc1e89ee182b4defd593
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tmpnam_r
+#@subsection @code{tmpnam_r}
+#@findex tmpnam_r
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ttyslot.texi
+Hash: a2db69dfed6d03d128a80b25100aa8bfdbf9ab8b7e6aae779b69352fe68be984
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ttyslot
+#@subsection @code{ttyslot}
+#@findex ttyslot
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+
+File: ./doc/glibc-functions/ulckpwdf.texi
+Hash: 5f913bc70494c38469fbeb1b242348e0d6818d5efa27ce69d1e56d0bf9733477
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ulckpwdf
+#@subsection @code{ulckpwdf}
+#@findex ulckpwdf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/umount.texi
+Hash: fda8d64fea228f847027a34530867b8fb61767a6b19b9bd8a2bccd46400dd1c5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node umount
+#@subsection @code{umount}
+#@findex umount
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/umount2.texi
+Hash: 2957ef22d4b034fe43264d7a077e0c0b79acfe9b8d77dac47cbd9871e7322a87
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node umount2
+#@subsection @code{umount2}
+#@findex umount2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/updwtmp.texi
+Hash: 0b9cdb5b25e1d740d3d4f9c7f3b42619f569938aba2412951a154103a9300952
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node updwtmp
+#@subsection @code{updwtmp}
+#@findex updwtmp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, OSF/1 5.1, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/updwtmpx.texi
+Hash: 3d8f09f5afded96b9f0ae4b4d20dfa978893205440ea6bd95424e0e3861d624a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node updwtmpx
+#@subsection @code{updwtmpx}
+#@findex updwtmpx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1,
+
+File: ./doc/glibc-functions/user2netname.texi
+Hash: 5f52a0441b2809065a8fa64c97c5c16eccf950ae9ed3108a0f0746ffc0ecea5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node user2netname
+#@subsection @code{user2netname}
+#@findex user2netname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ustat.texi
+Hash: f6cc53dfd21cf85c0e451aeea98c50ccd011ea4c88da39fcde741121726e1183
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ustat
+#@subsection @code{ustat}
+#@findex ustat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/utmpname.texi
+Hash: 30f2c75b23465299b58ac58dd7d8782080f478c88177e4f4a383f7c45f7120db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node utmpname
+#@subsection @code{utmpname}
+#@findex utmpname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/utmpxname.texi
+Hash: 7f048aaa1c923da17dbac39bf8b24992e0e1429d0f8f1b07ad60a6b4c0959974
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node utmpxname
+#@subsection @code{utmpxname}
+#@findex utmpxname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, OSF/1 5.1, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/valloc.texi
+Hash: bc0a2963c65006320c0a49b64417fe78e8b2fa1dfa9bacec78dcada637280365
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node valloc
+#@subsection @code{valloc}
+#@findex valloc
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5.
+
+File: ./doc/glibc-functions/vasprintf.texi
+Hash: 01dc69843bb08b39bbef53771785a3f74e86491f2d1dddc8739d898d2a8bdf9a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vasprintf
+#@subsection @code{vasprintf}
+#@findex vasprintf
+#
+#Gnulib module: vasprintf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-functions/verr.texi
+Hash: 78267ac4d25a9129dd9b2509e14064e457b8c938b2f7075931403403963d17da
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node verr
+#@subsection @code{verr}
+#@findex verr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/verrx.texi
+Hash: 243ae75a133530c958e53bb80fbef71f2528824270327400efbe249a75c523cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node verrx
+#@subsection @code{verrx}
+#@findex verrx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/versionsort.texi
+Hash: a8d292fdf0af9d2eb2473ecba25b36c64863e58acce8c463bf054dc5476603c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node versionsort
+#@subsection @code{versionsort}
+#@findex versionsort
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/vhangup.texi
+Hash: 24826dfcb8f9b2e73d2e89ddd190426d8e5d0f227b0082ac812909b10b8a8b3d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vhangup
+#@subsection @code{vhangup}
+#@findex vhangup
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, OSF/1 5.1, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/vlimit.texi
+Hash: 9462f628ec3422857cc94eb976adec9a79466b27f54a83ab819f916053c96976
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vlimit
+#@subsection @code{vlimit}
+#@findex vlimit
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/vm86.texi
+Hash: c86ac73a01f52ed04acc07d62d1ec512640f650cb0347dd079e7ec4c71e0af5d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vm86
+#@subsection @code{vm86}
+#@findex vm86
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/vsyslog.texi
+Hash: 848e6a794d99db034fd60bb81dd195003e60770bffcdee4dbaeaebcf71c98ddd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vsyslog
+#@subsection @code{vsyslog}
+#@findex vsyslog
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, OSF/1 5.1, mingw, BeOS.
+
+File: ./doc/glibc-functions/vtimes.texi
+Hash: 06d2ebc51079102284cf04e82831a57f97849fd2a1e177aaed25aa462f93e12f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vtimes
+#@subsection @code{vtimes}
+#@findex vtimes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/vwarn.texi
+Hash: fdc2b63b39a6cb2c3207ba881f0765eb8768f34d2fa7badb91b15c0a291b715c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vwarn
+#@subsection @code{vwarn}
+#@findex vwarn
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/vwarnx.texi
+Hash: a36189d641dc9338fd1667d162ed6642f0a3bea5356d5357aedfcc2888b47337
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vwarnx
+#@subsection @code{vwarnx}
+#@findex vwarnx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/wait3.texi
+Hash: a7b4066310d3a25054fa4f7aa01e708505f766e673c9cd25645a820129cf5d2d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wait3
+#@subsection @code{wait3}
+#@findex wait3
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wait4.texi
+Hash: 6d200273bf91bf0dcb399661230e36cac133661d4bc9dff07cc419dae1f76c05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wait4
+#@subsection @code{wait4}
+#@findex wait4
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/warn.texi
+Hash: 723908ecf30a2a6a42d40630b7c66884afeb923239309b052149301d01d48d41
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node warn
+#@subsection @code{warn}
+#@findex warn
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/warnx.texi
+Hash: 5f98d682eb3ca5672fcbad900bd876090ced691d922879ea4bc661c541d83d1e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node warnx
+#@subsection @code{warnx}
+#@findex warnx
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, BeOS.
+
+File: ./doc/glibc-functions/wcschrnul.texi
+Hash: 5d417933737648f79c9b9091e34dd6de4bdcbacabb611962290237a8b1a53f78
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcschrnul
+#@subsection @code{wcschrnul}
+#@findex wcschrnul
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcsftime_l.texi
+Hash: ef33c1a0f5969ac80dfac455c2ab398baa7e2ae22403663282b851abcacb0c86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsftime_l
+#@subsection @code{wcsftime_l}
+#@findex wcsftime_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstod_l.texi
+Hash: ad0ddbd33f44160180dc6a5116dec058c419d4cbabf88fa761763aa9f38e11a4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstod_l
+#@subsection @code{wcstod_l}
+#@findex wcstod_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstof_l.texi
+Hash: e3b0808da41d177b2fc26f9fa6dbaf17fde774661f00d708a7599f32e8ae22c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstof_l
+#@subsection @code{wcstof_l}
+#@findex wcstof_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstol_l.texi
+Hash: 7f70614683c069b068bdd6f22a9f557afb8a5cc586f5c4a6e434506834c08c2c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstol_l
+#@subsection @code{wcstol_l}
+#@findex wcstol_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstold_l.texi
+Hash: c68fa338d011fe9288ac28b1eb729b469531db1475cae1b1b7dadbcf7098b90a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstold_l
+#@subsection @code{wcstold_l}
+#@findex wcstold_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstoll_l.texi
+Hash: bf5c9212a552069833ed365917ab1628caaac9bafde388b648aeb9d3d96cb709
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoll_l
+#@subsection @code{wcstoll_l}
+#@findex wcstoll_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstoq.texi
+Hash: 4999de040d3a057b3a08f5a332220ea773287f6916b8f012d3e0b184c3f26592
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoq
+#@subsection @code{wcstoq}
+#@findex wcstoq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstoul_l.texi
+Hash: e614b148fe54e7838a90ab850f729e323d6669bf7e07312bf4789ce74918119d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoul_l
+#@subsection @code{wcstoul_l}
+#@findex wcstoul_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstoull_l.texi
+Hash: 745c028ab6e80155cab792bf525124410699c33d23085c42d2be99ab905f0f24
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoull_l
+#@subsection @code{wcstoull_l}
+#@findex wcstoull_l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wcstouq.texi
+Hash: ba85b34761c3f98505456e786d5ed3c3259271db6f67594a58751d4cf48f6053
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstouq
+#@subsection @code{wcstouq}
+#@findex wcstouq
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/wmempcpy.texi
+Hash: 4bcdb18550e5c7d28fb6c83a0313ce9f4ace5cc915c3d08084984599785bc2fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wmempcpy
+#@subsection @code{wmempcpy}
+#@findex wmempcpy
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_array.texi
+Hash: 19c6ca0199f50e5f501e77f148ab91dcbfe91b661cf52da5e6856f5cbcea03d3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_array
+#@subsection @code{xdr_array}
+#@findex xdr_array
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_authunix_parms.texi
+Hash: cdb3df779cceb4d74a88670f6a4610951a2aa4394de151d1e7fadb24c5d0be3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_authunix_parms
+#@subsection @code{xdr_authunix_parms}
+#@findex xdr_authunix_parms
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_bool.texi
+Hash: 4ea286fe1a567849deeabf993df9d993ba60ebca88953089f743484495cd055b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_bool
+#@subsection @code{xdr_bool}
+#@findex xdr_bool
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_bytes.texi
+Hash: 3cb975a4ce2552c20f4957ccd8b73cdb7b626672140bef0b1e2f72f6e5fc0d1e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_bytes
+#@subsection @code{xdr_bytes}
+#@findex xdr_bytes
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_callhdr.texi
+Hash: 6f417e2360984d05faa4f6e29ec925d45ff15aaff8b559b8797a3e1323b85751
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_callhdr
+#@subsection @code{xdr_callhdr}
+#@findex xdr_callhdr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_callmsg.texi
+Hash: cb750ed335f8990d02c2f270df2af3936914bca25e3c6ccf0744ca6cecfb28c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_callmsg
+#@subsection @code{xdr_callmsg}
+#@findex xdr_callmsg
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_cback_data.texi
+Hash: d4a37bb7dc668a544a5cd09991da24d8096f4b12f9e6e37e8393a26940361fa9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_cback_data
+#@subsection @code{xdr_cback_data}
+#@findex xdr_cback_data
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_char.texi
+Hash: c14040bd19324e444f22eb519f081124ad19cc489ff3204c2b48e52576921e8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_char
+#@subsection @code{xdr_char}
+#@findex xdr_char
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_cryptkeyarg.texi
+Hash: dcdd59591f3dca753276ddb3dc166b55ae1e1dd469fa7a80f9ce2a998423b84d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_cryptkeyarg
+#@subsection @code{xdr_cryptkeyarg}
+#@findex xdr_cryptkeyarg
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_cryptkeyarg2.texi
+Hash: e7b71aa3c2b7935333c3782753185038023468223a630d977a16a3ffd24e105d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_cryptkeyarg2
+#@subsection @code{xdr_cryptkeyarg2}
+#@findex xdr_cryptkeyarg2
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_cryptkeyres.texi
+Hash: 3b754af6685bd5ebf15014e7cf19ccbbfef72939d1c5a815488b0007e0352e44
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_cryptkeyres
+#@subsection @code{xdr_cryptkeyres}
+#@findex xdr_cryptkeyres
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_des_block.texi
+Hash: 3ce2fdf69ba45fff5fc0faa36f81ae554c4a5af6ea364d6a134a230d870b4f93
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_des_block
+#@subsection @code{xdr_des_block}
+#@findex xdr_des_block
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_domainname.texi
+Hash: 3881316adc80be14ad5c4fbdae5d311b492d7109e80cf05a00314e9e69aa5ff9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_domainname
+#@subsection @code{xdr_domainname}
+#@findex xdr_domainname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_double.texi
+Hash: f91e2921b11504f0c91cbd54470b2973bc77623887893e0b94e964b503f7277f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_double
+#@subsection @code{xdr_double}
+#@findex xdr_double
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_enum.texi
+Hash: b149f650f465a2faa5f1d68bd93ece4c0a0ed0896afeabae4dcb70ba405b89d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_enum
+#@subsection @code{xdr_enum}
+#@findex xdr_enum
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_float.texi
+Hash: 78543df2289178a87a35441879ce5a1ff664fcc58c7b8c6426ba648e3ff4a8cb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_float
+#@subsection @code{xdr_float}
+#@findex xdr_float
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_free.texi
+Hash: a47ac9b7d37b8d0cb2f75c4d7d96e563dd8047c92de3f49a33e3c3ce8f66020e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_free
+#@subsection @code{xdr_free}
+#@findex xdr_free
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_getcredres.texi
+Hash: beaa386f00d0505786655c3db8d09815047d87487d12835741e566bf945bbed9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_getcredres
+#@subsection @code{xdr_getcredres}
+#@findex xdr_getcredres
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_hyper.texi
+Hash: 8e26f31e26f57ef964cd9116f3d9e2574589b14caaa979585e198941bd24bb9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_hyper
+#@subsection @code{xdr_hyper}
+#@findex xdr_hyper
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_int.texi
+Hash: cb72dde3124b8fd76f079ba72974518af41d6411110e224ad69a9dd66c4e377e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_int
+#@subsection @code{xdr_int}
+#@findex xdr_int
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_int16_t.texi
+Hash: 9d69be17ce7fcf05a552f56855ca688ec4eb9692b7e7133dd74cf3af7a0ff4c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_int16_t
+#@subsection @code{xdr_int16_t}
+#@findex xdr_int16_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_int32_t.texi
+Hash: 17df4279175d33cbffeb13dfc3723dd8cff57e6848ac36fcd31b6f662e0083e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_int32_t
+#@subsection @code{xdr_int32_t}
+#@findex xdr_int32_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_int64_t.texi
+Hash: 4753692e70e7e2651f024e883c7f010c103b4c79709fff8ef1fdf941047ec0e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_int64_t
+#@subsection @code{xdr_int64_t}
+#@findex xdr_int64_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_int8_t.texi
+Hash: 1a0aa6477a573362cb68f4a632c0a058c2ec2902f2151ff9e84ac6a5a6b780e8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_int8_t
+#@subsection @code{xdr_int8_t}
+#@findex xdr_int8_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_key_netstarg.texi
+Hash: 0f4590353eccd2b066cc84ed1e150a99a544717e54a13be8af2bb22d7dd4a240
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_key_netstarg
+#@subsection @code{xdr_key_netstarg}
+#@findex xdr_key_netstarg
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_key_netstres.texi
+Hash: ca085bcc181d082d1a2f1577ccc05c0d4b52ee79579b97259bfc6f5bf07dc781
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_key_netstres
+#@subsection @code{xdr_key_netstres}
+#@findex xdr_key_netstres
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_keybuf.texi
+Hash: a9c13f98859f695a73919a5fc0a4b2ba5b2b45f2ae7e162642343596d1533435
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_keybuf
+#@subsection @code{xdr_keybuf}
+#@findex xdr_keybuf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_keydat.texi
+Hash: 73378018a2b511581dae3489763c619c7d7bfc34028fb1b7b863c5a39bb2f04c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_keydat
+#@subsection @code{xdr_keydat}
+#@findex xdr_keydat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_keystatus.texi
+Hash: 298e5a8921550a28dba370bdccc49d13dd939586385108de443e2ed839be59a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_keystatus
+#@subsection @code{xdr_keystatus}
+#@findex xdr_keystatus
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_long.texi
+Hash: e06094afc04e32d73c2acc605cafcc9e09437632f2b5c2abe358e516f94f18a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_long
+#@subsection @code{xdr_long}
+#@findex xdr_long
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_longlong_t.texi
+Hash: 53de27845b0a5e03ff5f8130b12a1b13999547c01fb30c65b73cf92694bb0803
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_longlong_t
+#@subsection @code{xdr_longlong_t}
+#@findex xdr_longlong_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_mapname.texi
+Hash: b9e02d47cff97af875c28948086c04f39cc7552f7a2a0497f3027dc263b9c919
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_mapname
+#@subsection @code{xdr_mapname}
+#@findex xdr_mapname
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_netnamestr.texi
+Hash: fb5440773a3cf802982b1e1410236bbfce22b04dab527a1bfefd607e06ee96af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_netnamestr
+#@subsection @code{xdr_netnamestr}
+#@findex xdr_netnamestr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_netobj.texi
+Hash: 918ec09950c6cef891df450e39e65854ad72f515eed4a07675ad526d7d029271
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_netobj
+#@subsection @code{xdr_netobj}
+#@findex xdr_netobj
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_obj_p.texi
+Hash: 7ebd559c8f4ce57177436f5f78c4c8d2b3896199fe11a24f1af48c471cda310e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_obj_p
+#@subsection @code{xdr_obj_p}
+#@findex xdr_obj_p
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_opaque.texi
+Hash: f79ec3f8db308c32f344e9d267e031c96c9b3a017a6d431bc0a7348be7ce1fd8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_opaque
+#@subsection @code{xdr_opaque}
+#@findex xdr_opaque
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_opaque_auth.texi
+Hash: 54c3c5c297b9d6cf5c898ae54e857b841a1e16df4f1571dadfe2f3ba295f391f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_opaque_auth
+#@subsection @code{xdr_opaque_auth}
+#@findex xdr_opaque_auth
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_peername.texi
+Hash: 8538bdb09599068f97b98edfb2a62e4ea6127f54711bd870c49aa117313eaa7f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_peername
+#@subsection @code{xdr_peername}
+#@findex xdr_peername
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_pmap.texi
+Hash: caaac80f2f2fa2612d1e842bfd4a93f557882c7eea684560c0d85549a95f91c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_pmap
+#@subsection @code{xdr_pmap}
+#@findex xdr_pmap
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_pmaplist.texi
+Hash: ff5f2a65c464e0a939f8b99d477a84604052392e0b2992a9476887c90c433043
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_pmaplist
+#@subsection @code{xdr_pmaplist}
+#@findex xdr_pmaplist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_pointer.texi
+Hash: b660e5bf17a26cdf685fc6d23dffdb14a71b632f4eaa27f03edeb522f5aa7f99
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_pointer
+#@subsection @code{xdr_pointer}
+#@findex xdr_pointer
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_quad_t.texi
+Hash: ea704f7e0d01c043c1e277cd4963dbf6187e89e3654dc699e7b5fcb850a840a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_quad_t
+#@subsection @code{xdr_quad_t}
+#@findex xdr_quad_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_reference.texi
+Hash: 6134f57fa3312cce201a4c6d77ba8e811fd8790b22ccb6b8a73e687644ac9330
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_reference
+#@subsection @code{xdr_reference}
+#@findex xdr_reference
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_replymsg.texi
+Hash: 4e007440139b2dda257c96d363b3b80ccb149be9009ae80ae2bd3a629b6b2135
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_replymsg
+#@subsection @code{xdr_replymsg}
+#@findex xdr_replymsg
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_rmtcall_args.texi
+Hash: bec9d04d82d941309b9d46bf423d0eff1f90382e71cdc9e3a08357dfc740bdd5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_rmtcall_args
+#@subsection @code{xdr_rmtcall_args}
+#@findex xdr_rmtcall_args
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Solaris 10, Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_rmtcallres.texi
+Hash: 150f8543b53edd291c4b83bc2eefebe934b2c8158a173cf8e2650e0f38c12d60
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_rmtcallres
+#@subsection @code{xdr_rmtcallres}
+#@findex xdr_rmtcallres
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_short.texi
+Hash: d8f8eb2c0ee517e33fff798e697baf8765a32bb01fdb018e1c7e4c5d24d47ddd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_short
+#@subsection @code{xdr_short}
+#@findex xdr_short
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_sizeof.texi
+Hash: b9e8e1b750d3cfa2d374d483dac1308f4b5a8e614ddc1bc89201bcdca2b53bd2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_sizeof
+#@subsection @code{xdr_sizeof}
+#@findex xdr_sizeof
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_string.texi
+Hash: 2a056d27011ebfb9c2fde0648bb47ace5429329369eeae141bbd0b5dd7d19abe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_string
+#@subsection @code{xdr_string}
+#@findex xdr_string
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_u_char.texi
+Hash: 6b8f014daebc6193c1fe4b95ca2bc0c9a75a34bf91e625a64779cf4d09632198
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_u_char
+#@subsection @code{xdr_u_char}
+#@findex xdr_u_char
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_u_hyper.texi
+Hash: 38a30d406c25e5e945e21ba8df38a61a5bea26be525257fea360edf720f62be9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_u_hyper
+#@subsection @code{xdr_u_hyper}
+#@findex xdr_u_hyper
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, IRIX 5.3, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_u_int.texi
+Hash: bc84e1bcbc9c805eeae8970f26c2f2c08cc6f3c7b3aca4d3d3bc4116ccd18762
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_u_int
+#@subsection @code{xdr_u_int}
+#@findex xdr_u_int
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_u_long.texi
+Hash: 79996dfe2a34829be53444eeb81caf5bf33642fb5791eadf467cc5be2efb58ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_u_long
+#@subsection @code{xdr_u_long}
+#@findex xdr_u_long
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_u_longlong_t.texi
+Hash: 68109be44fd22b27b66ac2dfe47e3ef9a8cc0f9aff21e2fade30373aae96ffa7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_u_longlong_t
+#@subsection @code{xdr_u_longlong_t}
+#@findex xdr_u_longlong_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_u_quad_t.texi
+Hash: c1debccf71d14e14221ed9c5848cc1aa2366a65948f68845fcd2b57b0749ee79
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_u_quad_t
+#@subsection @code{xdr_u_quad_t}
+#@findex xdr_u_quad_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on all non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_u_short.texi
+Hash: 5277089c7dbf9c47c789cddf19c5d1b80af4a83c8fc5858daae1d6f960a9c0d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_u_short
+#@subsection @code{xdr_u_short}
+#@findex xdr_u_short
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_uint16_t.texi
+Hash: 5056c5c947997ff404e63d557adb270b3a96be18eb85d91a99ba658f262c307b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_uint16_t
+#@subsection @code{xdr_uint16_t}
+#@findex xdr_uint16_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_uint32_t.texi
+Hash: 0e93d9fbd8816dd776781b73ba642602968d88b1a9a1835f2aacf5d163f256bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_uint32_t
+#@subsection @code{xdr_uint32_t}
+#@findex xdr_uint32_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_uint64_t.texi
+Hash: f40a280712d786b4c58851ea0ada93ee7e8dd374dc6bedb1d88d1eb3029e5171
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_uint64_t
+#@subsection @code{xdr_uint64_t}
+#@findex xdr_uint64_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_uint8_t.texi
+Hash: 6944d05901cc4f743764f005d098d50799ed43b4aa6de7469c40a94cc1d92d87
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_uint8_t
+#@subsection @code{xdr_uint8_t}
+#@findex xdr_uint8_t
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_union.texi
+Hash: e8c3b53eade2aaea2a515e16d398bf97e4c667a4fb5aed2dadff6bf8dfb8b62b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_union
+#@subsection @code{xdr_union}
+#@findex xdr_union
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_unixcred.texi
+Hash: 9f888821059934a9e8d72e85c34b0c74fff437fff04af14d3e1f7b8adc0c95ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_unixcred
+#@subsection @code{xdr_unixcred}
+#@findex xdr_unixcred
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_valdat.texi
+Hash: 3ed49a721838c98227ffa1d475de25866ae591b1f5a580e5f9dfeb46cbef4f91
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_valdat
+#@subsection @code{xdr_valdat}
+#@findex xdr_valdat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_vector.texi
+Hash: 53d9bca4da0f5eaed77104e988310b12bc2f5d42c83b6937c5200c174cbc3708
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_vector
+#@subsection @code{xdr_vector}
+#@findex xdr_vector
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_void.texi
+Hash: 81033902e9049ef9f57a463240c562bc2d5d68852657d2a8088758b1418b5ba0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_void
+#@subsection @code{xdr_void}
+#@findex xdr_void
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_wrapstring.texi
+Hash: c8c995b3843fb29dbc49af22efbda22eaa1a4c9a3ac036833c892b533db4384a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_wrapstring
+#@subsection @code{xdr_wrapstring}
+#@findex xdr_wrapstring
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdr_yp_buf.texi
+Hash: 967c6a5a78890236ee181eba0d63eb789115e8eeedc2c58621664544ec9bd493
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_yp_buf
+#@subsection @code{xdr_yp_buf}
+#@findex xdr_yp_buf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypall.texi
+Hash: 49021a841d747afa6c867addf2fdad46adfed7820ba1999395e264b2e4e3a96c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypall
+#@subsection @code{xdr_ypall}
+#@findex xdr_ypall
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypbind_binding.texi
+Hash: abd640055eb5a0d21f0f6a06024ef8e25da1cab867fd84151c3fbfa71ba49b0b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypbind_binding
+#@subsection @code{xdr_ypbind_binding}
+#@findex xdr_ypbind_binding
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypbind_resp.texi
+Hash: e71ba4166aa4b084e54b251c076892d86209e5c4026c9621bb83cd82420518a2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypbind_resp
+#@subsection @code{xdr_ypbind_resp}
+#@findex xdr_ypbind_resp
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypbind_resptype.texi
+Hash: fc323b9e591fd7d0405fbbfdf6a350828bb3e37b17f5698ce0853da9accfca6e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypbind_resptype
+#@subsection @code{xdr_ypbind_resptype}
+#@findex xdr_ypbind_resptype
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypbind_setdom.texi
+Hash: 715266fd7005c68155bc84c3bfd72a0dbd2839f4f9c1431cdccda41d2516c61b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypbind_setdom
+#@subsection @code{xdr_ypbind_setdom}
+#@findex xdr_ypbind_setdom
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypdelete_args.texi
+Hash: 5a2b2391166fd729def02629326df511cb557403bb3430e8c309d40f0151bd0e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypdelete_args
+#@subsection @code{xdr_ypdelete_args}
+#@findex xdr_ypdelete_args
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypmap_parms.texi
+Hash: 31deda1200c8b55648464a71a80e05c092d1c342a11dcf1621ae60f75649e2c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypmap_parms
+#@subsection @code{xdr_ypmap_parms}
+#@findex xdr_ypmap_parms
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypmaplist.texi
+Hash: 3770fe4174a30510e6650d1532f1254d90b4ee9a8fd55a240704aeceac7116d4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypmaplist
+#@subsection @code{xdr_ypmaplist}
+#@findex xdr_ypmaplist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_yppush_status.texi
+Hash: bed774ce7f2689102ac04fcebe6f8bb353d2fa812ccf8fef9e3c9f9ef7707539
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_yppush_status
+#@subsection @code{xdr_yppush_status}
+#@findex xdr_yppush_status
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_yppushresp_xfr.texi
+Hash: caacebd076371cf8370ef66bd87d61c5a969ba9b2de9263437267a78a4582b2d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_yppushresp_xfr
+#@subsection @code{xdr_yppushresp_xfr}
+#@findex xdr_yppushresp_xfr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypreq_key.texi
+Hash: 5e8853ba7b6102e9ef59daad62f95b5ad79482a0809507ad302e7efb7e14c180
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypreq_key
+#@subsection @code{xdr_ypreq_key}
+#@findex xdr_ypreq_key
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypreq_nokey.texi
+Hash: ca0a55c40a73ff170a59e2e77693a4b0099f9f21cf68112362b10c73ba4897bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypreq_nokey
+#@subsection @code{xdr_ypreq_nokey}
+#@findex xdr_ypreq_nokey
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypreq_xfr.texi
+Hash: 38242199a4947757bcca43ae41c1aceeaf21204f91662b6c6a70870aa6c52105
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypreq_xfr
+#@subsection @code{xdr_ypreq_xfr}
+#@findex xdr_ypreq_xfr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypresp_all.texi
+Hash: 7b3944e0fdfcd0437b44e330fd160a5a452738e4f2ed88a06c428507135704af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypresp_all
+#@subsection @code{xdr_ypresp_all}
+#@findex xdr_ypresp_all
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypresp_key_val.texi
+Hash: 16879a199e808011cfb7bce444c0400f537d3299a1c9667ca1581d622e8387f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypresp_key_val
+#@subsection @code{xdr_ypresp_key_val}
+#@findex xdr_ypresp_key_val
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypresp_maplist.texi
+Hash: d8f02b128e983b30f2be817f09ec1636d1d22863908833b9a104231736c1757d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypresp_maplist
+#@subsection @code{xdr_ypresp_maplist}
+#@findex xdr_ypresp_maplist
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypresp_master.texi
+Hash: e623a774cfbf5390ac5ab6db1871df8fc813438aa10e701c19f067fbf11ca3e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypresp_master
+#@subsection @code{xdr_ypresp_master}
+#@findex xdr_ypresp_master
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypresp_order.texi
+Hash: d68c39c59fcbfefdb10d7e77def68a96ee1536b33e42d7cae1249a59fbddc7e5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypresp_order
+#@subsection @code{xdr_ypresp_order}
+#@findex xdr_ypresp_order
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypresp_val.texi
+Hash: 7c45b13e75ad02e922ffc50bd1e0f74f246ff392ec0f7269f784490ff6421332
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypresp_val
+#@subsection @code{xdr_ypresp_val}
+#@findex xdr_ypresp_val
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypresp_xfr.texi
+Hash: 6684da40fa119c7354fda920dbc8067d4e6769687a66c08c96342311d0dc1a9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypresp_xfr
+#@subsection @code{xdr_ypresp_xfr}
+#@findex xdr_ypresp_xfr
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypstat.texi
+Hash: 1e7de73d56c70be501e608841a86d6e7c23b5b3d58f1d9a3f6e09d9868d5d6e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypstat
+#@subsection @code{xdr_ypstat}
+#@findex xdr_ypstat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypupdate_args.texi
+Hash: 77aaa0ef10b3095e45964efa46e739376002decd90cf42f0f8a8dec3d5eff977
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypupdate_args
+#@subsection @code{xdr_ypupdate_args}
+#@findex xdr_ypupdate_args
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdr_ypxfrstat.texi
+Hash: c78e6f06c5fd2a43a28a72a7ce49d02b158b37062e80b1d9788be764b82b26ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdr_ypxfrstat
+#@subsection @code{xdr_ypxfrstat}
+#@findex xdr_ypxfrstat
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/xdrmem_create.texi
+Hash: 2a203690a726870fade84da1208be0cdfab169f22001ee6efe93f06e3742ebb7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdrmem_create
+#@subsection @code{xdrmem_create}
+#@findex xdrmem_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdrrec_create.texi
+Hash: 8073fe892a74de188dd302a4a43e971cf0e3fb48c86cebeef96240e0ac4bd4cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdrrec_create
+#@subsection @code{xdrrec_create}
+#@findex xdrrec_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdrrec_endofrecord.texi
+Hash: 88344824ec838d41448198022405e5dac92019e2bc1475a230608b4518bec054
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdrrec_endofrecord
+#@subsection @code{xdrrec_endofrecord}
+#@findex xdrrec_endofrecord
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdrrec_eof.texi
+Hash: 25422c24889db04aa8ff53d00ce41fae2e5444730364cb37890ccacd15e10f3d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdrrec_eof
+#@subsection @code{xdrrec_eof}
+#@findex xdrrec_eof
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdrrec_skiprecord.texi
+Hash: 0b1d2e89f6f0d930e81e40412735caed420e496c1d7e2c3317083704ddbc822c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdrrec_skiprecord
+#@subsection @code{xdrrec_skiprecord}
+#@findex xdrrec_skiprecord
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xdrstdio_create.texi
+Hash: 0898f08554917e889fd206ae59a18d6bf78f9f57a5a9e636844660f8bb4460ba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xdrstdio_create
+#@subsection @code{xdrstdio_create}
+#@findex xdrstdio_create
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xprt_register.texi
+Hash: c94e94912422f8a89d1046086b09b5f1aa13198a6ecd72276a6cba7caf0364ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xprt_register
+#@subsection @code{xprt_register}
+#@findex xprt_register
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/xprt_unregister.texi
+Hash: f682b2bfcd16651912315034106c71ff0946a50daaf430177bd0624a37f88416
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node xprt_unregister
+#@subsection @code{xprt_unregister}
+#@findex xprt_unregister
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, BeOS.
+
+File: ./doc/glibc-functions/y0f.texi
+Hash: 53011f664d3903683e4544d10dcf5b7c7f2c1222c9acab2e70d9f2c9df387afb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node y0f
+#@subsection @code{y0f}
+#@findex y0f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+
+File: ./doc/glibc-functions/y0l.texi
+Hash: 049581b8d62217de9d548fee3df56a779e216c9b490a92081b3e440174e277df
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node y0l
+#@subsection @code{y0l}
+#@findex y0l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/y1f.texi
+Hash: 2af7a392fb4304dd9bdf7cedc4f950d151b3e72dc31b5eb42d9b53451859e389
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node y1f
+#@subsection @code{y1f}
+#@findex y1f
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+
+File: ./doc/glibc-functions/y1l.texi
+Hash: 9f65d87b286eb81df62bfdb118cb3ab8c763aab3cae81aea9a9dc16161bdaa12
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node y1l
+#@subsection @code{y1l}
+#@findex y1l
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ynf.texi
+Hash: b20e9430fc3cd02a0586eed22a0cd3eb2d271582b9087490395973f33038aac6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ynf
+#@subsection @code{ynf}
+#@findex ynf
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, AIX 5.1, HP-UX 11, IRIX 6.5, mingw.
+
+File: ./doc/glibc-functions/ynl.texi
+Hash: 8802eb9677218d45cd4e44dd735d1115f0fcb9e61acec28ab17b887b50ffe117
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ynl
+#@subsection @code{ynl}
+#@findex ynl
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_all.texi
+Hash: b42b025cf632d8cf7da519a7528a9a2d1210f4e357dcd9390c882bb8a38c0e53
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_all
+#@subsection @code{yp_all}
+#@findex yp_all
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_bind.texi
+Hash: be7340086b6000053f761dfd46aea30bcc1bd2f4dfa161204a8bedc5ec212967
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_bind
+#@subsection @code{yp_bind}
+#@findex yp_bind
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_first.texi
+Hash: 448d2709a2f0d219dbd749d8367b8c82fcb12aa01988d1ecc33e5deb2fc824c5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_first
+#@subsection @code{yp_first}
+#@findex yp_first
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_get_default_domain.texi
+Hash: 41048d71e875a399559a8d3438f700a43b5468548935403691f02ca2351e141c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_get_default_domain
+#@subsection @code{yp_get_default_domain}
+#@findex yp_get_default_domain
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_master.texi
+Hash: 0b2a7eb836405fa27ed19e381580f7e43df719ab12e78763c129576b5cdd1a7c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_master
+#@subsection @code{yp_master}
+#@findex yp_master
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_match.texi
+Hash: 627851384f34c2c955e0e1e24fb264440f4559b4e2d93ed5661a97bf32a4380d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_match
+#@subsection @code{yp_match}
+#@findex yp_match
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_next.texi
+Hash: 6a2841054c2ea3aed8bf5bc393b4dd9b7b3178b199b119fdd82678eec3ed21a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_next
+#@subsection @code{yp_next}
+#@findex yp_next
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_order.texi
+Hash: 8eae91da78f387f713f35b9d102c4fa66c5931737f6f1467289f76628a8334e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_order
+#@subsection @code{yp_order}
+#@findex yp_order
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_unbind.texi
+Hash: bd6cf9c478e4596ec9082e569e2bf6937f7985d1ba7c2d5db1f9802195b5bd26
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_unbind
+#@subsection @code{yp_unbind}
+#@findex yp_unbind
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yp_update.texi
+Hash: 117e4ddb5bcaf2a5e0768d85e23471c5895cc162da1390b7c5fdb77ba5ddc775
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yp_update
+#@subsection @code{yp_update}
+#@findex yp_update
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ypbinderr_string.texi
+Hash: e7167ff396db2d51dfefcd5b793df6d529e9425dd1aead57cb012d97584e6cf6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ypbinderr_string
+#@subsection @code{ypbinderr_string}
+#@findex ypbinderr_string
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/yperr_string.texi
+Hash: c94934aac4843428b891128424e3012dee61594fb6bd1dddf9d466de2ada7482
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yperr_string
+#@subsection @code{yperr_string}
+#@findex yperr_string
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-functions/ypprot_err.texi
+Hash: 2670cca93cbe02f004e8676febd96ceb18676682aae42a869b01c0697332a068
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ypprot_err
+#@subsection @code{ypprot_err}
+#@findex ypprot_err
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Cygwin, mingw, Interix 3.5, BeOS.
+
+File: ./doc/glibc-headers/a.out.texi
+Hash: c82b738632f1965d1559f7667c877af774465a98c6ca3f81c897beaf7b374357
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node a.out.h
+#@section @file{a.out.h}
+#
+#Describes the structure of executables (and object files?) in the old
+#@code{a.out} format.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/glibc-headers/aliases.texi
+Hash: 94f129741de8a7fd4521bae2dc42f429abfaba102e9fa06c5a9351e1379a4c5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aliases.h
+#@section @file{aliases.h}
+#
+#Defines the type @code{struct aliasent} and declares the functions
+#@code{setaliasent}, @code{endaliasent},
+#@code{getaliasent}, @code{getaliasent_r},
+#@code{getaliasbyname}, @code{getaliasbyname_r}.
+#
+#Documentation:
+#@itemize
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/setaliasent.3.html,,man setaliasent}.
+#@end itemize
+#
+#Gnulib module: ---
+
+File: ./doc/glibc-headers/alloca.texi
+Hash: 42d72a383eea05edb7de100160f56e7ab4d915e5dab4668c2fd128f4b651d2f0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node alloca.h
+#@section @file{alloca.h}
+#
+#Declares the @code{alloca} function of function-like macro.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Variable Size Automatic,,Automatic Storage with Variable Size,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Variable-Size-Automatic.html},
+#@end ifnotinfo
+#@item
+
+File: ./doc/glibc-headers/ar.texi
+Hash: 63a2433058954240c8a3d62a4b5b0a2809326d5c6b82b623799d2a8cf39cc734
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ar.h
+#@section @file{ar.h}
+#
+#Describes the structure of files produced by the @samp{ar} program.
+#Defines the type @code{struct ar_hdr} and the macros @code{ARMAG},
+#@code{SARMAG}, @code{ARFMAG}.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-headers/argp.texi
+Hash: 7250680a987ff78ed8feac3a74ec4a5661c071de4e4d1dfc60de9db22d28e589
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argp.h
+#@section @file{argp.h}
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Argp,,Parsing Program Options with Argp,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Argp.html}.
+#@end ifnotinfo
+#@end itemize
+#
+#Gnulib module: argp
+
+File: ./doc/glibc-headers/argz.texi
+Hash: c0d05a1e13f8f4f7a4a4002cb7e9683b657434da45c97b304951986f7d94bfc9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node argz.h
+#@section @file{argz.h}
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Argz Functions,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Argz-Functions.html},
+#@end ifnotinfo
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/argz.3.html,,man argz}.
+#@end itemize
+
+File: ./doc/glibc-headers/byteswap.texi
+Hash: daf819b6395c3de377b3efb8f8176107e27f2b3b26561d77a8a3b2dad08e147a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node byteswap.h
+#@section @file{byteswap.h}
+#
+#Defines the functions or function-like macros @code{bswap_16}, @code{bswap_32},
+#@code{bswap_64}.
+#
+#Gnulib module: byteswap
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/glibc-headers/crypt.texi
+Hash: fa453cee950ed9d2d41db4eac6a4c5fcad6f4186d3d207d519045a9f68ae65ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node crypt.h
+#@section @file{crypt.h}
+#
+#Defines the type @code{struct crypt_data} and declares the functions
+#@code{crypt}, @code{crypt_r},
+#@code{setkey}, @code{setkey_r},
+#@code{encrypt}, @code{encrypt_r}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{crypt,,Encrypting Passwords,libc},
+#@ref{DES Encryption,,,libc},
+#@end ifinfo
+
+File: ./doc/glibc-headers/endian.texi
+Hash: 0f822251f51808592a371b872b6ac045d213519befa9311b36eb6e28bddc9324
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endian.h
+#@section @file{endian.h}
+#
+#Describe's the platform's endianness (byte ordering of words stored in memory).
+#Defines the macros @code{BYTE_ORDER}, @code{LITTLE_ENDIAN}, @code{BIG_ENDIAN},
+#@code{PDP_ENDIAN}.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-headers/envz.texi
+Hash: 939b798b1ec8e61e63e9f93a82c69c5db6f6c05bf98f7f3bbfb8e44c9bb4453e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node envz.h
+#@section @file{envz.h}
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Envz Functions,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Envz-Functions.html},
+#@end ifnotinfo
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/envz.3.html,,man envz}.
+#@end itemize
+
+File: ./doc/glibc-headers/err.texi
+Hash: 771c351eba6fadf44f8ac86e707dfc90823ead9582e51fb8c95a54702a09395d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node err.h
+#@section @file{err.h}
+#
+#Declares the functions
+#@code{warn}, @code{vwarn}, @code{warnx}, @code{vwarnx},
+#@code{err}, @code{verr}, @code{errx}, @code{verrx}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Error Messages,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Error-Messages.html},
+
+File: ./doc/glibc-headers/error.texi
+Hash: 564594bacc029daac4577221c831b68ab6e6b141d225252b2e5a1ff6a2b5c377
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node error.h
+#@section @file{error.h}
+#
+#Declares the functions @code{error}, @code{error_at_line} and the variables
+#@code{error_print_progname}, @code{error_message_count},
+#@code{error_one_per_line}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Error Messages,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Error-Messages.html},
+
+File: ./doc/glibc-headers/execinfo.texi
+Hash: 442281157e2f5c7d15617b99dc65c5e2740ed8132d5ef4b6a637d7bd0efe8a16
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node execinfo.h
+#@section @file{execinfo.h}
+#
+#Declares the functions @code{backtrace}, @code{backtrace_symbols},
+#@code{backtrace_symbols_fd}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Backtraces,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Backtraces.html},
+#@end ifnotinfo
+
+File: ./doc/glibc-headers/fpu_control.texi
+Hash: 0d1f21a6828be61eaafc50791e6648cadd3cf5986071c19912bb0e485780e01e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fpu_control.h
+#@section @file{fpu_control.h}
+#
+#Handling of the FPU control word. Defines the @code{fpu_control_t} type,
+#declares the @code{__fpu_control} variable, and defines the @code{_FPU_GETCW},
+#@code{_FPU_SETCW} macros.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/glibc-headers/fstab.texi
+Hash: d765e5f871ae90bba1b85512cdbbd9d04babbb1073e89f28a5e4203003ccbb3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fstab.h
+#@section @file{fstab.h}
+#
+#Defines the type @code{struct fstab}, the macros @code{FSTAB_*},
+#@code{_PATH_FSTAB}, and declares the functions
+#@code{setfsent}, @code{endfsent},
+#@code{getfsent}, @code{getfsspec}, @code{getfsfile}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{fstab,,The `fstab' file,libc},
+#@end ifinfo
+#@ifnotinfo
+
+File: ./doc/glibc-headers/fts.texi
+Hash: 05a382b4ee91017936ce7dceda2379ade746af1154b3977321604b116f237f5b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fts.h
+#@section @file{fts.h}
+#
+#Defines the types @code{FTS}, @code{FTSENT} and the macros @code{FTS_*},
+#and declares the functions @code{fts_open}, @code{fts_read},
+#@code{fts_children}, @code{fts_set}, @code{fts_close}.
+#
+#Documentation:
+#@itemize
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/fts.3.html,,man fts}.
+#@end itemize
+#
+#Gnulib module: ---
+
+File: ./doc/glibc-headers/getopt.texi
+Hash: d2425536ed01e34b35b1f3c58f4cf07ca9b09f6d81663efab78da5a5ab688a03
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getopt.h
+#@section @file{getopt.h}
+#
+#Defines the type @code{struct option} and declares the variables
+#@code{optarg}, @code{optind}, @code{opterr}, @code{optopt}
+#and the functions @code{getopt}, @code{getopt_long}, @code{getopt_long_only}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Getopt,,Parsing program options using `getopt',libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Getopt.html},
+
+File: ./doc/glibc-headers/ieee754.texi
+Hash: 515398e288e2a4e2e6118c4c896dbb4c1a9019d6b91221aa076f2d5cac32f9f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ieee754.h
+#@section @file{ieee754.h}
+#
+#Defines the types @code{union ieee754_float}, @code{union ieee754_double},
+#@code{union ieee854_long_double}.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/glibc-headers/ifaddrs.texi
+Hash: c85198be6c0f9e8ac1c65d365a6cc7bc0cc665bdbc72fe83acf7b0ab0cc955c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ifaddrs.h
+#@section @file{ifaddrs.h}
+#
+#Defines the type @code{struct ifaddrs} and declares the functions
+#@code{getifaddrs}, @code{freeifaddrs}.
+#
+#Documentation:
+#@itemize
+#@item
+#@url{http://ecos.sourceware.org/docs-latest/ref/net-common-tcpip-manpages-getifaddrs.html}.
+#@end itemize
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+
+File: ./doc/glibc-headers/libintl.texi
+Hash: 79beb5970e6f446c6a04900828534f021471762201935c60cfd021c6332b7e78
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node libintl.h
+#@section @file{libintl.h}
+#
+#Defines the macros @code{__USE_GNU_GETTEXT},
+#@code{__GNU_GETTEXT_SUPPORTED_REVISION}, and declares the functions
+#@code{gettext}, @code{dgettext}, @code{dcgettext},
+#@code{ngettext}, @code{dngettext}, @code{dcngettext},
+#@code{textdomain}, @code{bindtextdomain}, @code{bind_textdomain_codeset}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Message catalogs with gettext,,The `gettext' family of functions,libc},
+#@end ifinfo
+
+File: ./doc/glibc-headers/mcheck.texi
+Hash: dedb846dbfd04c6c9a2a967d276c9de008ac4c79e61e07aeafd412846df98fee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mcheck.h
+#@section @file{mcheck.h}
+#
+#Defines the type @code{enum mcheck_status} and declares the functions
+#@code{mcheck}, @code{mcheck_pedantic}, @code{mcheck_check_all}, @code{mprobe},
+#@code{mtrace}, @code{muntrace}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Heap Consistency Checking,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Heap-Consistency-Checking.html}.
+
+File: ./doc/glibc-headers/mntent.texi
+Hash: bd4559256ee3494644710f4e1602495d4050f8fa0d4c703f11fcaf8fde02a704
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mntent.h
+#@section @file{mntent.h}
+#
+#Defines the type @code{struct mntent} and the macros @code{MNTTAB},
+#@code{MOUNTED}, @code{MNTTYPE_*}, @code{MNTOPT_*}, and declares the functions
+#@code{setmntent}, @code{getmntent}, @code{getmntent_r}, @code{addmntent},
+#@code{endmntent}, @code{hasmntopt}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{mtab,,The `mtab' file,libc},
+#@end ifinfo
+#@ifnotinfo
+
+File: ./doc/glibc-headers/obstack.texi
+Hash: 1c5f322397603a32199f6a1983459423e6610d00288bfb2f3e8b8ee875abd7a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node obstack.h
+#@section @file{obstack.h}
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Obstacks,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Obstacks.html}.
+#@end ifnotinfo
+#@end itemize
+#
+#Gnulib module: obstack
+
+File: ./doc/glibc-headers/paths.texi
+Hash: 8dc24f98bf823265dd3378f42860137cacdfd735284b75108ef5437552a339b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node paths.h
+#@section @file{paths.h}
+#
+#Defines the macros @code{_PATH_*}.
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/glibc-headers/printf.texi
+Hash: c7159716f5c2910ec7d390f7877340ba3998b5fbbb63bd559484742f859ba86b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node printf.h
+#@section @file{printf.h}
+#
+#Defines the type @code{struct printf_info} and the macros and enum values
+#@code{PA_*}, and declares the functions
+#@code{printf_function}, @code{printf_arginfo_function},
+#@code{register_printf_function}, @code{parse_printf_format},
+#@code{printf_size}, @code{printf_size_info}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Parsing a Template String,,,libc},
+#@end ifinfo
+
+File: ./doc/glibc-headers/pty.texi
+Hash: 210686eb5ebf3e3163fa609fea0156ea611363bde9b6a363135e2697765a0594
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pty.h
+#@section @file{pty.h}
+#
+#Declares the functions @code{openpty} and @code{forkpty}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{Pseudo-Terminal Pairs,,Opening a Pseudo-Terminal Pair,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/Pseudo_002dTerminal-Pairs.html},
+#@end ifnotinfo
+#@item
+
+File: ./doc/glibc-headers/resolv.texi
+Hash: 67e701d549c3af1a21fa81ac7bb0aea9bc236210f49d4a58e44a93ef173d7d1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node resolv.h
+#@section @file{resolv.h}
+#
+#Defines the types @code{res_sendhookact}, @code{res_send_qhook},
+#@code{res_send_rhook}, @code{res_state}, @code{struct res_sym} and the
+#macros @code{_PATH_RESCONF}, @code{RES_*}, and declares the functions
+#@code{fp_nquery}, @code{fp_query},
+#@code{hostalias},
+#@code{p_query},
+#@code{res_close}, @code{res_init}, @code{res_isourserver},
+#@code{res_mkquery}, @code{res_query}, @code{res_querydomain},
+#@code{res_search}, @code{res_send}.
+#
+#Documentation:
+#@itemize
+
+File: ./doc/glibc-headers/shadow.texi
+Hash: a366437bb8a42ee9261518470bfbaf0fdc8da97ebdfafd9b582e0896d7f739ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node shadow.h
+#@section @file{shadow.h}
+#
+#Defines the type @code{struct spwd} and declares the functions
+#@code{setspent}, @code{endspent},
+#@code{getspent}, @code{getspent_r},
+#@code{getspnam}, @code{getspnam_r},
+#@code{sgetspent}, @code{sgetspent_r},
+#@code{fgetspent}, @code{fgetspent_r},
+#@code{putspent},
+#@code{lckpwdf}, @code{ulckpwdf}.
+#
+#Documentation:
+#@itemize
+#@item
+
+File: ./doc/glibc-headers/sys_ioctl.texi
+Hash: 9368a7f1aab344a4a2b9c5e895868ca14cc69044c0b1c04a8bf3a9c89cef6e41
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/ioctl.h
+#@section @file{sys/ioctl.h}
+#
+#Declares the function @code{ioctl}.
+#
+#Documentation:
+#@itemize
+#@item
+#@ifinfo
+#@ref{IOCTLs,,,libc},
+#@end ifinfo
+#@ifnotinfo
+#@url{http://www.gnu.org/software/libc/manual/html_node/IOCTLs.html},
+#@end ifnotinfo
+#@item
+
+File: ./doc/glibc-headers/sysexits.texi
+Hash: e281f6c23b36b8fd6bfaaa9e8983259765fa320d989f9d77639cdf67c7b74182
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sysexits.h
+#@section @file{sysexits.h}
+#
+#Defines the @code{EX_*} macros, including @code{EX_OK}.
+#
+#Gnulib module: sysexits
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, Interix 3.5, BeOS.
+#@item
+#The macro @code{EX_CONFIG} is missing on some platforms:
+#HP-UX 11.
+
+File: ./doc/glibc-headers/ttyent.texi
+Hash: a9e0f8c8e52a08d612b970503007b714f785c88f0d36786a6f2a8917b56c59d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ttyent.h
+#@section @file{ttyent.h}
+#
+#Defines the type @code{struct ttyent} and declares the functions
+#@code{setttyent}, @code{endttyent}, @code{getttyent}, @code{getttynam}.
+#
+#Documentation:
+#@itemize
+#@item
+#@uref{http://www.kernel.org/doc/man-pages/online/pages/man3/setttyent.3.html,,man setttyent}.
+#@end itemize
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+
+File: ./doc/gnu-oids.texi
+Hash: a8b7560867c2aed55edee1312ccb3b71d4a7d36209c0544d538aafc0c990c7d2
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c This table of OID's is included in the GNU Coding Standards.
+#@c
+#@c Copyright 2008, 2009 Free Software Foundation, Inc.
+#@c
+#@c Copying and distribution of this file, with or without modification,
+#@c are permitted in any medium without royalty provided the copyright
+#@c notice and this notice are preserved.
+#@c
+#@c When adding new OIDs, please add them also to
+#@c http://www.alvestrand.no/objectid/  (except it gets an internal
+#@c server error, so never mind)
+#@c (Our page is http://www.alvestrand.no/objectid/1.3.6.1.4.1.11591.html.)
+#
+#1.3.6.1.4.1.11591 GNU
+
+File: ./doc/gnulib-intro.texi
+Hash: 8afe4cf237d90be78640df9ef7349588a2a5bcb07901f8bc2ad44b625b00afea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node Benefits
+#@section Benefits of using Gnulib
+#
+#Gnulib is useful to enhance various aspects of a package:
+#
+#@itemize @bullet
+#@item
+#Portability: With Gnulib, a package maintainer can program against the
+#POSIX and GNU libc APIs and nevertheless expect good portability to
+#platforms that don't implement POSIX.
+#
+#@item
+#Maintainability: When a package uses modules from Gnulib instead of code
+#written specifically for that package, the maintainer has less code to
+#maintain.
+
+File: ./doc/gnulib-tool.texi
+Hash: 86878555c512a6423372b2cd838d55c7c6a02da7eb97664a78e4bbf111f33b31
+License: 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@node Invoking gnulib-tool
+#@chapter Invoking gnulib-tool
+#
+#@c Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#@pindex gnulib-tool
+#@cindex invoking @command{gnulib-tool}
+
+File: ./doc/gnulib.texi
+Hash: de3a5da4c9cc7db7d7ef6de60a5248025bed7cbc6b9dc0320c0075bb28b18b77
+License: 
+Copyright: @{} 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#\input texinfo   @c -*-texinfo-*-
+#@comment %**start of header
+#@setfilename gnulib.info
+#@settitle GNU Gnulib
+#@syncodeindex fn cp
+#@syncodeindex pg cp
+#@ifclear texi2html
+#@firstparagraphindent insert
+#@end ifclear
+#@comment %**end of header
+#
+#@comment Defines the UPDATED variable.
+#@include updated-stamp
+#
+#@copying
+
+File: ./doc/gpl-2.0.texi
+Hash: ba36a1e79e0a6db5aa3012803fd12acab7bc7be569da100c6659fff959670389
+License: 
+Copyright: the software, and / @{} 1989, 1991 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c The GNU General Public License.
+#@center Version 2, June 1991
+#
+#@c This file is intended to be included within another document,
+#@c hence no sectioning command or @node.
+#
+#@display
+#Copyright @copyright{} 1989, 1991 Free Software Foundation, Inc.
+#51 Franklin Street, 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.
+#@end display
+#
+#@heading Preamble
+
+File: ./doc/gpl-3.0.texi
+Hash: 1c68a24b291a0eebaa1fabba67326ad8c5d48968b84bba0907bf74d8d3b01971
+License: 
+Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer you this License
+Licence-Text: 
+#Header: 
+#@c The GNU General Public License.
+#@center Version 3, 29 June 2007
+#
+#@c This file is intended to be included within another document,
+#@c hence no sectioning command or @node.
+#
+#@display
+#Copyright @copyright{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/}
+#
+#Everyone is permitted to copy and distribute verbatim copies of this
+#license document, but changing it is not allowed.
+#@end display
+#
+#@heading Preamble
+
+File: ./doc/havelib.texi
+Hash: b178e7f4be5c66b0756783fc65a9fdbefb2ddb9e2fce18cfe4838383506ba25f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node Searching for Libraries
+#@section Searching for Libraries
+#
+#The following macros check for the presence or location of certain C, C++, or
+#Fortran library archive files.
+#
+#@unnumberedsubsec Simple Library Tests
+#
+#The macros @code{AC_CHECK_LIB}, @code{AC_SEARCH_LIBS} from GNU Autoconf check
+#for the presence of certain C, C++, or Fortran library archive files.
+#The libraries are looked up in the default linker path -- a system dependent
+#list of directories, that usually contains the @file{/usr/lib} directory --
+# and those directories given by @code{-L} options in the @code{LDFLAGS}
+#variable.
+
+File: ./doc/inet_ntoa.texi
+Hash: 44cfa1261391ab7b6da6a8387826d35826ef9238214aea7713a3bdae92621afc
+License: 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@node inet_ntoa
+#@section inet_ntoa
+#@findex inet_ntoa
+#
+#@c Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{inet_ntoa} function need not be reentrant, and consequently
+#is not required to be thread safe.  Implementations of
+
+File: ./doc/install.texi
+Hash: 3579aa06fdcde2788de2bdb2ac9e3f7dddaaf305033e3819b0bd5e8bcd321ad5
+License: 
+Copyright: @{} 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004
+Licence-Text: 
+#Header: 
+#@c This file is included by autoconf.texi and is used to produce
+#@c the INSTALL file.
+#
+#@ifclear autoconf
+#@firstparagraphindent insert
+#
+#@unnumbered Installation Instructions
+#
+#Copyright @copyright{} 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004,
+#2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#Copying and distribution of this file, with or without modification, are
+#permitted in any medium without royalty provided the copyright notice
+#and this notice are preserved.  This file is offered as-is, without
+#warranty of any kind.
+
+File: ./doc/ld-output-def.texi
+Hash: f3adaf3de58b4ee8286574e8dc7d25e0d536753026018880d7ed6299129dee1c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node Visual Studio Compatibility
+#@section Visual Studio Compatibility
+#@cindex DEF files
+#@cindex LD DEF files
+#
+#The @code{lib-msvc-compat} module detects whether the linker supports
+#@code{--output-def} when building a library.  That parameter is used
+#to generate a DEF file for a shared library (DLL).  DEF files are
+#useful for developers that use Visual Studio to develop programs that
+#links to your library.  See the GNU LD manual for more information.
+#
+#There are other ways to create a DEF file, but we believe they are all
+#sub-optimal to using @code{--output-def} during the build process.
+#The variants we have considered include:
+
+File: ./doc/ld-version-script.texi
+Hash: 21a0a61901f55f0d7c8ba37d1ce6dc1d569e74583bd96a03ea211db7d969fc10
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#i@node LD Version Scripts
+#@section LD Version Scripts
+#
+#The @code{lib-symbol-versions} module can be used to add shared
+#library versioning support.  Currently, only GNU LD and the Solaris
+#linker supports this.
+#
+#Version scripts provides information that can be used by GNU/Linux
+#distribution packaging tools.  For example, Debian has a tool
+#@code{dpkg-shlibdeps} that can determine the minimal required version
+#of each dependency (by looking at the symbol list) and stuff the
+#information into the Debian specific packaging files.
+#
+#For more information and other uses of version scripts, see Ulrich
+#Drepper's paper @url{http://people.redhat.com/drepper/dsohowto.pdf}
+
+File: ./doc/lgpl-2.1.texi
+Hash: 85eec7ec57d7c054ced20ff937a0dbb6f85ef080feef81c969e3338c4e07c237
+License: 
+Copyright: the / @{} 1991, 1999 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c The GNU Lesser General Public License.
+#@center Version 2.1, February 1999
+#
+#@c This file is intended to be included within another document,
+#@c hence no sectioning command or @node.
+#
+#@display
+#Copyright @copyright{} 1991, 1999 Free Software Foundation, Inc.
+#51 Franklin Street, 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.
+#
+#[This is the first released version of the Lesser GPL.  It also counts
+#as the successor of the GNU Library Public License, version 2, hence the
+
+File: ./doc/lgpl-3.0.texi
+Hash: a4c865bb56a69cee86c1ab9bb354cd6a81b95e64a6ed096b1b3e616af3f85cc1
+License: 
+Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/}
+Licence-Text: 
+#Header: 
+#@c The GNU Lesser General Public License.
+#@center Version 3, 29 June 2007
+#
+#@c This file is intended to be included within another document,
+#@c hence no sectioning command or @node.
+#
+#@display
+#Copyright @copyright{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/}
+#
+#Everyone is permitted to copy and distribute verbatim copies of this
+#license document, but changing it is not allowed.
+#@end display
+#
+#This version of the GNU Lesser General Public License incorporates
+#the terms and conditions of version 3 of the GNU General Public
+
+File: ./doc/lib-symbol-visibility.texi
+Hash: ace49800754530f3421436b0c69c07faa05fec9319591a7a4d30b2bd37a98525
+License: 
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@node Exported Symbols of Shared Libraries
+#@section Controlling the Exported Symbols of Shared Libraries
+#
+#@c Documentation of gnulib module 'lib-symbol-visibility'.
+#
+#@c Copyright (C) 2005-2006, 2009 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#The @code{lib-symbol-visibility} module allows precise control of the
+
+File: ./doc/maintain.texi
+Hash: c3f2ff808bd13ddf5c9dfdecff85d6bc5581e6338bf9919e43aa41a7d2a5ed05
+License: 
+Copyright: @{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+Licence-Text: 
+#Header: 
+#\input texinfo.tex    @c -*-texinfo-*-
+#@c %**start of header
+#@setfilename maintain.info
+#@settitle Information for Maintainers of GNU Software
+#@c For double-sided printing, uncomment:
+#@c @setchapternewpage odd
+#@c This date is automagically updated when you save this file:
+#@set lastupdate July 24, 2009
+#@c %**end of header
+#
+#@dircategory GNU organization
+#@direntry
+#* Maintaining: (maintain).        Maintaining GNU software.
+#@end direntry
+
+File: ./doc/make-stds.texi
+Hash: 6856144813c56da2dd64ded78323b4e4e1be9177837113f827f9340b8cb74446
+License: 
+Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001
+Licence-Text: 
+#Header: 
+#@comment This file is included by both standards.texi and make.texinfo.
+#@comment It was broken out of standards.texi on 1/6/93 by roland.
+#
+#@node Makefile Conventions
+#@chapter Makefile Conventions
+#@comment standards.texi does not print an index, but make.texinfo does.
+#@cindex makefile, conventions for
+#@cindex conventions for makefiles
+#@cindex standards for makefiles
+#
+#@c Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001,
+#@c 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+#@c
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3
+
+File: ./doc/manywarnings.texi
+Hash: eb20f35c0202b22d36b97d775196f85053b54dc0a181eced05ac1f19457dd4df
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node manywarnings
+#@section manywarnings
+#
+#The @code{manywarnings} module allows you to enable as many GCC warnings as
+#possible for your package. The purpose is to protect against introducing new
+#code that triggers warnings that weren't already triggered by the existing code
+#base.
+#
+#An example use of the module is as follows:
+#
+#@smallexample
+#gl_MANYWARN_ALL_GCC([warnings])
+## Set up the list of the pointless, undesired warnings.
+#nw=
+#nw="$nw -Wsystem-headers"       # Don't let system headers trigger warnings
+
+File: ./doc/pastposix-functions/bcmp.texi
+Hash: ee5e5047ceaf869e5c235c6f2702e7f43b6b4ea02ef553524b75e92be07c640b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bcmp
+#@section @code{bcmp}
+#@findex bcmp
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/bcmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/bcopy.texi
+Hash: 223523ff87be634108d2bf747ce5fbe13ad98f02904e0c098e5bbf60bf490330
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bcopy
+#@section @code{bcopy}
+#@findex bcopy
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/bcopy.html}
+#
+#Gnulib module: bcopy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 2.4, mingw.
+#@end itemize
+
+File: ./doc/pastposix-functions/bsd_signal.texi
+Hash: 00704a5cfe69597fb6d992575594832eb5947e8748892a721d7ffb17283aa90b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bsd_signal
+#@section @code{bsd_signal}
+#@findex bsd_signal
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/bsd_signal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/bzero.texi
+Hash: c850be8ba6f681e50eb0a4ecc5820bf7e59d6ff4b4614588c060201ea49eb02e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bzero
+#@section @code{bzero}
+#@findex bzero
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/bzero.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/ecvt.texi
+Hash: e6504270c1681b6065cb639e57224dd1f372edfa0a59123f7d37173406a4f494
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ecvt
+#@section @code{ecvt}
+#@findex ecvt
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/ecvt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/fcvt.texi
+Hash: 430225c066876772ad6b84ef2fec19a1c57b804a039583810795399f63705b54
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fcvt
+#@section @code{fcvt}
+#@findex fcvt
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/fcvt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/ftime.texi
+Hash: 89c4865146e1c4cbe085be8b535cc4895846e0d7dc5d9463cd893f2a2611cc6b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ftime
+#@section @code{ftime}
+#@findex ftime
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/ftime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/gcvt.texi
+Hash: b58c5c40dd157cd45a90cc8116c094bc7467118421b812fa7603d85ef5f9a216
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gcvt
+#@section @code{gcvt}
+#@findex gcvt
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/gcvt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/getcontext.texi
+Hash: d4cff088a3b331819944b6dd371788d793587a91a2e300d45e194025ba3912f0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getcontext
+#@section @code{getcontext}
+#@findex getcontext
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/getcontext.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/gethostbyaddr.texi
+Hash: f62bfb5224b154effd3082e24c0573f955ccece64433a088bf72f82c97797593
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostbyaddr
+#@section @code{gethostbyaddr}
+#@findex gethostbyaddr
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/gethostbyaddr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/gethostbyname.texi
+Hash: 776bee42bc3143a75a126fc67510c85e732caff095d2618cf3dad9adfde2823e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostbyname
+#@section @code{gethostbyname}
+#@findex gethostbyname
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/gethostbyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/getwd.texi
+Hash: 0ea55e75af07fb3979e1a63cf6b6182eefbaea7dd5556d849894438bd700541e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getwd
+#@section @code{getwd}
+#@findex getwd
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/getwd.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/h_errno.texi
+Hash: 8ad4e6a01308643335b767c77d0f461f310eeeb59a03fd2b7057f5064c165625
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node h_errno
+#@section @code{h_errno}
+#@findex h_errno
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/h_errno.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/index.texi
+Hash: a5fca5d0786ced2a2f131a143afab2f5ee54b26b419e1be48f0139c208117de8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node index
+#@section @code{index}
+#@findex index
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/index.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/makecontext.texi
+Hash: 1c5f3629d45da8aa766f448b81564a651ce98fcf39f5982732a39f9309b6760b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node makecontext
+#@section @code{makecontext}
+#@findex makecontext
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/makecontext.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/mktemp.texi
+Hash: 9eb524104f966e5d2bec99631296f09f0f359d79cd59f39feeb96ab11d99fc43
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mktemp
+#@section @code{mktemp}
+#@findex mktemp
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/mktemp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/pthread_attr_getstackaddr.texi
+Hash: 4d63b667e605bb58aa0663e91f62ede2047edc8b47c59feb336a73fcbfe9fc8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getstackaddr
+#@section @code{pthread_attr_getstackaddr}
+#@findex pthread_attr_getstackaddr
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/pthread_attr_getstackaddr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/pthread_attr_setstackaddr.texi
+Hash: 6321fd00b2cdfca18d37e2da59c1746b49d208d9342fd98061524fae66a617fc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setstackaddr
+#@section @code{pthread_attr_setstackaddr}
+#@findex pthread_attr_setstackaddr
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/pthread_attr_setstackaddr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/rindex.texi
+Hash: 7d63a4ee6bc483b81e2d88abf9ecc5576e30f3c911e8a00ae2a6c79aeaa0f141
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rindex
+#@section @code{rindex}
+#@findex rindex
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/rindex.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/scalb.texi
+Hash: 466c68b70229a839f6d041c664ca3b58a0cd8bbe7b878e3d1fbe68f1bf578b90
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalb
+#@section @code{scalb}
+#@findex scalb
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/scalb.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/pastposix-functions/setcontext.texi
+Hash: cf06f7a1492f1b932e521f9532748e9d6e93638ac687bda4eabebd45b8f14fda
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setcontext
+#@section @code{setcontext}
+#@findex setcontext
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/setcontext.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/swapcontext.texi
+Hash: cbd3d366ba77cedb5d159f4ba6325e42dc851244f91750aac38dd037bbe32ebd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node swapcontext
+#@section @code{swapcontext}
+#@findex swapcontext
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/swapcontext.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/ualarm.texi
+Hash: 2e8b19c1c34350007a55f47aec6a9c248d12f48f6b5b350f391b723c0b93392c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ualarm
+#@section @code{ualarm}
+#@findex ualarm
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/ualarm.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/usleep.texi
+Hash: f501d093118e406965e4dad35b035eee7346fec9ca5ee2a69867718e32d277fe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node usleep
+#@section @code{usleep}
+#@findex usleep
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/usleep.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/vfork.texi
+Hash: 36148ae554abcc4b634cf714f4fd99d663a957814057cf580370d48944a22ff5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vfork
+#@section @code{vfork}
+#@findex vfork
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/vfork.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/pastposix-functions/wcswcs.texi
+Hash: c56c89e0ec1d7221fa616889acfc8be4eff6a18d830fb452fd62c2c59c115c32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcswcs
+#@section @code{wcswcs}
+#@findex wcswcs
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xsh/wcswcs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/FD_CLR.texi
+Hash: 4bdcc69109a06b2a638508e0e88920c7b9144c36295828451960cc3937dfa0ee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node FD_CLR
+#@section @code{FD_CLR}
+#@findex FD_CLR
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/FD_CLR.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/FD_ISSET.texi
+Hash: 1291518a4f9111d9e9475c542cc9c025c2150e824852f4f5d689b43aff16f0d1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node FD_ISSET
+#@section @code{FD_ISSET}
+#@findex FD_ISSET
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/FD_ISSET.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/FD_SET.texi
+Hash: 16e13795165195f4a4eacd97bb731c1cc32746395eda808584fe24e7bf2bf040
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node FD_SET
+#@section @code{FD_SET}
+#@findex FD_SET
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/FD_SET.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/FD_ZERO.texi
+Hash: 867ed157d794920b1e6ef522bd1389065fa176a2745516597adc9d957c6d9c1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node FD_ZERO
+#@section @code{FD_ZERO}
+#@findex FD_ZERO
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/FD_ZERO.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/_Exit_C99.texi
+Hash: f2971a822bc1838157a0c388c7112b4fb3512e7285ad00028a64ed2d126560ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node _Exit
+#@section @code{_Exit}
+#@findex _Exit
+#@c This file would ideally be called _Exit.texi, but then it would collide
+#@c with _exit.texi on case-insensitive file systems (MacOS X HFS+ and Woe32
+#@c file systems).
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_Exit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/_exit.texi
+Hash: 617e14d15ded9c83e30656eee2982fbd7779fae2a9ebb85434e731e0448ea376
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node _exit
+#@section @code{_exit}
+#@findex _exit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_exit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/_longjmp.texi
+Hash: a4efad25c9a2aa0a0bb68cb8f8d93469f8dededd867d67616165bd2cac5b49ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node _longjmp
+#@section @code{_longjmp}
+#@findex _longjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_longjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/_setjmp.texi
+Hash: fd4f68ff284ebc28908272e8ba70caa11cd851a607710395440093198b78da33
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node _setjmp
+#@section @code{_setjmp}
+#@findex _setjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_setjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/_tolower.texi
+Hash: af965647c2059fa305a0ea66425e067f6351285e242a80bfb79892d04af1efe2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node _tolower
+#@section @code{_tolower}
+#@findex _tolower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_tolower.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/_toupper.texi
+Hash: a60a13b20e2c158a30d313107892d5c7445595700c098bf69aa2e09a9932a27d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node _toupper
+#@section @code{_toupper}
+#@findex _toupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/_toupper.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/a64l.texi
+Hash: 9a48aa5a59249118c5ed8abb938d8c66ee17754847ba48b97d1bb34ebd736950
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node a64l
+#@section @code{a64l}
+#@findex a64l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/a64l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/abort.texi
+Hash: f7017d331926830c3d0ee3ef193aaba54cc29e400d26730478300ed46c330278
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node abort
+#@section @code{abort}
+#@findex abort
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/abort.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/abs.texi
+Hash: 8a6be2b119b4780391f1a407aef5ce6064c1f1c2fb42b2d9801e81446320a575
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node abs
+#@section @code{abs}
+#@findex abs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/abs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/accept.texi
+Hash: 81b3c3211aee16330e76a0b86a339f4d352a02421066633fc356a3bff5365aec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node accept
+#@section @code{accept}
+#@findex accept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/accept.html}
+#
+#Gnulib module: accept
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), the descriptors returned by
+#the @code{accept} function can not be used in calls to @code{read},
+#@code{write}, and @code{close}; you have to use @code{recv}, @code{send},
+#@code{closesocket} in these cases instead.
+
+File: ./doc/posix-functions/access.texi
+Hash: 5c9fe6527a708f0f5699ddaa241a010325972adaaf5f6dbd5a05728a80ab7de0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node access
+#@section @code{access}
+#@findex access
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/access.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/acos.texi
+Hash: 150b61e719501d08ba13f5c263800804a50eefb71d3ce76b4c267c5cf01f297c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node acos
+#@section @code{acos}
+#@findex acos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/acosf.texi
+Hash: 9c84c5a1592f90ebe189dd0411e60fae1dc44b75d1b85235767ba29fdb461845
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node acosf
+#@section @code{acosf}
+#@findex acosf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acosf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/acosh.texi
+Hash: 194f7fc07993dbde9913bcdc50b1f595c79f07e3bcc99a22abd2c7f996be9615
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node acosh
+#@section @code{acosh}
+#@findex acosh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acosh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/acoshf.texi
+Hash: 16975c50d57f3c7d1e6e146f12dd4fb00edf62eb981cd7ca0086ba4637a6c4ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node acoshf
+#@section @code{acoshf}
+#@findex acoshf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acoshf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/acoshl.texi
+Hash: c48a11ab5a5cbe1b315d4eba844ada7b360515d9dde684063df356b4e26ca7cf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node acoshl
+#@section @code{acoshl}
+#@findex acoshl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acoshl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/acosl.texi
+Hash: e7792ee050ec415ebb3afb0943ed08c5a1d8473e4a3965fc294a40f54508ff80
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node acosl
+#@section @code{acosl}
+#@findex acosl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/acosl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/aio_cancel.texi
+Hash: b66233d7d61128517a0b7295d5acec1e95f4b39184ffb18d77fb8ef6b78fe623
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio_cancel
+#@section @code{aio_cancel}
+#@findex aio_cancel
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_cancel.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/aio_error.texi
+Hash: c373cc41047b3d210041a50ec055a65ffe89026e4fdf391bc4a45890df6fe34c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio_error
+#@section @code{aio_error}
+#@findex aio_error
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_error.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/aio_fsync.texi
+Hash: e727b3d41bef54f2e5c2729130af2eb90f1010edc998c99bd06e02f466e47cdc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio_fsync
+#@section @code{aio_fsync}
+#@findex aio_fsync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_fsync.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/aio_read.texi
+Hash: 3d17ee9b9556d524d7d7f90a80fe07b3fcd01a23d833c1bd12815ded8abe1f0c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio_read
+#@section @code{aio_read}
+#@findex aio_read
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_read.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/aio_return.texi
+Hash: 7991e57a0afdf4886417e32b5ff2fefca051625e020d2f99c6ba13a9ba0b93f6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio_return
+#@section @code{aio_return}
+#@findex aio_return
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_return.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/aio_suspend.texi
+Hash: 6a7462cef0037932257eeb80998e3fe8d56418d33006cdfd729b36c2ee2442f9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio_suspend
+#@section @code{aio_suspend}
+#@findex aio_suspend
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_suspend.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/aio_write.texi
+Hash: 1bcfee726b7f2c39b8ab864a98213996e3d6550bc91ffe27e68ca52cc42fef61
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio_write
+#@section @code{aio_write}
+#@findex aio_write
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/aio_write.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/alarm.texi
+Hash: e2e54168615ce20a9bdb520184cdb94f8c87bc7afbe08bad9e3fa30228948609
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node alarm
+#@section @code{alarm}
+#@findex alarm
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/alarm.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/alphasort.texi
+Hash: ef1142784d13d61cc5243b241b611436b5c41936674ff9c822f3bd5a525a541d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node alphasort
+#@section @code{alphasort}
+#@findex alphasort
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/alphasort.html}
+#
+#Gnulib module: alphasort
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 9, mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/asctime.texi
+Hash: 721bc2ac5ac79045cbf87988e789bbab5132485fcfb82753f1341d315c4ac690
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asctime
+#@section @code{asctime}
+#@findex asctime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asctime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/asctime_r.texi
+Hash: f9f95df6f49642a423caa4d7f15c2f032790dc10388af51c7661f87407f1f260
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asctime_r
+#@section @code{asctime_r}
+#@findex asctime_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asctime_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/asin.texi
+Hash: b329f7976db842d1b576513d498164f1469586519242f55a3549f35d19fa5c8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asin
+#@section @code{asin}
+#@findex asin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/asinf.texi
+Hash: dcc23541874407b670f6aaa98d3206d52d1dc7d332c61591c21b902c0c88175a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asinf
+#@section @code{asinf}
+#@findex asinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/asinh.texi
+Hash: ca1f10207ab80b34856d7d221917ab4e3ea8ec66daabfad193f620a43e0890fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asinh
+#@section @code{asinh}
+#@findex asinh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/asinhf.texi
+Hash: 57aa296f938827a7b7ccc0146a519d2daec080d5a4fd9faaeb912ba6b25fc5a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asinhf
+#@section @code{asinhf}
+#@findex asinhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/asinhl.texi
+Hash: 5334814ec20f8cb6f5b4fa90b116944da8b21130f87f170143da8c5e7d0ed90a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asinhl
+#@section @code{asinhl}
+#@findex asinhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/asinl.texi
+Hash: f38089461ff6de8a2e20fe6faf14bb3536b88885f71406ec3678f9eeddb3b7e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node asinl
+#@section @code{asinl}
+#@findex asinl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/asinl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/assert.texi
+Hash: c57a5393ad06cfbf14e522f23e99c9f7c79ff4295814b68d038ebfc9914898a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node assert
+#@section @code{assert}
+#@findex assert
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/assert.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/atan.texi
+Hash: 4ff1b784715d8fccd274a4d46d6c0a2aaa69ba2d80d1b6551033c492cf599c98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atan
+#@section @code{atan}
+#@findex atan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/atan2.texi
+Hash: 7fdc70bbb2d4ec9e2f5cb007bc3c45617de137614d5d793d80e6a1c7d28fdcb9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atan2
+#@section @code{atan2}
+#@findex atan2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atan2.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/atan2f.texi
+Hash: e097eb1773d31fceff278a30c31286bc5600c4b73b1c152778dd1057036982d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atan2f
+#@section @code{atan2f}
+#@findex atan2f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atan2f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/atan2l.texi
+Hash: f4c5ca77363c312560873e8094350021d32b086379d14a23fb80a75147fbc45c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atan2l
+#@section @code{atan2l}
+#@findex atan2l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atan2l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/atanf.texi
+Hash: ba3c7c2fc2662ad55ef268494c70149f99f16a3ef9f266870508454cd70e12a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atanf
+#@section @code{atanf}
+#@findex atanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/atanh.texi
+Hash: 2ebfd2d4f0608e214eee8e76ea21fa027dd8496d685b81231e7e7e40bcd83689
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atanh
+#@section @code{atanh}
+#@findex atanh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/atanhf.texi
+Hash: 327fcf33922e20f61594c5d6bfb40a36d60661a50594ed1373cb04182f78ad1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atanhf
+#@section @code{atanhf}
+#@findex atanhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/atanhl.texi
+Hash: 7d84523ad7598e7932a11e3bdf4cfaa78a0e2844bfa8fef21ac0a9445a7d2461
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atanhl
+#@section @code{atanhl}
+#@findex atanhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/atanl.texi
+Hash: f9fdd043f291ef30c72d8b86bec63f81872c4e27c075eb44555e3519a942ce71
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atanl
+#@section @code{atanl}
+#@findex atanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/atexit.texi
+Hash: 07af21ce2184b60a35aff17a7de75adac18a1c23a31c8ef3966fe5a19b11f702
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atexit
+#@section @code{atexit}
+#@findex atexit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atexit.html}
+#
+#Gnulib module: atexit
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/atof.texi
+Hash: cb598c82f7c415f1525ac2f407c7924853f15d7f63a42471e2e980e263aed83b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atof
+#@section @code{atof}
+#@findex atof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/atoi.texi
+Hash: 42f659e4671bf747e181f5ef4b3f949ecb73cdd988944a3847e0b43b3af9a980
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atoi
+#@section @code{atoi}
+#@findex atoi
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atoi.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/atol.texi
+Hash: 509a54f5251640192f8b2054f91f5c2d8acf54dbe7ed65ef8ef07747502402af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atol
+#@section @code{atol}
+#@findex atol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/atoll.texi
+Hash: 8c9a6dc1b25278f7455c06e10fdccf05c49405df1d7116aca867349387b4d9f4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node atoll
+#@section @code{atoll}
+#@findex atoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/atoll.html}
+#
+#Gnulib module: atoll
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, OSF/1 5.1, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/basename.texi
+Hash: 580230c22dd6f6cf1cf798e506e89d861118db39bc129e9f4257f55de4915995
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node basename
+#@section @code{basename}
+#@findex basename
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/basename.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/bind.texi
+Hash: 075c556c5fdc1c0a9aa62c6cc8c9c94ab0a632352b43e43c36daf2682dafbcac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bind
+#@section @code{bind}
+#@findex bind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/bind.html}
+#
+#Gnulib module: bind
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{bind}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+
+File: ./doc/posix-functions/bsearch.texi
+Hash: a52cfb1ef7418d53462eb86d9b8153cf8589b501f912e649c765afe6ee090968
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node bsearch
+#@section @code{bsearch}
+#@findex bsearch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/bsearch.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/btowc.texi
+Hash: 86660f1a58cfde44606f43b85c540b2e731dca2e3387fb1a2486656615ba03e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node btowc
+#@section @code{btowc}
+#@findex btowc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/btowc.html}
+#
+#Gnulib module: btowc
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 5.3, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not return WEOF for an EOF argument on some platforms:
+
+File: ./doc/posix-functions/cabs.texi
+Hash: 5a57e05203246e471ecb597d82a6df81a9a9324e7f9d41c4c07524134f1a742f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cabs
+#@section @code{cabs}
+#@findex cabs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cabs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cabsf.texi
+Hash: 6206f6a5f20a0c6471551ea93ba80961472d58caa288e80acc5400a973546d49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cabsf
+#@section @code{cabsf}
+#@findex cabsf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cabsf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cabsl.texi
+Hash: d6d3a323b448fe92e604e0121be72ea0fdf5c8876ab74c851cae2119804a23af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cabsl
+#@section @code{cabsl}
+#@findex cabsl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cabsl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cacos.texi
+Hash: 50eeefeabe4315e966bc544fdef355a310e83c8d3a199628c70c4333fb3659c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cacos
+#@section @code{cacos}
+#@findex cacos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cacosf.texi
+Hash: 5574c38edf482540ee0ccabea8512ea3b254bc971aac84d48c0814a9161b71ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cacosf
+#@section @code{cacosf}
+#@findex cacosf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacosf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cacosh.texi
+Hash: d5668e987d967fa28f2fc14ee7b0b32cab5b7ce204f9724133c81b1ab9d0d38c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cacosh
+#@section @code{cacosh}
+#@findex cacosh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacosh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cacoshf.texi
+Hash: 09c419d35ce19ad5101b87b37cb67507975fa38ad4e5558a78c3fb28897d45a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cacoshf
+#@section @code{cacoshf}
+#@findex cacoshf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacoshf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cacoshl.texi
+Hash: dc375481504fafa3bd2f505b3a24f913052b5d7cc8f6be09d322b23ecd72fe4f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cacoshl
+#@section @code{cacoshl}
+#@findex cacoshl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacoshl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cacosl.texi
+Hash: bf1d59e5f937aa85da28fa866443894e6a227636f9c2075f81c13a6ff1f010fb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cacosl
+#@section @code{cacosl}
+#@findex cacosl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cacosl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/calloc.texi
+Hash: 8d5ecf56975464579d01f08920bee2441850c4e3e295ee55688c1669a6d871c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node calloc
+#@section @code{calloc}
+#@findex calloc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/calloc.html}
+#
+#Gnulib module: calloc-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Upon failure, the function does not set @code{errno} to @code{ENOMEM} on
+#some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/carg.texi
+Hash: a82fbcbbd57f46c534a0b7c0498648ccb5d1b990a71c3f00b7f71d62ead996f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node carg
+#@section @code{carg}
+#@findex carg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/carg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cargf.texi
+Hash: 3400afd0256e66a6906d3ec9034955305cd3018876434b982005c1070ff4d9b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cargf
+#@section @code{cargf}
+#@findex cargf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cargf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cargl.texi
+Hash: 05ba0a0471f75afc9164bf93664b3e3169236684072ba2e750805ba7c441ce71
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cargl
+#@section @code{cargl}
+#@findex cargl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cargl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/casin.texi
+Hash: 088c0bcfac54314d20520422d335a2cdd8fd8de1fa28f7a3574b049b64206d4c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node casin
+#@section @code{casin}
+#@findex casin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/casinf.texi
+Hash: e1eda8eda74e50383462f6250d8797995b4bd9e33630a97b11068457b25079ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node casinf
+#@section @code{casinf}
+#@findex casinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/casinh.texi
+Hash: c92401d5821a5c2e8eae6e1ee0e4d0f404fed62fe860d51ca34276cbe5c67fdc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node casinh
+#@section @code{casinh}
+#@findex casinh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/casinhf.texi
+Hash: 955a15c8ef8373798497a79b8303d6ddc32b5a9ca5132389339e2934344d3d45
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node casinhf
+#@section @code{casinhf}
+#@findex casinhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/casinhl.texi
+Hash: bc36d55b4db6c64eec973c48e5f4e01bf2524e0774b4ed7575a0962e6c752d60
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node casinhl
+#@section @code{casinhl}
+#@findex casinhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/casinl.texi
+Hash: 2fdcbfd22461c6328f3a88b4a220c43c7e669f760b9247dc13924213b3608ca4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node casinl
+#@section @code{casinl}
+#@findex casinl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/casinl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catan.texi
+Hash: 1900ac3c57172c7fcf543e7c2bdbbe29786d3e2de52b270034ba0d1043b03142
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catan
+#@section @code{catan}
+#@findex catan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catanf.texi
+Hash: 15a02393981d9d54e9343892174f0f4460b9a912a7e081154ee9549d2e7ffbf0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catanf
+#@section @code{catanf}
+#@findex catanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catanh.texi
+Hash: 26f0ae150358d27a41ebd8a1ea04f9894175f61babb39a6b98f5d61599a9edd1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catanh
+#@section @code{catanh}
+#@findex catanh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catanhf.texi
+Hash: 4e75f5881fbb08aa54a2fff4134b3762fa0e12469c74932a38fd9e4207a3623a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catanhf
+#@section @code{catanhf}
+#@findex catanhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catanhl.texi
+Hash: 82d0c974c64a7cf16231948261385d9481c370fccd9c1505479c1570315fcd47
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catanhl
+#@section @code{catanhl}
+#@findex catanhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catanl.texi
+Hash: 9e7691d069d4a4738e083cf638a18a533a7c823dcd5703365ab766d077e8744f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catanl
+#@section @code{catanl}
+#@findex catanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catclose.texi
+Hash: 01ecba8a97e46807f4fbb86f8f783a4aac58738c54a0100b32283f4d64f2307f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catclose
+#@section @code{catclose}
+#@findex catclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catclose.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catgets.texi
+Hash: 85222dd53c8d87d37d1fc345d441786afb858cfbd76117d6ad374541305c418b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catgets
+#@section @code{catgets}
+#@findex catgets
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catgets.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/catopen.texi
+Hash: 6735bd2f884c12725cdae1f82a0d5e53c6773f3803e206c4d2fbb773e74834c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node catopen
+#@section @code{catopen}
+#@findex catopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/catopen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cbrt.texi
+Hash: 67c9f016fcf80f7a7bb55861e8547c42548312e7370fc73728b5274032f976b6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cbrt
+#@section @code{cbrt}
+#@findex cbrt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cbrt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/cbrtf.texi
+Hash: 803d4a7e0a751e168dc18cd98d0f2c41155e2c26493040183d792e4024515762
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cbrtf
+#@section @code{cbrtf}
+#@findex cbrtf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cbrtf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cbrtl.texi
+Hash: 43de9ac1aa9e5cc0d8bd8702ede4d1aa16e6dcef3ad574242605a0c8bbec94cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cbrtl
+#@section @code{cbrtl}
+#@findex cbrtl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cbrtl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ccos.texi
+Hash: 8fa59bae0d8f0c675e9ef48de43de0b4c10b0507a31cd2d81550f52d9712cff0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ccos
+#@section @code{ccos}
+#@findex ccos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ccosf.texi
+Hash: 2eaf3ff8e1a7a5cbb0233238640c6a1134ae3cc80acc412585115fd63358bf61
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ccosf
+#@section @code{ccosf}
+#@findex ccosf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccosf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ccosh.texi
+Hash: 8acf4ecf1abbec6b25ab0cc53f8a452f4ddb32bd61ff4a6ff94c16a5602ec2ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ccosh
+#@section @code{ccosh}
+#@findex ccosh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccosh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ccoshf.texi
+Hash: f30beb9e547118702e7f30525f258e4cf50a5195e03fb66554802fe0a580f7c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ccoshf
+#@section @code{ccoshf}
+#@findex ccoshf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccoshf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ccoshl.texi
+Hash: eb9e28e48f625d3e2eb5e13e96cbbe361b852162d3d90ba26a5837e1889af495
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ccoshl
+#@section @code{ccoshl}
+#@findex ccoshl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccoshl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ccosl.texi
+Hash: 3d9df8f9f71f802e5d84323b16351e60dbabdbb3cd0abd9bc862b3e291439694
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ccosl
+#@section @code{ccosl}
+#@findex ccosl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ccosl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ceil.texi
+Hash: cf8b5752573720cc25bec831c538c1394b14f3b1460f5cc3a2e16ac7016e0497
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ceil
+#@section @code{ceil}
+#@findex ceil
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ceil.html}
+#
+#Gnulib module: ceil
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/ceilf.texi
+Hash: e13c58fd23e0ed41d99a7bd4d0e8d7849bd2da76d7ce095fdaa587ccb3839d6f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ceilf
+#@section @code{ceilf}
+#@findex ceilf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ceilf.html}
+#
+#Gnulib module: ceilf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, Solaris 9.
+#@end itemize
+
+File: ./doc/posix-functions/ceill.texi
+Hash: c9b79f28ab9283d893f155d1f25c8e75cb360e0d04af0b245bf3e1d009217a5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ceill
+#@section @code{ceill}
+#@findex ceill
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ceill.html}
+#
+#Gnulib module: ceill
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/cexp.texi
+Hash: d3f7892298fdf378f2828a6b51fe4805c92d3a2a217a3e38d4bed5f7c4cc3da4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cexp
+#@section @code{cexp}
+#@findex cexp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cexp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cexpf.texi
+Hash: 09f585a4aba129816d1cb526a14f28ff83ca3fa54016e7bf8b8c08494c2db323
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cexpf
+#@section @code{cexpf}
+#@findex cexpf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cexpf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cexpl.texi
+Hash: 883e3b88e16b87337802472c75c00fa5b35462c0b8573f7ef558e9a4c0e4faf9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cexpl
+#@section @code{cexpl}
+#@findex cexpl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cexpl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cfgetispeed.texi
+Hash: 14c4e6e62c223931253fb497e69a93dad3a1c6a51fca15f3e63337795107bea5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cfgetispeed
+#@section @code{cfgetispeed}
+#@findex cfgetispeed
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cfgetispeed.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cfgetospeed.texi
+Hash: c2519db2b4f519fd3f66640aabd8e497ba1ce5892d23c916a38576bbb580361e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cfgetospeed
+#@section @code{cfgetospeed}
+#@findex cfgetospeed
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cfgetospeed.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cfsetispeed.texi
+Hash: 3b3d21a8f207d8e41d3c912c4a0083264a6fa411c2da6c3f604d7050dee0fed8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cfsetispeed
+#@section @code{cfsetispeed}
+#@findex cfsetispeed
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cfsetispeed.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cfsetospeed.texi
+Hash: c20afc895be661df0733a8dc75794fa7293263468d39678a301ff494d2c87109
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cfsetospeed
+#@section @code{cfsetospeed}
+#@findex cfsetospeed
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cfsetospeed.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/chdir.texi
+Hash: 53aded6f64b0941116e51303b73ac8e6e9278e3f201af7c6ad326820b5e2e3f6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node chdir
+#@section @code{chdir}
+#@findex chdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/chdir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/chmod.texi
+Hash: 3a349653c163fa2e3564b1e31ed14ab490934bba7fd3d0096f0d7b1efded7348
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node chmod
+#@section @code{chmod}
+#@findex chmod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/chmod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/chown.texi
+Hash: fb9f116f87fc01e4ef30e188f7c9360ac6f517f9eb1370ae2491f5246ed6fef0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node chown
+#@section @code{chown}
+#@findex chown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/chown.html}
+#
+#Gnulib module: chown
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When passed an argument of -1, some implementations really set the owner
+#user/group id of the file to this value, rather than leaving that id of the
+#file alone.
+#@item
+
+File: ./doc/posix-functions/cimag.texi
+Hash: fd22dd26750766a15751078eb653fdc2ddde0ce0fbd929b258c9fe161e04170e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cimag
+#@section @code{cimag}
+#@findex cimag
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cimag.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cimagf.texi
+Hash: 76a569fc520aa0eb83fadc9a9e735b2a0a5f3f6daeeeaab322bac1b697554888
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cimagf
+#@section @code{cimagf}
+#@findex cimagf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cimagf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cimagl.texi
+Hash: c881d444238f5203c0d3b0087372957be2f909c63037c1d14ee0a916707a9c6d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cimagl
+#@section @code{cimagl}
+#@findex cimagl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cimagl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/clearerr.texi
+Hash: 5fed5a649725e8940e5adb12d4fbf3f5af27aade47daa719911b155f7421149d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clearerr
+#@section @code{clearerr}
+#@findex clearerr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clearerr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/clock.texi
+Hash: 71e1ceb2d0f5f512ab4a9a0fb2ce9e895457e1b6c7425130bf8ba7896980978a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clock
+#@section @code{clock}
+#@findex clock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/clock_getcpuclockid.texi
+Hash: e72acf21acf80e70335aa212455e60bf1f9815caa0e8d1bf2d2d192c9e337803
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clock_getcpuclockid
+#@section @code{clock_getcpuclockid}
+#@findex clock_getcpuclockid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_getcpuclockid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/clock_getres.texi
+Hash: bf955ddbae540035a89e35302304365a2a775aabb9ae7fccbc9c66948de3619e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clock_getres
+#@section @code{clock_getres}
+#@findex clock_getres
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_getres.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/clock_gettime.texi
+Hash: ac68c2fc02227f916df88dfa46f6b2dfbe111860e20dfa605934d149550ef2e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clock_gettime
+#@section @code{clock_gettime}
+#@findex clock_gettime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_gettime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/clock_nanosleep.texi
+Hash: 59ca36060acae6a447a4111243c638108a3a98fcf1b53dd7681aaf989698df2a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clock_nanosleep
+#@section @code{clock_nanosleep}
+#@findex clock_nanosleep
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_nanosleep.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/clock_settime.texi
+Hash: 297b8d0066f505aa8c21939c73612aaf536cf0e4f977f1edbb2c4f242d2c5a3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clock_settime
+#@section @code{clock_settime}
+#@findex clock_settime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clock_settime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/clog.texi
+Hash: 47702f69c3982416c0512a7bd4025df239fefbe4a2f1707cd4745b9fdb500379
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clog
+#@section @code{clog}
+#@findex clog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/clogf.texi
+Hash: 2e2bd1295966040f14759ef405f2038a279e164148b402035e9f0633e8e9f49e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clogf
+#@section @code{clogf}
+#@findex clogf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clogf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/clogl.texi
+Hash: d40dfa8fa5b96d52d881955e61b8f0cedd381b1e8ca3d7b5ab72c35fb5cdaf55
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node clogl
+#@section @code{clogl}
+#@findex clogl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/clogl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/close.texi
+Hash: cdb920f0119a8df783e378bc05571ee2ca4308b3f841b50ca48bd1a3a592ecdc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node close
+#@section @code{close}
+#@findex close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/close.html}
+#
+#Gnulib module: close
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), @code{socket} and @code{accept}
+#do not return file descriptors that can be closed by @code{close}.
+#Instead, @code{closesocket} must be used.
+#@end itemize
+
+File: ./doc/posix-functions/closedir.texi
+Hash: 7e1885ff9368f59c6f2b55a3f04b6ff7a6aa6b2ca796b91c3c88c5c8ec50eaf7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node closedir
+#@section @code{closedir}
+#@findex closedir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/closedir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/closelog.texi
+Hash: 30ca3ffe1cf65500c3bcc3580781dcc34252bea949f3270ce75ad084a281b055
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node closelog
+#@section @code{closelog}
+#@findex closelog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/closelog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/confstr.texi
+Hash: 2ce3fc57057be6a24091d7ea399f22cba994b4346cef4ad9e0905d51edb913bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node confstr
+#@section @code{confstr}
+#@findex confstr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/confstr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/conj.texi
+Hash: 0eb7d2bbdb99c6fd78b92c2b7914b2877cf9e69c4ba5b330f498ef280b11e362
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node conj
+#@section @code{conj}
+#@findex conj
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/conj.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/conjf.texi
+Hash: 11074f4091f08fd28a9c95b2c7dba4bd66f6fffe7db41e961cfc565ec2d5e960
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node conjf
+#@section @code{conjf}
+#@findex conjf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/conjf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/conjl.texi
+Hash: 2c89f05a72f75624bbe8a6c3541f8d3907e91507537a6a5fa75fdceab2a35963
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node conjl
+#@section @code{conjl}
+#@findex conjl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/conjl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/connect.texi
+Hash: 122c3713f1fc98b41082aeaf30a2698ca66f35c223d70b97b76ef1b622c58db0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node connect
+#@section @code{connect}
+#@findex connect
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/connect.html}
+#
+#Gnulib module: connect
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{connect} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+
+File: ./doc/posix-functions/copysign.texi
+Hash: 93dede54d4a068e03c2a790b968101fcce78809d3aa2353f8cf98fda60d7c269
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node copysign
+#@section @code{copysign}
+#@findex copysign
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/copysign.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/copysignf.texi
+Hash: 936705fb4bcc082135aa1afc2248b7cfc45cf37f22d002866acaa14c654baaff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node copysignf
+#@section @code{copysignf}
+#@findex copysignf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/copysignf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/copysignl.texi
+Hash: 5540cb65bb917d842bc6d0e81dcce0f16f2d1a6d0a8bb9add553a8c9559fabe7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node copysignl
+#@section @code{copysignl}
+#@findex copysignl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/copysignl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cos.texi
+Hash: 80045abb71f4e33aea591a9a33a90bef9af7125bbb532ff6e163c7c900307481
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cos
+#@section @code{cos}
+#@findex cos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/cosf.texi
+Hash: 6a11bab0ddf9d06df138b7698cf452d382efa0ac3c383bf36c1b2932b9e8f892
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cosf
+#@section @code{cosf}
+#@findex cosf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cosf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cosh.texi
+Hash: dcd6e2553d7fcd67f7d7ac4b296e0b86c27791599a33b0f849b7b6b9ae783102
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cosh
+#@section @code{cosh}
+#@findex cosh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cosh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/coshf.texi
+Hash: ac511adc238f0fc43aee913691ce5b4d5758b02ba0edc1f377f07bc2b24b427d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node coshf
+#@section @code{coshf}
+#@findex coshf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/coshf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/coshl.texi
+Hash: 10b1339882714ecb27f3595789ff7e57531e1394b8047b6a66d9784f909f0a64
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node coshl
+#@section @code{coshl}
+#@findex coshl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/coshl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cosl.texi
+Hash: 29fb7a5e98a754431e7f3a277096efe178611cc623d9e14b592014d367fd3c58
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cosl
+#@section @code{cosl}
+#@findex cosl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cosl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cpow.texi
+Hash: c196fd3e6b5e82b2df412700bd551e90fdcb006566259e526e52d5066a7f136a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cpow
+#@section @code{cpow}
+#@findex cpow
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cpow.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cpowf.texi
+Hash: 20082274ab3053bb9211077523ac71a8564395068d111a99a4471e5bc315270a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cpowf
+#@section @code{cpowf}
+#@findex cpowf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cpowf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cpowl.texi
+Hash: 0aa484e5a20be1692c9b64d6039dd16438e77e2176ec0f54625f67c854b498b2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cpowl
+#@section @code{cpowl}
+#@findex cpowl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cpowl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cproj.texi
+Hash: 4f7a4e43573aea662d11b57f91b99a7039874efc4c3cc6de132223a6dc634f3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cproj
+#@section @code{cproj}
+#@findex cproj
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cproj.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cprojf.texi
+Hash: b964a10e871a0bf9d13731339a259aa619636a7a3f618a002b287ff1ab07e402
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cprojf
+#@section @code{cprojf}
+#@findex cprojf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cprojf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/cprojl.texi
+Hash: 7f382c38eb94bcc1fa720f6c78e14a0b20186f2f595d2c3894535797f3e52942
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cprojl
+#@section @code{cprojl}
+#@findex cprojl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/cprojl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/creal.texi
+Hash: 8079a8295b42f1edf95f7aeb2f5be551b970419bfdf820bbce90b95c10754e45
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node creal
+#@section @code{creal}
+#@findex creal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/creal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/crealf.texi
+Hash: f25ddd8b33eb1c125e29e84ae98346e7e5bd73fe20ed9b18090e2080ef09f851
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node crealf
+#@section @code{crealf}
+#@findex crealf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/crealf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/creall.texi
+Hash: 77e4a42b2d8f9df278e80f0af88cc71dd02401f1ecbddcca69cb825cab14f2cf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node creall
+#@section @code{creall}
+#@findex creall
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/creall.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/creat.texi
+Hash: d7c959e3c46a579a8bdeecfc246074e2c424686307d26c1a2210fb8317cb37c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node creat
+#@section @code{creat}
+#@findex creat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/creat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/crypt.texi
+Hash: 624eda7840abf45802a77fc455c11da3a559654831f98db3d3f531ed87f2d5b8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node crypt
+#@section @code{crypt}
+#@findex crypt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/crypt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csin.texi
+Hash: a3921e459decb8485fa5b129f122cef9545da177d143a848426285bbaadeb33c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csin
+#@section @code{csin}
+#@findex csin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csinf.texi
+Hash: 7d43a6e3c333aea75c123600828d0b90aa74bbded515c37a4db2b85ee38c126f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csinf
+#@section @code{csinf}
+#@findex csinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csinh.texi
+Hash: c1ec8076f91041ba9035541b53fa4ea34899663273fca8b5a1aa7bf0cb69a8a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csinh
+#@section @code{csinh}
+#@findex csinh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csinhf.texi
+Hash: 0e63f7261e62673ea3b38947c2a39fd9db130b5f5f6a331868887d540e142eb4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csinhf
+#@section @code{csinhf}
+#@findex csinhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csinhl.texi
+Hash: 6fbfd0066984d87f0912c9ecdb72a51d186bc09e5c6ba6ae1e28384af1cf5d31
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csinhl
+#@section @code{csinhl}
+#@findex csinhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csinl.texi
+Hash: b007c3e190ebac0645cd770b5c59156ce9fefdd69d6efe8c4c63fb31f755e647
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csinl
+#@section @code{csinl}
+#@findex csinl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csinl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csqrt.texi
+Hash: 674aaf134efc75885dbf3a74d1b636639cb36e0a4184887474a94ebf2c2117a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csqrt
+#@section @code{csqrt}
+#@findex csqrt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csqrt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csqrtf.texi
+Hash: dee3f07a84edad6fe1c9fc858ddddbfde40e931e0eba9cd6ed4f129ddccb0c32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csqrtf
+#@section @code{csqrtf}
+#@findex csqrtf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csqrtf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/csqrtl.texi
+Hash: 6e5c675bdaa9c6de16b1437dee1a4578708ca2d94cad7ab22385916abcbf83e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node csqrtl
+#@section @code{csqrtl}
+#@findex csqrtl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/csqrtl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctan.texi
+Hash: b3788601cf4d71a0cd3e0f83b165f9556069a213808938b81f8762424ac4cde1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctan
+#@section @code{ctan}
+#@findex ctan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctanf.texi
+Hash: c6ade3600b8cb0d385042d424923b9aea79b8679bd9eb4572f88dbb02c6f7a90
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctanf
+#@section @code{ctanf}
+#@findex ctanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctanh.texi
+Hash: bd520abfb5efe1fb710b0517325d5182e0545c9689b91778748c9412721b3620
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctanh
+#@section @code{ctanh}
+#@findex ctanh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctanhf.texi
+Hash: 3720fbb944a55cd90c0a1f0d77340b8cad30d78fe539987b1c69bd7413f11f76
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctanhf
+#@section @code{ctanhf}
+#@findex ctanhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctanhl.texi
+Hash: e113c1cf9ab21c84fa4c81d59985e973897534cc9e6665f558871d0cf03e73c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctanhl
+#@section @code{ctanhl}
+#@findex ctanhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctanl.texi
+Hash: c74871a8ab6020712b65b9fd9c94c489711ef5a70448492128fa827232d23241
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctanl
+#@section @code{ctanl}
+#@findex ctanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctermid.texi
+Hash: 998eb7b4802db4cd5694a08d47f1fa146468dabeb663940c9a4cee7ea3eaf42b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctermid
+#@section @code{ctermid}
+#@findex ctermid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctermid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctime.texi
+Hash: 876f9405ee65afc513f57061e6dfec1fb9574bf891461ba945785c568bfcd824
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctime
+#@section @code{ctime}
+#@findex ctime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ctime_r.texi
+Hash: f61cab990b7729cbfa70832fec62258bdb1525389b98ce8812758d43f48f7209
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctime_r
+#@section @code{ctime_r}
+#@findex ctime_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ctime_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/daylight.texi
+Hash: 8d3098ea9ad8b8ef46605bc072c9331cbdea31642aadd1cba1c0b77dd2e26d05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node daylight
+#@section @code{daylight}
+#@findex daylight
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/daylight.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_clearerr.texi
+Hash: 404719a3ea24ab08a483c2d52fbc4ce115c9f62356a612c8d5b37c6d2f88d935
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_clearerr
+#@section @code{dbm_clearerr}
+#@findex dbm_clearerr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_clearerr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_close.texi
+Hash: 6548f4878fe9cc6e0bc32b937fe1a6f124dc133cdccea8a9d5f35af09af63c2a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_close
+#@section @code{dbm_close}
+#@findex dbm_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_close.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_delete.texi
+Hash: 6fdb38f85cb8686811b1f8d621bce24ae42e425900e214548bdefa3cc6580296
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_delete
+#@section @code{dbm_delete}
+#@findex dbm_delete
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_delete.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_error.texi
+Hash: ba9684e442829d2cd936d0401e6c75a9ae5c98c09272748d6d193d4e8bdbccd6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_error
+#@section @code{dbm_error}
+#@findex dbm_error
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_error.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_fetch.texi
+Hash: 6d17b86b8c0819900bd8c5d9fe44d29e1107aae2add1a3e9439adaadab897c21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_fetch
+#@section @code{dbm_fetch}
+#@findex dbm_fetch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_fetch.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_firstkey.texi
+Hash: 7c66943240b0604d0884c80187d2009341aa20acb5992586bce538c60250e1c1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_firstkey
+#@section @code{dbm_firstkey}
+#@findex dbm_firstkey
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_firstkey.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_nextkey.texi
+Hash: 907dd9d709bd00b11a2c1817ccf8cb6a99fa421dca171b04f45cb1fedebe38e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_nextkey
+#@section @code{dbm_nextkey}
+#@findex dbm_nextkey
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_nextkey.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_open.texi
+Hash: 1cc347d0c6a0be9a8e6d9dec70c02c6d3dedab0fb0d7fa81da905fc8acb78849
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_open
+#@section @code{dbm_open}
+#@findex dbm_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dbm_store.texi
+Hash: 9efc0b89e379c522dda1685b5f77dc8fe675d5322d86a80b109e1192448946e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dbm_store
+#@section @code{dbm_store}
+#@findex dbm_store
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dbm_store.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/difftime.texi
+Hash: 84a0956c4c5dcddc035048c947ef6629a6e66095464de78530e27871000c15bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node difftime
+#@section @code{difftime}
+#@findex difftime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/difftime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/dirfd.texi
+Hash: 2bd7841ff2afa0a70d616b84e1906017373f51418bdd86ca173a04dff6f34705
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dirfd
+#@section @code{dirfd}
+#@findex dirfd
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dirfd.html}
+#
+#Gnulib module: dirfd
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, OSF/1 5.1, Solaris 10, mingw.
+#@end itemize
+
+File: ./doc/posix-functions/dirname.texi
+Hash: f40d32a5b09a2d3082bd21b2dbefb29e49487fff0e58e65aebf7684001a2cccc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dirname
+#@section @code{dirname}
+#@findex dirname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dirname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/div.texi
+Hash: 8abae0791655f93d6f27ab614e8aab52311af2f48ace39be233641eb023bbb54
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node div
+#@section @code{div}
+#@findex div
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/div.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/dlclose.texi
+Hash: b7ad68ff89c49b30e1120badaca083df7a0212c4cd958724d2ea503699839ec8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dlclose
+#@section @code{dlclose}
+#@findex dlclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dlclose.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dlerror.texi
+Hash: 18aa8e729144b1c85ed453e1836cfdcb36a51e27948f9be843a8fc5052273686
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dlerror
+#@section @code{dlerror}
+#@findex dlerror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dlerror.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dlopen.texi
+Hash: 4c4b9aafdfdb94ad9522183dcc6e15ea6612ec8878d2cddc263b0c8fd1e525b0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dlopen
+#@section @code{dlopen}
+#@findex dlopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dlopen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dlsym.texi
+Hash: dd6299cfe6e25b4ebdd8c529c1830ec00c5aabce68fe16f83a0fad14d0266a6e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dlsym
+#@section @code{dlsym}
+#@findex dlsym
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dlsym.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dprintf.texi
+Hash: 4751b081c02483b01d9b3b4340023c6f72f038c6686acaf54e22c02946547333
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dprintf
+#@section @code{dprintf}
+#@findex dprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dprintf.html}
+#
+#Gnulib module: dprintf or dprintf-posix
+#
+#Portability problems fixed by either Gnulib module @code{dprintf} or @code{dprintf-posix}:
+#@itemize
+#@item
+#This function is missing on many non-glibc platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/drand48.texi
+Hash: a1f797c389c3e5ec0aa1eb2c68a1c83aed789fe57d9bd614926f905fcd89e020
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node drand48
+#@section @code{drand48}
+#@findex drand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/drand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/dup.texi
+Hash: b84bc5f93c7ef614338e0acaea061c144c4db4bef66e45640957a5f7d68ac292
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dup
+#@section @code{dup}
+#@findex dup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dup.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/dup2.texi
+Hash: 6828543830165fe771f033b863d748a69fe320dbeca8ddff166cb1cf61f4f12e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dup2
+#@section @code{dup2}
+#@findex dup2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/dup2.html}
+#
+#Gnulib module: dup2
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function always returns 0 for success on some platforms:
+#mingw.
+#
+#@item
+
+File: ./doc/posix-functions/duplocale.texi
+Hash: 710286021da197a56a6ff757ea4b40eb32315d8cdd124b218fde41b477292cce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node duplocale
+#@section @code{duplocale}
+#@findex duplocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/duplocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/encrypt.texi
+Hash: ffff0c779c125a709762efbe2bbaf866da55f9ae8393e65bc5091fc7fa271658
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node encrypt
+#@section @code{encrypt}
+#@findex encrypt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/encrypt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/endgrent.texi
+Hash: 4e04d52da59c5b86120124d10eaead06c5d849601c0086f6f9c834b8b2e49c62
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endgrent
+#@section @code{endgrent}
+#@findex endgrent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endgrent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/endhostent.texi
+Hash: d4743bbdeecf932ce5f921a9697664b6e546fdc0ff5c1d0ce2bef461801ad3fe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endhostent
+#@section @code{endhostent}
+#@findex endhostent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endhostent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/endnetent.texi
+Hash: 35901299f3d5b96b44b5eb948d7487f22459c03c4727060ee906472a4e312adc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endnetent
+#@section @code{endnetent}
+#@findex endnetent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endnetent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/endprotoent.texi
+Hash: 9c3786c66c5d21c3c66fd8549c52c7e49d0d62e009874b2b7a793b928e1af183
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endprotoent
+#@section @code{endprotoent}
+#@findex endprotoent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endprotoent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/endpwent.texi
+Hash: af0fe91d02a2753ca91f54afaf844c3707ced1d9be084ccac9e8cefb9ebe1b31
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endpwent
+#@section @code{endpwent}
+#@findex endpwent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endpwent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/endservent.texi
+Hash: c85845c73056fb697ef3ae552c71cfdaccae39eb7773d0cc29e3bcd1e79c0ce2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endservent
+#@section @code{endservent}
+#@findex endservent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endservent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/endutxent.texi
+Hash: bb8a45f95293fa56ec75b28457798dd1b02c7b3182b15f58c4248cf7481d9e58
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node endutxent
+#@section @code{endutxent}
+#@findex endutxent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/endutxent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/environ.texi
+Hash: e747cca924afc1250dbc590720b67ba9544e2a9cb2f94e82589b313e6a879de5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node environ
+#@section @code{environ}
+#@findex environ
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/environ.html}
+#
+#Gnulib module: environ
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#POSIX does not require this variable to be declared, and it is indeed not
+#declared on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, IRIX 6.5, Solaris 10.
+#@item
+
+File: ./doc/posix-functions/erand48.texi
+Hash: 9fc0f6ee76cd0df9c17bdfe1476a1988701d217815345d2e0c0b6c16a2f896ff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node erand48
+#@section @code{erand48}
+#@findex erand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/erf.texi
+Hash: 6a0bddafde57341e89aedc7b0c94be4d959ef1d17041a2ad94edd14eee8dd3aa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node erf
+#@section @code{erf}
+#@findex erf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/erfc.texi
+Hash: f7444fc988cc99e0fd5446db910fd6d7afcfa0c6d4af7f69a14279b5ab8764f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node erfc
+#@section @code{erfc}
+#@findex erfc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erfc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/erfcf.texi
+Hash: c7f88297596ece737d50e1ad13f8c91e74a1b527820e1af073e08acf85db5ae0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node erfcf
+#@section @code{erfcf}
+#@findex erfcf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erfcf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/erfcl.texi
+Hash: 8ff05f100bfca3045397b764329527a06a324242fe3e7fb12e7ad7017e0a6415
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node erfcl
+#@section @code{erfcl}
+#@findex erfcl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erfcl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/erff.texi
+Hash: 94bddf50aa84764165cf1b5515a0d4822d31a78191c2fc058ad8dd11d6b87538
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node erff
+#@section @code{erff}
+#@findex erff
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erff.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/erfl.texi
+Hash: b9cea5650518bc063a5f516d263389c127b354ee95a6a244f63c139ee4aff932
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node erfl
+#@section @code{erfl}
+#@findex erfl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/erfl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/errno.texi
+Hash: c0bff9e535b487ea1482ae7839b2e0beb289bcec626771844faf76f21a3b2333
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node errno
+#@section @code{errno}
+#@findex errno
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/errno.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/execl.texi
+Hash: c6c83a0078524e270da3abf8c26bcc630b35e6fb919dfe39752ea97d562d72f8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node execl
+#@section @code{execl}
+#@findex execl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/execle.texi
+Hash: 07664367ccaccf55659cf34f6b7129c7f3f581aa26ce635c1ab013412e05ae45
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node execle
+#@section @code{execle}
+#@findex execle
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execle.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/execlp.texi
+Hash: ab00274de528810efb9aceee886685a863f27112315256f0480c1a4d8843371d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node execlp
+#@section @code{execlp}
+#@findex execlp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execlp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/execv.texi
+Hash: e883433082ab1ac2be9bdf46989b074da82660c56db5ea58500bc26598ac89f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node execv
+#@section @code{execv}
+#@findex execv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/execve.texi
+Hash: 24209843e836bcdf1137fd665736c2818b4315e9b506a39bb714d91e998bafcd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node execve
+#@section @code{execve}
+#@findex execve
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execve.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/execvp.texi
+Hash: 289494b8493d01c6d99eab7016f77c2ab1571db2ceee8a9b02c5c901d7a056fc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node execvp
+#@section @code{execvp}
+#@findex execvp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/execvp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/exit.texi
+Hash: bad61c12c0e3e5dfabfd90405e72e5dd828138ca2d2e5261ade25edfd7c97bc8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node exit
+#@section @code{exit}
+#@findex exit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exit.html}
+#
+#Gnulib module: exit
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some problems with the macros @code{EXIT_SUCCESS} and @code{EXIT_FAILURE},
+#see @ref{stdlib.h}.
+#@end itemize
+
+File: ./doc/posix-functions/exp.texi
+Hash: a1022846973af4a29037736d84104cc89ce1379a01df12b468890ef0474e0419
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node exp
+#@section @code{exp}
+#@findex exp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/exp2.texi
+Hash: 8c017fc45146c3df6aea1366497a258bc3a4db0644f0bef6bacda5f4e4833266
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node exp2
+#@section @code{exp2}
+#@findex exp2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exp2.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/exp2f.texi
+Hash: 6f2524530958b637f54013d885de946b49bc5b79b6d465436e1e03dcf1952f6c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node exp2f
+#@section @code{exp2f}
+#@findex exp2f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exp2f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/exp2l.texi
+Hash: 7ef33c7a723390ab01411dcd5c5441a11362046a9e8b31ef68bbe4a4dc06a7a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node exp2l
+#@section @code{exp2l}
+#@findex exp2l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/exp2l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/expf.texi
+Hash: 0b478085209dd93a9db5bbce385735bd59753036228a6dc21cdc955d74d5fcd7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node expf
+#@section @code{expf}
+#@findex expf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/expl.texi
+Hash: 72311a84d89f58e68fbec7f6fc2c9b9920c27de99832dc73a3424377bf28db52
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node expl
+#@section @code{expl}
+#@findex expl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/expm1.texi
+Hash: 0a4624e622e7d4e617219004a6095aaa748dd6ec2dcaaf7133518448b81be4a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node expm1
+#@section @code{expm1}
+#@findex expm1
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expm1.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/expm1f.texi
+Hash: 6602aa751036b237ea9fc139d16405892a01d4d4738974a93671e2b24ece70a9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node expm1f
+#@section @code{expm1f}
+#@findex expm1f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expm1f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/expm1l.texi
+Hash: 0107f0369e91579efd87610be8b2b738b16b1b95378d3588ec286cde144d0c42
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node expm1l
+#@section @code{expm1l}
+#@findex expm1l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/expm1l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fabs.texi
+Hash: c612c588a2cfffd96be4f47419e7ef786861c356100cc27616f21cbe5723eccb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fabs
+#@section @code{fabs}
+#@findex fabs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fabs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/fabsf.texi
+Hash: ea51158ca0b73c832f1bcbede534dabd7771f99529353e24ca24569a90965703
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fabsf
+#@section @code{fabsf}
+#@findex fabsf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fabsf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fabsl.texi
+Hash: d651616c3fb582db805e35c045e9bb8d0f0529f3aef35e96ff269fff414acae7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fabsl
+#@section @code{fabsl}
+#@findex fabsl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fabsl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/faccessat.texi
+Hash: 0a8c43215d15ff69db0e57a500af9439c420b21c2ee4cc491931e601edb3f308
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node faccessat
+#@section @code{faccessat}
+#@findex faccessat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/faccessat.html}
+#
+#Gnulib module: faccessat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw,
+#Interix 3.5, BeOS.
+
+File: ./doc/posix-functions/fattach.texi
+Hash: 2335deee0d43aa46c1c3503f7feae75c7c142c535296827a8e6e183b18a7e756
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fattach
+#@section @code{fattach}
+#@findex fattach
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fattach.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fchdir.texi
+Hash: 8f0f8b4111a6a4dc2945e10940df05e54955ad67de944cb7c9fc3fd965ddcb61
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fchdir
+#@section @code{fchdir}
+#@findex fchdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchdir.html}
+#
+#Gnulib module: fchdir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Tandem/NSK, mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/fchmod.texi
+Hash: 9bfcb2e4f0142676a15392cad61a13121966364ba601e3e45ba4df6a4fddb283
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fchmod
+#@section @code{fchmod}
+#@findex fchmod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchmod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fchmodat.texi
+Hash: 791d16ea744eadb81ceffa282aeedc529ee1432f726b782ba507c62a330259d1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fchmodat
+#@section @code{fchmodat}
+#@findex fchmodat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchmodat.html}
+#
+#Gnulib module: openat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+
+File: ./doc/posix-functions/fchown.texi
+Hash: 3f8e50fb78c4ca01b3c9d74c32d562d9309038b0aaf2a7ee22ddea159be69c5b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fchown
+#@section @code{fchown}
+#@findex fchown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchown.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fchownat.texi
+Hash: e17fc8eff75380638ff191900612065d2fc77e8926e59ca860c6faad743650ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fchownat
+#@section @code{fchownat}
+#@findex fchownat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fchownat.html}
+#
+#Gnulib module: openat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+
+File: ./doc/posix-functions/fclose.texi
+Hash: b68bb8ad4e081e12205b3f7dcfa105c005cbe8fdb312880af5d87be355525e9f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fclose
+#@section @code{fclose}
+#@findex fclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fclose.html}
+#
+#Gnulib module: fclose
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), @code{socket} and @code{accept}
+#followed by @code{fdopen} do not return streams that can be closed by
+#@code{fclose}.
+#@end itemize
+
+File: ./doc/posix-functions/fcntl.texi
+Hash: 17f3caf36d2c2f9a664acd0c737de34d5a64c6e6bdc186f325ca6867222adccf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fcntl
+#@section @code{fcntl}
+#@findex fcntl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fcntl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fdatasync.texi
+Hash: 57f7709061810bd5896998adeb9f3d2fe72380a7f2dc09bded617489700ef2f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fdatasync
+#@section @code{fdatasync}
+#@findex fdatasync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdatasync.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fdetach.texi
+Hash: fd54a027b23acd7d79f8f796360b31949be6d6d99d77a21ee56cb0aefd2f4208
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fdetach
+#@section @code{fdetach}
+#@findex fdetach
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdetach.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fdim.texi
+Hash: 387bce6ebad92e5ef48ffe946c26a2a42310baa9c69a47d7ff020f61b698899a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fdim
+#@section @code{fdim}
+#@findex fdim
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdim.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fdimf.texi
+Hash: 04e0f917203a56effba8c34a4541f6bc2a107f6d09b70e51af95a6473320fa02
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fdimf
+#@section @code{fdimf}
+#@findex fdimf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdimf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fdiml.texi
+Hash: e4ab81e086d8a6b6633e26501eb964e8c5f9de428edd84b106ce690f7c8637c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fdiml
+#@section @code{fdiml}
+#@findex fdiml
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdiml.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fdopen.texi
+Hash: e763566373aec112a9e84b961c32faf690c517c3db12d6eb5a6f839f42b765d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fdopen
+#@section @code{fdopen}
+#@findex fdopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdopen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fdopendir.texi
+Hash: 77c4e1f653c030b8389397c264b670095f530d9a4f131679c1db06dff8143cca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fdopendir
+#@section @code{fdopendir}
+#@findex fdopendir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fdopendir.html}
+#
+#Gnulib module: fdopendir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and
+
+File: ./doc/posix-functions/feclearexcept.texi
+Hash: b982ba6aeaedabf3354982f022c731c771f3cd82f055f6f59d666a8f1a57bcaf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node feclearexcept
+#@section @code{feclearexcept}
+#@findex feclearexcept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feclearexcept.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fegetenv.texi
+Hash: 0899bacdfa0523a69893c4968ba4889363c79409c45e55c3ea8782351e3f9e16
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fegetenv
+#@section @code{fegetenv}
+#@findex fegetenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fegetenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fegetexceptflag.texi
+Hash: 34c0d1502982592c37c0e902a639dbc3ae01546f3c93ce70ca9f8c7d17e38156
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fegetexceptflag
+#@section @code{fegetexceptflag}
+#@findex fegetexceptflag
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fegetexceptflag.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fegetround.texi
+Hash: bcd175725d7173502ca62d3e7f40a23565add2e0d8a50f5e6b31d622a2f7c834
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fegetround
+#@section @code{fegetround}
+#@findex fegetround
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fegetround.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/feholdexcept.texi
+Hash: 6a8976e6ff7285ec392afbd6d41c13756842fb99c799645ae85ce5c536aa1757
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node feholdexcept
+#@section @code{feholdexcept}
+#@findex feholdexcept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feholdexcept.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/feof.texi
+Hash: 20663c1a2fa66678f13880eea8ab1c99980cdef004bdb5e2cb5f182a0654cbe1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node feof
+#@section @code{feof}
+#@findex feof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/feraiseexcept.texi
+Hash: 752c504ac8b81d058b11051349d0b2e4291fcc1c488ea6f29fdd111c97ce4ffb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node feraiseexcept
+#@section @code{feraiseexcept}
+#@findex feraiseexcept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feraiseexcept.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ferror.texi
+Hash: 2cc317e89975e266a5d297a47d3cb2a9a147d5b82f9199535182f440b9008a81
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ferror
+#@section @code{ferror}
+#@findex ferror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ferror.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/fesetenv.texi
+Hash: 3d2f6a1d8b2e5939ba3ebdde32deb42cf59eb78c27ffbc6387f7c4e149d35097
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fesetenv
+#@section @code{fesetenv}
+#@findex fesetenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fesetenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fesetexceptflag.texi
+Hash: 97552023ee289a5ff8e84e60b3520a19fb0f9a4874de3c470657f10b0c6a8068
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fesetexceptflag
+#@section @code{fesetexceptflag}
+#@findex fesetexceptflag
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fesetexceptflag.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fesetround.texi
+Hash: 39499b13852e55ef8009ae3db5a7aebad2afc986a40f26b7c48c151b9e86fc24
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fesetround
+#@section @code{fesetround}
+#@findex fesetround
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fesetround.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fetestexcept.texi
+Hash: 4eac9c618c477726e112f8b26dbb7d2d4397be157969de91943c43742a390550
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fetestexcept
+#@section @code{fetestexcept}
+#@findex fetestexcept
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fetestexcept.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/feupdateenv.texi
+Hash: 8b153cba36a94a6c2b66f6e421ecd4e2b9a46036392e2210785970e6ab34b8e8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node feupdateenv
+#@section @code{feupdateenv}
+#@findex feupdateenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/feupdateenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fexecve.texi
+Hash: df29f2ca7c01d154444462d530e082f939e3151a011ef347587deb8f25a3690d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fexecve
+#@section @code{fexecve}
+#@findex fexecve
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fexecve.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fflush.texi
+Hash: 9bcd03018a5e64e321e5da36fc16b1ac1c3247e6e8ffda3d7339b1d1e9fe8294
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fflush
+#@section @code{fflush}
+#@findex fflush
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fflush.html}
+#
+#Gnulib module: fflush
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@code{fflush} followed by @code{fseek} or @code{fseeko}, applied to an input
+#stream, should have the effect of positioning the underlying file descriptor.
+#It doesn't do this on some platforms.
+#@item
+
+File: ./doc/posix-functions/ffs.texi
+Hash: 21aa35d4426a78734a84676cb0d454c75acee469c9ffd615a5fbb9de9daa1a42
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ffs
+#@section @code{ffs}
+#@findex ffs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ffs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fgetc.texi
+Hash: e7c425a41e66d08ffac2b8d0222bf45baf73e2f9459b8795691411c4b5357659
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetc
+#@section @code{fgetc}
+#@findex fgetc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgetc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fgetpos.texi
+Hash: 275859ced43d62e5be3273f8c7c7fa9442de1b8d1287714892e23f0087f467f9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetpos
+#@section @code{fgetpos}
+#@findex fgetpos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgetpos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fgets.texi
+Hash: 71414045cbbe67d9efb6b83bce606a8de25b97f9e08980d09d10444db31a02a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgets
+#@section @code{fgets}
+#@findex fgets
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgets.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fgetwc.texi
+Hash: a603a66a1e031dd3727b3b379a537e32014c54e932b01846b26200af8510ea94
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetwc
+#@section @code{fgetwc}
+#@findex fgetwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgetwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fgetws.texi
+Hash: e396ca7cb9c9423e66bacf0c7e4aa69ff7b814a1bd5ebb0e6810220b55a68bb8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fgetws
+#@section @code{fgetws}
+#@findex fgetws
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fgetws.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fileno.texi
+Hash: abc9e47b66277f9ba067894c61eef516a4cd6da18b0bd79671f5117ad7a9e37b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fileno
+#@section @code{fileno}
+#@findex fileno
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fileno.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/flockfile.texi
+Hash: ef8a277424e6a1aba4db3cfc8341fb0ce9acf254adb5691c66986e3462484cb4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node flockfile
+#@section @code{flockfile}
+#@findex flockfile
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/flockfile.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/floor.texi
+Hash: b07bf778811aac7f3e96a3af59c18dec2a8944c6a6b30082ff2eb0f6eebcd70d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node floor
+#@section @code{floor}
+#@findex floor
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/floor.html}
+#
+#Gnulib module: floor
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/floorf.texi
+Hash: ec2e982ab48eb54039f21f74d449bbd932bf6ce341f44ed67443841fafb99517
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node floorf
+#@section @code{floorf}
+#@findex floorf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/floorf.html}
+#
+#Gnulib module: floorf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, Solaris 9.
+#@end itemize
+
+File: ./doc/posix-functions/floorl.texi
+Hash: 4bd7c2e91d448d223f565886a273c53f07df96dce012d7afb8057de24dcbaf29
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node floorl
+#@section @code{floorl}
+#@findex floorl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/floorl.html}
+#
+#Gnulib module: floorl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/fma.texi
+Hash: e7afe0eb9016dee7ae95382952e183234e3d4e632950f62cde0cda8b3458feca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fma
+#@section @code{fma}
+#@findex fma
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fma.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmaf.texi
+Hash: 92a275d7d2e32246725903039974adea241feae8587da17c6161230d307e4f8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmaf
+#@section @code{fmaf}
+#@findex fmaf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmaf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmal.texi
+Hash: d26907c96ceae9a7551c6a50ae32adddf5657735ec64d5ff3bc23301a1bc9440
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmal
+#@section @code{fmal}
+#@findex fmal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmax.texi
+Hash: a45b7a4dd49c6ccb1d51374c51a37958f64f965be332e874b741671f00c6a2c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmax
+#@section @code{fmax}
+#@findex fmax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmax.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmaxf.texi
+Hash: cc63ffb93e596bd2d86d82f3b3dd04626cc8683c8e919dc1f1868b6e8b549335
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmaxf
+#@section @code{fmaxf}
+#@findex fmaxf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmaxf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmaxl.texi
+Hash: f3a58f157499f078945af3bea4bdf315a104abb54df51e7b12dca522da70eba9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmaxl
+#@section @code{fmaxl}
+#@findex fmaxl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmaxl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmemopen.texi
+Hash: 977725664c869f310611befaeafecddca0a4595deb9aa92b1e5edf38854a527d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmemopen
+#@section @code{fmemopen}
+#@findex fmemopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmemopen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmin.texi
+Hash: 00763f301200d7eac7d4ebc557feaf0901bc2efa0a1d7ed5b91dc3fa0edd8841
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmin
+#@section @code{fmin}
+#@findex fmin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fminf.texi
+Hash: 3755886d1bb03aaec9755b2c34e4972ef0c8387c82b056d527b1afc61a5f0fb2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fminf
+#@section @code{fminf}
+#@findex fminf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fminf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fminl.texi
+Hash: b5a0cc5a37fd46620b53cde5c2657ad4095f85f712ff3f0f414c4692a98489bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fminl
+#@section @code{fminl}
+#@findex fminl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fminl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmod.texi
+Hash: 5862ec5b61a832641dde66acb7eb859b7407994f7624cb83001e4e5411877b24
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmod
+#@section @code{fmod}
+#@findex fmod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/fmodf.texi
+Hash: be9fb731e931317464eaadfa409ac9ba5fac8cf6f488f1dca04dfb25f4a87c9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmodf
+#@section @code{fmodf}
+#@findex fmodf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmodf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmodl.texi
+Hash: da2bd3cfd9d33b8218d82300d5863a329002ab59ee62c591df043c7cbc3e2bf5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmodl
+#@section @code{fmodl}
+#@findex fmodl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmodl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fmtmsg.texi
+Hash: cda2c53b8e96e2e813629d5a07ee3ec6bae5dae9835cd30bfb79b5a6cd9809ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmtmsg
+#@section @code{fmtmsg}
+#@findex fmtmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fmtmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fnmatch.texi
+Hash: 4be762a04e97a3e099e16422bcdf9db17a4385c25e71916c2dc8620cce12c689
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fnmatch
+#@section @code{fnmatch}
+#@findex fnmatch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fnmatch.html}
+#
+#Gnulib module: fnmatch or fnmatch-gnu
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, mingw.
+#@item
+#This function is broken in some versions of Solaris and glibc.
+
+File: ./doc/posix-functions/fopen.texi
+Hash: cb37df82cdfc62d799a6208a0cb896815c99a21aa72e61ee66add9794bc0caef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fopen
+#@section @code{fopen}
+#@findex fopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fopen.html}
+#
+#Gnulib module: fopen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not fail when the file name argument ends in a slash
+#and (without the slash) names a nonexistent file or a file that is not a
+#directory, on some platforms:
+#HP-UX 11.00, Solaris 9, Irix 5.3.
+
+File: ./doc/posix-functions/fork.texi
+Hash: 47e401050fdd39055e37b7942ecf9e6acc2dd1b0ba893ca9efce7fbe07512f26
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fork
+#@section @code{fork}
+#@findex fork
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fork.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fpathconf.texi
+Hash: dc753382cbb40d381330cae488511d20499ac593648fdea05451978ec6236e18
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fpathconf
+#@section @code{fpathconf}
+#@findex fpathconf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fpathconf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fpclassify.texi
+Hash: 4f9658ae83ffe86a91686e050b951b3a779cff3a3d113b99a8d567580a71ce2e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fpclassify
+#@section @code{fpclassify}
+#@findex fpclassify
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fpclassify.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fprintf.texi
+Hash: b9f426d7699941849d81c004ea41301049efff02e408a1dab1b04c5a33c2e1f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fprintf
+#@section @code{fprintf}
+#@findex fprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fprintf.html}
+#
+#Gnulib module: fprintf-posix or stdio, sigpipe
+#
+#Portability problems fixed by Gnulib module @code{fprintf-posix}:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+
+File: ./doc/posix-functions/fputc.texi
+Hash: b13cd308b550d7216762f444ad5ff6437fab475480073a7c372b42c0414e9568
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fputc
+#@section @code{fputc}
+#@findex fputc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fputc.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/fputs.texi
+Hash: f443e76ec0801cf0481eb89de8e604d424c93acc535cceb7a11050b2d602d617
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fputs
+#@section @code{fputs}
+#@findex fputs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fputs.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/fputwc.texi
+Hash: c69261284cad8a715adc606ac68ce522bfd1a94849d795d8289febf07cdad00e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fputwc
+#@section @code{fputwc}
+#@findex fputwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fputwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fputws.texi
+Hash: a0056c49a80a1aa877213437ddd4cb5955ac2c462fa78f053a4c3a6f3782d334
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fputws
+#@section @code{fputws}
+#@findex fputws
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fputws.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fread.texi
+Hash: 203ffb455bb4140455e841f5fae6f63fea6055043808d00adafcc88b630cb01f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fread
+#@section @code{fread}
+#@findex fread
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fread.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/free.texi
+Hash: 5d242e3032ca93238450312616b0835cee0d16bdd29424c0a5b8d9e265e306b0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node free
+#@section @code{free}
+#@findex free
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/free.html}
+#
+#Gnulib module: free
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On old platforms such as SunOS4, @code{free (NULL)} fails.
+#However, since all such systems are so old as to no longer
+#be considered ``reasonable portability targets,''
+#this module is no longer useful.
+
+File: ./doc/posix-functions/freeaddrinfo.texi
+Hash: 2a85ac5773ce37228a9b001b2f6102d2ccb5ee712dc6a104372a3caa7add64a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node freeaddrinfo
+#@section @code{freeaddrinfo}
+#@findex freeaddrinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/freeaddrinfo.html}
+#
+#Gnulib module: getaddrinfo
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 7, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/freelocale.texi
+Hash: 8776a23dd2eca0e57d0e59149570dc4afb924e23c11ae4ac4d8e9119ef78334a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node freelocale
+#@section @code{freelocale}
+#@findex freelocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/freelocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/freopen.texi
+Hash: c5b8bff1922535abcc1fec969516b476b349e17b5f65b47484da8bfe7f3f823c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node freopen
+#@section @code{freopen}
+#@findex freopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/freopen.html}
+#
+#Gnulib module: freopen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), this function does usually not
+#recognize the @file{/dev/null} filename.
+#@end itemize
+
+File: ./doc/posix-functions/frexp.texi
+Hash: 692f49020a87b80d1037790d020971803bc0afebe14c158150a4e52031487353
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node frexp
+#@section @code{frexp}
+#@findex frexp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/frexp.html}
+#
+#Gnulib module: frexp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not work on denormalized numbers on some platforms:
+#NetBSD 3.0.
+#@item
+#This function does not work on negative zero on some platforms:
+
+File: ./doc/posix-functions/frexpf.texi
+Hash: 331ce16fc8e4dc1d4b90dd42bc5e7ccb13e6190ee4286fb3fe9e4b6e78dc5bd6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node frexpf
+#@section @code{frexpf}
+#@findex frexpf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/frexpf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/frexpl.texi
+Hash: 2b05d97865d15965f7eaaf726466ca7938f8aa8a4fb5c3074b88296c6175fd8e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node frexpl
+#@section @code{frexpl}
+#@findex frexpl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/frexpl.html}
+#
+#Gnulib module: frexpl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5.
+#@item
+#This function does not work on finite numbers on some platforms:
+
+File: ./doc/posix-functions/fscanf.texi
+Hash: c6cbb6eb2da370d053d700306d3f3d2fced6edb533846ce87c3eecd9f5b64d05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fscanf
+#@section @code{fscanf}
+#@findex fscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fseek.texi
+Hash: 44d940d7b3f70696e57564a133ec06b608f75eb80f823893cc8d791cf20858f4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fseek
+#@section @code{fseek}
+#@findex fseek
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fseek.html}
+#
+#Gnulib module: fseek
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function mistakenly succeeds on pipes on some platforms: mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/fseeko.texi
+Hash: fce7c54e29aecbe63e018aa87b29db3cdc06947fed30a56dfdbb75ecffccfd68
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fseeko
+#@section @code{fseeko}
+#@findex fseeko
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fseeko.html}
+#
+#Gnulib module: fseeko
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, OSF/1 4.0, Solaris 2.5.1, mingw.
+#@item
+#The declaration of @code{fseeko} in @code{<stdio.h>} is not enabled by default
+
+File: ./doc/posix-functions/fsetpos.texi
+Hash: 406badc26cb637f4a19da664e003024401fc353dff4fd1b141a6d824183d2d7a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fsetpos
+#@section @code{fsetpos}
+#@findex fsetpos
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fsetpos.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/fstat.texi
+Hash: 029d0fe3f92d95173e6f28cccdbe2fe0ea1ab1e62cda2da6da2602071242e5c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fstat
+#@section @code{fstat}
+#@findex fstat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fstat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fstatat.texi
+Hash: b452283c1ad4c7f6620b47e705c065d8ec9f7d7311e26521d50d978dde098b0c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fstatat
+#@section @code{fstatat}
+#@findex fstatat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fstatat.html}
+#
+#Gnulib module: openat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+
+File: ./doc/posix-functions/fstatvfs.texi
+Hash: ea42e0f03ea940ad7488f661925d44bc715e874caff49d8cf4c755fb3afb9a0a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fstatvfs
+#@section @code{fstatvfs}
+#@findex fstatvfs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fstatvfs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fsync.texi
+Hash: 8bf1bac4285f032b09e4f9c7087f3af31e559b5f52eca758141cbb391f5ac608
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fsync
+#@section @code{fsync}
+#@findex fsync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fsync.html}
+#
+#Gnulib module: fsync
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/ftell.texi
+Hash: 7a09c5de0c501bb7cdeb65cf20f5582009c8ff539b59a7c5fee036acd65c1a78
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ftell
+#@section @code{ftell}
+#@findex ftell
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftell.html}
+#
+#Gnulib module: ftell
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function mistakenly succeeds on pipes on some platforms: mingw.
+#@item
+#This function produces incorrect results immediately after @code{fseek} on some
+#platforms:
+
+File: ./doc/posix-functions/ftello.texi
+Hash: 37cf02f3716a62b6bba4c06fcadb95b4edf7b6cc034cd29b5b4a9b90ae04ac54
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ftello
+#@section @code{ftello}
+#@findex ftello
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftello.html}
+#
+#Gnulib module: ftello
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, OSF/1 4.0, Solaris 2.5.1, mingw.
+#@item
+#The declaration of @code{ftello} in @code{<stdio.h>} is not enabled by default
+
+File: ./doc/posix-functions/ftok.texi
+Hash: 9c0bb158262d297799d36d6d588c26e3e41b95226a77dd4cf11cd992e4a9a1e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ftok
+#@section @code{ftok}
+#@findex ftok
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftok.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ftruncate.texi
+Hash: f1e0566861d589db1bb60cda3d8b8317d1ff9520cc36f00549df03b3419b269e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ftruncate
+#@section @code{ftruncate}
+#@findex ftruncate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftruncate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/ftrylockfile.texi
+Hash: e43223544d05c58b1bead69da882754ab20a449b9b600200c4ea8709b16fa01f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ftrylockfile
+#@section @code{ftrylockfile}
+#@findex ftrylockfile
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftrylockfile.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ftw.texi
+Hash: e978b2519b0f3806a7dab0e5e344fe47bca8fc2f523fde61b4dde209495588b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ftw
+#@section @code{ftw}
+#@findex ftw
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ftw.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/funlockfile.texi
+Hash: 8b38246093f70a1e9599e3b040144aae94cf838305b81707500c579661d7f5ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node funlockfile
+#@section @code{funlockfile}
+#@findex funlockfile
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/funlockfile.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/futimens.texi
+Hash: d1320304b274deef5c2d65cf3e1ffd0c50367a79176ef371756373ca29705fcb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node futimens
+#@section @code{futimens}
+#@findex futimens
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/futimens.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fwide.texi
+Hash: ad8af32a87ba8df0b7982ed23d296cf78858b76463e35ad868d09fcc6cdd6653
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fwide
+#@section @code{fwide}
+#@findex fwide
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fwide.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fwprintf.texi
+Hash: 40435c2105f61e2dfae56b633e183a81a1d955f0d0d5e0a3cbfce5865fbaa133
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fwprintf
+#@section @code{fwprintf}
+#@findex fwprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fwprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/fwrite.texi
+Hash: 0bc2efa6c28e32fe14ef25c64543ad9693dbb01be6f3fc8a5086a76ae6ed95e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fwrite
+#@section @code{fwrite}
+#@findex fwrite
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fwrite.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/fwscanf.texi
+Hash: 0350aa62241649e46ebcc0a699ed578f770f8d8c4ab946f80522abc793281936
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fwscanf
+#@section @code{fwscanf}
+#@findex fwscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/fwscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/gai_strerror.texi
+Hash: 9fa1d09a15180298f0966016d7c07be6488b7d90ae0fabfb8bd7e41bc43f22d2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gai_strerror
+#@section @code{gai_strerror}
+#@findex gai_strerror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gai_strerror.html}
+#
+#Gnulib module: getaddrinfo
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 7, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/getaddrinfo.texi
+Hash: 14a705c905635f12d64464c1acf0d56577117e53d94fcb0d641b12f4913a4dfd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getaddrinfo
+#@section @code{getaddrinfo}
+#@findex getaddrinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getaddrinfo.html}
+#
+#Gnulib module: getaddrinfo
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 7, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/getc.texi
+Hash: 58714462b4f4187bd08744681c000e72e90a9431f84add6e9360050466fbbf17
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getc
+#@section @code{getc}
+#@findex getc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getc_unlocked.texi
+Hash: 719010c698afd2db8d1b61b7885706a8940c7fc71fbd2a10a01468665a3ee895
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getc_unlocked
+#@section @code{getc_unlocked}
+#@findex getc_unlocked
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getc_unlocked.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getchar.texi
+Hash: 38cf4d3f15b593d55ec4c5968a96c38a6fbe440c9060e0ad506473175e94e95b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getchar
+#@section @code{getchar}
+#@findex getchar
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getchar.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getchar_unlocked.texi
+Hash: be20adfbc37a9b00e3ff1dc74c54d3358c9fd38ac388e4818d22abcaecbd4ec7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getchar_unlocked
+#@section @code{getchar_unlocked}
+#@findex getchar_unlocked
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getchar_unlocked.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getcwd.texi
+Hash: 17c216e7edd5cd839916fe367c97d27dd035e38e34a93c49bde48ea868c5296f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getcwd
+#@section @code{getcwd}
+#@findex getcwd
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getcwd.html}
+#
+#Gnulib module: getcwd
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@item
+#On glibc platforms, @code{getcwd (NULL, n)} allocates memory for the result.
+#On other platforms, this call is not allowed.
+
+File: ./doc/posix-functions/getdate.texi
+Hash: 79d3612b99d1e09b631440139db05273fe95959c259b5127693a9cb0223b3cee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getdate
+#@section @code{getdate}
+#@findex getdate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getdate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getdate_err.texi
+Hash: f92239cab29da0644d61d19629631685b6abcbc7b621f1aba5179029e5a28f84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getdate_err
+#@section @code{getdate_err}
+#@findex getdate_err
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getdate_err.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getdelim.texi
+Hash: efafb82e4876cff26df193267dcbd2a3a2f1f2fd97431a4ec5c761663a3886e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getdelim
+#@section @code{getdelim}
+#@findex getdelim
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getdelim.html}
+#
+#Gnulib module: getdelim
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+#@item
+#This function is missing a declaration on some platforms:
+
+File: ./doc/posix-functions/getegid.texi
+Hash: b5b2f176703267d09132755529f870787751c23195ef12e2c9971d9a9c838a6d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getegid
+#@section @code{getegid}
+#@findex getegid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getegid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getenv.texi
+Hash: 274cd2f5b8925d63386ac9c50ef8831a97f390e3e58e5977bf9785aae707cd97
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getenv
+#@section @code{getenv}
+#@findex getenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/geteuid.texi
+Hash: 5839ba963ace9183575af71a0ede6093646d1924b7d9e2db4fdebd83dbed9a0e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node geteuid
+#@section @code{geteuid}
+#@findex geteuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/geteuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getgid.texi
+Hash: 39a7aed4f6ecf6142c9c4c9f46a2d8a17a802609c2b75dc92ec40c30e196196b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgid
+#@section @code{getgid}
+#@findex getgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getgrent.texi
+Hash: 0596e2089898956df5fd5cae81e2c3a8891e10e1746e9f13a3c8357d7c9edcb5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgrent
+#@section @code{getgrent}
+#@findex getgrent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getgrgid.texi
+Hash: e90d86643f77ea14655319e842600c5f9de7a54494abce14088dd53ea2931a25
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgrgid
+#@section @code{getgrgid}
+#@findex getgrgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getgrgid_r.texi
+Hash: ae21c2ca2f91e6e4083483a87b4dc644e670c029cd4cc1f1e1b14c0a0e0adedf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgrgid_r
+#@section @code{getgrgid_r}
+#@findex getgrgid_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrgid_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getgrnam.texi
+Hash: 7e47a3eaa33be90ec41d4856255adb5c1434663e691c7362ce1297d74ff858d2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgrnam
+#@section @code{getgrnam}
+#@findex getgrnam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrnam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getgrnam_r.texi
+Hash: 2e107e9b689d02131cfc4599989f420a227a95b4c35d4bca5774e73a2ff568e8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgrnam_r
+#@section @code{getgrnam_r}
+#@findex getgrnam_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgrnam_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getgroups.texi
+Hash: dc11c7f3733247e37a0bc53249ea948e76d259d158544b2a5a082a1d111129e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getgroups
+#@section @code{getgroups}
+#@findex getgroups
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getgroups.html}
+#
+#Gnulib module: getgroups
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#On Ultrix 4.3, @code{getgroups (0, 0)} always fails.  See macro
+
+File: ./doc/posix-functions/gethostent.texi
+Hash: a1ddf37deaf3136d395c6e2fc6bc008837e691f6b6c615c6bfbac8c2316ceb5c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostent
+#@section @code{gethostent}
+#@findex gethostent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gethostent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/gethostid.texi
+Hash: 75b6790bd3fd3e7bb67cc34c87a613cc4bfa446ce4e2a43a11e9788c583ed63c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostid
+#@section @code{gethostid}
+#@findex gethostid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gethostid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/gethostname.texi
+Hash: 77e832d8786df64fef14857e4611bc7324c762142a78e5a347f789b35d563a1c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gethostname
+#@section @code{gethostname}
+#@findex gethostname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gethostname.html}
+#
+#Gnulib module: gethostname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On mingw, this function has a prototype that differs from that
+#specified by POSIX, and it is defined only in the ws2_32 library.
+#@end itemize
+
+File: ./doc/posix-functions/getitimer.texi
+Hash: 35af7f4dc16bc874c784085e9bed6ab3be4728a30937389be5aa1e3026ce4f47
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getitimer
+#@section @code{getitimer}
+#@findex getitimer
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getitimer.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getline.texi
+Hash: cc4e1cdd660ad29d4fdf61fef17a363fd2de9ca8f2f9864e8a11fb14978e6715
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getline
+#@section @code{getline}
+#@findex getline
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getline.html}
+#
+#Gnulib module: getline
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+#@item
+#This function is missing a declaration on some platforms:
+
+File: ./doc/posix-functions/getlogin.texi
+Hash: 1dcdcd176e1153b391bee72702dd8c20b7e79e32970b1db82044598c636350f6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getlogin
+#@section @code{getlogin}
+#@findex getlogin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getlogin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getlogin_r.texi
+Hash: 7ad532d82f0519617a84dc82bf028aa4181ba189dda51b3ac511ab5648042f8e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getlogin_r
+#@section @code{getlogin_r}
+#@findex getlogin_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getlogin_r.html}
+#
+#Gnulib module: getlogin_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, mingw.
+#@end itemize
+
+File: ./doc/posix-functions/getmsg.texi
+Hash: e67c2c51ff394f18250f43089b89a0820105195fe338f2b68ca2448fde73a130
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getmsg
+#@section @code{getmsg}
+#@findex getmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getnameinfo.texi
+Hash: 7ce827533a3feb9e2f219bc867cb7dbf8f5d39dae596203b9425157ee79fa86c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnameinfo
+#@section @code{getnameinfo}
+#@findex getnameinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getnameinfo.html}
+#
+#Gnulib module: getaddrinfo
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 7, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/getnetbyaddr.texi
+Hash: 4e93c87df34262cc9fe05be16d01964a06924666bc4513614053d626ae6b5ff7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetbyaddr
+#@section @code{getnetbyaddr}
+#@findex getnetbyaddr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getnetbyaddr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getnetbyname.texi
+Hash: 52a931503da2c42cbd8f8be86549e2575e48ab5b65090fa85ec33f2910e00cb2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetbyname
+#@section @code{getnetbyname}
+#@findex getnetbyname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getnetbyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getnetent.texi
+Hash: b32da6dbd572fe5c7c653c8c600ebebe87b0f794b2758f02c7c175587c1b63ff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getnetent
+#@section @code{getnetent}
+#@findex getnetent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getnetent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getopt.texi
+Hash: af7f8ffb87a9e53611a6c79fa27787cb8686d2fad31f999c12e345d89db483ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getopt
+#@section @code{getopt}
+#@findex getopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getopt.html}
+#
+#Gnulib module: getopt-posix or getopt-gnu
+#
+#The module @code{getopt-gnu} has support for ``long options'' and for
+#``options that take optional arguments''.  Compared to the API defined by POSIX,
+#it adds a header file @code{<getopt.h>} and a function @code{getopt_long}.
+#
+#Portability problems fixed by either Gnulib module @code{getopt-posix} or @code{getopt-gnu}:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpeername.texi
+Hash: 3da780655ab68f30fec710038214a4e109ad4247a561349954bb1b0cfde8d117
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpeername
+#@section @code{getpeername}
+#@findex getpeername
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpeername.html}
+#
+#Gnulib module: getpeername
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{getpeername} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+
+File: ./doc/posix-functions/getpgid.texi
+Hash: 0b7b188ca82fc0428055b148ff19fcb11abe7c13f97b23f913ec4afeed84e3e3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpgid
+#@section @code{getpgid}
+#@findex getpgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpgrp.texi
+Hash: db8b430ed2f111ddbd6fe64c6fed03b269ab342d0242b27ab145239c9281296c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpgrp
+#@section @code{getpgrp}
+#@findex getpgrp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpgrp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpid.texi
+Hash: ac1bc30305416ea508f16362ec87cbe917851fdd1a598a828e711ede91b2d825
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpid
+#@section @code{getpid}
+#@findex getpid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/getpmsg.texi
+Hash: aa2a70e33feb57d1e999ef4b424ecd3c44e308fc2b6446eae7418d25a30bb2c5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpmsg
+#@section @code{getpmsg}
+#@findex getpmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getppid.texi
+Hash: 6d2bf74d0a29e047baeb1ef37707f41406274cc3f248d75e8dc46781a6b68f69
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getppid
+#@section @code{getppid}
+#@findex getppid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getppid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpriority.texi
+Hash: e9c531e0f622d4d952957f619ff81ce3d19931316589b633ff0b611f43fd2843
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpriority
+#@section @code{getpriority}
+#@findex getpriority
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpriority.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getprotobyname.texi
+Hash: 963e8861ff62a9d05859487128caa20536bb577825ce96399658e741f7be3193
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getprotobyname
+#@section @code{getprotobyname}
+#@findex getprotobyname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getprotobyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getprotobynumber.texi
+Hash: e805cea0486255ad0074dde515a503115e33ed43868aecacfb1a0ac558cf8b98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getprotobynumber
+#@section @code{getprotobynumber}
+#@findex getprotobynumber
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getprotobynumber.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getprotoent.texi
+Hash: 551ad27d45a3a2173629a313fa52369ff33c06beaec3bbc2377baf67b8bd6a63
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getprotoent
+#@section @code{getprotoent}
+#@findex getprotoent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getprotoent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpwent.texi
+Hash: 68e520992b1a0489112d7282fd41decd194ca4fd35a4d9b802cc3c4f7668109d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpwent
+#@section @code{getpwent}
+#@findex getpwent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpwnam.texi
+Hash: 998a0dbf244f755876f23b998c559ba89e13530dd2773a04938a04b5b4f4ea58
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpwnam
+#@section @code{getpwnam}
+#@findex getpwnam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwnam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpwnam_r.texi
+Hash: 70f8d6647f1e66692bd073a00720fdd78908c840c5d79bfdc49a0f125598a275
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpwnam_r
+#@section @code{getpwnam_r}
+#@findex getpwnam_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwnam_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpwuid.texi
+Hash: e8fe050b21b5adc384e3955d5ffd092c6a04e7f31d5a9f4812d4d928483a13b4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpwuid
+#@section @code{getpwuid}
+#@findex getpwuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getpwuid_r.texi
+Hash: d44ef7b94c25b62423eedbe94c7a59721af5023d7f9798dcb6f9bca0b3188b84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getpwuid_r
+#@section @code{getpwuid_r}
+#@findex getpwuid_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getpwuid_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getrlimit.texi
+Hash: 1741e65462f624b55fa08f6c137d5fef0491b29550153ff7b2298da4af716d35
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrlimit
+#@section @code{getrlimit}
+#@findex getrlimit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getrlimit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getrusage.texi
+Hash: c9eeb4d92f5a2e7811c9223fd928527c6a5417e8594cbd9ea14eeefede635a25
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getrusage
+#@section @code{getrusage}
+#@findex getrusage
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getrusage.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/gets.texi
+Hash: 9acd238c8a9d2d9c4330c312cafbdcd705e2429713392b36d2ce7c289b4e53ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gets
+#@section @code{gets}
+#@findex gets
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gets.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getservbyname.texi
+Hash: 3ecea5dc3404e1e38010cd73a8404324b1f9d1b54340701156549b8d5bfd01be
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getservbyname
+#@section @code{getservbyname}
+#@findex getservbyname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getservbyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getservbyport.texi
+Hash: bcdebeab2eff4908ac4d0c1c82b94bf2d68700c98b4cd97a78214034f96b2ed3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getservbyport
+#@section @code{getservbyport}
+#@findex getservbyport
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getservbyport.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getservent.texi
+Hash: c838d8a89540e74f6101898ed07696b8825936baf417b8f2832655d311f571b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getservent
+#@section @code{getservent}
+#@findex getservent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getservent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getsid.texi
+Hash: 431bb53ecff71e3d8b417174c16796f529609cd3acb88ebc10eb477a349185bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getsid
+#@section @code{getsid}
+#@findex getsid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getsockname.texi
+Hash: 31f2b7be44434718f4efc1d7b1eeab9bf763e3e363342fb0650f7dd2febe12b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getsockname
+#@section @code{getsockname}
+#@findex getsockname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsockname.html}
+#
+#Gnulib module: getsockname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{getsockname} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+
+File: ./doc/posix-functions/getsockopt.texi
+Hash: af2dad761ea7f44bcf81197c78bf3fcfb362822bad6f0ece6311338d86e3af08
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getsockopt
+#@section @code{getsockopt}
+#@findex getsockopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsockopt.html}
+#
+#Gnulib module: getsockopt
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{getsockopt} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+
+File: ./doc/posix-functions/getsubopt.texi
+Hash: aa4a53d47e730a1f992d7f1aa922e1aa79be10c34bfb255f50c46bfcb2f31234
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getsubopt
+#@section @code{getsubopt}
+#@findex getsubopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsubopt.html}
+#
+#Gnulib module: getsubopt
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/gettimeofday.texi
+Hash: 92a496410d954f2a49525954f98a8b06037522f580f6c0db5ade027332d23bde
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gettimeofday
+#@section @code{gettimeofday}
+#@findex gettimeofday
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gettimeofday.html}
+#
+#Gnulib module: gettimeofday
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#This function is declared with a nonstandard function prototype (only one
+
+File: ./doc/posix-functions/getuid.texi
+Hash: 19539881b0771df459953a324b6b357f9054362136b7bf9e0dd8765b028602e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getuid
+#@section @code{getuid}
+#@findex getuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getutxent.texi
+Hash: 87341c2493c319192244895c4b3a8f0e235c13e0c6621010175a0c36db050f8b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutxent
+#@section @code{getutxent}
+#@findex getutxent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getutxent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getutxid.texi
+Hash: 0bbf1db488c0b8719e88a95cd605fa67768a93ef69ddd9169b67e61711ae1e9d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutxid
+#@section @code{getutxid}
+#@findex getutxid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getutxid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getutxline.texi
+Hash: d12b5dfe0bf0b375c1ca7848376ae825fc319ade3d15ad4eaef723461569e33a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getutxline
+#@section @code{getutxline}
+#@findex getutxline
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getutxline.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getwc.texi
+Hash: 24a89fa271805bfe4e8cc573f5ca543254fe76dc9df6b5d9120d24be2e7e8409
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getwc
+#@section @code{getwc}
+#@findex getwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/getwchar.texi
+Hash: f75ad5d5c3cf53828966a82b52a7ef76b530dcdb646790e3e093dac8390a43f3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node getwchar
+#@section @code{getwchar}
+#@findex getwchar
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getwchar.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/glob.texi
+Hash: 768db78c0332b8bc395ab0e47410eda2ecd7e7199d167bdda85c58ecc1aa45a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node glob
+#@section @code{glob}
+#@findex glob
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/glob.html}
+#
+#Gnulib module: glob
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, mingw, BeOS.
+#@item
+#This function may list symbolic links to nonexistent files among the results,
+
+File: ./doc/posix-functions/globfree.texi
+Hash: 377e052eed5cf3a7e869b6b866cfeac8cd5ee86bcbdb7a7e8917773dd9409ab8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node globfree
+#@section @code{globfree}
+#@findex globfree
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/globfree.html}
+#
+#Gnulib module: glob
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/gmtime.texi
+Hash: 9066a6d0b686e0fd9eaf52c3daccffe11d300f0093beec88c8dea2637d591a89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gmtime
+#@section @code{gmtime}
+#@findex gmtime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gmtime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/gmtime_r.texi
+Hash: d899d0d3944063104a3a87bec32233cf8c8c5c00340d8a31c276be78149609b2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node gmtime_r
+#@section @code{gmtime_r}
+#@findex gmtime_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/gmtime_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/google-ranking.txt
+Hash: 6669619e4c21ebf3f0f0cfa39caf63574d638db746cee3ab5241ae4e8ab02dff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#free                                   2420000
+#write                                  1570000
+#time                                    768000
+#strlen                                  702000
+#index                                   697000
+#printf                                  690000
+#fprintf                                 641000
+#errno                                   616000
+#strcmp                                  604000
+#malloc                                  574000
+#memset                                  556000
+#sprintf                                 550000
+#read                                    547000
+#remove                                  527000
+#strcpy                                  510000
+
+File: ./doc/posix-functions/grantpt.texi
+Hash: ebd0e873fe02818ecf4ed2990c273103a39ad0f2043ff06acc9e07254bcd44f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node grantpt
+#@section @code{grantpt}
+#@findex grantpt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/grantpt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/hcreate.texi
+Hash: 1f1de04c8b3137e208712afe58b67737a41e3c494046ea3632c2d6bebfdb5e08
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hcreate
+#@section @code{hcreate}
+#@findex hcreate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hcreate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/hdestroy.texi
+Hash: 852046bda95f89dc1f65f887ebfcb271af87a79cfa85a2c30a2596dea55ffb6c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hdestroy
+#@section @code{hdestroy}
+#@findex hdestroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hdestroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/hsearch.texi
+Hash: 1c3dfdf5fd7c26d554eaa4394d12da4e71fb0ff8b6c6a7d956fbdf226e6db77c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hsearch
+#@section @code{hsearch}
+#@findex hsearch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hsearch.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/htonl.texi
+Hash: 96da0ca2386362f2d4e4dd58a33905ddbd207738ec194c1f90078bb0176b923d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node htonl
+#@section @code{htonl}
+#@findex htonl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/htonl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/htons.texi
+Hash: 112e415883bc9b3912343a8c5535eab4ed1e5eb8e2a0cb6203b1b4c829c2ac10
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node htons
+#@section @code{htons}
+#@findex htons
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/htons.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/hypot.texi
+Hash: 5916e7c5c00d00967198f74805aafa986ae5501cc50a0b6c535f859c4accae49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hypot
+#@section @code{hypot}
+#@findex hypot
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hypot.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/hypotf.texi
+Hash: dd7047f4fcc4c2890b72412ea78a97e134cb3d4b52b5eddb8523a2402c15fbd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hypotf
+#@section @code{hypotf}
+#@findex hypotf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hypotf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/hypotl.texi
+Hash: f90a4791fa83d5bb2611a343ee4e76c4b640340bb22acf21f71a0d33ec9a80e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node hypotl
+#@section @code{hypotl}
+#@findex hypotl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/hypotl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iconv.texi
+Hash: f965f19658c91456314bbd0c675bd6052312f237295341335b35c38475791d91
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iconv
+#@section @code{iconv}
+#@findex iconv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iconv.html}
+#
+#Gnulib module: iconv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#GNU libiconv is not found if installed in @file{$PREFIX/lib}.
+#@item
+#Failures are not distinguishable from successful returns on some platforms:
+#AIX 5.1.
+
+File: ./doc/posix-functions/iconv_close.texi
+Hash: 16082c1b0665d66075df97aca7dffc9193a3dd54469ce1e20fd61a7e65e01635
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iconv_close
+#@section @code{iconv_close}
+#@findex iconv_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iconv_close.html}
+#
+#Gnulib module: iconv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#GNU libiconv is not found if installed in @file{$PREFIX/lib}.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/iconv_open.texi
+Hash: 49b9b82fed6c3b4bf87cd2443ef07037863a7832c4cb38eb16f75dd2c83a2826
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iconv_open
+#@section @code{iconv_open}
+#@findex iconv_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iconv_open.html}
+#
+#Gnulib module: iconv, iconv_open, iconv_open-utf
+#
+#Portability problems fixed by either Gnulib module @code{iconv} or @code{iconv_open}:
+#@itemize
+#@item
+#GNU libiconv is not found if installed in @file{$PREFIX/lib}.
+#@item
+#No converter from EUC-JP to UTF-8 is provided on some platforms:
+#HP-UX 11.
+
+File: ./doc/posix-functions/if_freenameindex.texi
+Hash: 3409250e6643d5a9d763dad8f6d778213c5262060d57245d9969168b5717c8ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node if_freenameindex
+#@section @code{if_freenameindex}
+#@findex if_freenameindex
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/if_freenameindex.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/if_indextoname.texi
+Hash: e0c658b26a0038f9e0d93a4e91f11249f2b4af91b6eea372a208a05cf161b2a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node if_indextoname
+#@section @code{if_indextoname}
+#@findex if_indextoname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/if_indextoname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/if_nameindex.texi
+Hash: efe0055691b143943238c3973ce7a34ab9e1512434fad06838d9cb1579027e7d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node if_nameindex
+#@section @code{if_nameindex}
+#@findex if_nameindex
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/if_nameindex.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/if_nametoindex.texi
+Hash: ae69d6500c998134e95d763fd4d4d4b74f3b9a32ae8320f90da673dddd7082e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node if_nametoindex
+#@section @code{if_nametoindex}
+#@findex if_nametoindex
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/if_nametoindex.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ilogb.texi
+Hash: 18dbb833f6c37415f3c211e4872a95fea279a0c41a745edc0581e9ccfaea9bf0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ilogb
+#@section @code{ilogb}
+#@findex ilogb
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ilogb.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ilogbf.texi
+Hash: 1c1c7486eb6998de905eda978324bfc91f9c1b8ba52fcdc6ce6b1d26f3aa0a14
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ilogbf
+#@section @code{ilogbf}
+#@findex ilogbf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ilogbf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ilogbl.texi
+Hash: 3b010d3a7060a6064b0717b3c0cb764eaab983dde75fe55e71e7775e15e72ede
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ilogbl
+#@section @code{ilogbl}
+#@findex ilogbl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ilogbl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/imaxabs.texi
+Hash: 666ba73e5b2cde72e1e5b6bc0d407b8d52982031343e5627f4c7986c9f8ab588
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node imaxabs
+#@section @code{imaxabs}
+#@findex imaxabs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/imaxabs.html}
+#
+#Gnulib module: imaxabs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/imaxdiv.texi
+Hash: 138d9df51523cec7035dcf949fb2b46186fdbfc8e3f5d93e07abef452fe90ec4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node imaxdiv
+#@section @code{imaxdiv}
+#@findex imaxdiv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/imaxdiv.html}
+#
+#Gnulib module: imaxdiv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/inet_addr.texi
+Hash: 74b2fccbbd9d74392aa7fcb6c422f554038225e221802537f85556e3622f5b7a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_addr
+#@section @code{inet_addr}
+#@findex inet_addr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_addr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/inet_ntoa.texi
+Hash: 17301bd2cf66ebdfb65182b0dade44f1dae8345b2125ff8d9356dcf108d83fa4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_ntoa
+#@section @code{inet_ntoa}
+#@findex inet_ntoa
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_ntoa.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/inet_ntop.texi
+Hash: 2bfb9c3c48534a0ef693f09aa78498cebe4f1efdd5dc1287daffe91e312d3b46
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_ntop
+#@section @code{inet_ntop}
+#@findex inet_ntop
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_ntop.html}
+#
+#Gnulib module: inet_ntop
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, OSF/1 4.0, Solaris 2.5.1, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/inet_pton.texi
+Hash: 179d6b99ccbdec429d7b7be478695dc0d41e2340f79f6d9c5b5a693cba0489ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inet_pton
+#@section @code{inet_pton}
+#@findex inet_pton
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/inet_pton.html}
+#
+#Gnulib module: inet_pton
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, OSF/1 4.0, Solaris 2.5.1, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/initstate.texi
+Hash: ef35a8ba1f7a2c80bbc096e54a5309a312b91cc5cf46e6da71a3af2e92b733d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node initstate
+#@section @code{initstate}
+#@findex initstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/initstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/insque.texi
+Hash: bd5c85638f4a8abfa676097f05367cf4a7a5c6df9e4814c7956a55497fd70cdd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node insque
+#@section @code{insque}
+#@findex insque
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/insque.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ioctl.texi
+Hash: 0e9992e44abd4da7febddb076d29b2cbcd8d088f04d6a99e46d65446440a621c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ioctl
+#@section @code{ioctl}
+#@findex ioctl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ioctl.html}
+#
+#Gnulib module: ioctl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), @code{ioctl} is called
+#@code{ioctlsocket}, and error codes for this function are not placed in
+#@code{errno}, and @code{WSAGetLastError} must be used instead.
+#@end itemize
+
+File: ./doc/posix-functions/isalnum.texi
+Hash: 7e8f6f0e1c5391eeeee418d3daba0ca9a8f1acc734524864a393b569cb4d9e7e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isalnum
+#@section @code{isalnum}
+#@findex isalnum
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isalnum.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isalnum_l.texi
+Hash: 184b40cbdba1ef6f81331ed1f0dbb4e7bad0df440e0c8a0d7069ac1908d68897
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isalnum_l
+#@section @code{isalnum_l}
+#@findex isalnum_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isalnum_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isalpha.texi
+Hash: 21bde3d1e2fd36e6b70354be9db9d5b7bf8e1f1d4288c356e93cec01c117bca6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isalpha
+#@section @code{isalpha}
+#@findex isalpha
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isalpha.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isalpha_l.texi
+Hash: 891b0a65e8c759c81c621ba0197e0f95e55ca090eee63dcaccba5faa52ca9077
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isalpha_l
+#@section @code{isalpha_l}
+#@findex isalpha_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isalpha_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isascii.texi
+Hash: 556beb2df9bb209f85e402d40e0fe3811644560424c74fb2b3ef07a8dd6d705b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isascii
+#@section @code{isascii}
+#@findex isascii
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isascii.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isastream.texi
+Hash: 9eeda95fb91e67be24bb2e4b8ebcb41758144638e315c9b8a38e5f24c9c464a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isastream
+#@section @code{isastream}
+#@findex isastream
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isastream.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isatty.texi
+Hash: e2c2970db6e080721b6f59c180087535d30c7f0e6e49510851e8c56bbf62b571
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isatty
+#@section @code{isatty}
+#@findex isatty
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isatty.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isblank.texi
+Hash: 607aeac320bbcef0aff904e331fd9ba48021afb702586fadfb024e3c2399987a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isblank
+#@section @code{isblank}
+#@findex isblank
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isblank.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isblank_l.texi
+Hash: 87c4aa73b132fb5e2406a64e6d5f4d9033fe4ccc616daf189d3d61ccaacaa732
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isblank_l
+#@section @code{isblank_l}
+#@findex isblank_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isblank_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iscntrl.texi
+Hash: 1bed23b3d80fa67f3d9c7863ae52969b33682335542e31bf5d3f1f2b64e25e09
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iscntrl
+#@section @code{iscntrl}
+#@findex iscntrl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iscntrl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/iscntrl_l.texi
+Hash: b81253dfdbbc5302ec5dc376fb8351bff010960f66b6c07cf6c792dc6359808a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iscntrl_l
+#@section @code{iscntrl_l}
+#@findex iscntrl_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iscntrl_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isdigit.texi
+Hash: a099acfd541a9eb34af0f26be1e535eb935149cd2a5947c165a62b70c9f185d4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isdigit
+#@section @code{isdigit}
+#@findex isdigit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isdigit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isdigit_l.texi
+Hash: 1c50a0ff745432c67953ccf4c610ffac0bd4d4a3ee60e5dddb93be325738db84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isdigit_l
+#@section @code{isdigit_l}
+#@findex isdigit_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isdigit_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isfinite.texi
+Hash: 8de73e1f76a93c11dd0144e087c5a5668d7a3356c4ad47b6a839386c6878abaa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isfinite
+#@section @code{isfinite}
+#@findex isfinite
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isfinite.html}
+#
+#Gnulib module: isfinite
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This macro is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Interix 3.5.
+#@item
+#This macro incorrectly yields true for some @samp{double} arguments, on some
+
+File: ./doc/posix-functions/isgraph.texi
+Hash: c587baa5d3ff8f02b0d039fea812685da5bf8e75c7fcbc88f2814e62835758c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isgraph
+#@section @code{isgraph}
+#@findex isgraph
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isgraph.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isgraph_l.texi
+Hash: 98888e1d5b988e61eaa41d7727524eaa67a1b20fc59aa4649d866b39630fb81a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isgraph_l
+#@section @code{isgraph_l}
+#@findex isgraph_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isgraph_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isgreater.texi
+Hash: d998c4e8134e688b0dbd93c7f31be3bee6fa1c6ac588447dbaf04296b983fb45
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isgreater
+#@section @code{isgreater}
+#@findex isgreater
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isgreater.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isgreaterequal.texi
+Hash: ab4e53e9c3972f5aed62439cc18f494263bb0f880ef864045d24d0f02eb635cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isgreaterequal
+#@section @code{isgreaterequal}
+#@findex isgreaterequal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isgreaterequal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isinf.texi
+Hash: eba9361c1691fec1805dbb0caeef08b27f06567a49e51e510a778c2f95decf10
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isinf
+#@section @code{isinf}
+#@findex isinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isinf.html}
+#
+#Gnulib module: isinf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This macro is missing on some platforms:
+#AIX 4.3.2, IRIX 6.5, OSF/1 5.1, Solaris 10.
+#@end itemize
+
+File: ./doc/posix-functions/isless.texi
+Hash: dd004ed16bf5f26451a45799145ea12ee1a016fa0966fe3eb6290da0386db8eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isless
+#@section @code{isless}
+#@findex isless
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isless.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/islessequal.texi
+Hash: 28e0f408e7dfce3c4fad65911c4558d2b2aa8aef2be00cf46c2bdae6383a8b1c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node islessequal
+#@section @code{islessequal}
+#@findex islessequal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/islessequal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/islessgreater.texi
+Hash: cd242279d55f7ff21ca138eb552ad88514e3806094a2158a4df3eac316e2c0cf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node islessgreater
+#@section @code{islessgreater}
+#@findex islessgreater
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/islessgreater.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/islower.texi
+Hash: 71c3f0e0c264095972634ce0074fd2083e8b2174467f9d894e5f4519dbed4cc3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node islower
+#@section @code{islower}
+#@findex islower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/islower.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/islower_l.texi
+Hash: 96fcedded01879c7734672f03889e128a2f1dbc5f405b10d13627fc4b2523144
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node islower_l
+#@section @code{islower_l}
+#@findex islower_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/islower_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isnan.texi
+Hash: 5214ffd8e70b47877e52ef9490a41b22c7ed2e3a6bc37c7782a4ca5c3ac07f11
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isnan
+#@section @code{isnan}
+#@findex isnan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isnan.html}
+#
+#Gnulib module: isnan
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@code{isnan} was introduced with C99 and is thus commonly not present
+#on pre-C99 systems.
+#@item
+#On IRIX 6.5 with @code{cc}, @code{isnan} does not recognize some NaNs.
+
+File: ./doc/posix-functions/isnormal.texi
+Hash: 2dd1a3add6afd000b680d1c31a781dc539c9658de7d445da59004bfd50e0783b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isnormal
+#@section @code{isnormal}
+#@findex isnormal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isnormal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isprint.texi
+Hash: bf8d5e33042f9cf87ecd8cc480294ad8a7646150ad9ef130c8358c3eae863a90
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isprint
+#@section @code{isprint}
+#@findex isprint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isprint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isprint_l.texi
+Hash: 5cff105ffadf19f833473bbadfaaa615774fe044e725fa630923a66b3e7f8707
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isprint_l
+#@section @code{isprint_l}
+#@findex isprint_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isprint_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ispunct.texi
+Hash: 4fb607609ae1049ee43f812ba62fbb60c3272f24017331383aed15bafd786cd1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ispunct
+#@section @code{ispunct}
+#@findex ispunct
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ispunct.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/ispunct_l.texi
+Hash: 18d2164678e563017b26a85fb23ec4d064c90da5a3e714113416b8c634505f4d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ispunct_l
+#@section @code{ispunct_l}
+#@findex ispunct_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ispunct_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isspace.texi
+Hash: dfdacdcbfce11be693ae3ba8a9a7a3b61ca4817c0ebba178e618b4a6afa7110c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isspace
+#@section @code{isspace}
+#@findex isspace
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isspace.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isspace_l.texi
+Hash: 9a9cbcf45014b1475014e6893b767c3bc3b8a2535e835a56cd748ae79bb7c131
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isspace_l
+#@section @code{isspace_l}
+#@findex isspace_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isspace_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isunordered.texi
+Hash: 627509cf98ac3516674b3f4b12aca1ab39c75bf3356a60c72c724751dbe27bd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isunordered
+#@section @code{isunordered}
+#@findex isunordered
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isunordered.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isupper.texi
+Hash: e5ecf479da300eaedb8c203077aa16f133a0d8b46870bf7575460ae23aa0eb86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isupper
+#@section @code{isupper}
+#@findex isupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isupper.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isupper_l.texi
+Hash: 84dd39b30cb42e91a2527f26e9c643b49582f593536ff106a61f4827186690b6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isupper_l
+#@section @code{isupper_l}
+#@findex isupper_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isupper_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswalnum.texi
+Hash: c88cc6395532271af8c31a1c5919f67010036b8dec37195a5de9c9e6fc4fe99a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswalnum
+#@section @code{iswalnum}
+#@findex iswalnum
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswalnum.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswalnum_l.texi
+Hash: c7b749280c0d42ff34ec793f356734be117a43ede8aab61c3eac40296b8a8359
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswalnum_l
+#@section @code{iswalnum_l}
+#@findex iswalnum_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswalnum_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswalpha.texi
+Hash: b8a1133f56ec62b284a4d3b3779f7faa3a3e71a0882041311a4875fa886799ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswalpha
+#@section @code{iswalpha}
+#@findex iswalpha
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswalpha.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswalpha_l.texi
+Hash: e0a8c0ea63ecd10ff043c3b5bc68e731cb92ee02b8e1525a750ce6ca9b28712e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswalpha_l
+#@section @code{iswalpha_l}
+#@findex iswalpha_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswalpha_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswblank.texi
+Hash: faf5a6047eaaa0b928dba0c8cfb5eb9a505c0e5bb25f687c7bf9a3563727d030
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswblank
+#@section @code{iswblank}
+#@findex iswblank
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswblank.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+#Linux libc5.
+#@end itemize
+
+File: ./doc/posix-functions/iswblank_l.texi
+Hash: f8ab06e1ce64e0c1a05e484a4252a62ffe13629ac1abda44784530d4816cbdf7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswblank_l
+#@section @code{iswblank_l}
+#@findex iswblank_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswblank_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswcntrl.texi
+Hash: e9ac01bd3a5328c6929e67d29991c8eabd27f30cefd73ba88b67f87383e0be83
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswcntrl
+#@section @code{iswcntrl}
+#@findex iswcntrl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswcntrl.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswcntrl_l.texi
+Hash: 457ab57b3569fa9bd430130d48e2e2c8af2b63ba356bd0b53785e04957519624
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswcntrl_l
+#@section @code{iswcntrl_l}
+#@findex iswcntrl_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswcntrl_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswctype.texi
+Hash: ef1349d2e828e29feea41a7a9e7b876f1c93d47ec38be89d1529905da34176d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswctype
+#@section @code{iswctype}
+#@findex iswctype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswctype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswctype_l.texi
+Hash: c671724332e6cc92a3c3f170c366ec38aeefab3906b3e85e0d8f2b19e536dfac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswctype_l
+#@section @code{iswctype_l}
+#@findex iswctype_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswctype_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswdigit.texi
+Hash: 0e822111a3da05620947869ae4f3b596526ba2375fc5f56696a7e7a1561ac12e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswdigit
+#@section @code{iswdigit}
+#@findex iswdigit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswdigit.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswdigit_l.texi
+Hash: 22f6b5c90a47f37efe4ba4db24bed97cae416e8e0c8f6933a1d288bcb1ca185d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswdigit_l
+#@section @code{iswdigit_l}
+#@findex iswdigit_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswdigit_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswgraph.texi
+Hash: 896e84f517e4788236750a0615c2133f547aeba276f20c53c87c42d9c53dc4c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswgraph
+#@section @code{iswgraph}
+#@findex iswgraph
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswgraph.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswgraph_l.texi
+Hash: 10aee45c72cc14f9a99bec78b29aa44fe09e9c54a545008cc4b19baa4dec61a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswgraph_l
+#@section @code{iswgraph_l}
+#@findex iswgraph_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswgraph_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswlower.texi
+Hash: 1a9d7fa78a4d5d99b5fbff24e4e93ead4ecacf42a38182cdfd6fb45136f6e28d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswlower
+#@section @code{iswlower}
+#@findex iswlower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswlower.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswlower_l.texi
+Hash: 25b3f6605949010e6e24d0c2e1f7b3510e17cfd8745092c6def04ae7dc005143
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswlower_l
+#@section @code{iswlower_l}
+#@findex iswlower_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswlower_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswprint.texi
+Hash: 5e205ee334496a2f8d2c4d3aaf02ed2c1e8bc2afcf953ccfdc8615e0bb390b4a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswprint
+#@section @code{iswprint}
+#@findex iswprint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswprint.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswprint_l.texi
+Hash: 67681be4a107eb027c4062ff76d698c22b4ce822bd002dfa7a17b1493d54f45e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswprint_l
+#@section @code{iswprint_l}
+#@findex iswprint_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswprint_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswpunct.texi
+Hash: d73020eb450cf8316c2be7df99c089c6fe0034ef0600f050d907760b2e6ff366
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswpunct
+#@section @code{iswpunct}
+#@findex iswpunct
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswpunct.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswpunct_l.texi
+Hash: 5e322758293c6c526a9eeb5a1b026d42b7faf671accd5638f9df410a04689eea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswpunct_l
+#@section @code{iswpunct_l}
+#@findex iswpunct_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswpunct_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswspace.texi
+Hash: c67ec587b829ddefc9f19782b9e1029ecdc6ab6c00583aff4ccaf07e51564193
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswspace
+#@section @code{iswspace}
+#@findex iswspace
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswspace.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswspace_l.texi
+Hash: 0f4b7e4d958774500fae6e07482d9e57bd0da51d009cd74ccbd706e78ba58b08
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswspace_l
+#@section @code{iswspace_l}
+#@findex iswspace_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswspace_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswupper.texi
+Hash: 528d4efc9e63b92cc7d1d0c7e31b7c77e67763927eeb07b4788aecb640c11719
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswupper
+#@section @code{iswupper}
+#@findex iswupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswupper.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswupper_l.texi
+Hash: 6e31fe14738f6db822099564d598cf2f05446f077266420bf4d7422ef633ab38
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswupper_l
+#@section @code{iswupper_l}
+#@findex iswupper_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswupper_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/iswxdigit.texi
+Hash: 3526ec49ca1bd1d095e59320f1a32b5a218365abdedc5b43651cdb1be31176fe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswxdigit
+#@section @code{iswxdigit}
+#@findex iswxdigit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswxdigit.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@item
+#This function returns 0 for all possible arguments on some platforms:
+
+File: ./doc/posix-functions/iswxdigit_l.texi
+Hash: 9936301340cebe26c7bcd05652078bb16be4607552be00033b001521ab9d41a9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iswxdigit_l
+#@section @code{iswxdigit_l}
+#@findex iswxdigit_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/iswxdigit_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/isxdigit.texi
+Hash: 52cb4c1aa9423d60ea39014291385b09505d50690e931fec03fdf135080b1bdc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isxdigit
+#@section @code{isxdigit}
+#@findex isxdigit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isxdigit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/isxdigit_l.texi
+Hash: d2ad8a517fc760eb3955762719d2090c1f9c1decfdc2887089f7eb266851562a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node isxdigit_l
+#@section @code{isxdigit_l}
+#@findex isxdigit_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/isxdigit_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/j0.texi
+Hash: 92c5c4686c56a6222dc04a17a722b38fcb07bfadefa01ec42f495d70a4d704ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node j0
+#@section @code{j0}
+#@findex j0
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/j0.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/j1.texi
+Hash: bca6d61fb0a24dad8de3b48af62434780af39426be5adfa93dc9957532493814
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node j1
+#@section @code{j1}
+#@findex j1
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/j1.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/jn.texi
+Hash: 5b29066ceb64fe7ad17eb38d78939fc0e5f67fb7b89c71269a590db08bf9bd26
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node jn
+#@section @code{jn}
+#@findex jn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/jn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/jrand48.texi
+Hash: 5eccfdaf1fb9d042601589acec674823d983cebc21a085b5c12bb7119ed3040d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node jrand48
+#@section @code{jrand48}
+#@findex jrand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/jrand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/kill.texi
+Hash: 11e385ab05f5ce42cb6247de6ee659925b11ecc4aae8abd33e1c2c674a40fdf4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node kill
+#@section @code{kill}
+#@findex kill
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/kill.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/killpg.texi
+Hash: 22626f2cc60de026029ba237c7c48240d598b37acbd580a1b71c3c5928b73aab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node killpg
+#@section @code{killpg}
+#@findex killpg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/killpg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/l64a.texi
+Hash: 3a5a8f79a5d9f35a37ef6d7a789b7b472f3216854a7fcb47020cf74971354cb3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node l64a
+#@section @code{l64a}
+#@findex l64a
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/l64a.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/labs.texi
+Hash: c5d6a703807a85238752dd8f84cbce03bcd5814315c8604e89065b8a9f29f77a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node labs
+#@section @code{labs}
+#@findex labs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/labs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/lchown.texi
+Hash: 2a095b0a88ad06a14515b1dbde6ec7043620d305fc7b453723867cdf5ed0cb1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lchown
+#@section @code{lchown}
+#@findex lchown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lchown.html}
+#
+#Gnulib module: lchown
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/lcong48.texi
+Hash: 88459cb0ea9ae0af730dd212d7fc277aea0a7c769e94d2f6b79199ce12b2a512
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lcong48
+#@section @code{lcong48}
+#@findex lcong48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lcong48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ldexp.texi
+Hash: d8b30651c56cc57e6184976bcd3f5cdc4337432a710df366e0f95f5859ba6449
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ldexp
+#@section @code{ldexp}
+#@findex ldexp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ldexp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/ldexpf.texi
+Hash: d00bcb96e34e28360e66b5c978e0f9c1bb5b3bdb899b81fe0b02631ba7e84d4d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ldexpf
+#@section @code{ldexpf}
+#@findex ldexpf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ldexpf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ldexpl.texi
+Hash: 829ada339592493a785909dc30d169fbeb9dc8ac27f6bf686b8ebe09d785dbba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ldexpl
+#@section @code{ldexpl}
+#@findex ldexpl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ldexpl.html}
+#
+#Gnulib module: ldexpl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5.
+#@item
+#This function has no prototype in @code{<math.h>} on some platforms:
+
+File: ./doc/posix-functions/ldiv.texi
+Hash: d0888e9dfe273c20f6b12c927742f3d6638da50b661f54f0ecc3a1d496153711
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ldiv
+#@section @code{ldiv}
+#@findex ldiv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ldiv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/lfind.texi
+Hash: a9ab017bcc9e5a9fcabf969e05e09ca84876c73534d89e870d8a1f3d903f3f98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lfind
+#@section @code{lfind}
+#@findex lfind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lfind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lgamma.texi
+Hash: 470520a61a348188fbde1ddb355db3ec98317bbbd5a4bbef6235b7529dc8fa2a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lgamma
+#@section @code{lgamma}
+#@findex lgamma
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lgamma.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/lgammaf.texi
+Hash: 3340ca1262b620b9ed75884a30a81db4835f22d9c860f0fdfbd49037ce37e709
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lgammaf
+#@section @code{lgammaf}
+#@findex lgammaf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lgammaf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lgammal.texi
+Hash: 5e5d8253d524d33f78063e3e074de5de4790d5287281de939f9ada54a6705852
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lgammal
+#@section @code{lgammal}
+#@findex lgammal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lgammal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/link.texi
+Hash: 721fb6b25032be524f91ee20555d327e72ab7483675467a12a62292b15936298
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node link
+#@section @code{link}
+#@findex link
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/link.html}
+#
+#Gnulib module: link
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/linkat.texi
+Hash: ce3f61559a6101fa604cccc0a81fbe487ceb354cf4adb09a34aa00f85e7fc351
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node linkat
+#@section @code{linkat}
+#@findex linkat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/linkat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lio_listio.texi
+Hash: c1d08fd64ff293ccace2ccce4dfb34ec109f7090f89c52f2cb06db5c54a8cffa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lio_listio
+#@section @code{lio_listio}
+#@findex lio_listio
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lio_listio.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/listen.texi
+Hash: 03a2a6206b0bfcb7a04ed70467f6c79be8290cffa99530b8a9e039d33dbdd79f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node listen
+#@section @code{listen}
+#@findex listen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/listen.html}
+#
+#Gnulib module: listen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{listen}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+
+File: ./doc/posix-functions/llabs.texi
+Hash: 5704f5b51267973492147aeb77944c9ad0933fc1384a10a423b46df15b4901b5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node llabs
+#@section @code{llabs}
+#@findex llabs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llabs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lldiv.texi
+Hash: ee22224d40c7a02e5745932772fee532f233469cdfb89c246432ef992ebac66a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lldiv
+#@section @code{lldiv}
+#@findex lldiv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lldiv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/llrint.texi
+Hash: 3f862bfbf3caf84d717ca4155ee2f2ada393f410182a60fc56366f4925537dfd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node llrint
+#@section @code{llrint}
+#@findex llrint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llrint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/llrintf.texi
+Hash: 83247aede57c3ef038725aecc9f342683fc1b1cfdb67b650ceace4bb856a26dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node llrintf
+#@section @code{llrintf}
+#@findex llrintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llrintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/llrintl.texi
+Hash: ab3eeef6cd1c1dc19abc2a4f396784418136ff2da2b0a6e6cd91e9d7b64d5b9f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node llrintl
+#@section @code{llrintl}
+#@findex llrintl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llrintl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/llround.texi
+Hash: c748140ca47bdf7b93d2ddb245999ef7671f9e6329ae7386dd7aa9bdc0c0c61d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node llround
+#@section @code{llround}
+#@findex llround
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llround.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/llroundf.texi
+Hash: a974d182d48cf3f4f1387914256124829fc72ced4b4f0e241a1d298a1e6ab17c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node llroundf
+#@section @code{llroundf}
+#@findex llroundf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llroundf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/llroundl.texi
+Hash: 16c0786bf5b7bd64b25182d4c35925082061e14e27ab40c6203d0f5f7838d6cb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node llroundl
+#@section @code{llroundl}
+#@findex llroundl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/llroundl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/localeconv.texi
+Hash: d9b5bac65cb3629c70d7c2bbc8423d1181dd32c3fd8e7a9c3db48a7fc5f2e884
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node localeconv
+#@section @code{localeconv}
+#@findex localeconv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/localeconv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/localtime.texi
+Hash: f55efabe8a9cc3efe0e97ec9cc7abd10fdd6b44ce79eabb8ba9494a170c44414
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node localtime
+#@section @code{localtime}
+#@findex localtime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/localtime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/localtime_r.texi
+Hash: 18eff3ee8b506b64c19546e4585097687ef46c56cf3023f29bbb7c36549bc668
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node localtime_r
+#@section @code{localtime_r}
+#@findex localtime_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/localtime_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lockf.texi
+Hash: c7357159d3ec65d81d8ae3ae09048741deb17c3d24105341bb844ae4d6c68f75
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lockf
+#@section @code{lockf}
+#@findex lockf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lockf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/log.texi
+Hash: be6326972647fb62ffadb5a669d7d58dde061bc0c584cdd502e09f1b939d4926
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log
+#@section @code{log}
+#@findex log
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/log10.texi
+Hash: 4bf234e16cce10eb06a07bc2c0c01211e19431dd14e99f073621a87a4c1fb68f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log10
+#@section @code{log10}
+#@findex log10
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log10.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/log10f.texi
+Hash: 811604f34b79d58d4d2b00f03dec4623e329696cae765555f7a016594f0310e8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log10f
+#@section @code{log10f}
+#@findex log10f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log10f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/log10l.texi
+Hash: e985c831bb6f56ba639b385c95b36fbff47864717facca550c8cac55e5055b21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log10l
+#@section @code{log10l}
+#@findex log10l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log10l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/log1p.texi
+Hash: 499f997d56262cd2f6418e1ec7e697e73874bf8fa3bf66d94d569994cc040c7f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log1p
+#@section @code{log1p}
+#@findex log1p
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log1p.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/log1pf.texi
+Hash: 850d0d4573c9bf0ffb16b33e910d10c99a45e0cd8d0eac98494724760c777cd2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log1pf
+#@section @code{log1pf}
+#@findex log1pf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log1pf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/log1pl.texi
+Hash: 6920d505b2ccd43777218043d90d6c4410d8c87997dd73b2f249bc2360d67582
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log1pl
+#@section @code{log1pl}
+#@findex log1pl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log1pl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/log2.texi
+Hash: 72c0f561bdbe81af893f8e873ebd4dbe806bad530db44f519b19409199082887
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log2
+#@section @code{log2}
+#@findex log2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log2.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/log2f.texi
+Hash: 109ae05a1b36fa1174a4d4407fa99b2c5eaae2e7b9e30f59e3faab1178d9e85f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log2f
+#@section @code{log2f}
+#@findex log2f
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log2f.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/log2l.texi
+Hash: 98e4205ef799d4c24375f28e935eff27ccd0d67d86bd6779b8405677d11f0523
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node log2l
+#@section @code{log2l}
+#@findex log2l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/log2l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/logb.texi
+Hash: 6d395e4ef941920f778506ad202ac5dcb235ae030c9ccfe916329e49a63c7b71
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node logb
+#@section @code{logb}
+#@findex logb
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logb.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/logbf.texi
+Hash: c732075e88b1628ef63b9205c9def17bcaf758d1e0c35992a2fafc3d2528655f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node logbf
+#@section @code{logbf}
+#@findex logbf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logbf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/logbl.texi
+Hash: fca1988f0cb72ad80a0962568a412de015cffb28a4cbbb9a1a81db50e29f47c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node logbl
+#@section @code{logbl}
+#@findex logbl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logbl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/logf.texi
+Hash: 599a740ebf9dc12b8baa17e0e18aa126df9b8bc2ac51aa7c7a556693ceb61af2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node logf
+#@section @code{logf}
+#@findex logf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/logl.texi
+Hash: 96139ba06494cf8c9fdb20a21e11fe8877bb1c22c528f5f8fafc57131b5be12b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node logl
+#@section @code{logl}
+#@findex logl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/logl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/longjmp.texi
+Hash: 8037266751fc7a136b74fc698dde403a0fa71c5aaf9c84d2f4e0ae27994fd458
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node longjmp
+#@section @code{longjmp}
+#@findex longjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/longjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lrand48.texi
+Hash: 869c04b348c9b6123c213743a00e56a0f3c5b4140dd0c88b90af0677a594a7ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lrand48
+#@section @code{lrand48}
+#@findex lrand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lrand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lrint.texi
+Hash: 5e8f49fd176642d39b75ce85fa4883dd177ae6365bb3f7bc01d1adfe57137f05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lrint
+#@section @code{lrint}
+#@findex lrint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lrint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lrintf.texi
+Hash: 08dafff5e7cdc373b185b07d2e59e50c6c21f34bba5297e4622267f3e5ba81bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lrintf
+#@section @code{lrintf}
+#@findex lrintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lrintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lrintl.texi
+Hash: b6b93015a9cd70a2b2a2d7f4f6c4e03b259a83dfb0e4850be2dbc5125557a3a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lrintl
+#@section @code{lrintl}
+#@findex lrintl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lrintl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lround.texi
+Hash: 7ce7fba4c411195fb1fd21ceab0c0087af9f72fa0c8582ecf336f7e485e1d50f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lround
+#@section @code{lround}
+#@findex lround
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lround.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lroundf.texi
+Hash: d2fd89e04139885ec3fe722000f941fae649dc9a7e37e9e57651994f02c20e9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lroundf
+#@section @code{lroundf}
+#@findex lroundf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lroundf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lroundl.texi
+Hash: 921cf7eb1bc71b4502501b3ce8d15cdf97000bd44378a8c58f624e8b89f6d528
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lroundl
+#@section @code{lroundl}
+#@findex lroundl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lroundl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lsearch.texi
+Hash: 37eec18ff286f167792759b48ba4225deeb6aa273436f0b3dbbe0bdd23c4f2c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lsearch
+#@section @code{lsearch}
+#@findex lsearch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lsearch.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/lseek.texi
+Hash: 51e17228d34badd1144f78cdd1d398bd81f85ac3231f9ce3c1158f58e2cd98ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lseek
+#@section @code{lseek}
+#@findex lseek
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lseek.html}
+#
+#Gnulib module: lseek
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function mistakenly succeeds on pipes on some platforms: mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/lstat.texi
+Hash: ee413eccd9b78bf14988721a2eeb3e0ef1a0f352a9381743add4a0fde7d15484
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node lstat
+#@section @code{lstat}
+#@findex lstat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/lstat.html}
+#
+#Gnulib module: lstat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When the argument ends in a slash, some platforms don't dereference the
+#argument.
+#@item
+#On Windows platforms (excluding Cygwin), symlinks are not supported, so
+
+File: ./doc/posix-functions/malloc.texi
+Hash: e78d7433731db2f25215c9b85d86bab4074a9386c851e3e7652b3a773f9ffa4c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node malloc
+#@section @code{malloc}
+#@findex malloc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/malloc.html}
+#
+#Gnulib module: malloc-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Upon failure, the function does not set @code{errno} to @code{ENOMEM} on
+#some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/mblen.texi
+Hash: 6d48d1ed4b248c087c438895fc11497d19518e31fd66e3b62dfb31a82725fba4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mblen
+#@section @code{mblen}
+#@findex mblen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mblen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/mbrlen.texi
+Hash: 0ad799fbab5e5ba27244d58a868783bef00fefc119f78dc1e60bbd4798d4f51e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mbrlen
+#@section @code{mbrlen}
+#@findex mbrlen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbrlen.html}
+#
+#Gnulib module: mbrlen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not put the state into non-initial state when parsing an
+
+File: ./doc/posix-functions/mbrtowc.texi
+Hash: 520568480543ec68eb430ac4973176f6b1b2d43c0e6e4d45ba73aef60a87eee5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mbrtowc
+#@section @code{mbrtowc}
+#@findex mbrtowc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbrtowc.html}
+#
+#Gnulib module: mbrtowc
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not put the state into non-initial state when parsing an
+
+File: ./doc/posix-functions/mbsinit.texi
+Hash: 5df56fe636ad7622c7d031432f90eb3e4538ae9741ef0dae2b26dce74bf28c6f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mbsinit
+#@section @code{mbsinit}
+#@findex mbsinit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbsinit.html}
+#
+#Gnulib module: mbsinit
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/mbsnrtowcs.texi
+Hash: 1e379a2b7e5692fee1cf2caa04b0f12222eb783c0aacffee63560278e24e6ecc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mbsnrtowcs
+#@section @code{mbsnrtowcs}
+#@findex mbsnrtowcs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbsnrtowcs.html}
+#
+#Gnulib module: mbsnrtowcs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX
+#11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/mbsrtowcs.texi
+Hash: 45316856d475ec5e2b93376b87b78c48f7f8d80439cd569005b87b8ae1d7f903
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mbsrtowcs
+#@section @code{mbsrtowcs}
+#@findex mbsrtowcs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbsrtowcs.html}
+#
+#Gnulib module: mbsrtowcs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not work on some platforms:
+
+File: ./doc/posix-functions/mbstowcs.texi
+Hash: 0ce649672c4e398cd8cf49a87e9b998673d368e3f9cccb224a05f172ce73e065
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mbstowcs
+#@section @code{mbstowcs}
+#@findex mbstowcs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbstowcs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mbtowc.texi
+Hash: 715f7f61b6dea73f4e6db5662d9eb0d7117bf43a6e82afd979f2992d992de84d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mbtowc
+#@section @code{mbtowc}
+#@findex mbtowc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mbtowc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/memccpy.texi
+Hash: a6d645adccd00addeee11377bd0d94a9a49c5abc74697957704ef86ef88d7ecb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memccpy
+#@section @code{memccpy}
+#@findex memccpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memccpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/memchr.texi
+Hash: 3548b31bdafed633760e3d40a863cfb4b7eb601216d255a29de29bb5f7088f9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memchr
+#@section @code{memchr}
+#@findex memchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memchr.html}
+#
+#Gnulib module: memchr
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#
+#@item
+#This function dereferences too much memory on some platforms:
+
+File: ./doc/posix-functions/memcmp.texi
+Hash: fb3797a49dc2164707d9ba379894b5b1e34d43b30e554e4bc3782e4509001f2f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memcmp
+#@section @code{memcmp}
+#@findex memcmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memcmp.html}
+#
+#Gnulib module: memcmp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@item
+#This function does not work on 8-bit data on some older platforms:
+#SunOS 4.1.3.
+
+File: ./doc/posix-functions/memcpy.texi
+Hash: 271f9b21c10b20785135079403e037a4f52ad844b7602913211ff63f94564bcb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memcpy
+#@section @code{memcpy}
+#@findex memcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memcpy.html}
+#
+#Gnulib module: memcpy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/memmove.texi
+Hash: 0f200deaacb14c33d323ffa83873f3b54922ae9f6c0306fe66c0516671387261
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memmove
+#@section @code{memmove}
+#@findex memmove
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memmove.html}
+#
+#Gnulib module: memmove
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/memset.texi
+Hash: 493093091c332e7fc5a23362e072380e883d206806a2326770839b8e60f0d3ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node memset
+#@section @code{memset}
+#@findex memset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/memset.html}
+#
+#Gnulib module: memset
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some older platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/mkdir.texi
+Hash: 93475369c168cbc0c38f7b20835aee152d2ae281996e0d345aac4cbfa7abc331
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mkdir
+#@section @code{mkdir}
+#@findex mkdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkdir.html}
+#
+#Gnulib module: mkdir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When the argument ends in a slash, the function call fails on some platforms.
+#@item
+#On Windows platforms (excluding Cygwin), this function is called @code{_mkdir}
+#and takes only one argument.  The fix (without Gnulib) is to define a macro
+
+File: ./doc/posix-functions/mkdirat.texi
+Hash: 55a0d02781ba86cb46e9723bea32885e1790894fa991dc3c01e6506e5fae2f81
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mkdirat
+#@section @code{mkdirat}
+#@findex mkdirat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkdirat.html}
+#
+#Gnulib module: openat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+
+File: ./doc/posix-functions/mkdtemp.texi
+Hash: 58eea11250f1276e5fd5c59cc33e1addcc62f6cd091dd15a83e428be08f7b252
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mkdtemp
+#@section @code{mkdtemp}
+#@findex mkdtemp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkdtemp.html}
+#
+#Gnulib module: mkdtemp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/mkfifo.texi
+Hash: 39b9fab073e009e8b6a169b2190d5572e513385c694e327e70bcf1db6a159b35
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mkfifo
+#@section @code{mkfifo}
+#@findex mkfifo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkfifo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mkfifoat.texi
+Hash: 205800e3bc3436f4b16ce670afff063c55a0da3a798b107e364045fa4a967ed5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mkfifoat
+#@section @code{mkfifoat}
+#@findex mkfifoat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkfifoat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mknod.texi
+Hash: 3f6809f0a4fa73e85bc918802a632cd0192c1c5c2801cd7eaa1b2824469fd3a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mknod
+#@section @code{mknod}
+#@findex mknod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mknod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mknodat.texi
+Hash: 8e780cc65b29f438053a6cb070c21ca28168dc988f47fb72e9f3810c721768d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mknodat
+#@section @code{mknodat}
+#@findex mknodat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mknodat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mkstemp.texi
+Hash: 854e7e497a0388612e8d2d0c212c25f4fd94333ba825e1b9df90b94bbbff394a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mkstemp
+#@section @code{mkstemp}
+#@findex mkstemp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mkstemp.html}
+#
+#Gnulib module: mkstemp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#On some platforms (HP-UX 10.20, SunOS 4.1.4, Solaris 2.5.1), mkstemp has a silly
+
+File: ./doc/posix-functions/mktime.texi
+Hash: 9948a151a3eb7c4b07a411a58f1bc5da74bdf24f291daae2f1262a0fdd044804
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mktime
+#@section @code{mktime}
+#@findex mktime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mktime.html}
+#
+#Gnulib module: mktime
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@code{mktime} may go into an endless loop on some platforms.
+#@item
+#@code{mktime} may occasionally return wrong results on some platforms.
+#@end itemize
+
+File: ./doc/posix-functions/mlock.texi
+Hash: 3ddcd068484f0953b2b2583b4036fdd4d6ecb22893c51cacbb61a36f1493c6bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mlock
+#@section @code{mlock}
+#@findex mlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mlockall.texi
+Hash: 2d15848617dd2c8c5b5d582ba37f8def1777193fefd8f521f1e8583682c62a21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mlockall
+#@section @code{mlockall}
+#@findex mlockall
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mlockall.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mmap.texi
+Hash: bfee4ecb3ebec6d283db88b6cd390ef0301ce7a0937a80d25529c74f0b8f569e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mmap
+#@section @code{mmap}
+#@findex mmap
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mmap.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/modf.texi
+Hash: 36b354917e56d61e5900a08fab91604eaa9cc08e2d86e46267f8d898c818bf40
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node modf
+#@section @code{modf}
+#@findex modf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/modf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/modff.texi
+Hash: f7b8c38291b91e6ad35e04c0ebfb9097945ce77ebda26a3c990bf2fe1aaea28a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node modff
+#@section @code{modff}
+#@findex modff
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/modff.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/modfl.texi
+Hash: 3b679719015e572d20de79124954057ab191f83370ed03edd791b794cfe6bc43
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node modfl
+#@section @code{modfl}
+#@findex modfl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/modfl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mprotect.texi
+Hash: 3d0e06eb9e85ed18105ac9c8f7ad12a98e74b8b3a67de5e954dc6154290cb58c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mprotect
+#@section @code{mprotect}
+#@findex mprotect
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mprotect.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_close.texi
+Hash: a56bfb44d12f03e97f995b9a9c1633b24f89498f43ebbc542b4d352b1778cd08
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_close
+#@section @code{mq_close}
+#@findex mq_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_close.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_getattr.texi
+Hash: 8ac60fce24f63e597e3177997e50fb60bcc5fb27a291934c400a0648f9326552
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_getattr
+#@section @code{mq_getattr}
+#@findex mq_getattr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_getattr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_notify.texi
+Hash: e0ba4512bebe0e27c550f7b746e54cb1925f3b3db361afaa8f4ee31a7e528710
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_notify
+#@section @code{mq_notify}
+#@findex mq_notify
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_notify.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_open.texi
+Hash: 8849def00e0a469a4c36a935d2a9edacc7a8fca13afc8d0b189b1ab3a8c4a263
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_open
+#@section @code{mq_open}
+#@findex mq_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_receive.texi
+Hash: 41a216e485977c77bc0469b7caca4239d7b859ee983130f7cbb60df8b0c743e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_receive
+#@section @code{mq_receive}
+#@findex mq_receive
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_receive.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_send.texi
+Hash: 034db31411edca3bd8d9aa67b8dcebc8bda230d3dfe632da530c17bd4c4544d4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_send
+#@section @code{mq_send}
+#@findex mq_send
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_send.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_setattr.texi
+Hash: e5a4f564cc977a25d0ee56ff5129950ab519621fa7e8161649ef772f72159396
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_setattr
+#@section @code{mq_setattr}
+#@findex mq_setattr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_setattr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_timedreceive.texi
+Hash: 8d49fce0e031fc61180b5352a420b1fe8ba491b8ecf4ccba972e3e9ebd6e7631
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_timedreceive
+#@section @code{mq_timedreceive}
+#@findex mq_timedreceive
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_timedreceive.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_timedsend.texi
+Hash: a79f94772aefae158a027486aea868c68d2fe9e08eaf409ec3540d187dc16f00
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_timedsend
+#@section @code{mq_timedsend}
+#@findex mq_timedsend
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_timedsend.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mq_unlink.texi
+Hash: 7b5dab50039e7c0b0f3170569e637158b1c1bf41c38e13d14986cea14f56c25d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mq_unlink
+#@section @code{mq_unlink}
+#@findex mq_unlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mq_unlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/mrand48.texi
+Hash: 77b10e37a5687d7495e536135140dd9e074b12afc20f2d3e3dd07073057b8972
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mrand48
+#@section @code{mrand48}
+#@findex mrand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/mrand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/msgctl.texi
+Hash: 46d3ee99b2282ef2910c1b2592050c0cf79178bff7eae0c92ca2ac2f7336b2a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node msgctl
+#@section @code{msgctl}
+#@findex msgctl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msgctl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/msgget.texi
+Hash: 58fc127eae240377ef7505629f2570cf4e3276d5d301994fcb171e5d6b367ffc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node msgget
+#@section @code{msgget}
+#@findex msgget
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msgget.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/msgrcv.texi
+Hash: 88bf2464eb8f30cbb7678eb5f8582cf8d2c4644bc486f30146d77d2064e10c7b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node msgrcv
+#@section @code{msgrcv}
+#@findex msgrcv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msgrcv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/msgsnd.texi
+Hash: 9f75f5e72c64235284ea705f9b5fe2e6f9aea288231af9bc5dfaf7f66a26fa7f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node msgsnd
+#@section @code{msgsnd}
+#@findex msgsnd
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msgsnd.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/msync.texi
+Hash: ff9ca91d2e004f54a4b0ef17bb84d7b272507c512312101dae3bd3af1be33e90
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node msync
+#@section @code{msync}
+#@findex msync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/msync.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/munlock.texi
+Hash: f441bed9fcbcb0651991726777c715db07ca4847e81820ede03031a157d97c9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node munlock
+#@section @code{munlock}
+#@findex munlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/munlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/munlockall.texi
+Hash: 550be841155556e1b32abab434902c90652e6a481f0e539fa6ad9f0342967900
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node munlockall
+#@section @code{munlockall}
+#@findex munlockall
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/munlockall.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/munmap.texi
+Hash: 47168b653c372c13df047fa6fdb676f3064d2f2a0968c7e9dcd0383d16134841
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node munmap
+#@section @code{munmap}
+#@findex munmap
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/munmap.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nan.texi
+Hash: 0a369ac906fcd75126107c5a2079e19d39ac77c16fff7959d1283f3692f2d6c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nan
+#@section @code{nan}
+#@findex nan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nanf.texi
+Hash: ddff9bef8fbddbb5702b052b2591f73ae516edafe27040fe81d4abbdbc0d2dd8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nanf
+#@section @code{nanf}
+#@findex nanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nanl.texi
+Hash: 55f965fb9e233ea8afdd9b3ef17ce5d14877c6ac793e0c9e8b160ac423075509
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nanl
+#@section @code{nanl}
+#@findex nanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nanosleep.texi
+Hash: 74dbeddd80b4214c4974b632dae914216068c850827943c4904342e11ef8a2a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nanosleep
+#@section @code{nanosleep}
+#@findex nanosleep
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nanosleep.html}
+#
+#Gnulib module: nanosleep
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 2.4, mingw, Interix 3.5, BeOS.
+#@item
+#This function reports failure when called with small arguments such as 1 ns
+
+File: ./doc/posix-functions/nearbyint.texi
+Hash: 13393f4950af6047d63e095573a302430f81f67dc0c50408609af16e34d6e142
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nearbyint
+#@section @code{nearbyint}
+#@findex nearbyint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nearbyint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nearbyintf.texi
+Hash: 658e59bc27cd904e0cc47775321320c8377162f26b6d18de60806a40b96e1352
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nearbyintf
+#@section @code{nearbyintf}
+#@findex nearbyintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nearbyintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nearbyintl.texi
+Hash: 661f4dab520ac6b7bb2b11af811a20f3f94e1316de51decb0473347458399b8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nearbyintl
+#@section @code{nearbyintl}
+#@findex nearbyintl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nearbyintl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/newlocale.texi
+Hash: c04df75e62461fd14ae6c3d3ebe84ee9df02879c42e5ec26e3badb347e8a822b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node newlocale
+#@section @code{newlocale}
+#@findex newlocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/newlocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nextafter.texi
+Hash: 23887e9fbefc390b519abbea6463ab6aa11624d06486049a55f9027ab63e0297
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nextafter
+#@section @code{nextafter}
+#@findex nextafter
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nextafter.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/nextafterf.texi
+Hash: a0739a1545689a8a038e7f98cb5da84b0c2e4c668767cc241f669e1704194921
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nextafterf
+#@section @code{nextafterf}
+#@findex nextafterf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nextafterf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nextafterl.texi
+Hash: d20c3001ccd5e5ce8d6ef61d92bfc6ecf9e9bca011df94ced795f48cf3dc789f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nextafterl
+#@section @code{nextafterl}
+#@findex nextafterl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nextafterl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nexttoward.texi
+Hash: 837e8d7788c026deb3665bb845b6da33504cb7b33b457b86b2b8ec0916d1947a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nexttoward
+#@section @code{nexttoward}
+#@findex nexttoward
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nexttoward.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nexttowardf.texi
+Hash: bb03bf44dad18e6e2a6f1c7a066871d7a89d2fbeb520bf1399522c9d7b35ba98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nexttowardf
+#@section @code{nexttowardf}
+#@findex nexttowardf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nexttowardf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nexttowardl.texi
+Hash: 082ca469237887b3be9e6ddbe4ae66c7f5eed2f7fb7062b0459ab448bd830692
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nexttowardl
+#@section @code{nexttowardl}
+#@findex nexttowardl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nexttowardl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nftw.texi
+Hash: 7fc01f24b0225147ab2c52dc7481fb2663bb13253c9fc0a485991f3bc872b472
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nftw
+#@section @code{nftw}
+#@findex nftw
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nftw.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nice.texi
+Hash: 58412f950c076fdb2593a0a7f2cefa1a80d9d131fb4c3052ea7ef9dc859fecf5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nice
+#@section @code{nice}
+#@findex nice
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nice.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nl_langinfo.texi
+Hash: 8cf67efe07150e73545ca1afa1ae02d47bff384e876aed78f1b75998dc918249
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nl_langinfo
+#@section @code{nl_langinfo}
+#@findex nl_langinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nl_langinfo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nl_langinfo_l.texi
+Hash: 46d1682b37126005dcf251b40c854bbc8203ebdd0e7574f91535b4bfa8be7ead
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nl_langinfo_l
+#@section @code{nl_langinfo_l}
+#@findex nl_langinfo_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nl_langinfo_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/nrand48.texi
+Hash: e36c51acdcb113964729a4a2eeb0ac143221961015efa80b42f2cd34f7270f66
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nrand48
+#@section @code{nrand48}
+#@findex nrand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/nrand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ntohl.texi
+Hash: 84d74eeaededb546d305d99930dcbdc1ec3918999eb3fb851e28a2e7e37774c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ntohl
+#@section @code{ntohl}
+#@findex ntohl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ntohl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ntohs.texi
+Hash: 346b0124f78840014b5262a674e22a0703994c64c3adb0382afd49fafd802917
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ntohs
+#@section @code{ntohs}
+#@findex ntohs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ntohs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/open.texi
+Hash: 9e866007c32b3f629186f32bce84b0a2a3e8cc628147c7d200325bd60e5b530e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node open
+#@section @code{open}
+#@findex open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/open.html}
+#
+#Gnulib module: open, fchdir
+#
+#Portability problems fixed by the Gnulib module open:
+#@itemize
+#@item
+#This function does not fail when the file name argument ends in a slash
+#and (without the slash) names a nonexistent file or a file that is not a
+#directory, on some platforms:
+#HP-UX 11.00, Solaris 9, Irix 5.3.
+
+File: ./doc/posix-functions/open_memstream.texi
+Hash: 4afd28eeda8db17ab5af1f4571340f1593a74742069e35c8cf025d3e3edabb55
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node open_memstream
+#@section @code{open_memstream}
+#@findex open_memstream
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/open_memstream.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/open_wmemstream.texi
+Hash: ab0f60c7c0a5d80df458598941a4f36408ebce2fc18455086a89a587a8b6e310
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node open_wmemstream
+#@section @code{open_wmemstream}
+#@findex open_wmemstream
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/open_wmemstream.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/openat.texi
+Hash: 80fc53551f0a774542028faa3cd7dd7f257f96517e5a3bbf7f15d60c3fcab7ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node openat
+#@section @code{openat}
+#@findex openat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/openat.html}
+#
+#Gnulib module: openat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+
+File: ./doc/posix-functions/opendir.texi
+Hash: 409c08736bec42c21409505d8b5549e441a5af2426e3bd68dfcc7c0b5880f4f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node opendir
+#@section @code{opendir}
+#@findex opendir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/opendir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/openlog.texi
+Hash: 40e398533022603918e1db1621467abcac006a911ad223ea5ea7b80d98a69100
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node openlog
+#@section @code{openlog}
+#@findex openlog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/openlog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/optarg.texi
+Hash: e9113b3f78a586f104d7a7e3bdce30cec774d7049394ed1c71473825b52c869e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node optarg
+#@section @code{optarg}
+#@findex optarg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/optarg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/opterr.texi
+Hash: ddda71a2c3fda560885aaf6c435efd85469d21bcb910f55e513971e25fb01fd2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node opterr
+#@section @code{opterr}
+#@findex opterr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/opterr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/optind.texi
+Hash: 192b89c39131f5ac56cb1a3d9199545cfee9c6fe3a13676980cf647c873d9124
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node optind
+#@section @code{optind}
+#@findex optind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/optind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/optopt.texi
+Hash: d9f81d4c490100d92492662b974e59f12d07be11c28dc993037a84dfb37fdc0b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node optopt
+#@section @code{optopt}
+#@findex optopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/optopt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pathconf.texi
+Hash: c0dbda6dd42136873beaddaea136fa8d5e46596bfdc335e578a88f1954718794
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pathconf
+#@section @code{pathconf}
+#@findex pathconf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pathconf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pause.texi
+Hash: 7be4007b12a3aa330139297e66ae074f67ed9e19f3efa28582619f8c071c874a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pause
+#@section @code{pause}
+#@findex pause
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pause.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pclose.texi
+Hash: 4361d8543ae29315a5c5e958d4db37667ba5317d2a3b334cc611046b77e73a7c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pclose
+#@section @code{pclose}
+#@findex pclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pclose.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/perror.texi
+Hash: b652cbfe9d21d2bbd3ee7784a6a707d27fc1e60293c59183002538640dc279f3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node perror
+#@section @code{perror}
+#@findex perror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/perror.html}
+#
+#Gnulib module: perror
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not support the error values that are specified by POSIX
+#but not defined by the system, on some platforms:
+#OpenBSD 4.0, OSF/1 5.1, Cygwin 1.5.x, mingw.
+#@end itemize
+
+File: ./doc/posix-functions/pipe.texi
+Hash: cb47c3d1e90c0d73c702255148b3c20889270387c041db34e9c41b29920f90dc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pipe
+#@section @code{pipe}
+#@findex pipe
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pipe.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/poll.texi
+Hash: f05ad8c422fac0e80c3ae47f256e275d4a2f386ad1a8c258b3a40f16337f8dbe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node poll
+#@section @code{poll}
+#@findex poll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/poll.html}
+#
+#Gnulib module: poll
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@item
+#This function doesn't work on special files like @file{/dev/null} and ttys like
+
+File: ./doc/posix-functions/popen.texi
+Hash: 4c7662a6c9a1f5fec49e1ed88fe924f8ba389ced30dc44570469332009095c20
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node popen
+#@section @code{popen}
+#@findex popen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/popen.html}
+#
+#Gnulib module: popen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some platforms start the child with closed stdin or stdout if the
+#standard descriptors were closed in the parent:
+#Cygwin 1.5.x.
+#@end itemize
+
+File: ./doc/posix-functions/posix_fadvise.texi
+Hash: ea8c8e4c81a8ad7a313cb6d2071239f26e453d6034b32cad4214ea95e4536247
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_fadvise
+#@section @code{posix_fadvise}
+#@findex posix_fadvise
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_fadvise.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_fallocate.texi
+Hash: 96ba33b3301a1d3b05885d284a49dcbeb84b73adc39ac1b7752f694e0f2eeab2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_fallocate
+#@section @code{posix_fallocate}
+#@findex posix_fallocate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_fallocate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_madvise.texi
+Hash: 98abbcde99ca724ebecd7393f0bdc2f4425d743cdd8680118aa3df87c6d3fe81
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_madvise
+#@section @code{posix_madvise}
+#@findex posix_madvise
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_madvise.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_mem_offset.texi
+Hash: d18ab511cf764975dd21a03e966791ffe4e4f7352616a030dcaeca77dde7fca9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_mem_offset
+#@section @code{posix_mem_offset}
+#@findex posix_mem_offset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_mem_offset.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_memalign.texi
+Hash: 02a09479dd9153ce72aaa2dedefd1dd8b5e57f2b88e5f8d303f49dc60e4b3246
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_memalign
+#@section @code{posix_memalign}
+#@findex posix_memalign
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_memalign.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_openpt.texi
+Hash: 0f0fb194f87d863cb37d2585c3b4f6bde4369d1319d5d306c27d39d61844d363
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_openpt
+#@section @code{posix_openpt}
+#@findex posix_openpt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_openpt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_spawn.texi
+Hash: e8116c7284d0ec8e3dc77be2760763dd4af6ccb6994f2021dd212cdf8e8ada0f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawn
+#@section @code{posix_spawn}
+#@findex posix_spawn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn.html}
+#
+#Gnulib module: posix_spawn
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@item
+#When this function fails, it causes the stdio buffer contents to be output
+
+File: ./doc/posix-functions/posix_spawn_file_actions_addclose.texi
+Hash: 5828164a4deeee9c954a4136871b3177b6eecfce75506176eb6cf3a4a9a62b21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawn_file_actions_addclose
+#@section @code{posix_spawn_file_actions_addclose}
+#@findex posix_spawn_file_actions_addclose
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_addclose.html}
+#
+#Gnulib module: posix_spawn_file_actions_addclose
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawn_file_actions_adddup2.texi
+Hash: 23e93dc2b98cc5650771f750cd28d8a2c3cfa59af0b565de46c712cf0b06ecd8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawn_file_actions_adddup2
+#@section @code{posix_spawn_file_actions_adddup2}
+#@findex posix_spawn_file_actions_adddup2
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_adddup2.html}
+#
+#Gnulib module: posix_spawn_file_actions_adddup2
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawn_file_actions_addopen.texi
+Hash: 522057f36d8f4a88c26630242bc87528fe3805438388b44c93d97243e5e86ee4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawn_file_actions_addopen
+#@section @code{posix_spawn_file_actions_addopen}
+#@findex posix_spawn_file_actions_addopen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_addopen.html}
+#
+#Gnulib module: posix_spawn_file_actions_addopen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawn_file_actions_destroy.texi
+Hash: 0320d879a8c7e3d36619bfb1f542513ab285a601fc716bcab9fdea8764842984
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawn_file_actions_destroy
+#@section @code{posix_spawn_file_actions_destroy}
+#@findex posix_spawn_file_actions_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_destroy.html}
+#
+#Gnulib module: posix_spawn_file_actions_destroy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawn_file_actions_init.texi
+Hash: 9c12cdbb6ac1e39ce5f80f8dacd02b40fdce55904a2e4d3273598a7f1bffe25b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawn_file_actions_init
+#@section @code{posix_spawn_file_actions_init}
+#@findex posix_spawn_file_actions_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawn_file_actions_init.html}
+#
+#Gnulib module: posix_spawn_file_actions_init
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_destroy.texi
+Hash: 385601a0adb59e6a946cc5ae70ad2121a0fc1f9cf9bde84bbbf7067ec3c2cc3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_destroy
+#@section @code{posix_spawnattr_destroy}
+#@findex posix_spawnattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_destroy.html}
+#
+#Gnulib module: posix_spawnattr_destroy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_getflags.texi
+Hash: 695f28460ef4a0e41614dff4ca0af1d3a1198c9ef166951ba33c8c1c6b9b83fb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_getflags
+#@section @code{posix_spawnattr_getflags}
+#@findex posix_spawnattr_getflags
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getflags.html}
+#
+#Gnulib module: posix_spawnattr_getflags
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_getpgroup.texi
+Hash: 26c66e902b05529bac72419304ce248d35a25c40c99998b6cd93e4ea45cf0df7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_getpgroup
+#@section @code{posix_spawnattr_getpgroup}
+#@findex posix_spawnattr_getpgroup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getpgroup.html}
+#
+#Gnulib module: posix_spawnattr_getpgroup
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_getschedparam.texi
+Hash: 3e2294ef0ab8ac17b6d863152ba655db225f70152c455f422c01d3f765dea9b0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_getschedparam
+#@section @code{posix_spawnattr_getschedparam}
+#@findex posix_spawnattr_getschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getschedparam.html}
+#
+#Gnulib module: posix_spawnattr_getschedparam
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_getschedpolicy.texi
+Hash: dd9c3f74a80529c49eb3962334b976c600292f50854c2eac240b32cdc573d28d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_getschedpolicy
+#@section @code{posix_spawnattr_getschedpolicy}
+#@findex posix_spawnattr_getschedpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getschedpolicy.html}
+#
+#Gnulib module: posix_spawnattr_getschedpolicy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_getsigdefault.texi
+Hash: 3e7e418f2d92c3196aa025cc49aa12be6db364564c10b87d44627ef5fb4f2807
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_getsigdefault
+#@section @code{posix_spawnattr_getsigdefault}
+#@findex posix_spawnattr_getsigdefault
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getsigdefault.html}
+#
+#Gnulib module: posix_spawnattr_getsigdefault
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_getsigmask.texi
+Hash: 26b824db4f09a65050f6350b6971cbf95f99ad40d1c7659764abde3e54fd3227
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_getsigmask
+#@section @code{posix_spawnattr_getsigmask}
+#@findex posix_spawnattr_getsigmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_getsigmask.html}
+#
+#Gnulib module: posix_spawnattr_getsigmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_init.texi
+Hash: 05f5786c234980a42a111d033f5130bc683e09bd9cd420dbb993e0db4223241f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_init
+#@section @code{posix_spawnattr_init}
+#@findex posix_spawnattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_init.html}
+#
+#Gnulib module: posix_spawnattr_init
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_setflags.texi
+Hash: c3de08bb23b2e056a9d1fa457d78be2d64717b957d66d6f7705215017389224b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_setflags
+#@section @code{posix_spawnattr_setflags}
+#@findex posix_spawnattr_setflags
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setflags.html}
+#
+#Gnulib module: posix_spawnattr_setflags
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_setpgroup.texi
+Hash: 548430de694da18955230250c1034b6b515fcf30129079d539a13f426c9fe22c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_setpgroup
+#@section @code{posix_spawnattr_setpgroup}
+#@findex posix_spawnattr_setpgroup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setpgroup.html}
+#
+#Gnulib module: posix_spawnattr_setpgroup
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_setschedparam.texi
+Hash: af7be1846ac7bd0fc6d107f8399458067710b5e221a3b728512b6a6204c21913
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_setschedparam
+#@section @code{posix_spawnattr_setschedparam}
+#@findex posix_spawnattr_setschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setschedparam.html}
+#
+#Gnulib module: posix_spawnattr_setschedparam
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_setschedpolicy.texi
+Hash: 3adfc655a7b0cf55cc89761c9d64309a2cbf0adc724701cd3e2b2bd9a51f09ff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_setschedpolicy
+#@section @code{posix_spawnattr_setschedpolicy}
+#@findex posix_spawnattr_setschedpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setschedpolicy.html}
+#
+#Gnulib module: posix_spawnattr_setschedpolicy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_setsigdefault.texi
+Hash: cb24fc7291758ad7f30bad7a96cdd26f0defa4f28fec0be8d02a1e2ed6bc20a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_setsigdefault
+#@section @code{posix_spawnattr_setsigdefault}
+#@findex posix_spawnattr_setsigdefault
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setsigdefault.html}
+#
+#Gnulib module: posix_spawnattr_setsigdefault
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnattr_setsigmask.texi
+Hash: 3661e1c23a65c97c9af7008e3af513555234a91aaaeffc6e801f0757067618d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnattr_setsigmask
+#@section @code{posix_spawnattr_setsigmask}
+#@findex posix_spawnattr_setsigmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnattr_setsigmask.html}
+#
+#Gnulib module: posix_spawnattr_setsigmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/posix_spawnp.texi
+Hash: 55d59c76213c7914c86b8a3fb623b4c073d49641d72949547638acb49c9019d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_spawnp
+#@section @code{posix_spawnp}
+#@findex posix_spawnp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_spawnp.html}
+#
+#Gnulib module: posix_spawnp
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin, mingw, Interix 3.5, BeOS.
+#@item
+#When this function fails, it causes the stdio buffer contents to be output
+
+File: ./doc/posix-functions/posix_trace_attr_destroy.texi
+Hash: 26c37bafe4af14e0a6c567e810277b9b5847122cf0f87cac16ff94a8b8e214be
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_destroy
+#@section @code{posix_trace_attr_destroy}
+#@findex posix_trace_attr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getclockres.texi
+Hash: c6df2399c6ebb47e6328cf303b80492f9748c8a4f167ef2f563cda59860e2cfd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getclockres
+#@section @code{posix_trace_attr_getclockres}
+#@findex posix_trace_attr_getclockres
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getclockres.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getcreatetime.texi
+Hash: 0bba6eb668452771990a8c1dfff7134f74e136d9f8618c4228b9f56cdd51e442
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getcreatetime
+#@section @code{posix_trace_attr_getcreatetime}
+#@findex posix_trace_attr_getcreatetime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getcreatetime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getgenversion.texi
+Hash: 3494fd0e404cc8a99e72fc28c50d13b44d0438785ac74292e84c20347da5a40b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getgenversion
+#@section @code{posix_trace_attr_getgenversion}
+#@findex posix_trace_attr_getgenversion
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getgenversion.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getinherited.texi
+Hash: 9c3dc2682ee4f8efbe8238a459642164bd53c4a73c5054f8cdc73dcb152db424
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getinherited
+#@section @code{posix_trace_attr_getinherited}
+#@findex posix_trace_attr_getinherited
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getinherited.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getlogfullpolicy.texi
+Hash: c6e5f0d91562ec40cc54987dbb2c567e9c66d6c87ac0954dca87d52b5b9f8e60
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getlogfullpolicy
+#@section @code{posix_trace_attr_getlogfullpolicy}
+#@findex posix_trace_attr_getlogfullpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getlogfullpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getlogsize.texi
+Hash: 04803d6d78b225f53aa3c6147bba5367f18ba362fcb9b9b55fba0719c8d75776
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getlogsize
+#@section @code{posix_trace_attr_getlogsize}
+#@findex posix_trace_attr_getlogsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getlogsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getmaxdatasize.texi
+Hash: c25ba97d572d5ca4f69629f2a78822d6aff93b73f4da397cf43e16e3b61a6aac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getmaxdatasize
+#@section @code{posix_trace_attr_getmaxdatasize}
+#@findex posix_trace_attr_getmaxdatasize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getmaxdatasize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getmaxsystemeventsize.texi
+Hash: b0a2f0041320b5b3ad358757b24ed4fa1e016672af6746d8933e84075d33360e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getmaxsystemeventsize
+#@section @code{posix_trace_attr_getmaxsystemeventsize}
+#@findex posix_trace_attr_getmaxsystemeventsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getmaxsystemeventsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getmaxusereventsize.texi
+Hash: 52791fc875f1f82253f29df6b7455f7e038f106efc716777d0f6fa70436a9822
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getmaxusereventsize
+#@section @code{posix_trace_attr_getmaxusereventsize}
+#@findex posix_trace_attr_getmaxusereventsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getmaxusereventsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getname.texi
+Hash: 37e62b2df1671442499b27356f9b6d3b77eb20ee5016cd5b4b15952e434d472f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getname
+#@section @code{posix_trace_attr_getname}
+#@findex posix_trace_attr_getname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getstreamfullpolicy.texi
+Hash: 08910c37877f7e37e6eb305bbefb233cdc16865ebbb89081846a042134cae954
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getstreamfullpolicy
+#@section @code{posix_trace_attr_getstreamfullpolicy}
+#@findex posix_trace_attr_getstreamfullpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getstreamfullpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_getstreamsize.texi
+Hash: bcc8352edee634fdc1577f4039f78bd777f7964032fcd36127a7251536f3cd8c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_getstreamsize
+#@section @code{posix_trace_attr_getstreamsize}
+#@findex posix_trace_attr_getstreamsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_getstreamsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_init.texi
+Hash: a2e83a06a534390b4974622a6b4d2ac1c637e52b91cf34d49576569d44148323
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_init
+#@section @code{posix_trace_attr_init}
+#@findex posix_trace_attr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_setinherited.texi
+Hash: 15dd2776c5a4bae1ff25c0388da2c6fe92ff206b9cdbf3c29544d97f2ba7465c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_setinherited
+#@section @code{posix_trace_attr_setinherited}
+#@findex posix_trace_attr_setinherited
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setinherited.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_setlogfullpolicy.texi
+Hash: 6123eeb6328f6381169708420c2560630406f4964acc3c260c358ed4f9a68cda
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_setlogfullpolicy
+#@section @code{posix_trace_attr_setlogfullpolicy}
+#@findex posix_trace_attr_setlogfullpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setlogfullpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_setlogsize.texi
+Hash: b25853b00b814a81dd0c5814c1d42f14d70347723160104fcd5d43ddd8d42077
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_setlogsize
+#@section @code{posix_trace_attr_setlogsize}
+#@findex posix_trace_attr_setlogsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setlogsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_setmaxdatasize.texi
+Hash: 6bdf3f85571c822f319ac0ff9e310fa9bfcf584558103f79368e262095a9c6ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_setmaxdatasize
+#@section @code{posix_trace_attr_setmaxdatasize}
+#@findex posix_trace_attr_setmaxdatasize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setmaxdatasize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_setname.texi
+Hash: 64e32d78a18d51e8bfd3b23f91878fb761b87cff345ed77fed1d753114b50c10
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_setname
+#@section @code{posix_trace_attr_setname}
+#@findex posix_trace_attr_setname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_setstreamfullpolicy.texi
+Hash: 7123836aad4e0fb02113ade7138723da2ba36370a18b5b0751b1efbceb8f444c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_setstreamfullpolicy
+#@section @code{posix_trace_attr_setstreamfullpolicy}
+#@findex posix_trace_attr_setstreamfullpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setstreamfullpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_attr_setstreamsize.texi
+Hash: 5e25d2adbc668b88bbd5d7a0ed7d0aa2c96a97c05f31f042fb5da5d54131db92
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_attr_setstreamsize
+#@section @code{posix_trace_attr_setstreamsize}
+#@findex posix_trace_attr_setstreamsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_attr_setstreamsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_clear.texi
+Hash: 246ba5555dc290c8b1e1320450b1caf1e1557a92ffaa798ce663c95dfda7e0e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_clear
+#@section @code{posix_trace_clear}
+#@findex posix_trace_clear
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_clear.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_close.texi
+Hash: f8b48c02b26295e68c4219cd771eb0485349083c7fd45d6fa34e4dc34e5adba5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_close
+#@section @code{posix_trace_close}
+#@findex posix_trace_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_close.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_create.texi
+Hash: 7fcab2cefac75343564f45dbea419a5e305edbbcdf582d145a6314dc15a79296
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_create
+#@section @code{posix_trace_create}
+#@findex posix_trace_create
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_create.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_create_withlog.texi
+Hash: 60662414b3106f8d3a4ca1c75fc0484fa0d8d79d90421b817b18d77f2b516f7a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_create_withlog
+#@section @code{posix_trace_create_withlog}
+#@findex posix_trace_create_withlog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_create_withlog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_event.texi
+Hash: f60fcf4bc32cf69788ea0b35884a8fdacd82591cbd0161391ff5eb298baf6cee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_event
+#@section @code{posix_trace_event}
+#@findex posix_trace_event
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_event.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventid_equal.texi
+Hash: e98ad15e6d288cda7cd84504ad757be753c58e981254126a7013557aea9fd9c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventid_equal
+#@section @code{posix_trace_eventid_equal}
+#@findex posix_trace_eventid_equal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventid_equal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventid_get_name.texi
+Hash: c7596250743fd190cad5213006d0b9666c3a936be1dcebe04bdbe171a6cd0749
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventid_get_name
+#@section @code{posix_trace_eventid_get_name}
+#@findex posix_trace_eventid_get_name
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventid_get_name.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventid_open.texi
+Hash: b0962f6ecae87f4770e047b7d06cbf279151b4e50c6379241b1313e47e552d0a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventid_open
+#@section @code{posix_trace_eventid_open}
+#@findex posix_trace_eventid_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventid_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventset_add.texi
+Hash: 1a546240a8fc1faa3f949ef383a67908b8070463825c543c0a4279b1ca25f784
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventset_add
+#@section @code{posix_trace_eventset_add}
+#@findex posix_trace_eventset_add
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_add.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventset_del.texi
+Hash: 972884e849006cdfeb74f21d360284b7f8c194ecb4114409b8a0d6ce7784242e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventset_del
+#@section @code{posix_trace_eventset_del}
+#@findex posix_trace_eventset_del
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_del.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventset_empty.texi
+Hash: a8873a5c14dd2b52a595ecdbad9fde48f9b8d1cd659a88e899e4b3806908eeed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventset_empty
+#@section @code{posix_trace_eventset_empty}
+#@findex posix_trace_eventset_empty
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_empty.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventset_fill.texi
+Hash: 4aa69e4079390a52ce6a9d3e70c0b2e66e884db7cdb9dd8836333ec31ef6ca8b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventset_fill
+#@section @code{posix_trace_eventset_fill}
+#@findex posix_trace_eventset_fill
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_fill.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventset_ismember.texi
+Hash: b2bcb139cf0f406f68a7da6a050f50a20ce76053be2cf598d5ce01720859938f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventset_ismember
+#@section @code{posix_trace_eventset_ismember}
+#@findex posix_trace_eventset_ismember
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventset_ismember.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventtypelist_getnext_id.texi
+Hash: 8168eab83a8019726c73e5a3eafd53fb848cb20f17bfb391eecef7f726781423
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventtypelist_getnext_id
+#@section @code{posix_trace_eventtypelist_getnext_id}
+#@findex posix_trace_eventtypelist_getnext_id
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventtypelist_getnext_id.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_eventtypelist_rewind.texi
+Hash: a8b698cb04bae7452a1aa92c9af23fb6bb24d78a4de08d7f6e7b2b6774769be9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_eventtypelist_rewind
+#@section @code{posix_trace_eventtypelist_rewind}
+#@findex posix_trace_eventtypelist_rewind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_eventtypelist_rewind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_flush.texi
+Hash: 6adfa76be6079e6353cd3606c896b41897072e16923d73b136f08cbadc2a571c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_flush
+#@section @code{posix_trace_flush}
+#@findex posix_trace_flush
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_flush.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_get_attr.texi
+Hash: cdb6cef8bf0e98eb4ed074289005960626c82293df0ab4a32ea5527680c8e6de
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_get_attr
+#@section @code{posix_trace_get_attr}
+#@findex posix_trace_get_attr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_get_attr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_get_filter.texi
+Hash: b4e182e8a9af7d9168dd35eb4290462fb40be47f09e99710f4b84431a626f2c4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_get_filter
+#@section @code{posix_trace_get_filter}
+#@findex posix_trace_get_filter
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_get_filter.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_get_status.texi
+Hash: 71d6651b8f05644b9a642980d8e8b1a2923ae9dcfd58048c81e91f82c3356f7c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_get_status
+#@section @code{posix_trace_get_status}
+#@findex posix_trace_get_status
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_get_status.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_getnext_event.texi
+Hash: 49bead6bca4c38a5341f86b18485d77660b93f22e7b56d9f034ac4a8636f5b5d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_getnext_event
+#@section @code{posix_trace_getnext_event}
+#@findex posix_trace_getnext_event
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_getnext_event.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_open.texi
+Hash: fc529d52215c5e0f770f104bdbea24af448b43f1e793ade2b64d70205443868b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_open
+#@section @code{posix_trace_open}
+#@findex posix_trace_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_rewind.texi
+Hash: b3eff434d8501389631044c23517d57d12b9a80e0bdb7cac5b15fe1fee7b3bb1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_rewind
+#@section @code{posix_trace_rewind}
+#@findex posix_trace_rewind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_rewind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_set_filter.texi
+Hash: 4d7f6ea838ed6c51adbe31fa219a22b5df80e697e4814dbd9ecc8f269cf762ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_set_filter
+#@section @code{posix_trace_set_filter}
+#@findex posix_trace_set_filter
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_set_filter.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_shutdown.texi
+Hash: 9293a9916aeabb2c74c1bc62ccf37cbae78dc1276a9a7276ac61ca129a5843bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_shutdown
+#@section @code{posix_trace_shutdown}
+#@findex posix_trace_shutdown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_shutdown.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_start.texi
+Hash: f96fc628919e2fb8d1f0b687a9bf7590eb610167571abd2fafa736c37cfe9570
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_start
+#@section @code{posix_trace_start}
+#@findex posix_trace_start
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_start.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_stop.texi
+Hash: bdea8f560c0aa039862bbcf7dd669b6e17cbf3df5ffab49eb84d322a646fa644
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_stop
+#@section @code{posix_trace_stop}
+#@findex posix_trace_stop
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_stop.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_timedgetnext_event.texi
+Hash: e02e2628db360e9552151ea3cfdbe0d7cb10d05f5084c82be6fceac00c12fffc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_timedgetnext_event
+#@section @code{posix_trace_timedgetnext_event}
+#@findex posix_trace_timedgetnext_event
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_timedgetnext_event.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_trid_eventid_open.texi
+Hash: c90234d6928930eb571c09a335c80e685e6188844d6032c5cb4f08d1d346c4af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_trid_eventid_open
+#@section @code{posix_trace_trid_eventid_open}
+#@findex posix_trace_trid_eventid_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_trid_eventid_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_trace_trygetnext_event.texi
+Hash: d73011efa2346a98ca0b075ad9ca871f92a3a336c550aa614c44dabed4cbf0ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_trace_trygetnext_event
+#@section @code{posix_trace_trygetnext_event}
+#@findex posix_trace_trygetnext_event
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_trace_trygetnext_event.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_typed_mem_get_info.texi
+Hash: c1ffc2cdb081c341c855a6166079e907b5f30d2bbd089fcdf3d4a5efb4c3e8a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_typed_mem_get_info
+#@section @code{posix_typed_mem_get_info}
+#@findex posix_typed_mem_get_info
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_typed_mem_get_info.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/posix_typed_mem_open.texi
+Hash: c0923dcacc2e10d19cde0116b916900ee58bee17184540c4fc0fca56cf27afa5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node posix_typed_mem_open
+#@section @code{posix_typed_mem_open}
+#@findex posix_typed_mem_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/posix_typed_mem_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pow.texi
+Hash: 3588200be9beae88172c588ed3166f06aeaa63d7f7708b709e51179849668047
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pow
+#@section @code{pow}
+#@findex pow
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pow.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/powf.texi
+Hash: 2c20228be41c7ae06e16f334a350ecd67e67d780f15ab1ace0b981472ff76e5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node powf
+#@section @code{powf}
+#@findex powf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/powf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/powl.texi
+Hash: ec73f774d4f9e2730678a99849d7e449fa33553a4e00aa301eb3c37dee018529
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node powl
+#@section @code{powl}
+#@findex powl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/powl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pread.texi
+Hash: 94344ff20d9188dff7bcce1466828d3d8e19d41207d8c20e5eda87fce1752780
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pread
+#@section @code{pread}
+#@findex pread
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pread.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/printf.texi
+Hash: cc1b5932488eafd7041e224c3c5f101cd6d45de4c770de8eb00c90ce7f61f056
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node printf
+#@section @code{printf}
+#@findex printf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/printf.html}
+#
+#Gnulib module: printf-posix or stdio, sigpipe
+#
+#Portability problems fixed by Gnulib module @code{printf-posix}:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+
+File: ./doc/posix-functions/pselect.texi
+Hash: 2d26ab5240ac27a518b2e987ba8d79e7b2c2528bc6a94093db97760c1cd30f9a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pselect
+#@section @code{pselect}
+#@findex pselect
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pselect.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/psiginfo.texi
+Hash: 110101075e0eb4d997d3fcf1818bff6cd029be26a916d95148d0b02c9a3823a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node psiginfo
+#@section @code{psiginfo}
+#@findex psiginfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/psiginfo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/psignal.texi
+Hash: 2c42cdb7d36d4524202363bbc6c21af4dcf480f7996acbb464831b3501bb2401
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node psignal
+#@section @code{psignal}
+#@findex psignal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/psignal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_atfork.texi
+Hash: bd6f0ab6ff93e450c2bc4ca3c2863c21a3fe0696083d275cb1a9d1605ed02eed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_atfork
+#@section @code{pthread_atfork}
+#@findex pthread_atfork
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_atfork.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_destroy.texi
+Hash: d033d6af41be3237328cbc28811f8e729e3d295b2e92e0c7f5051a73cfffdbf0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_destroy
+#@section @code{pthread_attr_destroy}
+#@findex pthread_attr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_getdetachstate.texi
+Hash: 6e2a3ef0f6207878bb09ad68185f8e07bc1b0d23b1c7551d5445d9439f63cadb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getdetachstate
+#@section @code{pthread_attr_getdetachstate}
+#@findex pthread_attr_getdetachstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getdetachstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_getguardsize.texi
+Hash: dcc2fc4b9fa5d43877dbdae216c9a782af6ddd21b4cc251c6f0884d6ead8ddcf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getguardsize
+#@section @code{pthread_attr_getguardsize}
+#@findex pthread_attr_getguardsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getguardsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_getinheritsched.texi
+Hash: a6a1f044119243f02220493504aea24e555e10d684d75f76be7703cdc7907117
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getinheritsched
+#@section @code{pthread_attr_getinheritsched}
+#@findex pthread_attr_getinheritsched
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getinheritsched.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_getschedparam.texi
+Hash: acf2bc407210fd0a87ea5a8bc8aca6ba382914a2ad8788c13589d65f5efb4662
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getschedparam
+#@section @code{pthread_attr_getschedparam}
+#@findex pthread_attr_getschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getschedparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_getschedpolicy.texi
+Hash: 6568aff8a62e24e659319143e01e108068eb82ecb1d73e9305ba8e3af43f1dbd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getschedpolicy
+#@section @code{pthread_attr_getschedpolicy}
+#@findex pthread_attr_getschedpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getschedpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_getscope.texi
+Hash: 53127e6a0846038a197f491f7d9d4486cbd9e0d92e23182eca4a23643b7c7987
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getscope
+#@section @code{pthread_attr_getscope}
+#@findex pthread_attr_getscope
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getscope.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_getstack.texi
+Hash: d55b1da7b04008428ba631234be9cfb38b53312aa69c148e116b682139eaf108
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getstack
+#@section @code{pthread_attr_getstack}
+#@findex pthread_attr_getstack
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getstack.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_getstacksize.texi
+Hash: 345f3ee43d1e0f2efa8d4fab2b196d824b44868ee55bf828d4135653b9cb64e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_getstacksize
+#@section @code{pthread_attr_getstacksize}
+#@findex pthread_attr_getstacksize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_getstacksize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_init.texi
+Hash: 5ac9b50be719d7ce090e57f14970fbaa0109b04968d270e9f52a9c3d9e8508ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_init
+#@section @code{pthread_attr_init}
+#@findex pthread_attr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_setdetachstate.texi
+Hash: d78b76b4ed5cfe55a6f5e4ed77d137e8f317ea2d8f6eb5b160a72f7c5567e411
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setdetachstate
+#@section @code{pthread_attr_setdetachstate}
+#@findex pthread_attr_setdetachstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setdetachstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_setguardsize.texi
+Hash: e7fac577329d9a3b6446d353473c83fd01c59f7e8548ad31cd292354304ac6f9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setguardsize
+#@section @code{pthread_attr_setguardsize}
+#@findex pthread_attr_setguardsize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setguardsize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_setinheritsched.texi
+Hash: cf31a0c5775bfd82489898e7c3f8c5b1bcf03787ac97d313de504a9f1a640463
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setinheritsched
+#@section @code{pthread_attr_setinheritsched}
+#@findex pthread_attr_setinheritsched
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setinheritsched.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_setschedparam.texi
+Hash: a01e60c15e39cbd05318117c6a353663a658cff4c0060c732552bc0735e1a0b5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setschedparam
+#@section @code{pthread_attr_setschedparam}
+#@findex pthread_attr_setschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setschedparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_setschedpolicy.texi
+Hash: 28c89cdb4b18dfaab2c400b96220600365c448c666125d97cc54c888ee6d4623
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setschedpolicy
+#@section @code{pthread_attr_setschedpolicy}
+#@findex pthread_attr_setschedpolicy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setschedpolicy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_setscope.texi
+Hash: 546a917a46a49835d47fb7f4b9be526e27c99339c85e86b332417f39456da902
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setscope
+#@section @code{pthread_attr_setscope}
+#@findex pthread_attr_setscope
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setscope.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_setstack.texi
+Hash: 3218b205686cd35238646c3f6be7ce58a9283171a1a242eb6d7949da02576197
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setstack
+#@section @code{pthread_attr_setstack}
+#@findex pthread_attr_setstack
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setstack.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_attr_setstacksize.texi
+Hash: 15ec368b367a6144ee7d39b56b4a4e994ccc0fc231413484a5bc5596417964b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_attr_setstacksize
+#@section @code{pthread_attr_setstacksize}
+#@findex pthread_attr_setstacksize
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_attr_setstacksize.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_barrier_destroy.texi
+Hash: 6431e7465c2f611d477e2e0bbed31e7cb6dfa1f57afed483e3de3d06fbabc55d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_barrier_destroy
+#@section @code{pthread_barrier_destroy}
+#@findex pthread_barrier_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrier_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_barrier_init.texi
+Hash: 2ccf8776f1720db644b2e40f5e45b2accd8e3a5134f9f5446d6ac243729f7ad7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_barrier_init
+#@section @code{pthread_barrier_init}
+#@findex pthread_barrier_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrier_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_barrier_wait.texi
+Hash: c1b386eae130fb603d2f6d476958efcf09387fb73ce297e459e6d81e0dd9b133
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_barrier_wait
+#@section @code{pthread_barrier_wait}
+#@findex pthread_barrier_wait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrier_wait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_barrierattr_destroy.texi
+Hash: 913c8f495efff25824dbd8dc5faf2526b5b0e5160b1faae28f67452b3aee6936
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_barrierattr_destroy
+#@section @code{pthread_barrierattr_destroy}
+#@findex pthread_barrierattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrierattr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_barrierattr_getpshared.texi
+Hash: 8e4afc65315f8b2e25d2c5b9e859363fd9ee7371eb7247d6112773c642337f6f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_barrierattr_getpshared
+#@section @code{pthread_barrierattr_getpshared}
+#@findex pthread_barrierattr_getpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrierattr_getpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_barrierattr_init.texi
+Hash: 45369e6ac6f2f62e775581d3694e1c9ab726b910790ef4b5da5efe94778e2e49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_barrierattr_init
+#@section @code{pthread_barrierattr_init}
+#@findex pthread_barrierattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrierattr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_barrierattr_setpshared.texi
+Hash: 34825fd8bf5a6ae16e5b7a0ceaa60428e8ead85b8e0ada77345f10600eeec249
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_barrierattr_setpshared
+#@section @code{pthread_barrierattr_setpshared}
+#@findex pthread_barrierattr_setpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_barrierattr_setpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cancel.texi
+Hash: e8ba2f30835e3adf32710558d20f30e1cede0f548e4cc612f0aa36cefd207619
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cancel
+#@section @code{pthread_cancel}
+#@findex pthread_cancel
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cancel.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cleanup_pop.texi
+Hash: 56219e3c4261a24f8ae5c345420375bfed930edd72fe9de1145ad9bb6c8981b4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cleanup_pop
+#@section @code{pthread_cleanup_pop}
+#@findex pthread_cleanup_pop
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cleanup_pop.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cleanup_push.texi
+Hash: a198aceadab367b9b5ec5528e6d9eb7071b44e88ba80d7505b07e86ed47b3799
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cleanup_push
+#@section @code{pthread_cleanup_push}
+#@findex pthread_cleanup_push
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cleanup_push.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cond_broadcast.texi
+Hash: 027f86eba7dbadc497e225c26b709124f8d27d3720f641e9a16d6e244f2e9999
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cond_broadcast
+#@section @code{pthread_cond_broadcast}
+#@findex pthread_cond_broadcast
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_broadcast.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cond_destroy.texi
+Hash: 700b1a47bb870ae67a0829d45bbe702d4e2d5c068f21338fe743c5f781a79b41
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cond_destroy
+#@section @code{pthread_cond_destroy}
+#@findex pthread_cond_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cond_init.texi
+Hash: 1aac869c309f1e1259d594533ca99cbcb409ae20698e04313ecb76af8f586125
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cond_init
+#@section @code{pthread_cond_init}
+#@findex pthread_cond_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cond_signal.texi
+Hash: a3a421ae49ccf251516d0a9d806441c29c08782dec6a949f1b4132722924935e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cond_signal
+#@section @code{pthread_cond_signal}
+#@findex pthread_cond_signal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_signal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cond_timedwait.texi
+Hash: b554412ccdd6610c8224a5828fc0cbed66e33dcf855b76bece44c72854f4b9fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cond_timedwait
+#@section @code{pthread_cond_timedwait}
+#@findex pthread_cond_timedwait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_timedwait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_cond_wait.texi
+Hash: 69b9ed912a9a849f38ef59137cf08ef99807a0e560af5baa98a843186838f299
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_cond_wait
+#@section @code{pthread_cond_wait}
+#@findex pthread_cond_wait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_cond_wait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_condattr_destroy.texi
+Hash: dc71cdaf1bfce2c599af6d02608e23a7a1a36b35773b61a9352930193521ceb6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_condattr_destroy
+#@section @code{pthread_condattr_destroy}
+#@findex pthread_condattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_condattr_getclock.texi
+Hash: 4f39462a8d0cccfa468c219ae84735d0e4959170660ddb5335d4d0e58a310952
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_condattr_getclock
+#@section @code{pthread_condattr_getclock}
+#@findex pthread_condattr_getclock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_getclock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_condattr_getpshared.texi
+Hash: fd9bb140a4bb9d1596e1a1db77d9fc3e265aa7cbfeae2d7b82c203a3933a4aa2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_condattr_getpshared
+#@section @code{pthread_condattr_getpshared}
+#@findex pthread_condattr_getpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_getpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_condattr_init.texi
+Hash: 644aa43dccb6aaa12b07b5af03bbaa07a2ce79c14e11441ffcc89e2980b45fbf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_condattr_init
+#@section @code{pthread_condattr_init}
+#@findex pthread_condattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_condattr_setclock.texi
+Hash: b5413f0e67888a8c5591631a2e7fc8f9d5940b4295d578bc47c5f6b392fe5775
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_condattr_setclock
+#@section @code{pthread_condattr_setclock}
+#@findex pthread_condattr_setclock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_setclock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_condattr_setpshared.texi
+Hash: 18c18d1442e96df08c95dff4c476f839a9bf33f67fc7cb2d318af1f7a5129452
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_condattr_setpshared
+#@section @code{pthread_condattr_setpshared}
+#@findex pthread_condattr_setpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_condattr_setpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_create.texi
+Hash: a7e377395df018ad7be35a051f5a0cd6cd2c76118befa1e9d53a2023bd751923
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_create
+#@section @code{pthread_create}
+#@findex pthread_create
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_create.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_detach.texi
+Hash: e80c073a363c91dbc7080f7a4e511f7b648bd28f030c4f98faa1490086d52a32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_detach
+#@section @code{pthread_detach}
+#@findex pthread_detach
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_detach.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_equal.texi
+Hash: 6e2bd3ef9f0cae069ffd29ff4fba0879fbbcdd9cfbaf39327b389d27c0d21dc0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_equal
+#@section @code{pthread_equal}
+#@findex pthread_equal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_equal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_exit.texi
+Hash: 232c5cf778c2cfd1e637aee54d72705efcf3dbff8f7164240c1a171d0cdc7d8f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_exit
+#@section @code{pthread_exit}
+#@findex pthread_exit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_exit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_getconcurrency.texi
+Hash: da08fbe0f6fd2e342e8e5de796f98166968f5292462c2b0bde472cc2cd27aebf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_getconcurrency
+#@section @code{pthread_getconcurrency}
+#@findex pthread_getconcurrency
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_getconcurrency.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_getcpuclockid.texi
+Hash: 5189825a695d0c00cc9f0275ad6f2d9c949771c1d65c1f33eefbf58f45da4e30
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_getcpuclockid
+#@section @code{pthread_getcpuclockid}
+#@findex pthread_getcpuclockid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_getcpuclockid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_getschedparam.texi
+Hash: 6fb7f3364b7723dcfe69708e696f958421113a542fc16c23d6b437c61c3ebe69
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_getschedparam
+#@section @code{pthread_getschedparam}
+#@findex pthread_getschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_getschedparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_getspecific.texi
+Hash: 24418f9959f93b40084233797e9374b3d70eca2260a775e1abdc744d43b0e72b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_getspecific
+#@section @code{pthread_getspecific}
+#@findex pthread_getspecific
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_getspecific.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_join.texi
+Hash: 9039ce2feb029a58d9fbd965e0d2f4cee351059727f82a85c67059c0319bf525
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_join
+#@section @code{pthread_join}
+#@findex pthread_join
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_join.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_key_create.texi
+Hash: a1cb1a3db0f8853edb4e810872d4337be4fe45284107e1fb1fc3811fd3b4559c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_key_create
+#@section @code{pthread_key_create}
+#@findex pthread_key_create
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_key_create.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_key_delete.texi
+Hash: 7a66f0931de9d103c2dd8e413f396dae4cd106a88c96ad695cd60bd31febd79e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_key_delete
+#@section @code{pthread_key_delete}
+#@findex pthread_key_delete
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_key_delete.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_kill.texi
+Hash: f08bf3510c8f593d3dd76d9a59eac31ac729ba9d94dc75958d0e904f5c9c98a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_kill
+#@section @code{pthread_kill}
+#@findex pthread_kill
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_kill.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_consistent.texi
+Hash: b6e43d57f04c939eeeedf83aceb7a105ca5067531ea8db38d44306ebe8e9fd4c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_consistent
+#@section @code{pthread_mutex_consistent}
+#@findex pthread_mutex_consistent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_consistent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_destroy.texi
+Hash: fd4bde78e9fa8b117ae2482b8597dddc097527885e32cacbf6730f38ca8e06ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_destroy
+#@section @code{pthread_mutex_destroy}
+#@findex pthread_mutex_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_getprioceiling.texi
+Hash: 2a9d8cf7cc4fc5e2fe50656bf10493668ed1c6a1a0e8cdebcb14f4a3fc762e88
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_getprioceiling
+#@section @code{pthread_mutex_getprioceiling}
+#@findex pthread_mutex_getprioceiling
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_getprioceiling.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_init.texi
+Hash: 0e842a0e38c78b48dff33e93b8092d7977b5e64e398a246dbcf508bd957d2d61
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_init
+#@section @code{pthread_mutex_init}
+#@findex pthread_mutex_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_lock.texi
+Hash: c6d6b927e067c0c74541aa777d5aca52d14f124a01c458da4e0c465d2a535fc5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_lock
+#@section @code{pthread_mutex_lock}
+#@findex pthread_mutex_lock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_lock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_setprioceiling.texi
+Hash: e3a36023a14d9b48e692ccf929e1848ccb1c04cb2570216858055dff256c6a62
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_setprioceiling
+#@section @code{pthread_mutex_setprioceiling}
+#@findex pthread_mutex_setprioceiling
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_setprioceiling.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_timedlock.texi
+Hash: 140fb1fb8fe999687fe6799e7169f0dd2973de5387296d1d31033f527570ee9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_timedlock
+#@section @code{pthread_mutex_timedlock}
+#@findex pthread_mutex_timedlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_timedlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_trylock.texi
+Hash: 20faf9cb662d153f4c93433660e024c693a1211a5181532029be3d28bce03e6d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_trylock
+#@section @code{pthread_mutex_trylock}
+#@findex pthread_mutex_trylock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_trylock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutex_unlock.texi
+Hash: 7110cf9b01daabfcf76bd06905a56f819033d4d7a93c89b05800b79171d38e19
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutex_unlock
+#@section @code{pthread_mutex_unlock}
+#@findex pthread_mutex_unlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutex_unlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_destroy.texi
+Hash: 1290c79fa1c38da5e15fedcbf354d4a3a0e1481df5bd5433387c1d96f2baac32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_destroy
+#@section @code{pthread_mutexattr_destroy}
+#@findex pthread_mutexattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_getprioceiling.texi
+Hash: 449f95217262c8abc79143cb2459f618a5967e7af42b2ac3981a442ddb9a9c06
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_getprioceiling
+#@section @code{pthread_mutexattr_getprioceiling}
+#@findex pthread_mutexattr_getprioceiling
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_getprioceiling.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_getprotocol.texi
+Hash: 9f9268d4333f759584749fd1605652f4186d5f0b5acc680b39bdb7061b54f48c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_getprotocol
+#@section @code{pthread_mutexattr_getprotocol}
+#@findex pthread_mutexattr_getprotocol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_getprotocol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_getpshared.texi
+Hash: 295bd74fc073a734721873fa72a22a174e18783e9deeec13f06517f689eacd22
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_getpshared
+#@section @code{pthread_mutexattr_getpshared}
+#@findex pthread_mutexattr_getpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_getpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_getrobust.texi
+Hash: e0610f724a55de771fe504907799acfe94fb6ba3c67d0ce579d759ab973d19e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_getrobust
+#@section @code{pthread_mutexattr_getrobust}
+#@findex pthread_mutexattr_getrobust
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_getrobust.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_gettype.texi
+Hash: d12236caf122faf894bb50228a5472f020d954e207cd9dfd0e577ee8c8383f71
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_gettype
+#@section @code{pthread_mutexattr_gettype}
+#@findex pthread_mutexattr_gettype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_gettype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_init.texi
+Hash: 3b3ecf6261d6da298805c4cc95962a3ad36890bb77ff6b7b6f3132086e051167
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_init
+#@section @code{pthread_mutexattr_init}
+#@findex pthread_mutexattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_setprioceiling.texi
+Hash: 1ece8317019dd82c5e318b4d9b5882802ea01045a409297cf8dd440ad9d3103f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_setprioceiling
+#@section @code{pthread_mutexattr_setprioceiling}
+#@findex pthread_mutexattr_setprioceiling
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_setprioceiling.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_setprotocol.texi
+Hash: 5e6a366266f46a0357684749782e6197e1809fba9a2d513688406e49ad31d2d3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_setprotocol
+#@section @code{pthread_mutexattr_setprotocol}
+#@findex pthread_mutexattr_setprotocol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_setprotocol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_setpshared.texi
+Hash: 2fb993d88e4bbc911842803392deba53e3813c527c52d905c948b73bb4925286
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_setpshared
+#@section @code{pthread_mutexattr_setpshared}
+#@findex pthread_mutexattr_setpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_setpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_setrobust.texi
+Hash: 6bcbd7ab232100484cccf5e34ae17399d7c916a5acc23f403e0a0a844cc3e4ff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_setrobust
+#@section @code{pthread_mutexattr_setrobust}
+#@findex pthread_mutexattr_setrobust
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_setrobust.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_mutexattr_settype.texi
+Hash: fd9b09b6caf5b9d30b13ad9e48dc4603f3ed94da2f8183e721cddb1ccc436dcc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_mutexattr_settype
+#@section @code{pthread_mutexattr_settype}
+#@findex pthread_mutexattr_settype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_mutexattr_settype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_once.texi
+Hash: 263f7917fd13b0a74ac2ac702382080845565de894f62c71a2ac5a00ade097a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_once
+#@section @code{pthread_once}
+#@findex pthread_once
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_once.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_destroy.texi
+Hash: e474fee400949358c98c0d2eb0e85c3467fc0ca4bdb4fcc639ed9f36abe8fd82
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_destroy
+#@section @code{pthread_rwlock_destroy}
+#@findex pthread_rwlock_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_init.texi
+Hash: db1cb2523554cd336286ed884dc68f8f79b1558822da6d7872998801edbde3cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_init
+#@section @code{pthread_rwlock_init}
+#@findex pthread_rwlock_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_rdlock.texi
+Hash: 0d60cb0bd577699f1938cb35e9d4d33c4fee07c9b066bcdb6827770477de24a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_rdlock
+#@section @code{pthread_rwlock_rdlock}
+#@findex pthread_rwlock_rdlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_rdlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_timedrdlock.texi
+Hash: 3599fc1e125134eddc84887d08f98a66259a161a2e20d3eb6aeaa56e388c0c49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_timedrdlock
+#@section @code{pthread_rwlock_timedrdlock}
+#@findex pthread_rwlock_timedrdlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_timedrdlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_timedwrlock.texi
+Hash: 2b1fcd9f3b9fa43c87a6c4e253ab9f0d59c266668fa4f8bf951ba0c9ef16d66c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_timedwrlock
+#@section @code{pthread_rwlock_timedwrlock}
+#@findex pthread_rwlock_timedwrlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_timedwrlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_tryrdlock.texi
+Hash: 42205ebc500b32d14edfe041eda18f6ab7ca80e145b0b5f39ca6012f2cf1bab4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_tryrdlock
+#@section @code{pthread_rwlock_tryrdlock}
+#@findex pthread_rwlock_tryrdlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_tryrdlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_trywrlock.texi
+Hash: 4a1dfb6ad7aeb5bb915ca30df282fd851dd2b7924ddced7c4855bfe9c520b2bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_trywrlock
+#@section @code{pthread_rwlock_trywrlock}
+#@findex pthread_rwlock_trywrlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_trywrlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_unlock.texi
+Hash: f87d3a230966b3d5b888d51b96f49074ee121a4c6f0b44cc339c281aac4fe6e3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_unlock
+#@section @code{pthread_rwlock_unlock}
+#@findex pthread_rwlock_unlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_unlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlock_wrlock.texi
+Hash: 615fd6fce3bfa2157552bbf3a06e7840653a17f0f5f5a23268553002b5871983
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlock_wrlock
+#@section @code{pthread_rwlock_wrlock}
+#@findex pthread_rwlock_wrlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlock_wrlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlockattr_destroy.texi
+Hash: d650c45f94e3f7cb29c19693d46694c3b1d965e41bf6db7f4490611eee0a1c89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlockattr_destroy
+#@section @code{pthread_rwlockattr_destroy}
+#@findex pthread_rwlockattr_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlockattr_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlockattr_getpshared.texi
+Hash: 3b9cf0c4acb7572f4c5ae44b36365c60d1a3ef364d683ba6d741c60c30cda433
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlockattr_getpshared
+#@section @code{pthread_rwlockattr_getpshared}
+#@findex pthread_rwlockattr_getpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlockattr_getpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlockattr_init.texi
+Hash: 749ddd92db56e96ecaadb08122546a3cc441cbca68fd274de2de3c69514cc95a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlockattr_init
+#@section @code{pthread_rwlockattr_init}
+#@findex pthread_rwlockattr_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlockattr_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_rwlockattr_setpshared.texi
+Hash: b91d04b919f5d05dbda7c3530244929f89f83ebbdba05fffc494820d2a853842
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_rwlockattr_setpshared
+#@section @code{pthread_rwlockattr_setpshared}
+#@findex pthread_rwlockattr_setpshared
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_rwlockattr_setpshared.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_self.texi
+Hash: 13a7ed58caa8e8ed5afd05a4866c5a149f397fc180ae483191be4f2bbe1e873f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_self
+#@section @code{pthread_self}
+#@findex pthread_self
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_self.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_setcancelstate.texi
+Hash: bf779426dbcb25c40780822d1af78c8c245730481c02b2f663b25c06032cc1ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_setcancelstate
+#@section @code{pthread_setcancelstate}
+#@findex pthread_setcancelstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setcancelstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_setcanceltype.texi
+Hash: 21d2905f71f6a29504e1e41139d61d4c2c30ebeb03d8315cdc5e4a92e4d2b80c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_setcanceltype
+#@section @code{pthread_setcanceltype}
+#@findex pthread_setcanceltype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setcanceltype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_setconcurrency.texi
+Hash: 3a0aabbee0c7c7de01d8e594d7585d2f80b108a9824299253f41979ab4dbfb82
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_setconcurrency
+#@section @code{pthread_setconcurrency}
+#@findex pthread_setconcurrency
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setconcurrency.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_setschedparam.texi
+Hash: 6420aa34f4afee0ebe566288a398a735322e438b631ce128637752bc8e8820be
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_setschedparam
+#@section @code{pthread_setschedparam}
+#@findex pthread_setschedparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setschedparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_setschedprio.texi
+Hash: 9354214523a1c7e37170ac1a21531f009477b6c148aaa0a251544066c31aa78f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_setschedprio
+#@section @code{pthread_setschedprio}
+#@findex pthread_setschedprio
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setschedprio.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_setspecific.texi
+Hash: 154fa05dbb23ec8136e52430b633c487de9c68431f8bdd889864189f88b4d946
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_setspecific
+#@section @code{pthread_setspecific}
+#@findex pthread_setspecific
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_setspecific.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_sigmask.texi
+Hash: 5f84be77ac9a94d39f9890e0d6fc55981fdce2afa262726750e4bb8b08d930fc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_sigmask
+#@section @code{pthread_sigmask}
+#@findex pthread_sigmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_sigmask.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_spin_destroy.texi
+Hash: 9b80cbaf20504167e3cee0833877632e1cb5cec0ec848e17e6e92911498e12ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_spin_destroy
+#@section @code{pthread_spin_destroy}
+#@findex pthread_spin_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_spin_init.texi
+Hash: a3726f0acaefef327cb10544fdff423af698b5f1cdabe0a26b27c4b5d8d80521
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_spin_init
+#@section @code{pthread_spin_init}
+#@findex pthread_spin_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_spin_lock.texi
+Hash: df22dcb8f68c58da23c21856c108590d8b7be072110595e1db0cc8f04a431ac0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_spin_lock
+#@section @code{pthread_spin_lock}
+#@findex pthread_spin_lock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_lock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_spin_trylock.texi
+Hash: 322d6baf08a723f11fa1176b4877d385268cf6390c885ef2cd4defda8e7767db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_spin_trylock
+#@section @code{pthread_spin_trylock}
+#@findex pthread_spin_trylock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_trylock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_spin_unlock.texi
+Hash: 14e1ef4681b04777a2effa8cc09f6b9f54df272574e33f41a53c61fdce370242
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_spin_unlock
+#@section @code{pthread_spin_unlock}
+#@findex pthread_spin_unlock
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_spin_unlock.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pthread_testcancel.texi
+Hash: ed23a37d1c2d0cd758558e27f966f24f80c536576d6fcdca1253c41b23f3edaf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread_testcancel
+#@section @code{pthread_testcancel}
+#@findex pthread_testcancel
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pthread_testcancel.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ptsname.texi
+Hash: 1b5c93eea933da86b4d3af086ecdd2d1251250a5ea58a3a65f293562e0e8a336
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ptsname
+#@section @code{ptsname}
+#@findex ptsname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ptsname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/putc.texi
+Hash: 5d141e589a84fd6b8317e39d3fc5aab79d8b46f53d544ff312902a7b91ab26ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putc
+#@section @code{putc}
+#@findex putc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putc.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/putc_unlocked.texi
+Hash: 37f5c73db32107b5c76b4cba44714c31abc9c138e1073d8c4925179e2cfd6c5e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putc_unlocked
+#@section @code{putc_unlocked}
+#@findex putc_unlocked
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putc_unlocked.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/putchar.texi
+Hash: d34911f284b53c744d1adaff6fd19a42a32617bcf3680978cc05a4eefe594d45
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putchar
+#@section @code{putchar}
+#@findex putchar
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putchar.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/putchar_unlocked.texi
+Hash: fe7ef6645bdf1963d78a2b5127e040bde49dc0e5025aaa9b7dfbbb6260da429b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putchar_unlocked
+#@section @code{putchar_unlocked}
+#@findex putchar_unlocked
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putchar_unlocked.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/putenv.texi
+Hash: 1225f20a845f37cd71a9e0bced02458df4fb6c6f115771fbbe61fea3b4780848
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putenv
+#@section @code{putenv}
+#@findex putenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putenv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/putmsg.texi
+Hash: 75b6e41c21c6f36a1fdbc2b4c6e03a8c887088897174ec890231899889f30172
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putmsg
+#@section @code{putmsg}
+#@findex putmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/putpmsg.texi
+Hash: 3903ad394832d99822a9c28af39ea21eee403b16803d11d6480024d27d06bec2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putpmsg
+#@section @code{putpmsg}
+#@findex putpmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putpmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/puts.texi
+Hash: 0c3315db7f98e899502f5a99bd2659f35187abd17e2e6a8cee77f243ce622cce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node puts
+#@section @code{puts}
+#@findex puts
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/puts.html}
+#
+#Gnulib module: stdio, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails, instead of
+#obeying the current @code{SIGPIPE} handler, on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/pututxline.texi
+Hash: 66c8ffbb27d2df0fdd75e0c8c96790e18a16ed8b4f6bb78fc388232254be3a95
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pututxline
+#@section @code{pututxline}
+#@findex pututxline
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pututxline.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/putwc.texi
+Hash: 6c60fa1822603d2c92c59f1e5e591e1af2b89112396c238d847a4b696eb5f93a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putwc
+#@section @code{putwc}
+#@findex putwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/putwchar.texi
+Hash: b09cb7a268544b361a6518977d0cbb34f145881c66588f7a4834577e439bfe17
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node putwchar
+#@section @code{putwchar}
+#@findex putwchar
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/putwchar.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/pwrite.texi
+Hash: c9bd2a13a91714d5752f09ef6f92b210e7e5e7df7f7ae6ad069e2705e8560aa4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pwrite
+#@section @code{pwrite}
+#@findex pwrite
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/pwrite.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/qsort.texi
+Hash: eccfafd811e895dab2d612139558414963994ad85641a831a19ac92054427b1b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node qsort
+#@section @code{qsort}
+#@findex qsort
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/qsort.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/raise.texi
+Hash: 9168fc29b1d48f00797fd8aa7575ace765b3f20cb4ff6df9c81e2c5a7f75a505
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node raise
+#@section @code{raise}
+#@findex raise
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/raise.html}
+#
+#Gnulib module: raise
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/rand.texi
+Hash: fbbf8b1aa9c9585a1951e87f039d4335f526c24c0e78e219db3192d1135cd0d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rand
+#@section @code{rand}
+#@findex rand
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rand.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/rand_r.texi
+Hash: 59c958eb67399b934750dc9454b7bb7fb2fcdacdcd793765b49f2de183a98292
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rand_r
+#@section @code{rand_r}
+#@findex rand_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rand_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/random.texi
+Hash: 1ac28c8bc3664266beda4e1a8bedddfe6e9a2b9d922712df684fce6a569d57c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node random
+#@section @code{random}
+#@findex random
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/random.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/read.texi
+Hash: c0772bc36f187c182877807725aef9e66db5d39de1fd4ba4fb0f3e1d1b104499
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node read
+#@section @code{read}
+#@findex read
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/read.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/readdir.texi
+Hash: 8acd1c9966f71ead4b10ca70d897276aa12fbc5a41f1ad088cfe1e1849f09d32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node readdir
+#@section @code{readdir}
+#@findex readdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readdir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/readdir_r.texi
+Hash: 0b985cea57ac53aacdc262c142dc6836da7ea2f6805a75a52c6badba2a1edfb7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node readdir_r
+#@section @code{readdir_r}
+#@findex readdir_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readdir_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/readlink.texi
+Hash: 289041e8eac3117ecaa306f00b03008b7ed1f7f7e8e458edb64e3658d2a78df8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node readlink
+#@section @code{readlink}
+#@findex readlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readlink.html}
+#
+#Gnulib module: readlink
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/readlinkat.texi
+Hash: 8e82d14041b87e19c1298c597787ddb51fb2c6d4f3aba4087a064ff6db8445e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node readlinkat
+#@section @code{readlinkat}
+#@findex readlinkat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readlinkat.html}
+#
+#Gnulib module: readlinkat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/readv.texi
+Hash: 3a5a744fc3b388558d7a6ce32e3cd2409238e7c1de9877ef421916a0a0dc41ff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node readv
+#@section @code{readv}
+#@findex readv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/readv.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/realloc.texi
+Hash: f0e891898abaa0a80d3cda3e3bfd9d8ba9d886fe03eeac0524b958a62e9910cf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node realloc
+#@section @code{realloc}
+#@findex realloc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/realloc.html}
+#
+#Gnulib module: realloc-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Upon failure, the function does not set @code{errno} to @code{ENOMEM} on
+#some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/realpath.texi
+Hash: 31d1d7d2fbb89b8b73a9f8c9233c47944c665081515957cdf622af70b157dee5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node realpath
+#@section @code{realpath}
+#@findex realpath
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/realpath.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/recv.texi
+Hash: 8a15266da832a4a27bba9fc686336216b9e0f53e3039ae3c90803932b0bd6dda
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node recv
+#@section @code{recv}
+#@findex recv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/recv.html}
+#
+#Gnulib module: recv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{recv}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+
+File: ./doc/posix-functions/recvfrom.texi
+Hash: 5b8c576d3b7631a1252a36815ca4dbc99a02857999908fd47132065297ba5145
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node recvfrom
+#@section @code{recvfrom}
+#@findex recvfrom
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/recvfrom.html}
+#
+#Gnulib module: recvfrom
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{recvfrom} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+
+File: ./doc/posix-functions/recvmsg.texi
+Hash: 6954352174e93bc859b4f4cb4d2f3108621106dc0eac7cce11fed1a3bf900d34
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node recvmsg
+#@section @code{recvmsg}
+#@findex recvmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/recvmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/regcomp.texi
+Hash: 467aa5c6a5b8e8746e54af135c6a20a7db4192236b82e8aae0fea24c3bf6f04d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node regcomp
+#@section @code{regcomp}
+#@findex regcomp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/regcomp.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#Many regular expression implementations have bugs.
+
+File: ./doc/posix-functions/regerror.texi
+Hash: 851681f9c2f6d3b714a4821fa8b8221ccb948088c6a6a676321ede8ecb6e9985
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node regerror
+#@section @code{regerror}
+#@findex regerror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/regerror.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/regexec.texi
+Hash: 71275ebcea7b64e5b5a339139d33520241c8f6f2cc2ca66861b663729e14e128
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node regexec
+#@section @code{regexec}
+#@findex regexec
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/regexec.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#Many regular expression implementations have bugs.
+
+File: ./doc/posix-functions/regfree.texi
+Hash: 546e9045c4a3cd6c27e6d0587177908f4858d68ead5d3956c561ee5a6ae56a59
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node regfree
+#@section @code{regfree}
+#@findex regfree
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/regfree.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/remainder.texi
+Hash: 9048696feeff04cd557d5d0dedca4a672700965097384662d135b754e54b7fbc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remainder
+#@section @code{remainder}
+#@findex remainder
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remainder.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/remainderf.texi
+Hash: eaf831bc14b2dcc900fa892a2e14ba7617b1e6ab61f619f0cd6f7e14d41acd88
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remainderf
+#@section @code{remainderf}
+#@findex remainderf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remainderf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/remainderl.texi
+Hash: 14d1ff2d407b0012762b50554da703265c6294096c17d5ae4b14bdc14fc8596e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remainderl
+#@section @code{remainderl}
+#@findex remainderl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remainderl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/remove.texi
+Hash: 3ede2b0a88caf86dc972a636e28b9ba38caf6de6256e0e3bceba9beea59854d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remove
+#@section @code{remove}
+#@findex remove
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remove.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/remque.texi
+Hash: ba75b73c8d591b696fcd813c3ef76bf5c44770df9c6fbd9ae87c697481437522
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remque
+#@section @code{remque}
+#@findex remque
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remque.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/remquo.texi
+Hash: ea3584c21d497ada4dae115741acd1194efd92211942117063c080ae68d3615a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remquo
+#@section @code{remquo}
+#@findex remquo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remquo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/remquof.texi
+Hash: 0f8f9fedc0e9bfe935f7ff6c31311da4900518eab1a3495c3adff52fdd073454
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remquof
+#@section @code{remquof}
+#@findex remquof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remquof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/remquol.texi
+Hash: ee10dc1ef5a7800459907dc568a7acc6c3cf233713b3dbefffca813daf3a8576
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node remquol
+#@section @code{remquol}
+#@findex remquol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/remquol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/rename.texi
+Hash: 12e0eb4b7f2d1ab2b06996c40987438ed9f8b4ca2e3bd0798e28a9bfd0aabbfe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rename
+#@section @code{rename}
+#@findex rename
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rename.html}
+#
+#Gnulib module: rename
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not handle trailing slashes correctly on
+#some platforms (the full rules for trailing slashes are complex):
+#SunOS 4.1, mingw.
+#@item
+
+File: ./doc/posix-functions/renameat.texi
+Hash: c6dc7142536a2a805bcece8b9c0f15fcf548fed2410b817fad4b8d005496bed4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node renameat
+#@section @code{renameat}
+#@findex renameat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/renameat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/rewind.texi
+Hash: 7e31de0009419f05734b5d6a322389c5e103c5cd40a060f49efd1f68da2cabb0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rewind
+#@section @code{rewind}
+#@findex rewind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rewind.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/rewinddir.texi
+Hash: 42b2c06301ed85a0dfdfd8ef098bdcd6f8cf4a5198eb5fa3f0231f63e14d3ee7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rewinddir
+#@section @code{rewinddir}
+#@findex rewinddir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rewinddir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/rint.texi
+Hash: 0bdbf8e00f3fb2386cfd9a6ef340864607e19f553ea1a84aadaf6f352b8eec33
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rint
+#@section @code{rint}
+#@findex rint
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rint.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/rintf.texi
+Hash: 04b86653c1aebb521570910a97edd79efcfb3d9d4ce5ee36b0bc12caefc93feb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rintf
+#@section @code{rintf}
+#@findex rintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/rintl.texi
+Hash: 3cdf8671de573e8aa145192d0e4b51bdb9813c54328232493738ee146c15f55c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rintl
+#@section @code{rintl}
+#@findex rintl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rintl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/rmdir.texi
+Hash: f46fa6bd3452720b41ce3c646a159d837c815958bdb713632742c746227a658e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node rmdir
+#@section @code{rmdir}
+#@findex rmdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rmdir.html}
+#
+#Gnulib module: rmdir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/round.texi
+Hash: ad1fac248f0027fffeb846b4bcbb10d65dbb8ee2814bf99ca320dc6b76d3591b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node round
+#@section @code{round}
+#@findex round
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/round.html}
+#
+#Gnulib module: round
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 4.0, Solaris 9, Interix 3.5.
+#@item
+#This functions returns a wrong result for x = 1/2 - 2^-54 on some platforms:
+
+File: ./doc/posix-functions/roundf.texi
+Hash: a93f03fd0a866d50dae90b7ed84de5e54ee93a776770d19334d918c68e937352
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node roundf
+#@section @code{roundf}
+#@findex roundf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/roundf.html}
+#
+#Gnulib module: roundf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 9, Interix 3.5.
+#@item
+#This functions returns a wrong result for x = 1/2 - 2^-25 on some platforms:
+
+File: ./doc/posix-functions/roundl.texi
+Hash: 34c9077c2dec24f5eac8f86ac817d972e19810b75227e4b638cff1c10952f098
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node roundl
+#@section @code{roundl}
+#@findex roundl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/roundl.html}
+#
+#Gnulib module: roundl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 4.0, Solaris 9, Cygwin, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/scalbln.texi
+Hash: 20b33ecc23fc5311a3eb8423dfb90ed0acc8f5e0a27ce08b33548700dcfd087b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalbln
+#@section @code{scalbln}
+#@findex scalbln
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalbln.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/scalblnf.texi
+Hash: 721d2584694f2c17e701b77dafb1a4a0fce1b4cf75e67286c1de9b3d2bc5fc4d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalblnf
+#@section @code{scalblnf}
+#@findex scalblnf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalblnf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/scalblnl.texi
+Hash: e29e5eab4e9e4a6a341613b203cb7b6c05be7c3ad6119e0e5b069d8019bbb4e3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalblnl
+#@section @code{scalblnl}
+#@findex scalblnl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalblnl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/scalbn.texi
+Hash: b98ad8538407e08879d31e648dcf8eacc0c0c187ac2cba1dcec79b87a7d8afe0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalbn
+#@section @code{scalbn}
+#@findex scalbn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalbn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/scalbnf.texi
+Hash: 6c2dfea485571431562f1b51e5920eb4bbe8499512abd58d46fb3e842ea6af67
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalbnf
+#@section @code{scalbnf}
+#@findex scalbnf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalbnf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/scalbnl.texi
+Hash: ad72f6be73a435b5d81d01a8b5849eb4531c88a21370bcb2ad87afb73047e436
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scalbnl
+#@section @code{scalbnl}
+#@findex scalbnl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scalbnl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/scandir.texi
+Hash: 19a5e174895872d8102d75603b1f0491cc13b1da4c7c4e4dd0efb3c3c64887ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scandir
+#@section @code{scandir}
+#@findex scandir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scandir.html}
+#
+#Gnulib module: scandir
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#Solaris 9, mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/scanf.texi
+Hash: 7dfd669e166d9e21af87270f3155e7f1df47d71fd39bcc8b13bccc6b14baace9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node scanf
+#@section @code{scanf}
+#@findex scanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/scanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sched_get_priority_max.texi
+Hash: 11f5ff6c55fdb90459f2389d7c1a7818fdce76b58ad1f2b38daea990e1ef5038
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_get_priority_max
+#@section @code{sched_get_priority_max}
+#@findex sched_get_priority_max
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_get_priority_max.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sched_get_priority_min.texi
+Hash: edadeaea746bd2c08a9d041afbd07ec8efeae648a41e6360339affd3dd164930
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_get_priority_min
+#@section @code{sched_get_priority_min}
+#@findex sched_get_priority_min
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_get_priority_min.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sched_getparam.texi
+Hash: 84f8a1c27e8b95d02bcf6537325ba48127e03e6b84a85899c04754859e6bb9de
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_getparam
+#@section @code{sched_getparam}
+#@findex sched_getparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_getparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sched_getscheduler.texi
+Hash: effbc16e72658dd54d3a4dfda735c9a847b984cac1770d3a69e21b18e3295643
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_getscheduler
+#@section @code{sched_getscheduler}
+#@findex sched_getscheduler
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_getscheduler.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sched_rr_get_interval.texi
+Hash: 28dde9d502544175d3e577faf43edfc9cdebc23ad5698817f93739b89eaa30ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_rr_get_interval
+#@section @code{sched_rr_get_interval}
+#@findex sched_rr_get_interval
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_rr_get_interval.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sched_setparam.texi
+Hash: 72b52136de2d388c0b20b342359f6341550f2f169138066f6506aef13dc568a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_setparam
+#@section @code{sched_setparam}
+#@findex sched_setparam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_setparam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sched_setscheduler.texi
+Hash: 09602d1144a443906cd95a7abc7338702e87e3a31a3d97685a073899186cb3d3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_setscheduler
+#@section @code{sched_setscheduler}
+#@findex sched_setscheduler
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_setscheduler.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sched_yield.texi
+Hash: d2d8c8ac69459f6402005138854b6d4056187e0de6abcf753e292102ea96d34c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched_yield
+#@section @code{sched_yield}
+#@findex sched_yield
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sched_yield.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/seed48.texi
+Hash: 28bdf259829fb9387b78e51eab714e073170bbcea61949755e114d1604be8e25
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node seed48
+#@section @code{seed48}
+#@findex seed48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/seed48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/seekdir.texi
+Hash: 4f3fdb7b17387addc89235b72cd26b1de5f0bad70b0e7b33bbd312857128967b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node seekdir
+#@section @code{seekdir}
+#@findex seekdir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/seekdir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/select.texi
+Hash: e9ce5f847344b7fb8a70e7c53420b8235ed385d3d43466db2d604a4b87e8c5f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node select
+#@section @code{select}
+#@findex select
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/select.html}
+#
+#Gnulib module: select
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), @code{select} can only be
+#called on descriptors created by the @code{socket} function, not on regular
+#file descriptors.
+#@item
+
+File: ./doc/posix-functions/sem_close.texi
+Hash: ac874d36dada463ddff2c441e9b401348f525c81472a7913b9f056732453f98b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_close
+#@section @code{sem_close}
+#@findex sem_close
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_close.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_destroy.texi
+Hash: 358f0ff417eb0b678c15aa7d2c4c5a230bf8442a78f36e8ec075e0d7c6d21037
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_destroy
+#@section @code{sem_destroy}
+#@findex sem_destroy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_destroy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_getvalue.texi
+Hash: 9bcf8c054cef77229c7f601724f90759b075f4360424fc988f0eb35527e37c5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_getvalue
+#@section @code{sem_getvalue}
+#@findex sem_getvalue
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_getvalue.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_init.texi
+Hash: f8c33d28ce23da0f1f9468414b072f0cafd5a250a437f9e67217d0aa46d606f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_init
+#@section @code{sem_init}
+#@findex sem_init
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_init.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_open.texi
+Hash: 535b9d92fa34b5d3a942d1d0c71d5b1cb895b1b3d1a0e1a40976b1aa8369eeef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_open
+#@section @code{sem_open}
+#@findex sem_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_post.texi
+Hash: 33572c6870717902841189ed2faa2f22e870317e232b8a0df96ca7f464d55a3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_post
+#@section @code{sem_post}
+#@findex sem_post
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_post.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_timedwait.texi
+Hash: a6440ffe149ca3730afe7d0809bc0df9069248efb58db6d2a78ef3a95cce44d4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_timedwait
+#@section @code{sem_timedwait}
+#@findex sem_timedwait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_timedwait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_trywait.texi
+Hash: 4ceedb230b907d2689613064f8e6d5f7d1ef7d3d3671f98c73cc49e62ded6ebd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_trywait
+#@section @code{sem_trywait}
+#@findex sem_trywait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_trywait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_unlink.texi
+Hash: 0ee14f8c63cb4f610209419ac2a952f0baa08190ba720bd498efa60cb4813ad2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_unlink
+#@section @code{sem_unlink}
+#@findex sem_unlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_unlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sem_wait.texi
+Hash: ef6661da464b7311b32b8ecf0428d6ade99f613ecf710a160c964cf9da984909
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sem_wait
+#@section @code{sem_wait}
+#@findex sem_wait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sem_wait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/semctl.texi
+Hash: a727b206d89f2f607838a05121a9ac9fb8bbbf2b261fec2b53405bade9fc0e8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node semctl
+#@section @code{semctl}
+#@findex semctl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/semctl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/semget.texi
+Hash: 3f7d131455914cf554feafcf7c52b429e71825175d3554a71018da6cbd964bfc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node semget
+#@section @code{semget}
+#@findex semget
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/semget.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/semop.texi
+Hash: 1174ca67c0eb6ca2cacbe0fbf7493c05e89c9479194549f198df5c92e8c6b935
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node semop
+#@section @code{semop}
+#@findex semop
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/semop.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/send.texi
+Hash: 17bc1f1b9e840a2c9d5faeb78362adfb9876d3b22c19eed265a563b48712ba65
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node send
+#@section @code{send}
+#@findex send
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/send.html}
+#
+#Gnulib module: send
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{send}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+
+File: ./doc/posix-functions/sendmsg.texi
+Hash: f483c1453c90cde160dee58c7e1cbbb5710ae07f304e0ebb96b04d68d1040e21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sendmsg
+#@section @code{sendmsg}
+#@findex sendmsg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sendmsg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sendto.texi
+Hash: 9e49433726ffd274b30a586229b8e7b56b963711aa9363f3fde85e68eeaeabcf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sendto
+#@section @code{sendto}
+#@findex sendto
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sendto.html}
+#
+#Gnulib module: sendto
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for @code{sendto}
+#are not placed in @code{errno}, and @code{WSAGetLastError} must be
+#used instead.
+#@end itemize
+
+File: ./doc/posix-functions/setbuf.texi
+Hash: c1b80b2010ab858159853eb49c404f80e62c63fcf5efa4f8b361656ec17d8acb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setbuf
+#@section @code{setbuf}
+#@findex setbuf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setbuf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/setegid.texi
+Hash: 4eb55b5c084cfe20710d1e8373c22fa6391501c1f03ffb45c8a65a67cdce44a2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setegid
+#@section @code{setegid}
+#@findex setegid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setegid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setenv.texi
+Hash: 9c4d89ace2b70d38c942c3f8944928cccef4db906dd979b8657e523b25e949d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setenv
+#@section @code{setenv}
+#@findex setenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setenv.html}
+#
+#Gnulib module: setenv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, Solaris 9, mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/seteuid.texi
+Hash: 11065f33239479b6f7e52c623212e0e108290ba7a2f225b2fe71d52257a5054f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node seteuid
+#@section @code{seteuid}
+#@findex seteuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/seteuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setgid.texi
+Hash: 780d6ade51dbdac0c12016d3fbf16bb2421e62eb4aa70a733b243488d132023c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setgid
+#@section @code{setgid}
+#@findex setgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setgrent.texi
+Hash: ac27d566a363f416471a065bb4b80dfbb1b3d72c6f44d262c47b9bebc5db0069
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setgrent
+#@section @code{setgrent}
+#@findex setgrent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setgrent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sethostent.texi
+Hash: 725baa41c0d9b152ca68a043ff588e0e6db3c11f5ef2b9a7b7628389905bb4d2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sethostent
+#@section @code{sethostent}
+#@findex sethostent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sethostent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setitimer.texi
+Hash: 3852bfb85fac9dc66769defed010733ef020845a51b59b8d8ec679dd20aa2d81
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setitimer
+#@section @code{setitimer}
+#@findex setitimer
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setitimer.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setjmp.texi
+Hash: 22af0a92b03cbb7a563685898895441b261083b6684d0ee9a48f47ed26891ea4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setjmp
+#@section @code{setjmp}
+#@findex setjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setkey.texi
+Hash: 240a7ea97fba8b9ff6d9a47fa42c31b3e28640d0e8e5981f317b1d9b720e73bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setkey
+#@section @code{setkey}
+#@findex setkey
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setkey.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setlocale.texi
+Hash: 817b6e7446ec7a47293c021378b27a59878f207483191864702dda72c8b57585
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setlocale
+#@section @code{setlocale}
+#@findex setlocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setlocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setlogmask.texi
+Hash: 765d03a247b4621b0d48e4590dedcc6a0d2ec29510e0404540bc61421ae9e253
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setlogmask
+#@section @code{setlogmask}
+#@findex setlogmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setlogmask.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setnetent.texi
+Hash: c2c9917076799c5935791b59d9d3ac025ed0ab177cd6b2dbfc31693ec9dd0ed6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setnetent
+#@section @code{setnetent}
+#@findex setnetent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setnetent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setpgid.texi
+Hash: 7c2356192fa6799002224dc1a24029063c4cc90586ebfc253e3559145369bb56
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setpgid
+#@section @code{setpgid}
+#@findex setpgid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setpgid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setpgrp.texi
+Hash: e51777dacdd7dc22f04da87cbeee294893c758828e56420309995df635994374
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setpgrp
+#@section @code{setpgrp}
+#@findex setpgrp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setpgrp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setpriority.texi
+Hash: c87be1e3b56994f1042308d42e8bdc660f03f0e69c82ee6783262e448151014f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setpriority
+#@section @code{setpriority}
+#@findex setpriority
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setpriority.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setprotoent.texi
+Hash: 884e72272c0ebda015c9d69e01182a99e021068f7839b75d276086d994d0fbea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setprotoent
+#@section @code{setprotoent}
+#@findex setprotoent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setprotoent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setpwent.texi
+Hash: 9396b76d7feb617576732f7d10cbf77a866f72f161546b7662bad0b1a54081a9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setpwent
+#@section @code{setpwent}
+#@findex setpwent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setpwent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setregid.texi
+Hash: 6bcd6d07ac44360dc656876796a21f972bb05480d9bf57323e40fc5ca550dae3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setregid
+#@section @code{setregid}
+#@findex setregid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setregid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setreuid.texi
+Hash: a2894c1abc3680e75c9c62fe31090120166f9edff985537da0b3b07621a7b130
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setreuid
+#@section @code{setreuid}
+#@findex setreuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setreuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setrlimit.texi
+Hash: 5958d803819871762a9194cd467efc0bf2d71ad529a8dbc42aeb3e56d18ef353
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setrlimit
+#@section @code{setrlimit}
+#@findex setrlimit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setrlimit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setservent.texi
+Hash: 4140e3b3d42a1e14ceb0d81d7204b6f59b76655866b6693950bfecdae9605d99
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setservent
+#@section @code{setservent}
+#@findex setservent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setservent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setsid.texi
+Hash: 5420e9cae04273dfc040f5832b9174b5564f4b38e482b274ecc0e0a8b17bc2c5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setsid
+#@section @code{setsid}
+#@findex setsid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setsid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setsockopt.texi
+Hash: bd5dd31491d9fba4a723fbc708f0f984a77f61bacefaf2fc2ca396fcafc0fe34
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setsockopt
+#@section @code{setsockopt}
+#@findex setsockopt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setsockopt.html}
+#
+#Gnulib module: setsockopt
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{setsockopt} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+
+File: ./doc/posix-functions/setstate.texi
+Hash: 7b70df59e5d17161587200bda69c41606bc0d74689c8ebe00a6fe3d6b89e534e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setstate
+#@section @code{setstate}
+#@findex setstate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setstate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setuid.texi
+Hash: 6d8ea2173f4dd28ad1e91fef87b91f4b37f312d94ecde8c2ea7a1def4b20af2c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setuid
+#@section @code{setuid}
+#@findex setuid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setuid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setutxent.texi
+Hash: c888acebdd69ac6f546bde407b3b5ca347fce9a4abc3738e52bf16116e4782ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setutxent
+#@section @code{setutxent}
+#@findex setutxent
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setutxent.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/setvbuf.texi
+Hash: fbfcee6cf17813046c5d7770e3e28de66747fae03b99febcc83a7afd709adb1a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setvbuf
+#@section @code{setvbuf}
+#@findex setvbuf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/setvbuf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/shm_open.texi
+Hash: 711cb8029e21657fbc064d404ae7c2ef07e04ac28a7d26aa81a85561f93282bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node shm_open
+#@section @code{shm_open}
+#@findex shm_open
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shm_open.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/shm_unlink.texi
+Hash: 35c8021da60f69c9ebcff71354f190dd9ee08ceb621dfcf03648e74f82ff0abd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node shm_unlink
+#@section @code{shm_unlink}
+#@findex shm_unlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shm_unlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/shmat.texi
+Hash: af47252558f36f307c6ce55289a619bde06542814c0df5fe5c6eee825741498c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node shmat
+#@section @code{shmat}
+#@findex shmat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shmat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/shmctl.texi
+Hash: bbdc41b3831e90eb39d93d9959b3a97aebd44e0ad7838445371d377f11831af0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node shmctl
+#@section @code{shmctl}
+#@findex shmctl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shmctl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/shmdt.texi
+Hash: b232456ce946eab53cb5c9dd93b637d707efd563a3002b96feae52b49bf35788
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node shmdt
+#@section @code{shmdt}
+#@findex shmdt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shmdt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/shmget.texi
+Hash: 1d43d652e94e8910fa095f710d53122c2eb95d2f07f9b0d0dcba635a7c51ec84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node shmget
+#@section @code{shmget}
+#@findex shmget
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shmget.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/shutdown.texi
+Hash: 29fd2d2990cf30cf14c302f76697e11d96f31a9d4e14073f070bd38a84a0bdda
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node shutdown
+#@section @code{shutdown}
+#@findex shutdown
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/shutdown.html}
+#
+#Gnulib module: shutdown
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), error codes for
+#@code{shutdown} are not placed in @code{errno}, and
+#@code{WSAGetLastError} must be used instead.
+#@end itemize
+
+File: ./doc/posix-functions/sigaction.texi
+Hash: 3cdd81c159f9d0dba0a772d6ee39c302d310b9bc0c05293ff05fc4a08daadf1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigaction
+#@section @code{sigaction}
+#@findex sigaction
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigaction.html}
+#
+#Gnulib module: sigaction
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/sigaddset.texi
+Hash: 87d0a09d5c3d0fa0a9ad87967175e1c39afbf2d4bb335cdae4e557454163fd5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigaddset
+#@section @code{sigaddset}
+#@findex sigaddset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigaddset.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/sigaltstack.texi
+Hash: e8985e3e771fbc1c26d97574a451d0a10395aceb70a1d365d4144ca3045b4de4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigaltstack
+#@section @code{sigaltstack}
+#@findex sigaltstack
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigaltstack.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigdelset.texi
+Hash: 6ab4bcad934cc4107635ba22f4edbec51c53bd010e628837c8a794db9106befb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigdelset
+#@section @code{sigdelset}
+#@findex sigdelset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigdelset.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/sigemptyset.texi
+Hash: 14e1a070f0a75d6ed8d5d0c03a87fb88c716371c984180c7bff89e802c58c46b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigemptyset
+#@section @code{sigemptyset}
+#@findex sigemptyset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigemptyset.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/sigfillset.texi
+Hash: 3b2a1a255cefe69a417f80a0edf260888c0db54bfdd3d12424bb30b31df0c59d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigfillset
+#@section @code{sigfillset}
+#@findex sigfillset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigfillset.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/sighold.texi
+Hash: c28922c54cf2987fd419a7e53c1c070521cdcf17e4c18b7cd7dcb213e7f6006c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sighold
+#@section @code{sighold}
+#@findex sighold
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sighold.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigignore.texi
+Hash: 3ccf3776aadb2d683f46c2e2259b1059bf8f109cbf6322bd4534dbfb315a472c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigignore
+#@section @code{sigignore}
+#@findex sigignore
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigignore.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/siginterrupt.texi
+Hash: 3349e08d5be99e38c5a03fe7b7d459078dcd284fd0149a41c075402bbfb7c405
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node siginterrupt
+#@section @code{siginterrupt}
+#@findex siginterrupt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/siginterrupt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigismember.texi
+Hash: 49eccb6e25f6f97abb2511bd20e9d3e01769d0bd25e1401230b3a252e95c213f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigismember
+#@section @code{sigismember}
+#@findex sigismember
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigismember.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/siglongjmp.texi
+Hash: 24a32bca7cf45f9d1b12aeeda5dcb11dd4fd66f53d74c27d12bd42e474c9d1d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node siglongjmp
+#@section @code{siglongjmp}
+#@findex siglongjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/siglongjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/signal.texi
+Hash: c518a9f0387ab90d8b170e72d3583f762ac4a05461790508d01beab9ab3d8558
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node signal
+#@section @code{signal}
+#@findex signal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/signal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/signbit.texi
+Hash: 9e6a47f6d9259e813d6797c19a71415f8e4647438247ff24e8e2424a0a565702
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node signbit
+#@section @code{signbit}
+#@findex signbit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/signbit.html}
+#
+#Gnulib module: signbit
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 10, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/signgam.texi
+Hash: 3ef7a55a9465be68ba43768332914144bd6c2c173b9a7a9a2e4b07f33121c7ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node signgam
+#@section @code{signgam}
+#@findex signgam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/signgam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigpause.texi
+Hash: 90fce48a0d49ab718dd652a5a5a87668ce9617dad7ff70874f4b1f7460432841
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigpause
+#@section @code{sigpause}
+#@findex sigpause
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigpause.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigpending.texi
+Hash: 2de6219e44b909caad92df6778f831f8b2a15b1ccf7e05f729d33dd54c5fc27a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigpending
+#@section @code{sigpending}
+#@findex sigpending
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigpending.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/sigprocmask.texi
+Hash: 7811aa27382f44d47c7d149b3806ae14f1198c12a3dd63ebcf6f243a6558b74f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigprocmask
+#@section @code{sigprocmask}
+#@findex sigprocmask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigprocmask.html}
+#
+#Gnulib module: sigprocmask
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/sigqueue.texi
+Hash: 9c5d6f633c6f30e8fc0156ab80d63f803626e6f8bb5643e76ab141df5110c706
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigqueue
+#@section @code{sigqueue}
+#@findex sigqueue
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigqueue.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigrelse.texi
+Hash: 65be3cf6a9cbb69df7b4747865bd7efa29653d3e971d39e3aa1419deb39a80ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigrelse
+#@section @code{sigrelse}
+#@findex sigrelse
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigrelse.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigset.texi
+Hash: 817f69cc205c41f70b80ea90ab05062b190f96036502febe7c854c33b17a253a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigset
+#@section @code{sigset}
+#@findex sigset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigset.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigsetjmp.texi
+Hash: cc4ca79a3fb359807d0b9b990ec85be94f2c178350a771f908b5256c556a8817
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigsetjmp
+#@section @code{sigsetjmp}
+#@findex sigsetjmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigsetjmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigsuspend.texi
+Hash: 9f9cff8e739048a9f60008555c57b52b49ef7d90ca097e08f8988d24a4c1a8a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigsuspend
+#@section @code{sigsuspend}
+#@findex sigsuspend
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigsuspend.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigtimedwait.texi
+Hash: 0d47c3fdba144dd0c0aa13adc6924d3275b3cfec99c840ed982482cc8d729c12
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigtimedwait
+#@section @code{sigtimedwait}
+#@findex sigtimedwait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigtimedwait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigwait.texi
+Hash: 6dddd4ba0f84a96575d582a6ff6afe6edf8ed9f95b14fa5a75a0e30525066682
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigwait
+#@section @code{sigwait}
+#@findex sigwait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigwait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sigwaitinfo.texi
+Hash: 8519df8c6af7a55c5e9a477e0ea273270f47ecec2e180025c7e26a2992b94378
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sigwaitinfo
+#@section @code{sigwaitinfo}
+#@findex sigwaitinfo
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sigwaitinfo.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sin.texi
+Hash: f676105dffa7de8f92a0b6f8f57abef62d5cd3185cfbbb94f4dcc80a1d2a0170
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sin
+#@section @code{sin}
+#@findex sin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/sinf.texi
+Hash: 6b533d6508b0c237bc96b621b1f7e8f506f848ceff578dc4c25a0739ff026e70
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sinf
+#@section @code{sinf}
+#@findex sinf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sinh.texi
+Hash: eee78b2f05fd0d6a7ca4c90460bb0440ce78fa090a075e3ec74f104b18b887f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sinh
+#@section @code{sinh}
+#@findex sinh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/sinhf.texi
+Hash: 15948ac5234b4e3f9763f212e52c490c8d917e214e3314f63e42d48a96c66721
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sinhf
+#@section @code{sinhf}
+#@findex sinhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sinhl.texi
+Hash: 4ee1ad6e044636412b8f958d57116513ef7412caaa45b936796b888f154f96e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sinhl
+#@section @code{sinhl}
+#@findex sinhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sinl.texi
+Hash: 10f6d3e1420c92efabdee4ff2ec16a1c2a547530c24cd0a0fd564d70e751838e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sinl
+#@section @code{sinl}
+#@findex sinl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sinl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sleep.texi
+Hash: 4cee9d14a9da82cb86de0e74f1bf4ba2a685783e472474fcef506b8a3a209ff6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sleep
+#@section @code{sleep}
+#@findex sleep
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sleep.html}
+#
+#Gnulib module: sleep
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw (2005 or newer).
+#@item
+#This function takes milliseconds as argument and returns @code{void} on some
+
+File: ./doc/posix-functions/snprintf.texi
+Hash: 6c65c8fb2c2be3898412015204e121e2d318c68b72bb30da42e1e97638cfc92f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node snprintf
+#@section @code{snprintf}
+#@findex snprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/snprintf.html}
+#
+#Gnulib module: snprintf or snprintf-posix
+#
+#Portability problems fixed by either Gnulib module @code{snprintf} or @code{snprintf-posix}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, OSF/1 4.0, Solaris 2.5.1.
+#@item
+#This function overwrites memory even when a size argument of 1 is passed on some
+
+File: ./doc/posix-functions/sockatmark.texi
+Hash: 920043e499988efb4a6ecd649dee0e51423706cdf1b627d287ee498e733a5e9d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sockatmark
+#@section @code{sockatmark}
+#@findex sockatmark
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sockatmark.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/socket.texi
+Hash: bb5c8946b1533c378b8b51008463815ff926bf3edc8d434945008788336605e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node socket
+#@section @code{socket}
+#@findex socket
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/socket.html}
+#
+#Gnulib module: socket
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On Windows platforms (excluding Cygwin), the descriptors returned by
+#the @code{socket} function can not be used in calls to @code{read},
+#@code{write}, and @code{close}; you have to use @code{recv}, @code{send},
+#@code{closesocket} in these cases instead.
+
+File: ./doc/posix-functions/socketpair.texi
+Hash: 770e250df219be1c39ad0bc54906007f1364594d855db008855fd5027ed6fd17
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node socketpair
+#@section @code{socketpair}
+#@findex socketpair
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/socketpair.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sprintf.texi
+Hash: adef99bf429ec5dc65bbb09f6b18391699c7c0b404cf95ba34bb4db35c474dc9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sprintf
+#@section @code{sprintf}
+#@findex sprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sprintf.html}
+#
+#Gnulib module: sprintf-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+
+File: ./doc/posix-functions/sqrt.texi
+Hash: 7bd904a48d9461c5ab7ec22f185475d3849dd2b798f72cb54986fec482103eec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sqrt
+#@section @code{sqrt}
+#@findex sqrt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sqrt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sqrtf.texi
+Hash: 440a2d8390eee454a3f25219d743c8e847045e11fc366fcf2ab6272bff843532
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sqrtf
+#@section @code{sqrtf}
+#@findex sqrtf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sqrtf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sqrtl.texi
+Hash: 527035958e9ce2e375b8e03b8d1d37300c3da351d34b8c0eff9e1aba9b15ff54
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sqrtl
+#@section @code{sqrtl}
+#@findex sqrtl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sqrtl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/srand.texi
+Hash: b21bd4917b432b6818ebe2f3cbadd1ecb2903b11d0158f2a2af18294b9026cc8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node srand
+#@section @code{srand}
+#@findex srand
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/srand.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/srand48.texi
+Hash: d80029584212c15658a5fd5e7e068068dfdf634b4f7e0411b2ef09a698ee7b3c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node srand48
+#@section @code{srand48}
+#@findex srand48
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/srand48.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/srandom.texi
+Hash: a10bfc704c425ab26485a296899f84e820bede1c112a19af796ee0bdce64d078
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node srandom
+#@section @code{srandom}
+#@findex srandom
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/srandom.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sscanf.texi
+Hash: 639cf4a9a282985958da828fe209b80969230cb51e066f6f4fdaf79063d373cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sscanf
+#@section @code{sscanf}
+#@findex sscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/stat.texi
+Hash: 8d8fe8d3a054025b09c15989283e7d4754db8266583f7eb712f079efc1893db4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stat
+#@section @code{stat}
+#@findex stat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/statvfs.texi
+Hash: c157e04fe064fb845027f0118a7978e9efb42c003ebd892582269ef5f45d64e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node statvfs
+#@section @code{statvfs}
+#@findex statvfs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/statvfs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/stderr.texi
+Hash: 7632aaef92a1ca4ce28394d00756b3e8919b15817cbf548d8402404408cce9e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stderr
+#@section @code{stderr}
+#@findex stderr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stderr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/stdin.texi
+Hash: a2f171d9774add6803c2df2f4d78912d32460e395041035c75c15c3216501ae2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stdin
+#@section @code{stdin}
+#@findex stdin
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stdin.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/stdout.texi
+Hash: 1820d40f78e54bd1362377e4b2d5f8f9a9da71a37a5e7cb5888e97a455e2b8f9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stdout
+#@section @code{stdout}
+#@findex stdout
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stdout.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/stpcpy.texi
+Hash: ec7fba60db1ae08ec7e335c879369c5952909faa0b097d50f883bf4067adc92b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stpcpy
+#@section @code{stpcpy}
+#@findex stpcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stpcpy.html}
+#
+#Gnulib module: stpcpy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1,
+#Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/stpncpy.texi
+Hash: 594dc6a1a62217496f0a4a517ccb4d256911977cf21ad5649ae9ae2c5cb260ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stpncpy
+#@section @code{stpncpy}
+#@findex stpncpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/stpncpy.html}
+#
+#Gnulib module: stpncpy
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX
+#11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@item
+
+File: ./doc/posix-functions/strcasecmp.texi
+Hash: 7f49d3eceda3f51eb6ede418807164200915a15c26aabee9e3c678f79455ccfc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcasecmp
+#@section @code{strcasecmp}
+#@findex strcasecmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcasecmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strcasecmp_l.texi
+Hash: 2d4cf5c896e1982e35fb0a9e338fe2e67c0c87e9eac900de5045c1af7035bbb7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcasecmp_l
+#@section @code{strcasecmp_l}
+#@findex strcasecmp_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcasecmp_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strcat.texi
+Hash: a0407da6c606d87607b8e64140519deb5030ee90004ac26fb72a067c9c0cfbd8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcat
+#@section @code{strcat}
+#@findex strcat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strchr.texi
+Hash: 91fade2e19fa83ad5590281a8e15b2056505d2812d8c5741760a5ad0dbea0bff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strchr
+#@section @code{strchr}
+#@findex strchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strchr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strcmp.texi
+Hash: 7fbbcf029f56138b09c72dda4b9ef0fecc39fbed9deff9b401c58a58d9a0666d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcmp
+#@section @code{strcmp}
+#@findex strcmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strcoll.texi
+Hash: ee188da4f400e65ed26ff9866ff2b8bc30f430eb0512b332087ea2c2cd7a5a7f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcoll
+#@section @code{strcoll}
+#@findex strcoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcoll.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strcoll_l.texi
+Hash: edfafaa4cc6ba9b3a175802811fc246df5f91d0e63ab0790111490fde6c12719
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcoll_l
+#@section @code{strcoll_l}
+#@findex strcoll_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcoll_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strcpy.texi
+Hash: 2b0a1e8d63a747c6e10fdbdea6ebb0c24d6c6ca2a7c397a53b918eeb2ef6ff3d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcpy
+#@section @code{strcpy}
+#@findex strcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strcspn.texi
+Hash: 94cc29735d1e83beac880fb97a531b0c6f2a2783f478fa86e97ed03beb2b9920
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strcspn
+#@section @code{strcspn}
+#@findex strcspn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strcspn.html}
+#
+#Gnulib module: strcspn
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/strdup.texi
+Hash: 045dfd18a8b270e77e36277809c55abff0128a0b9029d4decc6afaeed460a08b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strdup
+#@section @code{strdup}
+#@findex strdup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strdup.html}
+#
+#Gnulib module: strdup or strdup-posix
+#
+#Portability problems fixed by either Gnulib module @code{strdup} or @code{strdup-posix}:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@item
+#This function has no prototype in @code{<string.h>} on some old platforms.
+#@end itemize
+
+File: ./doc/posix-functions/strerror.texi
+Hash: b8b53ff22e7edfdd1ffa1e448407b39e80470f5bce87c775e406765a97263fe7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strerror
+#@section @code{strerror}
+#@findex strerror
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strerror.html}
+#
+#Gnulib module: strerror
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@item
+#This function does not support the error values that are specified by POSIX
+#but not defined by the system, on some platforms:
+
+File: ./doc/posix-functions/strerror_l.texi
+Hash: a02032d1af6e599476219e5ff404c30bede78cee58da6ccb0197d0c5e7d9c5a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strerror_l
+#@section @code{strerror_l}
+#@findex strerror_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strerror_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strerror_r.texi
+Hash: 62874d18f06f58af8ef7a84e900cbf6a0912c558dfd0a20144dc6cc45bfb2c48
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strerror_r
+#@section @code{strerror_r}
+#@findex strerror_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strerror_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strfmon.texi
+Hash: 9ee64b73d67aa190bec10ff662e522af5c95efa58b091cf0b6b95ab6dea7f54c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strfmon
+#@section @code{strfmon}
+#@findex strfmon
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strfmon.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strfmon_l.texi
+Hash: 951fbe0fd04da1ac6ec3e5d5e9e25a1ffff8cfbe2af8461f983b46a8b8087809
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strfmon_l
+#@section @code{strfmon_l}
+#@findex strfmon_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strfmon_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strftime.texi
+Hash: 2179be9ea7f8728eb9666e1eaf244afabb1776e0aa5cfa301eb494dda908f72c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strftime
+#@section @code{strftime}
+#@findex strftime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strftime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strftime_l.texi
+Hash: 2b951eeeafdb7d06f61bd455bfbe223cb6aa0dd8c6bbe1f207dd5d52d07b13a4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strftime_l
+#@section @code{strftime_l}
+#@findex strftime_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strftime_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strlen.texi
+Hash: 9d334c502f628671c63c034801c7e852a2e7800124aa68628543bdb69ecc5684
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strlen
+#@section @code{strlen}
+#@findex strlen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strlen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strncasecmp.texi
+Hash: e5148eae134f9d79ab3966b17c5120ad16132967ed193205abdc9f704ab59d6c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strncasecmp
+#@section @code{strncasecmp}
+#@findex strncasecmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncasecmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strncasecmp_l.texi
+Hash: 3b874f7e054f2f3d2998d2cce8ffd7973b63dab2a40949e464bfd1d728459114
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strncasecmp_l
+#@section @code{strncasecmp_l}
+#@findex strncasecmp_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncasecmp_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strncat.texi
+Hash: 654e14224e9e3ed7ebad2de0510dbed9efce12256abd7259258bec7ae5c780b0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strncat
+#@section @code{strncat}
+#@findex strncat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strncmp.texi
+Hash: 2c3a13c7830cccc3f0be728c0540ddb7ff29f8351df316dfb24b4f1f921aea7b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strncmp
+#@section @code{strncmp}
+#@findex strncmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strncpy.texi
+Hash: 4c05ddf672725788270b9d16711cdbddf4f81bbd16e806664314c222a0a8ecc0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strncpy
+#@section @code{strncpy}
+#@findex strncpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strncpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strndup.texi
+Hash: ec1c126888ea4ef0b27a3f98df47b67a5ec5102a51b9885ba7336ee6784fc6b2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strndup
+#@section @code{strndup}
+#@findex strndup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strndup.html}
+#
+#Gnulib module: strndup
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5, BeOS.
+#@item
+#This function does not NUL-terminate the result on some platforms:
+
+File: ./doc/posix-functions/strnlen.texi
+Hash: 354bc895a0b87fd89bdd8ee323c4d2ec021252f194ef630ec03cc4d8a1fb7554
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strnlen
+#@section @code{strnlen}
+#@findex strnlen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strnlen.html}
+#
+#Gnulib module: strnlen
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, mingw, Interix 3.5.
+#@item
+#This function is buggy on some platforms:
+
+File: ./doc/posix-functions/strpbrk.texi
+Hash: 9557cbb965eb68e1a8e3a75904d406cdac427d63f8d312e48f06b63112641189
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strpbrk
+#@section @code{strpbrk}
+#@findex strpbrk
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strpbrk.html}
+#
+#Gnulib module: strpbrk
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/strptime.texi
+Hash: ef3417cc5487eadb9fc54afbab9f4462fdae78770f52efe81eb8c9362b1a8e11
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strptime
+#@section @code{strptime}
+#@findex strptime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strptime.html}
+#
+#Gnulib module: strptime
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/strrchr.texi
+Hash: a4a53fda2b5af669b4617b1bdbcafe0fe580a8fb9d5d8d9d5de32baedcd16e80
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strrchr
+#@section @code{strrchr}
+#@findex strrchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strrchr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strsignal.texi
+Hash: 58c763d79113d00d2daf87b0ea1ca853653533082ecf927ef77d737ebb214c96
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strsignal
+#@section @code{strsignal}
+#@findex strsignal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strsignal.html}
+#
+#Gnulib module: strsignal
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 4.3.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, mingw.
+#
+#@item
+
+File: ./doc/posix-functions/strspn.texi
+Hash: 47c5ad5b37dcc46737f8b28f1398366d4240315e8f53ece412d032dc9bc7b440
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strspn
+#@section @code{strspn}
+#@findex strspn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strspn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strstr.texi
+Hash: 51205fda2f8406dc3daf66d5ea624d5963fe65610dfab99e46a1785fca95ec46
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strstr
+#@section @code{strstr}
+#@findex strstr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strstr.html}
+#
+#Gnulib module: strstr or strstr-simple
+#
+#Portability problems fixed by either Gnulib module @code{strstr-simple}
+#or @code{strstr}:
+#@itemize
+#@item
+#This function can trigger memchr bugs on some platforms:
+#glibc 2.10.
+#@end itemize
+
+File: ./doc/posix-functions/strtod.texi
+Hash: adba58dc750ac05f63ccdc0320c3ea4c0880205e3336a5666aa8cbdbc5fb5cf1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtod
+#@section @code{strtod}
+#@findex strtod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtod.html}
+#
+#Gnulib module: strtod
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#
+#@item
+#This function mis-parses strings with leading @samp{+} on some old platforms:
+
+File: ./doc/posix-functions/strtof.texi
+Hash: f83812681f499b58973a270204a0b5d82f5efe872f0ddc2ffe61902c91845a14
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtof
+#@section @code{strtof}
+#@findex strtof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strtoimax.texi
+Hash: b479a9a1a65dddbcd340e536ac8bf12ab8474dec475b665594875c836c7b0c7b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoimax
+#@section @code{strtoimax}
+#@findex strtoimax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoimax.html}
+#
+#Gnulib module: strtoimax
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#OpenBSD 3.8, AIX 4.3.2, IRIX 6.5, OSF/1 5.1, Solaris 9, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/strtok.texi
+Hash: 76ae3da669ccced4bbe8c116203fe16def6351c6762a852bbf1a5f130e1b71aa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtok
+#@section @code{strtok}
+#@findex strtok
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtok.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strtok_r.texi
+Hash: 5532819e105838ee4483b268600ad0ab59dbff5a536f814ad80c711e8f0fdaac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtok_r
+#@section @code{strtok_r}
+#@findex strtok_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtok_r.html}
+#
+#Gnulib module: strtok_r
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@item
+#This function crashes when invoked from code compiled with optimization enabled
+
+File: ./doc/posix-functions/strtol.texi
+Hash: 478cd81757360e8ff9c6d66c0d859402961adac17a3166c02d8291432b546cc3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtol
+#@section @code{strtol}
+#@findex strtol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtol.html}
+#
+#Gnulib module: strtol
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/strtold.texi
+Hash: cc0d00fe20a006116f837e389883fd2c3bedef7c16b2e55d8f379052aa8f33af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtold
+#@section @code{strtold}
+#@findex strtold
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtold.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/strtoll.texi
+Hash: 3aa3df77f158c0f7cc3a99994f2281a6a5ba800aa43fcdbdbd265c4fb4bab884
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoll
+#@section @code{strtoll}
+#@findex strtoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoll.html}
+#
+#Gnulib module: strtoll
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, OSF/1 5.1, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/strtoul.texi
+Hash: fa2e866b9953be91e9970e632d9eb90cf63d61c43c2f431084379e169bd72bb1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoul
+#@section @code{strtoul}
+#@findex strtoul
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoul.html}
+#
+#Gnulib module: strtoul
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some old platforms.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-functions/strtoull.texi
+Hash: 7672cc8ef139fb96545da9219cbb7e967b8365abd92d12f235ead6afddfdea98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoull
+#@section @code{strtoull}
+#@findex strtoull
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoull.html}
+#
+#Gnulib module: strtoull
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11, OSF/1 5.1, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/strtoumax.texi
+Hash: 5d686d899707d3f7ed00e8545527d6cb3334bddbf769f422c9077c9c908c59f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strtoumax
+#@section @code{strtoumax}
+#@findex strtoumax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strtoumax.html}
+#
+#Gnulib module: strtoumax
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#OpenBSD 3.8, AIX 5.1, IRIX 6.5, OSF/1 5.1, Solaris 9, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/strxfrm.texi
+Hash: 38eb4167ca28913e09d1aa3cebce875f918b4004b3def72276795b854da15103
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strxfrm
+#@section @code{strxfrm}
+#@findex strxfrm
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strxfrm.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/strxfrm_l.texi
+Hash: 5877b7bc3ae18925e11da5490d2bf91124f91afffa86d7adbc9daee59b9ce3b8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strxfrm_l
+#@section @code{strxfrm_l}
+#@findex strxfrm_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/strxfrm_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/swab.texi
+Hash: 5f1b9e4cd038dfa4ba9b6cced84f7ca4a093bcc874734b7308a6c9f908e2a979
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node swab
+#@section @code{swab}
+#@findex swab
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/swab.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/swprintf.texi
+Hash: 05d43b5965871120633aaa8e07db8b65e0b5c76f32a79209886f5cd9808d9574
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node swprintf
+#@section @code{swprintf}
+#@findex swprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/swprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/swscanf.texi
+Hash: bdb33f918f65de4079d17d12db4ce89974b98874586b5239708ca87ea604bf47
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node swscanf
+#@section @code{swscanf}
+#@findex swscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/swscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/symlink.texi
+Hash: 8ab46669c8aa3f1a94011e96ead35ad94b6b860acfdf93045e2f5fcb4abe68a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node symlink
+#@section @code{symlink}
+#@findex symlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/symlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/symlinkat.texi
+Hash: 74823e16d2e2127a2cea8f8012bde6f13eb46e16b92b95378e44ff1ccdfbe489
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node symlinkat
+#@section @code{symlinkat}
+#@findex symlinkat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/symlinkat.html}
+#
+#Gnulib module: symlinkat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/sync.texi
+Hash: f3254dc3fe6e69ccec6ed1fabcc4a937b762d47399b42417b4602600f7a74e02
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sync
+#@section @code{sync}
+#@findex sync
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sync.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/sysconf.texi
+Hash: 7fa91e5905cb666480886ed1fbfcc8bd6143aa15ad991c50e185713932e3954d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sysconf
+#@section @code{sysconf}
+#@findex sysconf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sysconf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/syslog.texi
+Hash: 3fa7a8bce58b4fc35d8de2b7f83302751a10774cd9c47317a649594a412d85a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node syslog
+#@section @code{syslog}
+#@findex syslog
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/syslog.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/system.texi
+Hash: f2f18381b4fc011d3e3ff57014455b7ad72095ab5dfcd5110c38ad243b1a574a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node system
+#@section @code{system}
+#@findex system
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/system.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tan.texi
+Hash: 2548baf13b89054a685577793dcb420503cb01784088d0b67f0b8d4ebef7619e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tan
+#@section @code{tan}
+#@findex tan
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tan.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/tanf.texi
+Hash: a1ccbad3ea8fc17a79b7965bd07071f3f7a644b3ac32045136f0e3d23ec6da47
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tanf
+#@section @code{tanf}
+#@findex tanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tanh.texi
+Hash: 323d1753b2bff97aa6a4d046eb95e878347cfbcce6759c4063bcb2a2700fcac6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tanh
+#@section @code{tanh}
+#@findex tanh
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanh.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/tanhf.texi
+Hash: 585f42d0c0f485ddd0481ca748825a4c1120748889c8bf8cfb92d8e2896045d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tanhf
+#@section @code{tanhf}
+#@findex tanhf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanhf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tanhl.texi
+Hash: 78a63792dc3fb91f708b6fee2002e2f3cbfd37e4de31be1eb5788e483f6db288
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tanhl
+#@section @code{tanhl}
+#@findex tanhl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanhl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tanl.texi
+Hash: 506a2a087c69a32413365c5cc59a894210da81f58ffa38d9342524d45ac84243
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tanl
+#@section @code{tanl}
+#@findex tanl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tanl.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcdrain.texi
+Hash: db2ff21ff51f9c0ea21890eafa4e14d4cdcae60837f9aad0aac6d5ef96f769f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcdrain
+#@section @code{tcdrain}
+#@findex tcdrain
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcdrain.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcflow.texi
+Hash: 2cf29c5dda1ad174414674a2cf89d10e0da61f1bde45d97c7b529e04fcbc41bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcflow
+#@section @code{tcflow}
+#@findex tcflow
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcflow.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcflush.texi
+Hash: e8023b50addee8b28e96ff5b5fa800c3d112d7fe5954fd200142697499fe9a31
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcflush
+#@section @code{tcflush}
+#@findex tcflush
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcflush.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcgetattr.texi
+Hash: 4df9e953232c6815dc79daf79e34deec796ff7d1a571df03a7286e75ac5bf9f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcgetattr
+#@section @code{tcgetattr}
+#@findex tcgetattr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcgetattr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcgetpgrp.texi
+Hash: 929a9e3c434cd83961f1091fd879ec9319832d9a1dcc32cee93a0a2e113a1fd2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcgetpgrp
+#@section @code{tcgetpgrp}
+#@findex tcgetpgrp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcgetpgrp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcgetsid.texi
+Hash: 51246de9b6b65dcd29ae45a202226470a5c414dd3d410f555ddd4843cd7f4300
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcgetsid
+#@section @code{tcgetsid}
+#@findex tcgetsid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcgetsid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcsendbreak.texi
+Hash: 75192304ee0383d9d9794c92e1a21890b0f0b483a5728e8c855fd8465e3e405f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcsendbreak
+#@section @code{tcsendbreak}
+#@findex tcsendbreak
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcsendbreak.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcsetattr.texi
+Hash: 6cb8777002ba2e5fa4ee6b5b5b24bb8f26d030711132e546d4024dca56f3143c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcsetattr
+#@section @code{tcsetattr}
+#@findex tcsetattr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcsetattr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tcsetpgrp.texi
+Hash: 5f5d907f551275116726385beb40b9a93cc627d3ec22cc80438ab198ef99b131
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tcsetpgrp
+#@section @code{tcsetpgrp}
+#@findex tcsetpgrp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tcsetpgrp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tdelete.texi
+Hash: 743411155abe9d4d6ea3db338cb01d5793ca8941833126cf12c40c7a1a62fba6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tdelete
+#@section @code{tdelete}
+#@findex tdelete
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tdelete.html}
+#
+#Gnulib module: tsearch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@item
+#@code{tdelete} returns @code{NULL} when removing the last element of a tree
+
+File: ./doc/posix-functions/telldir.texi
+Hash: 11cc06c4ebed4b75dd250b1e0d7f6c484c5efd024f99cc72605dee3dd4e37289
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node telldir
+#@section @code{telldir}
+#@findex telldir
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/telldir.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tempnam.texi
+Hash: 5374a2d9bda620f20d7b0e7ff1338996187c94b68069775c6843bec9cbd83307
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tempnam
+#@section @code{tempnam}
+#@findex tempnam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tempnam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tfind.texi
+Hash: ae8afd2eeb59398111a80bc961cca20e8d133a9bb048511d1f4306337d1c6cb7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tfind
+#@section @code{tfind}
+#@findex tfind
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tfind.html}
+#
+#Gnulib module: tsearch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/tgamma.texi
+Hash: 5ca38955dab4ce6bfd9f61431c2c951e0a15408d7badaeb3a6f04de57a479c8e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tgamma
+#@section @code{tgamma}
+#@findex tgamma
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tgamma.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tgammaf.texi
+Hash: 99ee30fd4ccc81ec31d37b8c92e5f73f72aa25df0ecc6a890e333694d95aa450
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tgammaf
+#@section @code{tgammaf}
+#@findex tgammaf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tgammaf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tgammal.texi
+Hash: a34594b5d992fbd9d2ee3d630e41c30a2933670fc3c919693b58fe75eb281688
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tgammal
+#@section @code{tgammal}
+#@findex tgammal
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tgammal.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/time.texi
+Hash: 16c2fb4377781ee1d83d384004670abaaa5b4340f5a5d3fa90b3a5e75a552f88
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node time
+#@section @code{time}
+#@findex time
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/time.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/timer_create.texi
+Hash: a78b5d9fddb3b0e38eb12f1ad442e64b16db90732893875b4d6bae5341152518
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node timer_create
+#@section @code{timer_create}
+#@findex timer_create
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_create.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/timer_delete.texi
+Hash: 2c2e487fad74e481ec0ef80f805bc04993d69f6b50c2f97c3757b2b29573dc61
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node timer_delete
+#@section @code{timer_delete}
+#@findex timer_delete
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_delete.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/timer_getoverrun.texi
+Hash: 23232ec05fbd7834bad0c5dad506c88ebe2c884fd8c303b913f79ba31c76fc6f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node timer_getoverrun
+#@section @code{timer_getoverrun}
+#@findex timer_getoverrun
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_getoverrun.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/timer_gettime.texi
+Hash: 7e92301a5ff64562c7cd009453b91b9be29abf75c1ef65daefc14ff865249300
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node timer_gettime
+#@section @code{timer_gettime}
+#@findex timer_gettime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_gettime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/timer_settime.texi
+Hash: 8bfaf4e88066cc93846df1a23d788fabf61c3be89fdd3195f934c2479e16123c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node timer_settime
+#@section @code{timer_settime}
+#@findex timer_settime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timer_settime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/times.texi
+Hash: 4b480d61e6dcfe3f0b24cb82dc5d20be0bb6d167ec66c561c37255751821f969
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node times
+#@section @code{times}
+#@findex times
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/times.html}
+#
+#Gnulib module: times
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/timezone.texi
+Hash: b83ab677215817b1528836ef12de7773c8adbdbb48e495ef2c7a1ab5dd616c7b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node timezone
+#@section @code{timezone}
+#@findex timezone
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/timezone.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tmpfile.texi
+Hash: edbab21902041e8d278c6745d0290e1659e7d0a29f3f0b6583bc7b860136e14a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tmpfile
+#@section @code{tmpfile}
+#@findex tmpfile
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tmpfile.html}
+#
+#Gnulib module: tmpfile
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function often fails for trivial reasons on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/tmpnam.texi
+Hash: 9f8cf065941f401bc1e26df99d907d69353ab52d98c46fc54127b405a144a3a9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tmpnam
+#@section @code{tmpnam}
+#@findex tmpnam
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tmpnam.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/toascii.texi
+Hash: a97da9d9fd148dad24bcad63d57d69efb5d18fb115eab3e85e04f1a5c4d51e4e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node toascii
+#@section @code{toascii}
+#@findex toascii
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/toascii.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/tolower.texi
+Hash: 196548b9522eb8b3c56f209a99d1e13daf87f5f7f2dcd8a1b88eaa49180bbce9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tolower
+#@section @code{tolower}
+#@findex tolower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tolower.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tolower_l.texi
+Hash: ea6dc968b7beb65776cd2184cf2b9b1504f25b58bbcb22ba1c8ae30e387cfe08
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tolower_l
+#@section @code{tolower_l}
+#@findex tolower_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tolower_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/toupper.texi
+Hash: e2defa72d3095d58b3ba26fce4a0aa35b98f40a3f1e08be65e7490c9ed2dc142
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node toupper
+#@section @code{toupper}
+#@findex toupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/toupper.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/toupper_l.texi
+Hash: 20eedfcf323d2479bb4dbbd241cc190f8ff601fe0516815011c12011b4574cbd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node toupper_l
+#@section @code{toupper_l}
+#@findex toupper_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/toupper_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/towctrans.texi
+Hash: 8a1e03793aab23ee1d7076c4d9319a4f1b361362e121fa37248bd3503d4a4665
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node towctrans
+#@section @code{towctrans}
+#@findex towctrans
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towctrans.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/towctrans_l.texi
+Hash: ce31c960b403299b70c3a391016c626884a941aa1cbfcce216840436bf7b7b37
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node towctrans_l
+#@section @code{towctrans_l}
+#@findex towctrans_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towctrans_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/towlower.texi
+Hash: edd5f5eb25dfcebf7dc296ba43b616d3b4002387d649c2abaa1a044b20643a8d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node towlower
+#@section @code{towlower}
+#@findex towlower
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towlower.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@end itemize
+
+File: ./doc/posix-functions/towlower_l.texi
+Hash: 0ba70fedd9ed1733360ed322e14367f432080bf314f87bc6e83649fc9f7e2326
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node towlower_l
+#@section @code{towlower_l}
+#@findex towlower_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towlower_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/towupper.texi
+Hash: f46446812e0e4d98a8fbf546a8bf40e189b7fab597162b8ada7ec247311c4fe3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node towupper
+#@section @code{towupper}
+#@findex towupper
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towupper.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1.
+#@end itemize
+
+File: ./doc/posix-functions/towupper_l.texi
+Hash: 3a01be213186f9daf15f189b511d432b1929134741e4e08800b2394700cfe591
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node towupper_l
+#@section @code{towupper_l}
+#@findex towupper_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/towupper_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/trunc.texi
+Hash: 2c7faf7f86690c2de6fef3d76f0688aad0b11e1eadce8e1ee31e3963ae357601
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node trunc
+#@section @code{trunc}
+#@findex trunc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/trunc.html}
+#
+#Gnulib module: trunc
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, Solaris 9, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/truncate.texi
+Hash: ad6988f2a3cf922df9d441be49aceaf0213a6ef329c5e192db4736ae321057a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node truncate
+#@section @code{truncate}
+#@findex truncate
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/truncate.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/truncf.texi
+Hash: de12f43f978664b351f577e9a5daef41a3fc84222f4f5fc9262f8db26b0f3f25
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node truncf
+#@section @code{truncf}
+#@findex truncf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/truncf.html}
+#
+#Gnulib module: truncf
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, Solaris 9, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/truncl.texi
+Hash: d6a3a1679bb8e28f9a3a76b46add1afd31d4ca16e9ba4f3f695ae8d4e2393119
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node truncl
+#@section @code{truncl}
+#@findex truncl
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/truncl.html}
+#
+#Gnulib module: truncl
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 9, Cygwin, Interix 3.5, BeOS.
+#@item
+#This function crashes on some platforms:
+
+File: ./doc/posix-functions/tsearch.texi
+Hash: f6916106a56867ee562714e2d11a56ee7e62ba2a5b044f890f5950fc751ff1ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tsearch
+#@section @code{tsearch}
+#@findex tsearch
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tsearch.html}
+#
+#Gnulib module: tsearch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/ttyname.texi
+Hash: 3a53e9dbfb459ef95a6ffd1bd907d0bcd515b0307761cacb5721be060046a0e8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ttyname
+#@section @code{ttyname}
+#@findex ttyname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ttyname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ttyname_r.texi
+Hash: f6cbfb6ecafbe6dfdb5f40882b617419be277fa894414db40639a726aec47b7e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ttyname_r
+#@section @code{ttyname_r}
+#@findex ttyname_r
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ttyname_r.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/twalk.texi
+Hash: 90a77428e374001fd58a522352dbfa4286280c931b9524ea5a2723f8899129ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node twalk
+#@section @code{twalk}
+#@findex twalk
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/twalk.html}
+#
+#Gnulib module: tsearch
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/tzname.texi
+Hash: 0441a989ad0b47a309a27221970489ae177f7356e8eb7363d67c878656b54452
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tzname
+#@section @code{tzname}
+#@findex tzname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tzname.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/tzset.texi
+Hash: 7231d68420d2e952b405f8b492d785b0bf45c997a872cf32b108435420f627ba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tzset
+#@section @code{tzset}
+#@findex tzset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/tzset.html}
+#
+#Gnulib module: tzset
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function clobbers the buffer used by the localtime function on some
+#platforms:
+#Solaris 2.6.
+#@end itemize
+
+File: ./doc/posix-functions/ulimit.texi
+Hash: 328ce2059c0079cf2abc56052da27d917f58ab3422f811cf714d9e423fd04c2a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ulimit
+#@section @code{ulimit}
+#@findex ulimit
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ulimit.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/umask.texi
+Hash: 8a2f402496200e1fc0c0fd2e0bccccf52b3dcaa6eddfbc48ae47d087deeeb0cf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node umask
+#@section @code{umask}
+#@findex umask
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/umask.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/uname.texi
+Hash: 6755bde328f8c8a2e26f8eab4760f1a7d572c5339449f2882fdad83f7ff92001
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node uname
+#@section @code{uname}
+#@findex uname
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/uname.html}
+#
+#Gnulib module: uname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#mingw.
+#@end itemize
+
+File: ./doc/posix-functions/ungetc.texi
+Hash: 1c34639f7f967f2a66214ca4d0cecc7ff95302248f83b9a70f7e3c06e141669d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ungetc
+#@section @code{ungetc}
+#@findex ungetc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ungetc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/ungetwc.texi
+Hash: 0d06c6a96b420d7b9dccd98aabbd9baac8521acd967cae84e6022cdb8a31c2e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ungetwc
+#@section @code{ungetwc}
+#@findex ungetwc
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/ungetwc.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/unlink.texi
+Hash: 1958802de215f64594d391a7f9879329562d8ee7e6321902fc20d289e90a113a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node unlink
+#@section @code{unlink}
+#@findex unlink
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unlink.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/unlinkat.texi
+Hash: 098fa59dd086b58401a4710af7fb3c3171a08c95cf2395f5307f02161cd88f5e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node unlinkat
+#@section @code{unlinkat}
+#@findex unlinkat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unlinkat.html}
+#
+#Gnulib module: openat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#glibc 2.3.6, MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX
+#5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#But the replacement function is not safe to be used in libraries and is not multithread-safe.
+
+File: ./doc/posix-functions/unlockpt.texi
+Hash: e50e8903ad77ab19f79c13a319ed068480f63ddd947f8dc15a13e534280ff990
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node unlockpt
+#@section @code{unlockpt}
+#@findex unlockpt
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unlockpt.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/unsetenv.texi
+Hash: 1541d212606cd33eb1679bcda974df45e99a82dfd665f7d33aac243662a838d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node unsetenv
+#@section @code{unsetenv}
+#@findex unsetenv
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unsetenv.html}
+#
+#Gnulib module: setenv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 9, mingw, BeOS.
+#@item
+#This function has the return type @samp{void} instead of @samp{int} on some
+
+File: ./doc/posix-functions/uselocale.texi
+Hash: a1209e949b8c92d82a51dae8e2148b275f81c13b3dd348f543a0b62d47e94db2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node uselocale
+#@section @code{uselocale}
+#@findex uselocale
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/uselocale.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/utime.texi
+Hash: a24aa88412826d7b02bfe1f02fb6795c7b9a8a59b60ff0a975ec583740290792
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node utime
+#@section @code{utime}
+#@findex utime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/utime.html}
+#
+#Gnulib module: utime
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#On some old platforms (Sequent), @code{utime (file, NULL)} fails to set the
+#file's timestamp to the current time.
+#@end itemize
+
+File: ./doc/posix-functions/utimensat.texi
+Hash: 173c9ec29703395497e840d32a3fa8155bc291e23d2efa0a7a54e4b42d86a219
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node utimensat
+#@section @code{utimensat}
+#@findex utimensat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/utimensat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/utimes.texi
+Hash: 8d51beec714b4e3c4ad595e9be1b118696c5a12977fa12a42a629ad03f4669b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node utimes
+#@section @code{utimes}
+#@findex utimes
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/utimes.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/va_arg.texi
+Hash: 2da6d5e606404f38325aec110f29032d73d826516de59cd65a1b0cc3e5ef1e9b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node va_arg
+#@section @code{va_arg}
+#@findex va_arg
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/va_arg.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/va_copy.texi
+Hash: 89c374aa138c4359ac2b7e0059a6884cc316ed6c9742a1889fcc910d71cfba01
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node va_copy
+#@section @code{va_copy}
+#@findex va_copy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/va_copy.html}
+#
+#Gnulib module: stdarg
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This macro is missing on some platforms:
+#AIX 5.1 with cc or xlc, HP-UX 11 with cc, IRIX 6.5 with cc, OSF/1 5.1 with cc.
+#@end itemize
+
+File: ./doc/posix-functions/va_end.texi
+Hash: 71e8d133b425de3bb999821a3f0e5b9939a9b340de8f85f096f86886c9d05d1b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node va_end
+#@section @code{va_end}
+#@findex va_end
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/va_end.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/va_start.texi
+Hash: 13ed783939fb33555b552e86b00411ec0032076a9d909a99b9812c75e0080654
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node va_start
+#@section @code{va_start}
+#@findex va_start
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/va_start.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/vdprintf.texi
+Hash: 855f46947553e9d6e745ed76dd9fc96252202d5a7670d1f7edb31f897d59c866
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vdprintf
+#@section @code{vdprintf}
+#@findex vdprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vdprintf.html}
+#
+#Gnulib module: vdprintf or vdprintf-posix
+#
+#Portability problems fixed by either Gnulib module @code{vdprintf} or @code{vdprintf-posix}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5.
+#@end itemize
+
+File: ./doc/posix-functions/vfprintf.texi
+Hash: ea7d201cdc68907be08bab243835a24441895b202d77e63b48559ddc9086c069
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vfprintf
+#@section @code{vfprintf}
+#@findex vfprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfprintf.html}
+#
+#Gnulib module: vfprintf-posix or stdio, sigpipe
+#
+#Portability problems fixed by Gnulib module @code{vfprintf-posix}:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+
+File: ./doc/posix-functions/vfscanf.texi
+Hash: f0b4648d4126271ca14486c4fece1894aca7086f8db26508927cd4d246a2f77f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vfscanf
+#@section @code{vfscanf}
+#@findex vfscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/vfwprintf.texi
+Hash: 200c520c974f536a06bfb5ce702add69f502c35b3b57c25eac925fcde5db8f86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vfwprintf
+#@section @code{vfwprintf}
+#@findex vfwprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfwprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/vfwscanf.texi
+Hash: 1468115a6058c2641c7ae1ca0a62944642b5841ba17513ad35c6c43fde79142e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vfwscanf
+#@section @code{vfwscanf}
+#@findex vfwscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vfwscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/vprintf.texi
+Hash: ee2fa0a176a8b7c847e9ec8b4a3bc56c77937cb49dc176fa078e41637967586d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vprintf
+#@section @code{vprintf}
+#@findex vprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vprintf.html}
+#
+#Gnulib module: vprintf-posix or stdio, sigpipe
+#
+#Portability problems fixed by Gnulib module @code{vprintf-posix}:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+
+File: ./doc/posix-functions/vscanf.texi
+Hash: eca0bed937adee2b64abc9215eb27744f667f0d4eda4a232a7dad80995a36c1c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vscanf
+#@section @code{vscanf}
+#@findex vscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/vsnprintf.texi
+Hash: 3e468e6f97b3571aee0963c7fc2871601b0e518e07a1df85fb873f8c25d6bcc2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vsnprintf
+#@section @code{vsnprintf}
+#@findex vsnprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vsnprintf.html}
+#
+#Gnulib module: vsnprintf or vsnprintf-posix
+#
+#Portability problems fixed by either Gnulib module @code{vsnprintf} or @code{vsnprintf-posix}:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, OSF/1 4.0, Solaris 2.5.1.
+#@item
+#This function overwrites memory even when a size argument of 1 is passed on some
+
+File: ./doc/posix-functions/vsprintf.texi
+Hash: 8a9b9edf7d98f987517cb3b7650a739a7d959ba37dfc9ead9527dc4f9257c2a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vsprintf
+#@section @code{vsprintf}
+#@findex vsprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vsprintf.html}
+#
+#Gnulib module: vsprintf-posix
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function does not support size specifiers as in C99 (@code{hh}, @code{ll},
+#@code{j}, @code{t}, @code{z}) on some platforms:
+#AIX 5.1, HP-UX 11.23, IRIX 6.5, OSF/1 5.1, Solaris 9, Cygwin 1.5.24, mingw, BeOS.
+#@item
+
+File: ./doc/posix-functions/vsscanf.texi
+Hash: a962e8a48ae62bf84f0ca9e7a5c3f1a5e9f96e855b3f79cff91032624d693a88
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vsscanf
+#@section @code{vsscanf}
+#@findex vsscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vsscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/vswprintf.texi
+Hash: 705139250cb9f7e443a4dc17c4728cd63e8fd6e2c9414bca636536cda23fd758
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vswprintf
+#@section @code{vswprintf}
+#@findex vswprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vswprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/vswscanf.texi
+Hash: e7a04f078ac79b1890e517f87e8d4694a6e45679b0fb48f236580d197a4e46ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vswscanf
+#@section @code{vswscanf}
+#@findex vswscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vswscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/vwprintf.texi
+Hash: b72b770973a6ef5051e9ff66aa22bcbc8b58a2c6431543512147c1f22ff9c9a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vwprintf
+#@section @code{vwprintf}
+#@findex vwprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vwprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/vwscanf.texi
+Hash: 923b5d92b22daf9ad2ccba87d91bfa15e157309420f4db651b8629ca43207c6d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node vwscanf
+#@section @code{vwscanf}
+#@findex vwscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/vwscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wait.texi
+Hash: 7b072a3b82336d00ed25a885cbda48782e1b863c4c027836b77ce61763f3bcc5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wait
+#@section @code{wait}
+#@findex wait
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wait.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/waitid.texi
+Hash: f1062ba46c44cfd335b13fa64595732f330100537d8e9339af1abdd7571845d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node waitid
+#@section @code{waitid}
+#@findex waitid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/waitid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/waitpid.texi
+Hash: 5676832d45eb43ebf1c1aea887bc4c019db4810fbbb16cce5cdc283748655ac9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node waitpid
+#@section @code{waitpid}
+#@findex waitpid
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/waitpid.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcpcpy.texi
+Hash: adbf37b23fbedfbd3bef3f5c4c0088880a853cfbad97f9a7c943fef6cb366636
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcpcpy
+#@section @code{wcpcpy}
+#@findex wcpcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcpcpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcpncpy.texi
+Hash: 89c94c9fc1d0bd17f9cdd12a4dc7fc1d510297fd642acbb2ea6f35e3e97c1572
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcpncpy
+#@section @code{wcpncpy}
+#@findex wcpncpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcpncpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcrtomb.texi
+Hash: 20040edab7d3f5b765282992f971d3c8adc2532ca47ffba40dbb3791f4a66dc0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcrtomb
+#@section @code{wcrtomb}
+#@findex wcrtomb
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcrtomb.html}
+#
+#Gnulib module: wcrtomb
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function returns 0 when the first argument is NULL in some locales on some platforms:
+
+File: ./doc/posix-functions/wcscasecmp.texi
+Hash: 66134fa29f6569f7caaa554bd0513520f1e5319669215d2b3edb1b5732391db9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcscasecmp
+#@section @code{wcscasecmp}
+#@findex wcscasecmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscasecmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcscasecmp_l.texi
+Hash: 92ad8bd9e265fce46bc834d14274050bb01214d2391ccdc3caf5d1961f54f444
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcscasecmp_l
+#@section @code{wcscasecmp_l}
+#@findex wcscasecmp_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscasecmp_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcscat.texi
+Hash: fdccf8e9cbeccb400ec7d5a4539b3af4454602490af20dea7751c2dab2555a34
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcscat
+#@section @code{wcscat}
+#@findex wcscat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcschr.texi
+Hash: 23b351cedf83b8a8765000a2d21512ec922f12e2240a530bc21f41813933e27b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcschr
+#@section @code{wcschr}
+#@findex wcschr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcschr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcscmp.texi
+Hash: 71ddccea8ca18d3fd9f2ae85027f8b97cf654fa0316334a151d284aeb63f2666
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcscmp
+#@section @code{wcscmp}
+#@findex wcscmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcscoll.texi
+Hash: aad7c92bbfe1458195cba400ceeedc2f972b53cc82943bb8d33389ebac5806cb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcscoll
+#@section @code{wcscoll}
+#@findex wcscoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscoll.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcscoll_l.texi
+Hash: 5586b954da59befd5f0ebe05d67197dae1dba49e676f9ce27dd5fbc99ca1ad34
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcscoll_l
+#@section @code{wcscoll_l}
+#@findex wcscoll_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscoll_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcscpy.texi
+Hash: 8304e8f34e5dfb5355ee75b71b3d43120a60e068eb1ec43897ceb9a0256740a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcscpy
+#@section @code{wcscpy}
+#@findex wcscpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcscspn.texi
+Hash: 5ffbf9e0f0e2c1fc7d927eb8fd22d924e8d80327a3f0eb7fc61b3ab2d49b0cb7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcscspn
+#@section @code{wcscspn}
+#@findex wcscspn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcscspn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsdup.texi
+Hash: 1e78bf9c90542816d00bba60747a68e20620b86c752a95623727f40ab7a51668
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsdup
+#@section @code{wcsdup}
+#@findex wcsdup
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsdup.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsftime.texi
+Hash: 0fd19a9a4993f2b17716c4eac56ccb29a09cdb415a4a84ca0923b41c94d020fc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsftime
+#@section @code{wcsftime}
+#@findex wcsftime
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsftime.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcslen.texi
+Hash: e16a5c07a3374522e6426a1cc7e2905cb38bd08c629f2bc0d8edcda65b931dc2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcslen
+#@section @code{wcslen}
+#@findex wcslen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcslen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsncasecmp.texi
+Hash: 5e9069b6210dd425da54820a9ac0d1e48fc54777a9053a5fbdf09a0ae91c47b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsncasecmp
+#@section @code{wcsncasecmp}
+#@findex wcsncasecmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncasecmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsncasecmp_l.texi
+Hash: 623af56af0d98ff81b22a7026dc47dfb9c7c956abcfcf65b79de181098eb5cd9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsncasecmp_l
+#@section @code{wcsncasecmp_l}
+#@findex wcsncasecmp_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncasecmp_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsncat.texi
+Hash: 025d8c6060e4cf49fbb4d9773fea8a45f0cb32c6ac60d7cd5cf5c593de8a3098
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsncat
+#@section @code{wcsncat}
+#@findex wcsncat
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncat.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsncmp.texi
+Hash: b2a701a27ef1cd29151fdd7695d90734d9c3263f9c90979e8139694b42f3cca0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsncmp
+#@section @code{wcsncmp}
+#@findex wcsncmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsncpy.texi
+Hash: 680c88556c2891e79ba30e5426925cdf6237497b1db6cd6928f9db38175a4a73
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsncpy
+#@section @code{wcsncpy}
+#@findex wcsncpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsncpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsnlen.texi
+Hash: c88fc97c86b35cbaaafc72677673750e51c18d4839a2282280f51f3a7c94f29f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsnlen
+#@section @code{wcsnlen}
+#@findex wcsnlen
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsnlen.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsnrtombs.texi
+Hash: 38e32313de6075fb014a419f95846e08fe3b6ef0232e974dda96524b9a58ce95
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsnrtombs
+#@section @code{wcsnrtombs}
+#@findex wcsnrtombs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsnrtombs.html}
+#
+#Gnulib module: wcsnrtombs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#MacOS X 10.3, FreeBSD 5.2.1, NetBSD 3.0, OpenBSD 3.8, AIX 4.3.2, HP-UX
+#11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-functions/wcspbrk.texi
+Hash: b7e3aae920e207a4ffa9c2d58154db777dab5c03956c90676b7f830dd32b1b9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcspbrk
+#@section @code{wcspbrk}
+#@findex wcspbrk
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcspbrk.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsrchr.texi
+Hash: 4827a5725f798d8548c1dc931b4c9ba1cdf0c28742d7023b2fd5648db4f166af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsrchr
+#@section @code{wcsrchr}
+#@findex wcsrchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsrchr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsrtombs.texi
+Hash: 20549abaf5995e8fc9e206506df36fa821bd6111c06f81f5643fbb9556b833e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsrtombs
+#@section @code{wcsrtombs}
+#@findex wcsrtombs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsrtombs.html}
+#
+#Gnulib module: wcsrtombs
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 6.5, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function may set the source pointer to NULL before NUL terminating the destination string on some platforms:
+
+File: ./doc/posix-functions/wcsspn.texi
+Hash: 9830a44067be9bad8959677dbe641b591b2b3af00a0615925af0d6d559879a34
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsspn
+#@section @code{wcsspn}
+#@findex wcsspn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsspn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsstr.texi
+Hash: d40e47110c8a0582ea5f8a83b11a33c806f3aa455de094b23a17e91b3363ebf0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsstr
+#@section @code{wcsstr}
+#@findex wcsstr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsstr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstod.texi
+Hash: 842e8b42f92fd1208caa5feafd8ba211e1f8f809df69858f908c70071e535a8f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstod
+#@section @code{wcstod}
+#@findex wcstod
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstod.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstof.texi
+Hash: 26784e4f1151882911d064b9fb4dd362386ae570fcba9ad669e3db39b5b8f189
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstof
+#@section @code{wcstof}
+#@findex wcstof
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstof.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstoimax.texi
+Hash: 6eea93e73c4f3194727b65b2224f65b4f2877fa01a29c2944b8199698cdfea74
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoimax
+#@section @code{wcstoimax}
+#@findex wcstoimax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoimax.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstok.texi
+Hash: 557d0180fe43d4074b887b380e8dfe206bb8618788157779751fd3c3771a371e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstok
+#@section @code{wcstok}
+#@findex wcstok
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstok.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstol.texi
+Hash: c5b9451a8dbe0bc8c7a11b2ca01b2900c65ca297d593f90d7c575237b9da6093
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstol
+#@section @code{wcstol}
+#@findex wcstol
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstol.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstold.texi
+Hash: 2c506830e10b71cbd323b5fbe08af43575e2d3f4551b080a61a87b6db385f690
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstold
+#@section @code{wcstold}
+#@findex wcstold
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstold.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstoll.texi
+Hash: a7464fcc6fe1de31cdd9f9ce1603fcc1f573603ea086e0eba7d70e59d86a77e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoll
+#@section @code{wcstoll}
+#@findex wcstoll
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoll.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstombs.texi
+Hash: 60461f3cad84dd817af8c419fd7b6bbd16d55c9f50e1e9d5736ed893fa558782
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstombs
+#@section @code{wcstombs}
+#@findex wcstombs
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstombs.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstoul.texi
+Hash: ea33073e6a7d43480d7024db4c22205b35d28c07f51b5b7bd7ae008c264ea608
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoul
+#@section @code{wcstoul}
+#@findex wcstoul
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoul.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstoull.texi
+Hash: 9cb3f44e0ecec8fcea7543b5267aa6e0c308d6cfad5d40e00fbb9e2bde0282cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoull
+#@section @code{wcstoull}
+#@findex wcstoull
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoull.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcstoumax.texi
+Hash: b565c0f20f9d2fb4e4cfb2fd9d0287cf65ea32a8914754d89b1b1084952f6dd1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcstoumax
+#@section @code{wcstoumax}
+#@findex wcstoumax
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcstoumax.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcswidth.texi
+Hash: 896decdcde4828a47aa820a0fcb87b34d2c259ff5f12bfbbd366dc21f062ca2d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcswidth
+#@section @code{wcswidth}
+#@findex wcswidth
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcswidth.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsxfrm.texi
+Hash: a225016ded36398af868e7a7eec2100ec87aa24295fe1b89569cef92ece2b497
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsxfrm
+#@section @code{wcsxfrm}
+#@findex wcsxfrm
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsxfrm.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcsxfrm_l.texi
+Hash: 79db8278300b2e6d0cd705e56a80b189b6cd6fefd07141570ad020c6b58ade06
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcsxfrm_l
+#@section @code{wcsxfrm_l}
+#@findex wcsxfrm_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcsxfrm_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wctob.texi
+Hash: a328a016c849d39aecc034af1289545c879261dd4d1c0397c13bc897fc1ba248
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wctob
+#@section @code{wctob}
+#@findex wctob
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctob.html}
+#
+#Gnulib module: wctob
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#HP-UX 11.00, IRIX 5.3, Solaris 2.6, mingw, Interix 3.5.
+#@item
+#This function does not work on some platforms:
+
+File: ./doc/posix-functions/wctomb.texi
+Hash: 271fa327aba8172c6ff974324015b11eb97e362d59a82b5f708cf40f31a0ad77
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wctomb
+#@section @code{wctomb}
+#@findex wctomb
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctomb.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wctrans.texi
+Hash: 777b5cc1977d214324ba2a17afb9e29ac1f236adb3d8d8d17105305d0b8d7428
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wctrans
+#@section @code{wctrans}
+#@findex wctrans
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctrans.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wctrans_l.texi
+Hash: 542a8806218cda3159f88863801a4c1411528a8d93987683fcdbf4feccc4f334
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wctrans_l
+#@section @code{wctrans_l}
+#@findex wctrans_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctrans_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wctype.texi
+Hash: 2774f59844136310c38578106f1ae858d399cea66f4120c2d61347d88187bea9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wctype
+#@section @code{wctype}
+#@findex wctype
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctype.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wctype_l.texi
+Hash: 33c31ade64fdf052f408f9cf8d3fe1537a19181f94ba7c7664bb3e3950f3258b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wctype_l
+#@section @code{wctype_l}
+#@findex wctype_l
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wctype_l.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wcwidth.texi
+Hash: d006f3954b9dbe5f0f62725919a8f69247ee7b5d59027c6100ccdaa54b067c28
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wcwidth
+#@section @code{wcwidth}
+#@findex wcwidth
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcwidth.html}
+#
+#Gnulib module: wcwidth
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This function is missing on some platforms:
+#IRIX 5.3, Solaris 2.5.1, mingw, BeOS.
+#@item
+#This function handles combining characters in UTF-8 locales incorrectly on some
+
+File: ./doc/posix-functions/wmemchr.texi
+Hash: 0e16deaafb7a56b294ef7beac0845e67c88466e988628403b6ae76191929896f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wmemchr
+#@section @code{wmemchr}
+#@findex wmemchr
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemchr.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wmemcmp.texi
+Hash: 7ef06384b1bd437f31fc61be3c8ca6f2cd44db4665392435161774ecebfe8cc2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wmemcmp
+#@section @code{wmemcmp}
+#@findex wmemcmp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemcmp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wmemcpy.texi
+Hash: 371919a935508d67b755bcafdd62402723141e2fc181b84d0af55c3283d70566
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wmemcpy
+#@section @code{wmemcpy}
+#@findex wmemcpy
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemcpy.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wmemmove.texi
+Hash: c60c122626faea9445a6d85c423bd3943f18d9290dd31f23fb364dcb4a152a37
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wmemmove
+#@section @code{wmemmove}
+#@findex wmemmove
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemmove.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wmemset.texi
+Hash: 5926f9711c9be1d1a12776c1d5450ba89a635c7e8b333ba5ad91b9f3bc8cd935
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wmemset
+#@section @code{wmemset}
+#@findex wmemset
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wmemset.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wordexp.texi
+Hash: d8cf559a0d704061199c24c113cba50f0548d1daaff98b347fae58eeb7c4ad93
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wordexp
+#@section @code{wordexp}
+#@findex wordexp
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wordexp.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wordfree.texi
+Hash: f880186c7147a2fa91a929968c6a8d244d03f025699248b285ee838869ae12c4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wordfree
+#@section @code{wordfree}
+#@findex wordfree
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wordfree.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wprintf.texi
+Hash: ee3d50061cb4af26c4e9465ec1754b86d3e04370f066ba326a62dd3010bd2d98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wprintf
+#@section @code{wprintf}
+#@findex wprintf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wprintf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/write.texi
+Hash: fd88455aac642a64b0861cd64659fe85a1ebd5e22959b03c07e1f66d655d2924
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node write
+#@section @code{write}
+#@findex write
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/write.html}
+#
+#Gnulib module: write, sigpipe
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#When writing to a pipe with no readers, this function fails with error
+#@code{EINVAL}, instead of obeying the current @code{SIGPIPE} handler, on
+#some platforms:
+#mingw.
+
+File: ./doc/posix-functions/writev.texi
+Hash: f1a345feaf1b45dfce39b4541f67387416d39596695dfbe3591fb464ea2a7730
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node writev
+#@section @code{writev}
+#@findex writev
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/writev.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/wscanf.texi
+Hash: ae71fd02dddd945d442c5db2676638828bfa5cbbab67e09eb6db357b58bd121f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wscanf
+#@section @code{wscanf}
+#@findex wscanf
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wscanf.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+
+File: ./doc/posix-functions/y0.texi
+Hash: 101d5a5de97702c6a595b520995e10c8a5d87321309e9754faf260dc9b0dfe76
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node y0
+#@section @code{y0}
+#@findex y0
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/y0.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/y1.texi
+Hash: de9c81ff2036effeba44607d218f61f4d1de6705ea1d44518df8f9a059045317
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node y1
+#@section @code{y1}
+#@findex y1
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/y1.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-functions/yn.texi
+Hash: ae6fd587065d1cfd4705b711d50b84951ad55d885acebe2da13ec077928f4c38
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node yn
+#@section @code{yn}
+#@findex yn
+#
+#POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/yn.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-headers/aio.texi
+Hash: b5feffffede6b90b47f211b2664652c4c6c256ce00066d8a019328535a217723
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node aio.h
+#@section @file{aio.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/aio.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/arpa_inet.texi
+Hash: ff625ebdd28615e9101d9db60bb98cc044314373a15ccd3f277781dcd9e47d6b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node arpa/inet.h
+#@section @file{arpa/inet.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/arpa/inet.h.html}
+#
+#Gnulib module: arpa_inet
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms: mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+
+File: ./doc/posix-headers/assert.texi
+Hash: f5dd70d9b33819f71ef223c8e8178c1f74c0844199442db3f1dc94fca17fd0c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node assert.h
+#@section @file{assert.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/assert.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-headers/complex.texi
+Hash: 52bf5734bb5d06958672f56209d843d575a9159d0a403da67ea90323dc6e7a80
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node complex.h
+#@section @file{complex.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/complex.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/cpio.texi
+Hash: 4f3f64a0fee70498e119df8ea2b685d226a566fea46235d4f7ed474d78762abb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node cpio.h
+#@section @file{cpio.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/cpio.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/ctype.texi
+Hash: 2261b16ead35a385ba1290e174b81a5cdb6f21a6c43ca0d746830f02b6e75c8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ctype.h
+#@section @file{ctype.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ctype.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-headers/dirent.texi
+Hash: ae0c082fd86691f88441a0e699f09ecd8d56497a9d00c095f604702f69dd38b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dirent.h
+#@section @file{dirent.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/dirent.h.html}
+#
+#Gnulib module: dirent
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-headers/dlfcn.texi
+Hash: 7773db810790b9370b355e02d7fe355e0ff29986c349754aeae818578a77ca53
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node dlfcn.h
+#@section @file{dlfcn.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/dlfcn.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/errno.texi
+Hash: e845a33891fb534504b0b538e7d614b4ba914cd3172289569843740bd7875ef8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node errno.h
+#@section @file{errno.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/errno.h.html}
+#
+#Gnulib module: errno
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The macros @code{EOVERFLOW}, @code{ENOLINK}, @code{EMULTIHOP} are not defined
+#on some platforms:
+#OpenBSD 4.0, OSF/1 5.1, mingw.
+#@item
+#The macro @code{ECANCELED} is not defined on some platforms:
+
+File: ./doc/posix-headers/fcntl.texi
+Hash: 9e1afcf5976af7bcc27cfa70afb8b20678e579392a2da17a15d5438d320af442
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fcntl.h
+#@section @file{fcntl.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/fcntl.h.html}
+#
+#Gnulib module: fcntl-h
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@samp{O_NOCTTY}, @samp{O_DSYNC}, @samp{O_NONBLOCK}, @samp{O_RSYNC},
+#@samp{O_SYNC}, @samp{O_DIRECTORY}, @samp{O_NOFOLLOW}, and
+#@samp{O_TTY_INIT} are not defined on some platforms.
+#
+#@item
+
+File: ./doc/posix-headers/fenv.texi
+Hash: b84959cdb9de245d1918278e4308945ba58a8b530782338c4051c473614d81ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fenv.h
+#@section @file{fenv.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/fenv.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/float.texi
+Hash: bb06dd01d519ce57e4003bee2a6144e940f92705ccb07ddc48bac06e65e10d46
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node float.h
+#@section @file{float.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/float.h.html}
+#
+#Gnulib module: float
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The values of @code{LDBL_*} macros are incorrect on some platforms:
+#On OpenBSD 4.0 and BeOS, they are the same as the values of the
+#@code{DBL_*} macros, although @samp{long double} is a larger type than
+#@samp{double}.
+#@end itemize
+
+File: ./doc/posix-headers/fmtmsg.texi
+Hash: c8d59077dd6ed5e479e80e667a322a69acdbe1d2c1bfa3477d800bc8f0dd83de
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fmtmsg.h
+#@section @file{fmtmsg.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/fmtmsg.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/fnmatch.texi
+Hash: 8327e6d21c05ab578dc51d533e5fc009683e8ed5a66573d6e0c02c7daf46d516
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node fnmatch.h
+#@section @file{fnmatch.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/fnmatch.h.html}
+#
+#Gnulib module: fnmatch-posix or fnmatch-gnu
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/ftw.texi
+Hash: b57fdf7c8aed07040361be0defb098f165954dbb516d650fe90cf30f503b9a25
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ftw.h
+#@section @file{ftw.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ftw.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/glob.texi
+Hash: 93a0a84bb15d874aa8d300eff27f3b095d0865ce4ddbfb6da8df24b0fd884e82
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node glob.h
+#@section @file{glob.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/glob.h.html}
+#
+#Gnulib module: glob
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/google-ranking.txt
+Hash: 36d854034f1dcae0198af5e680acf7f643d6d4b9147571c430f0c755d007f46f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#<stdio.h>        678000
+#<string.h>       589000
+#<stdlib.h>       548000
+#<unistd.h>       448000
+#<sys/types.h>    319000
+#<netdb.h>           700
+#<sys/wait.h>        600
+#<sys/timeb.h>       600
+#<sys/resource.h>    600
+#<stdarg.h>          600
+#<signal.h>          600
+#<regex.h>           600
+#<netinet/in.h>      600
+#<limits.h>          600
+#<libgen.h>          600
+
+File: ./doc/posix-headers/grp.texi
+Hash: e6a25df21268de19163d73313b9939f6da2173ed7200c4bbaf09ae3dc0c6b235
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node grp.h
+#@section @file{grp.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/grp.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/iconv.texi
+Hash: c55452ea875d46c50e54baea90b4886d24d2dd6a082a16ea14aa6d54f0e95f0f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iconv.h
+#@section @file{iconv.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/iconv.h.html}
+#
+#Gnulib module: iconv
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The <iconv.h> from GNU libiconv is not found if installed in
+#@file{$PREFIX/include}.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/inttypes.texi
+Hash: 4da04e950bd05c7c376371e68dd6cf709ebb220a80eaa28707cf8893d276f780
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node inttypes.h
+#@section @file{inttypes.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/inttypes.h.html}
+#
+#Gnulib module: inttypes
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#OSF/1 4.0, Interix 3.5.
+#@item
+#This header file is very incomplete on some platforms.
+#@item
+
+File: ./doc/posix-headers/iso646.texi
+Hash: 9e67ac3c5beac4ffd5e496de5a3637d5ee7e8200a5a79afbf069e97151e1af29
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node iso646.h
+#@section @file{iso646.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/iso646.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/langinfo.texi
+Hash: 779a37fb6afdfe4894daba2a8d910718aec86f46348d6dec2614db4cd0ca7476
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node langinfo.h
+#@section @file{langinfo.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/langinfo.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/libgen.texi
+Hash: 85d49c38bf9a2370252f10d007ff8458b6f69b38de05edfb0e12dc7d45de2487
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node libgen.h
+#@section @file{libgen.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/libgen.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/limits.texi
+Hash: e634ce8670c851c54ad83b550cdb854c9d08bcbc9777c01c61e521974df770e8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node limits.h
+#@section @file{limits.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/limits.h.html}
+#
+#Gnulib module: gethostname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#The @code{HOST_NAME_MAX} macro is not defined on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x, mingw, Interix 3.5, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/locale.texi
+Hash: baee6e53c2544b87f7bfcabea0e3afc907ae0354856fc3ccda8776ec61ce2580
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node locale.h
+#@section @file{locale.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/locale.h.html}
+#
+#Gnulib module: locale
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The definition of @samp{LC_MESSAGES} is missing on some platforms:
+#mingw.
+#
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+
+File: ./doc/posix-headers/math.texi
+Hash: 3ea2c31002adb9a489426663a739c78120fbc5bf8c853b45679fe7d336a12977
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node math.h
+#@section @file{math.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/math.h.html}
+#
+#Gnulib module: math
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The macro @code{NAN} is not defined on some platforms:
+#OpenBSD 4.0, AIX 5.1, IRIX 6.5, OSF/1 5.1.
+#
+#@item
+#The macro @code{NAN} is not exposed outside of C99 compilation on some
+
+File: ./doc/posix-headers/monetary.texi
+Hash: a34c02edb7baef72752df520a8004292a877a4149eea0e6714305c5d497ea42a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node monetary.h
+#@section @file{monetary.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/monetary.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/mqueue.texi
+Hash: 9e26ec683c374aedfac424770de10bffb88d1fc1e35343906dd4971c3745b380
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node mqueue.h
+#@section @file{mqueue.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/mqueue.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/ndbm.texi
+Hash: 7c094880e953813e313ccc986d896808eec19926093dde5b77d0543593225871
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ndbm.h
+#@section @file{ndbm.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ndbm.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/net_if.texi
+Hash: 9d3f40aa662eebd30b64649ee11e1312f03d64ca3f113074154344985421b22f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node net/if.h
+#@section @file{net/if.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/net/if.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/netdb.texi
+Hash: 81efac0cde64e7933c49ca6ba20888bcc1e4d14e39943f3e514dfa6d33bbd1e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node netdb.h
+#@section @file{netdb.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/netdb.h.html}
+#
+#Gnulib module: netdb
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#
+#@item
+#This header file is incomplete on some platforms:
+
+File: ./doc/posix-headers/netinet_in.texi
+Hash: e542809271aa2cd707d4719a1f8f8d7cbf8226bb1dfb72838ce89a452f2245ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node netinet/in.h
+#@section @file{netinet/in.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/netinet/in.h.html}
+#
+#Gnulib module: netinet_in
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@item
+#This header file is not self-contained on some platforms: it requires
+#@code{<sys/types.h>} to be included first.
+
+File: ./doc/posix-headers/netinet_tcp.texi
+Hash: 23509502b23ef5cd9c39b8b860bfcbb7f18954a73524fcbe1e2f042b359a4d59
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node netinet/tcp.h
+#@section @file{netinet/tcp.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/netinet/tcp.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/nl_types.texi
+Hash: eb08f2ce3f333f7bff7d2153a728b0acf4c4b28b52cef6ca33a13e76f65b5590
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node nl_types.h
+#@section @file{nl_types.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/nl/types.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/poll.texi
+Hash: ec7ca96e1a5c5ef8c863895984b85ecc85f6746c9c36a183628c9caa38b7cfd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node poll.h
+#@section @file{poll.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/poll.h.html}
+#
+#Gnulib module: poll
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/pthread.texi
+Hash: a5be7cd565626355b119c3b1e61b4f6ed8f98e31dda19ee0b4b93dc62385f1f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pthread.h
+#@section @file{pthread.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/pthread.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/pwd.texi
+Hash: d470a92661247c63368bbd26dc5049ffd6e0c107b2a613ac524295009eef284d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node pwd.h
+#@section @file{pwd.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/pwd.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/regex.texi
+Hash: b016c9a3b15736ba0b5699d0161a0f323aacab56bb4360ee7a9991d6a9f8f29c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node regex.h
+#@section @file{regex.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/regex.h.html}
+#
+#Gnulib module: regex
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/sched.texi
+Hash: 8d21cf78b24cdf8383d5c5e1abde4f12e080f061aaa86706189afdb9471b492a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sched.h
+#@section @file{sched.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sched.h.html}
+#
+#Gnulib module: sched
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw, BeOS.
+#@item
+#@code{struct sched_param} is not defined on some platforms:
+#Haiku.
+
+File: ./doc/posix-headers/search.texi
+Hash: 4964471e3637333930dc8a6852075de64051c2a5d24d0c36cc52b0af772e0968
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node search.h
+#@section @file{search.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/search.h.html}
+#
+#Gnulib module: search
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/semaphore.texi
+Hash: 46f4edae0baf6b13b4db3f0de34e44d78f0580050e9053080262852035d475e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node semaphore.h
+#@section @file{semaphore.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/semaphore.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/setjmp.texi
+Hash: 57c43ae545a375c5a52a670a2bfd301f686d1c93025d59c6ac73c93e3e940fa4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node setjmp.h
+#@section @file{setjmp.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/setjmp.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-headers/signal.texi
+Hash: 62595715b74ae647915d4afa4fb949307b061f6c95b3ed52ee4522b67a94d7be
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node signal.h
+#@section @file{signal.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/signal.h.html}
+#
+#Gnulib module: signal
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@code{volatile sig_atomic_t} is rejected by older compilers on some
+#platforms:
+#AIX.
+#@item
+#@code{sigset_t} is only declared in <sys/types.h> on some platforms:
+
+File: ./doc/posix-headers/spawn.texi
+Hash: 035868e3075dfb31415e3611932d366e4cd17c744caf3973f3c2ce700041c92d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node spawn.h
+#@section @file{spawn.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/spawn.h.html}
+#
+#Gnulib module: spawn
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#MacOS X 10.3, FreeBSD 6.0, NetBSD 3.0, OpenBSD 3.8, AIX 5.1, HP-UX 11,
+#IRIX 6.5, OSF/1 5.1, Cygwin, mingw, Interix 3.5, BeOS.
+#@end itemize
+
+File: ./doc/posix-headers/stdarg.texi
+Hash: 76bfda1aa2271dc3a394ffa60a359ab70eaee46995d95df2e459724a4f77b800
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stdarg.h
+#@section @file{stdarg.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdarg.h.html}
+#
+#Gnulib module: stdarg
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some compilers (e.g., AIX 5.3 cc) need to be in c99 mode for the builtin
+#@code{va_copy} to work.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/stdbool.texi
+Hash: 125bb0ccd0983b885486dcaebf4ddce35dad39e11a1a60c943646ae6a9361866
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stdbool.h
+#@section @file{stdbool.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdbool.h.html}
+#
+#Gnulib module: stdbool
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1.
+#@item
+#Some compilers have bugs relating to @samp{bool}.
+#@end itemize
+
+File: ./doc/posix-headers/stddef.texi
+Hash: 997124bfc90ae125326493c1a5c47f183bb74423ce01fcf55f1601f534dd4617
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stddef.h
+#@section @file{stddef.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stddef.h.html}
+#
+#Gnulib module: stddef
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some old platforms fail to provide @code{wchar_t}.
+#
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+#expressions:
+
+File: ./doc/posix-headers/stdint.texi
+Hash: cceffcda2dd894a5e695d4e67857815bade971288c965c84717203bef3c950cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stdint.h
+#@section @file{stdint.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdint.h.html}
+#
+#Gnulib module: stdint
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#OpenBSD 3.8, AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Interix 3.5, BeOS.
+#@item
+#This header file is very incomplete on some platforms.
+#@item
+
+File: ./doc/posix-headers/stdio.texi
+Hash: 0a4463d4d6a612e66896c384608312ebda0d44e646b2a9130cd7e17fc222c313
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stdio.h
+#@section @file{stdio.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdio.h.html}
+#
+#Gnulib module: stdio
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+#expressions:
+#NetBSD 5.0
+#@end itemize
+
+File: ./doc/posix-headers/stdlib.texi
+Hash: 8ec58fc5ab8a7dab2c799d972b003a16eaa9ce993ade7447eb799b5495c106cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stdlib.h
+#@section @file{stdlib.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stdlib.h.html}
+#
+#Gnulib module: stdlib
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#The macros @code{EXIT_SUCCESS} and @code{EXIT_FAILURE} are not defined on
+#some platforms.
+#@item
+#The macro @code{EXIT_FAILURE} is incorrectly defined on Tandem/NSK.
+
+File: ./doc/posix-headers/string.texi
+Hash: 1e05fd8054a02aa18813a2afaedb80d990ab2762b21331032d6643a5d2bbc6ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node string.h
+#@section @file{string.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/string.h.html}
+#
+#Gnulib module: string
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+#expressions:
+#NetBSD 5.0
+#@end itemize
+
+File: ./doc/posix-headers/strings.texi
+Hash: c36bb3c4fd013835f3f170695cb65bdf9d9941a6a7c8a1ea473deb6c6304c3ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node strings.h
+#@section @file{strings.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/strings.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file defines symbols, such as @samp{index}, often used for
+
+File: ./doc/posix-headers/stropts.texi
+Hash: 10ce7f6bd56eb5c087bfc1445d5d7d6c1a3a3ab49a46f6f5536f9abf99d0ea5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node stropts.h
+#@section @file{stropts.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/stropts.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_ipc.texi
+Hash: 987709fd9b281e1c72ecddc44b2260deaf8643078f674f0b8184e910c3ca940a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/ipc.h
+#@section @file{sys/ipc.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/ipc.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_mman.texi
+Hash: 19b6d15cb1e745b8e5b181dfb3cc8d33c73ef5963de3d9edce93f850082ade3e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/mman.h
+#@section @file{sys/mman.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/mman.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_msg.texi
+Hash: 3cf9367fe2756d8bbf6a523719715cc088118e49d2c040a4ea03dffe9a7f05e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/msg.h
+#@section @file{sys/msg.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/msg.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_resource.texi
+Hash: 53065ace2cd2231da57a4083773882092b6706781e9d6613dc3f139612645100
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/resource.h
+#@section @file{sys/resource.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/resource.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_select.texi
+Hash: f1a346ce9d9da46a8ac1f06b73c709f9d438ecb6dbf91d537d3628cf1d1ffdea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/select.h
+#@section @file{sys/select.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/select.h.html}
+#
+#Gnulib module: sys_select
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#HP-UX 11, mingw, BeOS.
+#@item
+#This header file is not self-contained on some platforms: it requires
+#@code{<sys/types.h>} to be included first.
+
+File: ./doc/posix-headers/sys_sem.texi
+Hash: 8c8f9fe68b61ca3c2d0075ac577c1541e33cc7e42e088659651cc7aa5a43f384
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/sem.h
+#@section @file{sys/sem.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/sem.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_shm.texi
+Hash: 7bcaeeb0859bf5db9953896a7dafdfb71b7dd1c278eab4da77097f2f1eba2850
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/shm.h
+#@section @file{sys/shm.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/shm.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_socket.texi
+Hash: ad3994d837d6fbde926d68dbd51a4ee1e670df6a7ce683df8f1afcd8f26b9b4b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/socket.h
+#@section @file{sys/socket.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/socket.h.html}
+#
+#Gnulib module: sys_socket
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@item
+#This header file is not self-contained on some platforms: it requires
+#@code{<sys/types.h>} to be included first.
+
+File: ./doc/posix-headers/sys_stat.texi
+Hash: 60dae061a3c75ef68ebb90a832c8d4fa057e5819930adbb7aaec240da84acb59
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/stat.h
+#@section @file{sys/stat.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/stat.h.html}
+#
+#Gnulib module: sys_stat
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#Some macros, such as @code{S_IFMT}, are missing on some platforms.
+#@item
+#The macros @code{S_ISBLK}, @code{S_ISCHR}, @code{S_ISDIR}, @code{S_ISFIFO},
+#@code{S_ISLNK}, @code{S_ISREG}, @code{S_ISSOCK} are broken on some platforms.
+#@item
+
+File: ./doc/posix-headers/sys_statvfs.texi
+Hash: 384c0ac41e3f35d7e1ef9ebe2102866be29bb1d1881ee4f95226d7fd225365ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/statvfs.h
+#@section @file{sys/statvfs.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/statvfs.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_time.texi
+Hash: 195cc421036aa90abc0bc0c8e8c5727e61ecf1865acb542bdc289c5010dae9c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/time.h
+#@section @file{sys/time.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/time.h.html}
+#
+#Gnulib module: sys_time
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms.
+#@item
+#@samp{struct timeval} is not defined on some platforms.
+#@end itemize
+
+File: ./doc/posix-headers/sys_timeb.texi
+Hash: f6dbc92a61228daf56911be1d37146ecacd4df82501bead2009dd5f34f9e7488
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/timeb.h
+#@section @file{sys/timeb.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/timeb.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-headers/sys_times.texi
+Hash: facec7ecb6acfc5ee08859c13f611d7009bf66d95b8f460cff2b71e52d315b77
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/times.h
+#@section @file{sys/times.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/times.h.html}
+#
+#Gnulib module: sys_times
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/sys_types.texi
+Hash: 2d7a9db00a00c36d5e166bbf043eb9069b477d61a170213f082f756088c8e4c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/types.h
+#@section @file{sys/types.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/types.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@end itemize
+
+File: ./doc/posix-headers/sys_uio.texi
+Hash: a3f6385a4227f285dc37fb9ff1db96aa384fbff8a392a2d640bf005f152df908
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/uio.h
+#@section @file{sys/uio.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/uio.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_un.texi
+Hash: a27feb6784f4c51abd27d5667f986f4110373fe629966424d405c5a840342cee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/un.h
+#@section @file{sys/un.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/un.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/sys_utsname.texi
+Hash: efbe687e091876e6c676db5a9533062a85adf3009dbf550c52a4d71a69989fb0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/utsname.h
+#@section @file{sys/utsname.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/utsname.h.html}
+#
+#Gnulib module: sys_utsname
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/sys_wait.texi
+Hash: 44aee91fd4c85b72a8c966954ba061b965aaac1482f69a98aa61089579ff1bc5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node sys/wait.h
+#@section @file{sys/wait.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/sys/wait.h.html}
+#
+#Gnulib module: sys_wait
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#mingw.
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+
+File: ./doc/posix-headers/syslog.texi
+Hash: 28ddc4c29384e0d9f34b7aa9cd25745fcaa0985a112d645b84a4f450cc484775
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node syslog.h
+#@section @file{syslog.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/syslog.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/tar.texi
+Hash: cd109697e8a666ccea3d2f6b9996b60c898cf4c21568a8ef35a2cb8142f026bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tar.h
+#@section @file{tar.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/tar.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/termios.texi
+Hash: 54b678c554704bf0a1177cbcf6d2db98edbe298e1bcfb6d7d820d268620cc09a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node termios.h
+#@section @file{termios.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/termios.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/tgmath.texi
+Hash: 4eb1d7fef4d580e91df7a35edfa926ffd821f8636083b87b8a99413caecbaf13
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node tgmath.h
+#@section @file{tgmath.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/tgmath.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/time.texi
+Hash: 83887ff1ac780b4b176ca9e9a2836a3d28f0793b67904c221acf46cfc4252de3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node time.h
+#@section @file{time.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/time.h.html}
+#
+#Gnulib module: time
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#@samp{struct timespec} is not defined on some platforms.
+#
+#@item
+#Some platforms provide a @code{NULL} macro that cannot be used in arbitrary
+#expressions:
+
+File: ./doc/posix-headers/trace.texi
+Hash: d7736e6e0e1a98fcc3b9870300fc691ed4c2fbfaf424f08eda8a19fab101bf66
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node trace.h
+#@section @file{trace.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/trace.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/ucontext.texi
+Hash: 2975ec1d3f351969dcc37b7d72d6c691a3136116a08ba38bb94723f101f3b069
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ucontext.h
+#@section @file{ucontext.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ucontext.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/ulimit.texi
+Hash: 641e0cae8c99f664100b54a41e03e453846ecc8fc889f91a93239c355e8c1ed2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node ulimit.h
+#@section @file{ulimit.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/ulimit.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/unistd.texi
+Hash: 1e47066520002dbb14539e81acb50184d273f51d047815d246ba2e0a284d8ce5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node unistd.h
+#@section @file{unistd.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/unistd.h.html}
+#
+#Gnulib module: unistd
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms: msvc.
+#@item
+#The SEEK_* macros are not defined in this file on some platforms:
+#mingw.
+#@item
+
+File: ./doc/posix-headers/utime.texi
+Hash: 0a7e8d03567fb3f77e998cf10c309e06154b4cf560909dfe3640b3ccc20f94ee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node utime.h
+#@section @file{utime.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/utime.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms.  Use @code{<sys/utime.h>}
+
+File: ./doc/posix-headers/utmpx.texi
+Hash: 58a3f69e19d495d7189394ede301568c15bc5ee82908884671156bc5c4f1b052
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node utmpx.h
+#@section @file{utmpx.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/utmpx.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/posix-headers/wchar.texi
+Hash: c9e0acf5b953cdbb5d2a816fb831f55f3e2ab2b85b3793c61f6114b530134e7e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wchar.h
+#@section @file{wchar.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/wchar.h.html}
+#
+#Gnulib module: wchar
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file cannot be included on some platforms:
+#Linux uClibc built without wide character support.
+#@item
+#This header file is not self-contained on some platforms:
+#OSF/1 with Desktop Toolkit C, BSD/OS 4.0.1.
+
+File: ./doc/posix-headers/wctype.texi
+Hash: c5994d40b69ca8ae0d1bc6c2251fb7cb3b7ec5f64f7bef24fd40ee364b7cab9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wctype.h
+#@section @file{wctype.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/wctype.h.html}
+#
+#Gnulib module: wctype
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+#HP-UX 11.00, BeOS.
+#@item
+#This header file is not self-contained on some platforms:
+#Solaris 2.5, OSF/1 with Desktop Toolkit C, BSD/OS 4.0.1.
+
+File: ./doc/posix-headers/wordexp.texi
+Hash: 7027331cb789ce356e7d3e2b2313dd9b791f9b96444503905a2657230522a331
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node wordexp.h
+#@section @file{wordexp.h}
+#
+#POSIX specification: @url{http://www.opengroup.org/susv3xbd/wordexp.h.html}
+#
+#Gnulib module: ---
+#
+#Portability problems fixed by Gnulib:
+#@itemize
+#@end itemize
+#
+#Portability problems not fixed by Gnulib:
+#@itemize
+#@item
+#This header file is missing on some platforms:
+
+File: ./doc/quote.texi
+Hash: 9cc2b24f70ec69e8dbc53ef7d8100f87dbcf6e4f207d834ce82c872fbeed98bf
+License: 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@node Quoting
+#@section Quoting
+#
+#@c Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#@cindex Quoting
+#@findex quote
+#@findex quotearg
+
+File: ./doc/regexprops-generic.texi
+Hash: 953ea60aeff18a45851d07c4fd84c6d47156d1cb6056d2808293b45b3663d4c4
+License: 
+Copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
+Licence-Text: 
+#Header: 
+#@c Copyright (C) 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
+#@c Free Software Foundation, Inc.
+#@c
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3 or
+#@c any later version published by the Free Software Foundation; with no
+#@c Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#@c this regular expression description is for: generic
+#
+#@menu
+#* awk regular expression syntax::
+#* egrep regular expression syntax::
+
+File: ./doc/relocatable-maint.texi
+Hash: 1c95896b667fba221783ec193abf89b00a652dec4c76b849a14b605ed0c5abc3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node Supporting Relocation
+#@section Supporting Relocation
+#
+#It has been a pain for many users of GNU packages for a long time that
+#packages are not relocatable.  It means a user cannot copy a program,
+#installed by another user on the same machine, to his home directory,
+#and have it work correctly (including i18n).  So many users need to go
+#through @code{configure; make; make install} with all its
+#dependencies, options, and hurdles.
+#
+#Red Hat, Debian, and similar package systems solve the ``ease of
+#installation'' problem, but they hardwire path names, usually to
+#@file{/usr} or @file{/usr/local}.  This means that users need root
+#privileges to install a binary package, and prevents installing two
+#different versions of the same binary package.
+
+File: ./doc/relocatable.texi
+Hash: cb899ceab0383cc484f3b15b049b8386a304eb4b3680a196f042fcc2bea03139
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node Enabling Relocatability
+#@section Enabling Relocatability
+#
+#It has been a pain for many users of GNU packages for a long time that
+#packages are not relocatable.  It means a user cannot copy a program,
+#installed by another user on the same machine, to his home directory,
+#and have it work correctly (including i18n).  So many users need to go
+#through @code{configure; make; make install} with all its
+#dependencies, options, and hurdles.
+#
+#Red Hat, Debian, and similar package systems solve the ``ease of
+#installation'' problem, but they hardwire path names, usually to
+#@file{/usr} or @file{/usr/local}.  This means that users need root
+#privileges to install a binary package, and prevents installing two
+#different versions of the same binary package.
+
+File: ./doc/safe-alloc.texi
+Hash: 3902a00303495772ce656b944dfff81237d6a421ad80d871254c12d04cc341ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node Safe Allocation Macros
+#@section Safe Allocation Macros
+#
+#The standard C library malloc/realloc/calloc/free APIs are prone to a
+#number of common coding errors.  The @code{safe-alloc} module provides
+#macros that make it easier to avoid many of them.  It still uses the
+#standard C allocation functions behind the scenes.
+#
+#Some of the memory allocation mistakes that are commonly made are
+#
+#@itemize @bullet
+#@item
+#passing the incorrect number of bytes to @code{malloc}, especially
+#when allocating an array,
+#@item
+
+File: ./doc/solaris-versions
+Hash: bc33ea4cd4eb6126d5633cd3fa7e2adf36078fe37bd648e41612bea8614d2d12
+License: 
+Copyright: 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#Sun seems to care about Solaris versus SunOS branding...
+#
+#Here is a mapping table that maps the `uname -sr` values to Sun's marketing
+#names.
+#
+#       SunOS 1.x       == SunOS 1.x
+#       SunOS 2.x       == SunOS 2.x
+#       SunOS 3.x       == SunOS 3.x
+#       SunOS 4.0       == SunOS 4.0
+#       SunOS 4.0.x     == SunOS 4.0.x
+#
+#Starting with 4.1.1B of SunOS we have the 'Solaris 1.0' release.
+#
+#       SunOS 4.1.1B    == Solaris 1.0
+#       SunOS 4.1.1.1   ==    "     "
+
+File: ./doc/standards.texi
+Hash: 758abab5b6cc5d66a433405b865acfbe95b4ea85d3de8e4f7810aa21cc026056
+License: 
+Copyright: @{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+Licence-Text: 
+#Header: 
+#\input texinfo @c -*-texinfo-*-
+#@c %**start of header
+#@setfilename standards.info
+#@settitle GNU Coding Standards
+#@c This date is automagically updated when you save this file:
+#@set lastupdate June 7, 2009
+#@c %**end of header
+#
+#@dircategory GNU organization
+#@direntry
+#* Standards: (standards).       GNU coding standards.
+#@end direntry
+#
+#@c @setchapternewpage odd
+#@setchapternewpage off
+
+File: ./doc/verify.texi
+Hash: d43e9fbb06bf63392263ab1163c57627f0091d17c88ef1ea645d7d77e2054335
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#@c GNU verify module documentation
+#
+#@c Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#@c Permission is granted to copy, distribute and/or modify this document
+#@c under the terms of the GNU Free Documentation License, Version 1.3
+#@c or any later version published by the Free Software Foundation;
+#@c with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
+#@c Texts.  A copy of the license is included in the ``GNU Free
+#@c Documentation License'' file as part of this distribution.
+#
+#@node Compile-time Assertions
+#@section Compile-time Assertions
+#
+#@cindex assertion
+
+File: ./doc/warnings.texi
+Hash: 7d0b8720b49dad5ab65dc973fbdc274a1bece799f17f45b51ebdfbd71ea094a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#@node warnings
+#@section warnings
+#
+#The @code{warnings} module allows to regularly build a package with more
+#GCC warnings than the default warnings emitted by GCC.
+#
+#It provides the following functionality:
+#
+#@itemize @bullet
+#@item
+#You can select some warning options, such as @samp{-Wall}, to be enabled
+#whenever building with a GCC version that supports these options.  The
+#user can choose to override these warning options by providing the
+#opposite options in the @code{CFLAGS} variable at configuration time.
+
+File: ./gnulib-tool
+Hash: 506eacbbefeba098819ee35b897a3ac4805d5f1f583b31e03a7513f912d9d7c5
+License: GPL-3+ 
+Copyright: 2002-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+##
+## Copyright (C) 2002-2009 Free Software Foundation, Inc.
+##
+## 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
+
+File: ./lib/.cppi-disable
+Hash: ed4ff8357c74f26ce7298059529040adbec140e2aff3512d6f0218a9df753e79
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#alloca.in.h
+#error.h
+#exit.h
+#fnmatch.in.h
+#fts.c
+#fts_.h
+#getaddrinfo.h
+#getdelim.h
+#getline.h
+#getndelim2.h
+#getopt.c
+#getopt.h
+#getopt1.c
+#getopt.in.h
+#getopt_int.h
+
+File: ./lib/Makefile
+Hash: 2cd78169faa2196a45036c205f87158a07795f2333fdf1355032503b7c578f5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Run "make check" to ensure that the code passes some simple tests,
+## usually (always?) not involving compilation.
+#all:
+#
+#check:
+#      ./t-idcache
+
+File: ./lib/README
+Hash: b8e700743605335681712b4fc41327c0e5ec1304558ae837865d0ef791afcf65
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#The files in this directory are used in many GNU packages,
+#including coreutils, diffutils, and tar.
+#The autoconf tests required for these files are in ../m4.
+
+File: ./lib/accept.c
+Hash: 81e7c1c7a740ff4f41971972abd0fce7d0177c859d16af4f191136397a1d820b
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* accept.c --- wrappers for Windows accept function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/accept4.c
+Hash: 51542463f5bad636c373ba51c3b2ab426e33b3f939bcbabfcaf2d97af6165104
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Accept a connection on a socket, with specific opening flags.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/acl-internal.h
+Hash: eb885f58854359d77e7d3ecfc31a71a4df2476ec860d7e1a51aa30411c71e39e
+License: GPL-3+ 
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Internal implementation of access control lists.
+#
+#   Copyright (C) 2002-2003, 2005-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/acl.h
+Hash: 51d61a70672664344e91e265051c9409abd29da6e53bfaa37b774cad919a1b19
+License: GPL-3+ 
+Copyright: 2002, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* acl.c - access control lists
+#
+#   Copyright (C) 2002, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/acl_entries.c
+Hash: 9f85cc40b290acec6fd2d1429421749158816b59818b6542d1058873b08fe6db
+License: GPL-3+ 
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Return the number of entries in an ACL.
+#
+#   Copyright (C) 2002-2003, 2005-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/acosl.c
+Hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
+License: 
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+Licence-Text: 
+#Header: 
+#/*
+# * ====================================================
+# * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
+# *
+# * Developed at SunPro, a Sun Microsystems, Inc. business.
+# * Permission to use, copy, modify, and distribute this
+# * software is freely granted, provided that this notice
+# * is preserved.
+# * ====================================================
+# */
+#
+##include <config.h>
+#
+#/* Specification.  */
+##include <math.h>
+
+File: ./lib/alignof.h
+Hash: 3462758dafa0cfd9ac5dbecc7fdd45d21f7b7f2a8e87ee35a5b37b251a4b1dca
+License: GPL 
+Copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine alignment of types.
+#   Copyright (C) 2003-2004, 2006, 2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/alloca.c
+Hash: 431aec7ca1324fce73e1038b2634ad070f21bb7fee11867cc153c883cbc9e178
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* alloca.c -- allocate automatically reclaimed memory
+#   (Mostly) portable public-domain implementation -- D A Gwyn
+#
+#   This implementation of the PWB library alloca function,
+#   which is used to allocate space off the run-time stack so
+#   that it is automatically reclaimed upon procedure exit,
+#   was inspired by discussions with J. Q. Johnson of Cornell.
+#   J.Otto Tennant <jot@cray.com> contributed the Cray support.
+#
+#   There are some preprocessor constants that can
+#   be defined when compiling for your specific system, for
+#   improved efficiency; however, the defaults should be okay.
+#
+#   The general concept of this implementation is to keep
+#   track of all alloca-allocated blocks, and reclaim any
+
+File: ./lib/alloca.in.h
+Hash: b7dcd93bf4979e9478ae25207f011254c3ac6fa5173505035f727801905dc65d
+License: GPL 
+Copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software
+Licence-Text: 
+#Header: 
+#/* Memory allocation on the stack.
+#
+#   Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/alphasort.c
+Hash: d9acf3be813a3d6e39e7814ed4bf572e796559daad249c11b26c649d7e4cb68d
+License: GPL 
+Copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1992, 1997, 1998, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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,
+
+File: ./lib/arcfour.c
+Hash: c8fed8d528f531f03939034fac2a66aa2101940d2e1a25ae81ecd33397aefd41
+License: GPL 
+Copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* arcfour.c --- The arcfour stream cipher
+# * Copyright (C) 2000, 2001, 2002, 2003, 2005, 2006 Free Software
+# * Foundation, Inc.
+# *
+# * This file 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 file 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
+
+File: ./lib/arcfour.h
+Hash: 9ac0e9cf9af5561f523190d722544db4ddbbb9e2bb40f47b34daf7cc45ac6f7f
+License: GPL 
+Copyright: 2000, 2001, 2002, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* arcfour.h --- The arcfour stream cipher
+# * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
+# *    Free Software Foundation, Inc.
+# *
+# * This file 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 file 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
+
+File: ./lib/arctwo.c
+Hash: 2ddafebd0cc6dd4d8ad0fefad69ae2c676755062511550843b130b44e6af00e1
+License: GPL 
+Copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* arctwo.c --- The RC2 cipher as described in RFC 2268.
+# * Copyright (C) 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc.
+# *
+# * This file 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 file 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 file; if not, write to the Free Software
+
+File: ./lib/arctwo.h
+Hash: 8ebc8bf993f2598e4a531b9c879ea30686307379e18170bb774a34814fab8ad4
+License: GPL 
+Copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* arctwo.h --- The arctwo block cipher
+# * Copyright (C) 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
+# *
+# * This file 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 file 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 file; if not, write to the Free Software
+
+File: ./lib/areadlink-with-size.c
+Hash: 93cb0c93eeecd42ebcb6f5d41b313d8e54d6e85c97d872159053aadb4412cf8b
+License: GPL-3+ 
+Copyright: 2001, 2003-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* readlink wrapper to return the link name in malloc'd storage.
+#   Unlike xreadlink and xreadlink_with_size, don't ever call exit.
+#
+#   Copyright (C) 2001, 2003-2007 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/areadlink.c
+Hash: 3358ac448b45959a1e867e7f73e753dc1a9c0c493a68e0ef9d43d26f412ec68c
+License: GPL-3+ 
+Copyright: 2001, 2003-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* areadlink.c -- readlink wrapper to return the link name in malloc'd storage
+#   Unlike xreadlink and xreadlink_with_size, don't ever call exit.
+#
+#   Copyright (C) 2001, 2003-2007 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/areadlink.h
+Hash: 2bd213824c6fa8c5380a7addae975805c2f1550a27120bef5cc9faeae3f6cbe7
+License: GPL-3+ 
+Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Read symbolic links without size limitation.
+#
+#   Copyright (C) 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/argmatch.c
+Hash: 76a31c441174aa08a151b841cc9b489075b3e0a4cd0edd4d36279854bdd463ea
+License: GPL-3+ 
+Copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+Licence-Text: 
+#Header: 
+#/* argmatch.c -- find a match for a string in an array
+#
+#   Copyright (C) 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/argmatch.h
+Hash: 384958e174b369516cfd605f99dc3cbd78763d5df9ecd5a023704eb1009335a6
+License: GPL-3+ 
+Copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software
+Licence-Text: 
+#Header: 
+#/* argmatch.h -- definitions and prototypes for argmatch.c
+#
+#   Copyright (C) 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/argp-ba.c
+Hash: 9661f51641633441a54245954be390ca3d303e3389349b0ff3a221abaa4b080e
+License: GPL-3+ 
+Copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Default definition for ARGP_PROGRAM_BUG_ADDRESS.
+#   Copyright (C) 1996, 1997, 1999, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-eexst.c
+Hash: b9ad8bc0fa9a452f44ebb0fa9e15e43aba269cc76119db3a0ab3014d0ffaf8b4
+License: GPL-3+ 
+Copyright: 1997 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Default definition for ARGP_ERR_EXIT_STATUS
+#   Copyright (C) 1997 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-fmtstream.c
+Hash: 78c93c6002f45ab98bfcf9487cc421139dc415033d221d8f900454feeb878fab
+License: GPL-3+ 
+Copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word-wrapping and line-truncating streams
+#   Copyright (C) 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-fmtstream.h
+Hash: a9f5474e0d954582819cb3aec9d04b3ed039a5bcae81d5aff11a632693cf5949
+License: GPL-3+ 
+Copyright: 1997, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word-wrapping and line-truncating streams.
+#   Copyright (C) 1997, 2006-2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-fs-xinl.c
+Hash: f42be327cb0f817cef2cf6b3f54ca487960053ff7e4f66a7b9179304f03270bd
+License: GPL-3+ 
+Copyright: 1997, 2003, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Real definitions for extern inline functions in argp-fmtstream.h
+#   Copyright (C) 1997, 2003, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-help.c
+Hash: 5ca3499ee19a2ab145823797673107b2eb288d217a9a1f500e6d77b1eb29bbe2
+License: GPL-3+ 
+Copyright: 1995-2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Hierarchial argument parsing help output
+#   Copyright (C) 1995-2005, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-namefrob.h
+Hash: 3aba78e59efd19a0514f4d27c434803bbc7b7b67ce6a9a26e257ea726b0f88a8
+License: GPL-3+ 
+Copyright: 1997, 2003, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Name frobnication for compiling argp outside of glibc
+#   Copyright (C) 1997, 2003, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-parse.c
+Hash: 09167da5bae9280333ff29c12986e2e0ef0d0c761efc54d26ae78f4393d0b24f
+License: GPL-3+ 
+Copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Hierarchial argument parsing, layered over getopt
+#   Copyright (C) 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-pin.c
+Hash: 136b821e9b1fcec0809ccd1714aba2e4e7d17cc22ec9f7fda27b53c926aff858
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Full and short program names for argp module
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/argp-pv.c
+Hash: 3a9ac90d20dda74af5afcc874cbb8f69eb81cd80c21009d94815d6ac64ff79c1
+License: GPL-3+ 
+Copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Default definition for ARGP_PROGRAM_VERSION.
+#   Copyright (C) 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-pvh.c
+Hash: 9bf839864fb8929972b914067dca6bcceb4f05776fc9ecd4d4225356e01042bc
+License: GPL-3+ 
+Copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Default definition for ARGP_PROGRAM_VERSION_HOOK.
+#   Copyright (C) 1996, 1997, 1999, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp-version-etc.c
+Hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Version hook for Argp.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/argp-version-etc.h
+Hash: 5252a37948d3217ff0ca0bfbd04b4abeb0dadd39867ac393a064735ef9ee8475
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Version hook for Argp.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/argp-xinl.c
+Hash: 55403221c704ff78de0f4fedde5c49143077592a946456cd1dc707caab2ccc94
+License: GPL-3+ 
+Copyright: 1997, 1998, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Real definitions for extern inline functions in argp.h
+#   Copyright (C) 1997, 1998, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argp.h
+Hash: a47d0da1b66595eecbf61c738d5cbcb2c66cb38f2ff958466b5bdaad40e8ce79
+License: GPL-3+ 
+Copyright: 1995-1999,2003-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Hierarchial argument parsing, layered over getopt.
+#   Copyright (C) 1995-1999,2003-2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Miles Bader <miles@gnu.ai.mit.edu>.
+#
+#   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.
+
+File: ./lib/argv-iter.c
+Hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterate over arguments from argv or --files0-from=FILE
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/argv-iter.h
+Hash: 9fd4b34a046e4ce7acc4a4f8b26f617931d23fcc0029efe125fce4207725fb27
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterate over arguments from argv or --files0-from=FILE
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/argz.c
+Hash: 1c24aecbfd5cd788fc849e7d534c75f86f4e42acb16bc7a18d23e00ba251da74
+License: GPL 
+Copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Functions for dealing with '\0' separated arg vectors.
+#   Copyright (C) 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/argz.in.h
+Hash: b5f8d15d436b04bc7e91bc0a133e8ef45b4a70906bd0a4aba412c9ba1bf1a924
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Routines for dealing with '\0' separated arg vectors.
+#   Copyright (C) 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C 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.
+#
+#   The GNU C 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
+
+File: ./lib/arpa_inet.in.h
+Hash: d921498b43bfc8b6c8bd8bc3af58f20194194561344fb042169b9aa720c2dd7f
+License: GPL 
+Copyright: 2005-2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <arpa/inet.h>.
+#
+#   Copyright (C) 2005-2006, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/array-mergesort.h
+Hash: 0b6a5a731180bd7f2271e98ae120c9b01c751899c685fe91ed94efdc215557b0
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Stable-sorting of an array using mergesort.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/asinl.c
+Hash: 230d3b39d6bea0152df39479efcf3a049c66b9f7816d4e39af503dc54875cc33
+License: 
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+Licence-Text: 
+#Header: 
+#/*
+# * ====================================================
+# * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
+# *
+# * Developed at SunPro, a Sun Microsystems, Inc. business.
+# * Permission to use, copy, modify, and distribute this
+# * software is freely granted, provided that this notice
+# * is preserved.
+# * ====================================================
+# */
+#
+##include <config.h>
+#
+#/* Specification.  */
+##include <math.h>
+
+File: ./lib/asnprintf.c
+Hash: 8e81f2c3c535f505added072b5281fa5c590144c3aa3e083dad0c3ed52b45aa0
+License: GPL 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/asprintf.c
+Hash: 2045ea0ccc9c1e33818278aae4f856ccbec17f95c16ed6b1264dbc5f98df421c
+License: GPL 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/at-func.c
+Hash: 6123fbee08097fe452caf222c168f32e36f7b9a10d815c8679e22fd0c1fea90f
+License: GPL-3+ 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Define an at-style functions like fstatat, unlinkat, fchownat, etc.
+#   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/atanl.c
+Hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
+License: GPL-3+ 
+Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+Licence-Text: 
+#Header: 
+#/* Copyright 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+#
+#   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/>.  */
+
+File: ./lib/atexit.c
+Hash: 9dfd71e9081a0d0955d144016b832253b840f16f0bfe5144f72ad0ce5a13525c
+License: *No copyright* Public domain
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* Wrapper to implement ANSI C's atexit using SunOS's on_exit. */
+#/* This function is in the public domain.  --Mike Stump. */
+#
+##include <config.h>
+#
+#int
+#atexit (void (*f) (void))
+#{
+#  /* If the system doesn't provide a definition for atexit, use on_exit
+#     if the system provides that.  */
+#  on_exit (f, 0);
+#  return 0;
+#}
+
+File: ./lib/atoll.c
+Hash: 43af4461379692b1d5e3db98d3b75cf38757d5cd3b2e0c26efb0287da4ef034f
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1997, 1998, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C 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.
+#
+#   The GNU C 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 the GNU C Library; if not, write to the Free
+
+File: ./lib/backupfile.c
+Hash: de3f6f972c0d97e43fda93581b76623a6314b9e5cab5c0559f0b6622d0425874
+License: GPL-3+ 
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+Licence-Text: 
+#Header: 
+#/* backupfile.c -- make Emacs style backup file names
+#
+#   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+#   1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/backupfile.h
+Hash: 08b55cc0243fe8a455eda4a2ce69f879623f6fadfaf004386062e4c15e9a24dc
+License: GPL-3+ 
+Copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free
+Licence-Text: 
+#Header: 
+#/* backupfile.h -- declarations for making Emacs style backup file names
+#
+#   Copyright (C) 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/base64.c
+Hash: a4fedb1d6d2bee5c7d6100ab2f73c5a24e0cd932921577dd9bca74b57e97c0ff
+License: GPL 
+Copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* base64.c -- Encode binary data using printable characters.
+#   Copyright (C) 1999, 2000, 2001, 2004, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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
+
+File: ./lib/base64.h
+Hash: 92f71847fff2b46fe5623f1da8199c223944384bfe92cf9d66710d17b2969583
+License: GPL 
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* base64.h -- Encode binary data using printable characters.
+#   Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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
+
+File: ./lib/basename.c
+Hash: ca4490814d70e42aa42de5259bc7f9535664c76469f4ad8a5b741bd738171b78
+License: GPL-3+ 
+Copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* basename.c -- return the last element in a file name
+#
+#   Copyright (C) 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/bcopy.c
+Hash: 141099f203ec7aabf4aefe89031c9d7194ecbcdb85a1f49f18068aaae4da74f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* bcopy.c -- copy memory.
+#   Copy LENGTH bytes from SOURCE to DEST.  Does not null-terminate.
+#   In the public domain.
+#   By David MacKenzie <djm@gnu.ai.mit.edu>.  */
+#
+##include <stddef.h>
+#
+#void
+#bcopy (void const *source0, void *dest0, size_t length)
+#{
+#  char const *source = source0;
+#  char *dest = dest0;
+#  if (source < dest)
+#    /* Moving from low mem to hi mem; start at end.  */
+#    for (source += length, dest += length; length; --length)
+
+File: ./lib/binary-io.h
+Hash: ea71f7a3ab4b4dbfdbe578a2bedc51341a632fae63edc9687ddb301a8e88db6b
+License: GPL-3+ 
+Copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Binary mode I/O.
+#   Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/bind.c
+Hash: 345fb14e8ab45ff32e86d497f729743b9085d3924d0dcd8dcc4f9b5d28cb843b
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* bind.c --- wrappers for Windows bind function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/bitrotate.h
+Hash: bf4e90d06ff8a7eb32a59c54394204b84741046fa15f0ee9dfd0cec19cc2cf25
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* bitrotate.h - Rotate bits in integers
+#   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/btowc.c
+Hash: 4c263e1c7b7add699324c83acf27490eae484d98e3ec75ec8abfe89e50e4c3e2
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert unibyte character to wide character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/byteswap.in.h
+Hash: bd089dcccc601992343eadc9ac5d1173fe47adaa6be9f554de9b56e0ada6ef30
+License: GPL-3+ 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* byteswap.h - Byte swapping
+#   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#   Written by Oskar Liljeblad <oskar@osk.mine.nu>, 2005.
+#
+#   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
+
+File: ./lib/c-ctype.c
+Hash: 3247e6ae86bda58108f0933bb516ac7092c6b972c747ebbe1ea530edf06c0793
+License: GPL-2+ 
+Copyright: 2000-2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character handling in C locale.
+#
+#   Copyright 2000-2003, 2006 Free Software Foundation, Inc.
+#
+#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 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
+
+File: ./lib/c-ctype.h
+Hash: 221f512fb0a226a9fe28608c4f065c4f1aea37664edc45787cf2b677d3347988
+License: GPL-2+ 
+Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character handling in C locale.
+#
+#   These functions work like the corresponding functions in <ctype.h>,
+#   except that they have the C (POSIX) locale hardwired, whereas the
+#   <ctype.h> functions' behaviour depends on the current locale set via
+#   setlocale.
+#
+#   Copyright (C) 2000-2003, 2006, 2008 Free Software Foundation, Inc.
+#
+#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 of the License, or
+#(at your option) any later version.
+#
+#This program is distributed in the hope that it will be useful,
+
+File: ./lib/c-stack.c
+Hash: 0fe02d3bbf8b73c2f3eea5841027b52860666ee94e2795b444dcc98ef79dc503
+License: GPL-3+ 
+Copyright: 2002, 2004, 2006, 2008, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* Stack overflow handling.
+#
+#   Copyright (C) 2002, 2004, 2006, 2008, 2009 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/c-stack.h
+Hash: a21e1759d3e498e26d93665fe500f7ac93027b38ee4c9413df473f6bbe8d0b22
+License: GPL-3+ 
+Copyright: 2002, 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Stack overflow handling.
+#
+#   Copyright (C) 2002, 2004, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/c-strcase.h
+Hash: 700123f142dd7be6a02cb443ec2ec16c5e55412c9b767cb6fb5f41972f2986be
+License: GPL 
+Copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-insensitive string comparison functions in C locale.
+#   Copyright (C) 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/c-strcasecmp.c
+Hash: 5813026dcc5c543c5f539fe753092ea0f0419c3a0e5cd28271a66403efd66608
+License: GPL 
+Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* c-strcasecmp.c -- case insensitive string comparator in C locale
+#   Copyright (C) 1998-1999, 2005-2006 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/c-strcaseeq.h
+Hash: 41a44de05c8794489a85f495714c9ebe9b7e86bf93882e1157c7c29ef7e87654
+License: LGPL-3+ 
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Optimized case-insensitive string comparison in C locale.
+#   Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/c-strcasestr.c
+Hash: a3ef7838539fb370edb6d04a09043224c3852cfa0eb88252705569d7194b217a
+License: GPL-3+ 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* c-strcasestr.c -- case insensitive substring search in C locale
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   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
+
+File: ./lib/c-strcasestr.h
+Hash: fb9f0ccc3a0843600f8f3c546536dd03d882a1cce67ed06d95299307810a67c7
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-insensitive searching in a string in C locale.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/c-strncasecmp.c
+Hash: 0f5960e9963b050aa381c57b2fb6d08ad32e86d833e906014b9f965a4f233b7e
+License: GPL 
+Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* c-strncasecmp.c -- case insensitive string comparator in C locale
+#   Copyright (C) 1998-1999, 2005-2006 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/c-strstr.c
+Hash: c435d0a89670ee2ac73fad0445f0d15de13e09ddf466ebf15dc872d62b3b5f4c
+License: GPL-3+ 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* c-strstr.c -- substring search in C locale
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005, 2007.
+#
+#   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
+
+File: ./lib/c-strstr.h
+Hash: a562f768d2d1e2f44652b98dca2e7ae58e2880eada876116a6d3bf342a312cc0
+License: GPL-3+ 
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching in a string.
+#   Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/c-strtod.c
+Hash: 40bcd0ae43e731e785caaf327c327c32e95074019aa23a02fd58c1af79beebaa
+License: GPL-3+ 
+Copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert string to double, using the C locale.
+#
+#   Copyright (C) 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/c-strtod.h
+Hash: d1d38e765e9bb24e6331acb59798291a42525d3d52b5945a06e04131fda2622c
+License: GPL-3+ 
+Copyright: 2003-2004, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert string to double, using the C locale.
+#
+#   Copyright (C) 2003-2004, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/c-strtold.c
+Hash: f2f3327044df634e0b933cb776f209274b8ebea5df3c977a51422befbd6db63a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define LONG 1
+##include "c-strtod.c"
+
+File: ./lib/calloc.c
+Hash: 813b2807d1779eccdc16e52eaa6272c8d2cad79b90dcd1a121c59fccbd7db54c
+License: GPL-3+ 
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* calloc() function that is glibc compatible.
+#   This wrapper function is required at least on Tru64 UNIX 5.1 and mingw.
+#   Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/canon-host.c
+Hash: 6e769abcb94fe823344005341e9d566650fc3f05e22afeb853cd498391890071
+License: GPL 
+Copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Host name canonicalization
+#
+#   Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+#
+#   Written by Derek Price <derek@ximbiot.com>.
+#
+#   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, 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.
+
+File: ./lib/canon-host.h
+Hash: 15c3b5a2570e4d2b2501c12ea7f690cd76be7a4271c9f620df17b9e24574ff2d
+License: GPL 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Host name canonicalization
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   Written by Derek Price <derek@ximbiot.com>
+#
+#   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, 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.
+
+File: ./lib/canonicalize-lgpl.c
+Hash: 31572bb94d292f1be2374999e03d2ca1ff506f643e889f1211ad4ec9e42709c3
+License: GPL-3+ 
+Copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Return the canonical absolute name of a given file.
+#   Copyright (C) 1996-2003, 2005-2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/canonicalize.c
+Hash: 317fb2484d6a487a7ab5c964f7fd86fa711e1ab1ab3fd34518c6d6ae7eb77f6d
+License: GPL-3+ 
+Copyright: 1996-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Return the canonical absolute name of a given file.
+#   Copyright (C) 1996-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/canonicalize.h
+Hash: 8946ae555e9b6d4173814e28c850eef63233d5026e291074af2d999e567e3303
+License: GPL-3+ 
+Copyright: 1996-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Return the canonical absolute name of a given file.
+#   Copyright (C) 1996-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/ceil.c
+Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards positive infinity.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/ceilf.c
+Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards positive infinity.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/ceill.c
+Hash: 6433a1e713f776afc49ee529f4cd8ef5c6a96b0e2cbca80031820f2fa538a9d7
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards positive infinity.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/chdir-long.c
+Hash: 9bfeec4664bd8ea174475e5c7ca4f26bee69370881752dacddb6aeed908600c7
+License: GPL-3+ 
+Copyright: 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* provide a chdir function that tries not to fail due to ENAMETOOLONG
+#   Copyright (C) 2004-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/chdir-long.h
+Hash: 43c6066052ad511d0bbc773ab569ed70bfe41a4e8f0168495d53f289d3b8292c
+License: GPL-3+ 
+Copyright: 2004, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* provide a chdir function that tries not to fail due to ENAMETOOLONG
+#   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/chdir-safer.c
+Hash: 7fb9baacfff6082c7a5913c4aae0557ff60cfb3e65bd0c09ebd438669d66a570
+License: GPL-3+ 
+Copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* much like chdir(2), but safer
+#
+#   Copyright (C) 2005-2006, 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/chdir-safer.h
+Hash: e3232b6124ac91a0910daf805e412816cd3a6ee5a8268acdaa366f4c35f9ed51
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* much like chdir(2), but safer
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/check-version.c
+Hash: b9147d6cca01ee62c2de29c59777283b45be1735a457fb9a748256b9f9cd8f43
+License: GPL 
+Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
+Licence-Text: 
+#Header: 
+#/* check-version.h --- Check version string compatibility.
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+#   2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/check-version.h
+Hash: eb1e24d6d5f441f55ca7b9ad07249b71a8056ba2eb91ad6584428f97a5a836b5
+License: GPL 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* check-version.h --- Check version string compatibility.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/chown.c
+Hash: e72dbae39e506979332040aa02e82336372fc710944efc83f3da40c5c09ca7a6
+License: GPL-3+ 
+Copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* provide consistent interface to chown for systems that don't interpret
+#   an ID of -1 as meaning `don't change the corresponding ID'.
+#
+#   Copyright (C) 1997, 2004-2007, 2009 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/classpath.c
+Hash: d1d34ae2c6f3915f1a22d0399df01102840772c8733b3782ccd4fe220e819b6a
+License: GPL-3+ 
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Java CLASSPATH handling.
+#   Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/classpath.h
+Hash: 9b2071cc61bb9c5fc67562c4b2ae4270c0e61235f0052a91e63542ed1c161ff1
+License: GPL-3+ 
+Copyright: 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Java CLASSPATH handling.
+#   Copyright (C) 2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2003.
+#
+#   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
+
+File: ./lib/clean-temp.c
+Hash: 36bc4ff5220f99fef224ee81984f458a050b76097c5a2e5fe8ee40d5d84e1bf4
+License: GPL-3+ 
+Copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Temporary directories and temporary files with automatic cleanup.
+#   Copyright (C) 2001, 2003, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/clean-temp.h
+Hash: 7fb51e989292b9fee1580dc431185ca8ee300709983c7ab0137bfc372d6a2b18
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Temporary directories and temporary files with automatic cleanup.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/cloexec.c
+Hash: 1f7579bc9888a0a5a4eb18a6a04be6dea54324e346baa4a0c76b240f01ed3329
+License: GPL-3+ 
+Copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* closexec.c - set or clear the close-on-exec descriptor flag
+#
+#   Copyright (C) 1991, 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/cloexec.h
+Hash: cfe5843e2e0ac5ad5fc12a47d962d9f8305a2542693105f25917b8f36614b582
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <stdbool.h>
+#int set_cloexec_flag (int desc, bool value);
+
+File: ./lib/close-hook.c
+Hash: ec1354c985be7435887fe9b514e9777b573cf13b674dc55eeffbbf2b6f738034
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Hook for making the close() function extensible.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/close-hook.h
+Hash: 0bd92bcbb0e461e75824497facbf3a66e7ae7d8eaf7cc4b91fa7dcb0b827b504
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Hook for making the close() function extensible.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/close-stream.c
+Hash: 5b1b946e2cdae710a10239f75e632eaac2c083ad0a895384be7a76254efcdb42
+License: GPL-3+ 
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free
+Licence-Text: 
+#Header: 
+#/* Close a stream, with nicer error checking than fclose's.
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/close-stream.h
+Hash: 827172f355991afad504e0cbf0ca7bc6df709d57f14b498de472fed1cff3c71d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <stdio.h>
+#int close_stream (FILE *stream);
+
+File: ./lib/close.c
+Hash: bb1b7ca07113ae43ac558dbd9ba9c62ccef65d984ff7a462df394ded1e8e5a4c
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* close replacement.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/closein.c
+Hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Close standard input, rewinding seekable stdin if necessary.
+#
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/closein.h
+Hash: 4e261752ec61c623fbdf6707be9654503a5998f74833b3b91c56650507c485eb
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Close standard input, rewinding seekable stdin if necessary.
+#
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/closeout.c
+Hash: 0208f6e721c11f8964c3a52a6e8c4bd6f19d35db790e2a5815dfea345d7444eb
+License: GPL-3+ 
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
+Licence-Text: 
+#Header: 
+#/* Close standard output and standard error, exiting with a diagnostic on error.
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/closeout.h
+Hash: 2b48405fde7535d4e60a3e539a77ab974fd3e372cf97d8c0ed3a82991c3b9cbe
+License: GPL-3+ 
+Copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/* Close standard output and standard error.
+#
+#   Copyright (C) 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation,
+#   Inc.
+#
+#   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.
+
+File: ./lib/concat-filename.c
+Hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
+License: GPL 
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Construct a full filename from a directory and a relative filename.
+#   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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 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/>.  */
+
+File: ./lib/concat-filename.h
+Hash: b84d2c6c2e5a8307529fe2a1345949b40a55aee7271142bf3e56ec008231bc0e
+License: GPL-3+ 
+Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Construct a full filename from a directory and a relative filename.
+#   Copyright (C) 2001-2004, 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/config.charset
+Hash: 6f0998e29a63e3fcb8c4e044840a073a733d777ab343c1a3f045ce6ab2e9ecf9
+License: GPL 
+Copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Output a system dependent table of character encoding aliases.
+##
+##   Copyright (C) 2000-2004, 2006-2009 Free Software Foundation, Inc.
+##
+##   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.
+##
+
+File: ./lib/connect.c
+Hash: e9e4f3ca46ee356688d1d58e5eba96562c3850b470cc266856bae4cfc7ef5372
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* connect.c --- wrappers for Windows connect function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/copy-acl.c
+Hash: 40c730e383e47065909dd9b5cfabcdf662f5ca1d3491528c2726551c49d88e49
+License: GPL-3+ 
+Copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* copy-acl.c - copy access control list from one file to another file
+#
+#   Copyright (C) 2002-2003, 2005-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/copy-file.c
+Hash: 8d79873160d6735d8e50841f62ddb06b8a12bb54fc4ccaa29e8fd4c8009e7ce9
+License: GPL-3+ 
+Copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copying of files.
+#   Copyright (C) 2001-2003, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/copy-file.h
+Hash: b83fade95166bced102f06075d40d1b52c09d72aa62e313053f297f2e89e05e4
+License: GPL-3+ 
+Copyright: 2001-2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copying of files.
+#   Copyright (C) 2001-2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/cosl.c
+Hash: f94441c30759bff7b800832d4a5ca7f10ab4fdec07fa304c2a367ee6814a1ada
+License: 
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+Licence-Text: 
+#Header: 
+#/* s_cosl.c -- long double version of s_sin.c.
+# * Conversion to long double by Jakub Jelinek, jj@ultra.linux.cz.
+# */
+#
+#/*
+# * ====================================================
+# * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
+# *
+# * Developed at SunPro, a Sun Microsystems, Inc. business.
+# * Permission to use, copy, modify, and distribute this
+# * software is freely granted, provided that this notice
+# * is preserved.
+# * ====================================================
+# */
+
+File: ./lib/count-one-bits.h
+Hash: 9bfc5b555787364b6d14caddb1e35b0c076627938d3049c7b0d3d0b411409e10
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* count-one-bits.h -- counts the number of 1-bits in a word.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/crc.c
+Hash: 444a38281c2c920f7e54307e2fb960e7e045a71ede5a7793c8b59d19dd42fecc
+License: GPL GENERATED FILE
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* crc.c -- cyclic redundancy checks
+#   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#
+#   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, 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/>.  */
+
+File: ./lib/crc.h
+Hash: d20e1f1c17cf2ef4fe9383e09809c60590708ecadd57cf6d967c5634c968eea0
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* crc.h -- cyclic redundancy checks
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/creat-safer.c
+Hash: 675f74818da9e9543301afdb0bacc0922294d33b13d7411ff97044bc83ee5186
+License: GPL-3+ 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke creat, but avoid some glitches.
+#
+#   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/csharpcomp.c
+Hash: 60500489341e803a1e684450bb9cb161aa03e3d71fd8c469f1bb47b9e5ddcbf4
+License: GPL-3+ 
+Copyright: 2003-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compile a C# program.
+#   Copyright (C) 2003-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/csharpcomp.h
+Hash: ed80ee1bdd6a323445877e7988c969b8b4a0699bb70bea8a8f6fd2e98df2f9a2
+License: GPL-3+ 
+Copyright: 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compile a C# program.
+#   Copyright (C) 2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/csharpexec.c
+Hash: 9c8d0cf212dcaf02bcbd13a6f9fc04f6bde9b26961bcb6b84c8d613eccedbe40
+License: GPL-3+ 
+Copyright: 2003-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Execute a C# program.
+#   Copyright (C) 2003-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/csharpexec.h
+Hash: b52a0f9c1967e21f490cb0a86d5d0910af3e34b693c1937e965561bbe2b01916
+License: GPL-3+ 
+Copyright: 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Execute a C# program.
+#   Copyright (C) 2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/cycle-check.c
+Hash: 42e37d48e8e2bde63e12bb394fa4c50a6209ed1b592e6c236411dd339e0756a1
+License: GPL-3+ 
+Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* help detect directory cycles efficiently
+#
+#   Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/cycle-check.h
+Hash: 42b5265fff4a67fad7b32708c5ffe9ecb8ee2edac006073355fcc563d9cf7e11
+License: GPL-3+ 
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* help detect directory cycles efficiently
+#
+#   Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/des.c
+Hash: fd7196b6a2a037973cfc74df6861f31d3ca3a201113252ddc69f6d49843296df
+License: GPL 
+Copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+Licence-Text: 
+#Header: 
+#/* des.c --- DES and Triple-DES encryption/decryption Algorithm
+# * Copyright (C) 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+# *    Free Software Foundation, Inc.
+# *
+# * This file 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 file 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
+
+File: ./lib/des.h
+Hash: 0657bba6a068db36353ae4fc668777b7948049ea563a6e04d5643878c73c0553
+License: GPL 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* des.h --- DES cipher implementation.
+# * Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+# *
+# * This file 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 file 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 file; if not, write to the Free Software
+
+File: ./lib/dev-ino.h
+Hash: 389d203acc8519fb2e74b471a247ffd831d6dd93ff076a42ee47a8a48b4f821a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##ifndef DEV_INO_H
+## define DEV_INO_H 1
+#
+## include <sys/types.h>
+## include <sys/stat.h>
+#
+#struct dev_ino
+#{
+#  ino_t st_ino;
+#  dev_t st_dev;
+#};
+#
+##endif
+
+File: ./lib/diacrit.c
+Hash: 8fe4fbeca6533f94fe5e22b403d4e9659a74a43af7777951d616971cb58a2865
+License: GPL-3+ 
+Copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* Diacritics processing for a few character codes.
+#
+#   Copyright (C) 1990, 1991, 1992, 1993, 2000, 2006 Free Software
+#   Foundation, Inc.
+#
+#   François Pinard <pinard@iro.umontreal.ca>, 1988.
+#
+#   All this file is a temporary hack, waiting for locales in GNU.
+#
+#   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,
+
+File: ./lib/diacrit.h
+Hash: 1e18e6c700599854713425ac91ef20e1dc1b48d3842826f8ce12c5b8777f6cac
+License: GPL-3+ 
+Copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Diacritics processing for a few character codes.
+#   Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
+#   François Pinard <pinard@iro.umontreal.ca>, 1988.
+#
+#   All this file is a temporary hack, waiting for locales in GNU.
+#
+#   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.
+
+File: ./lib/diffseq.h
+Hash: 8e10c66c285feea8e568e48fc868abfd29fca86308f93231c42016b821f5473d
+License: GPL-3+ 
+Copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free
+Licence-Text: 
+#Header: 
+#/* Analyze differences between two vectors.
+#
+#   Copyright (C) 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/dirchownmod.c
+Hash: c257ba60a2b1e58c04bdd873d5f000f1f03c6f2f364bd25f3f6bda2ce19bf4b7
+License: GPL-3+ 
+Copyright: 2006, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Change the ownership and mode bits of a directory.
+#
+#   Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/dirchownmod.h
+Hash: 2377b01e9bac7aabe4b35b4ee9493ca91cf6d0edae1905934deb6462f7dfcdb7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <sys/types.h>
+#int dirchownmod (int, char const *, mode_t, uid_t, gid_t, mode_t, mode_t);
+
+File: ./lib/dirent--.h
+Hash: 07dc0881d2aaf744a41393f3eecee439192d76eb2eb03c62fad51514dc6ffb35
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Like dirent.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/dirent-safer.h
+Hash: 6fa32838fa81f1b4a4e1df89282bd0493df71361847142562db0ebb79c0349da
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke dirent-like functions, but avoid some glitches.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/dirent.in.h
+Hash: 6826b90dd9abb410dd4949515a1d15f184e8db441b5ad50f12c2eaf4f6f542c6
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <dirent.h>.
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/dirfd.c
+Hash: 3d93cdf70fd7be9fc29911d59fe09cb189e040224aaad98a8c9e83309e9c7bc5
+License: GPL-3+ 
+Copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* dirfd.c -- return the file descriptor associated with an open DIR*
+#
+#   Copyright (C) 2001, 2006, 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/dirname.c
+Hash: e875ed57e50a82603de0ee7a830a6d495673d3cf95ad330deed4ec9cc540fd7f
+License: GPL-3+ 
+Copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* dirname.c -- return all but the last element in a file name
+#
+#   Copyright (C) 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/dirname.h
+Hash: 5ecde11db04080822441842ce9cdf1c7d12872412af9305e768bfc5c867e3000
+License: GPL-3+ 
+Copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc / (((unsigned int) | ('a' - 'A')) - 'a' \ / ( == DIRECTORY_SEPARATOR)
+Licence-Text: 
+#Header: 
+#/*  Take file names apart into directory and base names.
+#
+#    Copyright (C) 1998, 2001, 2003-2006 Free Software Foundation, Inc.
+#
+#    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
+
+File: ./lib/dprintf.c
+Hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to a file descriptor.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/dummy.c
+Hash: 3afbebab4922858335d8687bdd39bf0881f6eea6ed63f9d8d2999e9010b6704c
+License: GPL-3+ 
+Copyright: 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A dummy file, to prevent empty libraries from breaking builds.
+#   Copyright (C) 2004, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/dup-safer.c
+Hash: 37fd02f35d9bbe9b3673b9681de76101a235e4a0fc4d7c630773aabe959455fa
+License: GPL-3+ 
+Copyright: 2001, 2004, 2005, 2006, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* Invoke dup, but avoid some glitches.
+#
+#   Copyright (C) 2001, 2004, 2005, 2006, 2009 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/dup2.c
+Hash: a27cbfd58d5eb3c2d99b2a053764f3f1085841d3f29434c0a8001d845d1387c8
+License: GPL-3+ 
+Copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* Duplicate an open file descriptor to a specified file descriptor.
+#
+#   Copyright (C) 1999, 2004, 2005, 2006, 2007, 2009 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/dup3.c
+Hash: 5a1a146029856f33980e0ca9fb03df16e17c36957b8af8c5f19839cba93b392d
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy a file descriptor, applying specific flags.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/eealloc.h
+Hash: 14128ce1ce8fbad4f7358db50d4b6d6ce1c9c524e4ea23b6e266f36b39a82695
+License: GPL-3+ 
+Copyright: 2003, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Memory allocation with expensive empty allocations.
+#   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003,
+#   based on prior work by Jim Meyering.
+#
+#   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.
+
+File: ./lib/errno.in.h
+Hash: fe88fbd6fac6eb6acc5b84e204ef7b20b5968de6725682e3694d1f027bcf3b32
+License: GPL 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A POSIX-like <errno.h>.
+#
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/error.c
+Hash: 759532401c6333a4e942e57b2d1ec3efe68990086230f50dfc8018148c6241a9
+License: GPL-3+ 
+Copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Error handler for noninteractive utilities
+#   Copyright (C) 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/error.h
+Hash: c14e8a46030c1ac6f69b89a732b7b3a0c35ab78d550419c08c02a626010c3073
+License: GPL-3+ 
+Copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Declaration for error-reporting function
+#   Copyright (C) 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/euidaccess.c
+Hash: 88c401261238a10e8eb01df632a0149146590e3692034046262b614e176b7677
+License: GPL-3+ 
+Copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006
+Licence-Text: 
+#Header: 
+#/* euidaccess -- check if effective user id can access file
+#
+#   Copyright (C) 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006,
+#   2008, 2009 Free Software Foundation, Inc.
+#
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/exclude.c
+Hash: d841af1f422218e8e2c99fbda36b8626a810eae7a5e2be71c587bf33ecf2a895
+License: GPL-3+ 
+Copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003
+Licence-Text: 
+#Header: 
+#/* exclude.c -- exclude file names
+#
+#   Copyright (C) 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003,
+#   2004, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/exclude.h
+Hash: 2b13111b63be6c6ecb81a5e34429097b34c88b4a889ea6a41ef41309a6ef3ca5
+License: GPL-3+ 
+Copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005
+Licence-Text: 
+#Header: 
+#/* exclude.h -- declarations for excluding file names
+#
+#   Copyright (C) 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005,
+#   2006, 2009 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/execute.c
+Hash: fada894c258c01aed0dcacdb27e67b8302428f122a9a80bd346df99e5e29b461
+License: GPL-3+ 
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Creation of autonomous subprocesses.
+#   Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/execute.h
+Hash: 4e56a6cb0389acc2d1a3f91209fd3781803a0acfeb907ff3d0448286af4e35d9
+License: GPL-3+ 
+Copyright: 2001-2003, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Creation of autonomous subprocesses.
+#   Copyright (C) 2001-2003, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/exitfail.c
+Hash: 5a9a124a57c5dacad4bf2b5e021b77a42a33ee35872481ff71c4e0cd00afc2ec
+License: GPL-3+ 
+Copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Failure exit status
+#
+#   Copyright (C) 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/exitfail.h
+Hash: 877a42c98a8a8b7975c4a116bcc0afead63f92402e05649936af61e72493f252
+License: GPL-3+ 
+Copyright: 2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Failure exit status
+#
+#   Copyright (C) 2002 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/expl.c
+Hash: f570f9a7eb0fc19acf0bd0b30e1482a7ed8ba594dc26eb7951dd8a8f119be46c
+License: GPL-3+ 
+Copyright: 2002, 2003, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emulation for expl.
+#   Contributed by Paolo Bonzini
+#
+#   Copyright 2002, 2003, 2007 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/faccessat.c
+Hash: b11aa6f0dacf29b21357e6fc7694c750c8a7b4d6601f5fbc8b869d1f7c1cfff5
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Check the access rights of a file relative to an open directory.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fatal-signal.c
+Hash: 2439def8a904b9fec75774ba5e8dcc0c4df0ac24598e0395fa54277e258bcaf8
+License: GPL-3+ 
+Copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emergency actions in case of a fatal signal.
+#   Copyright (C) 2003-2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/fatal-signal.h
+Hash: 161abae5aa433aa22b95dbeacf7abe6b3813df0983bbc3e90d1ac806b398dcdc
+License: GPL-3+ 
+Copyright: 2003-2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emergency actions in case of a fatal signal.
+#   Copyright (C) 2003-2004 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/fbufmode.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fbufmode.h
+Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fchdir.c
+Hash: 1cff01be35d904c715c02a565711422784c3ab81ba68517b8d166ed3fdc8172b
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* fchdir replacement.
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fchmodat.c
+Hash: cb14ca8efe705c5d31767cda4078b03e79cb5401098cd07215414b4af7ccda80
+License: GPL-3+ 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Change the protections of file relative to an open directory.
+#   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fchown-stub.c
+Hash: 01f08654cdc736f611bedc64897d6cde20db20238576d2e399050a59b54b6609
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <config.h>
+#
+##include <sys/types.h>
+##include <errno.h>
+#
+#/* A trivial substitute for `fchown'.
+#
+#   DJGPP 2.03 and earlier (and perhaps later) don't have `fchown',
+#   so we pretend no-one has permission for this operation. */
+#
+#int
+#fchown (int fd, uid_t uid, gid_t gid)
+#{
+#  errno = EPERM;
+#  return -1;
+
+File: ./lib/fchownat.c
+Hash: f4ccacb449cfd52c9bb32d38c9282f9eb6db3e21bb40fe343f32361e2f2eee4b
+License: GPL-3+ 
+Copyright: 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* This function serves as replacement for a missing fchownat function,
+#   as well as a work around for the fchownat bug in glibc-2.4:
+#    <http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html>
+#   when the buggy fchownat-with-AT_SYMLINK_NOFOLLOW operates on a symlink, it
+#   mistakenly affects the symlink referent, rather than the symlink itself.
+#
+#   Copyright (C) 2006-2007, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fclose.c
+Hash: b9ff3e698a5bc176cc516f2d1bc0f1caeb31ce6ef5bc03a59f86d41f8c9a061a
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* fclose replacement.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fcntl--.h
+Hash: 3b7416a86275dcfa8f78d2f70ac320e95583cb68a3c2710dfd3d0c0ad79674f5
+License: GPL-3+ 
+Copyright: 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Like fcntl.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2005, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fcntl-safer.h
+Hash: 1b38a5c280f10b1be082ade7aa7a7094e8e48ad6610748a54b3e1e463c6955ec
+License: GPL-3+ 
+Copyright: 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke fcntl-like functions, but avoid some glitches.
+#
+#   Copyright (C) 2005, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fcntl.in.h
+Hash: 8f4cd6edcf635c7f343e2b03cd1b7d40d742b57ea937a23b4acbac9f79deb464
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Like <fcntl.h>, but with non-working flags defined to 0.
+#
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fd-safer.c
+Hash: fe1b4e960de5e5b3af0103f56e2cb6654a051d17aee26df93bda76176ba04d00
+License: GPL-3+ 
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Return a safer copy of a file descriptor.
+#
+#   Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fdopendir.c
+Hash: 6fa3102cfff5b57b78e4709b2c03cdcb8dc5519c9889f635ba73c34887212a84
+License: GPL-3+ 
+Copyright: 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* provide a replacement fdopendir function
+#   Copyright (C) 2004-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fflush.c
+Hash: 2622273e90952bfaa2fca8364132393c33b80f90a66a35c6b75240af7e94606c
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* fflush.c -- allow flushing input streams
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/file-has-acl.c
+Hash: 2f4bae0d818e2fcf56e772e9c9caa2310f7f7dc7d3cd3556335b0d04d46964a2
+License: GPL-3+ 
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether a file has a nontrivial access control list.
+#
+#   Copyright (C) 2002-2003, 2005-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/file-set.c
+Hash: 45dea5f9b0a95afa2babe22d9de18010fe4078005351697ce25c587c75173b3a
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Specialized functions to manipulate a set of files.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/file-set.h
+Hash: 4bacc096f8105ab71d14c90967bb7855d2ad8da0afc132d32c8df03d2eb427dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <sys/types.h>
+##include <sys/stat.h>
+##include <stdbool.h>
+#
+##include "hash.h"
+#
+#extern void record_file (Hash_table *ht, char const *file,
+#                       struct stat const *stats)
+#  __attribute__((nonnull(2, 3)));
+#
+#extern bool seen_file (Hash_table const *ht, char const *file,
+#                     struct stat const *stats);
+
+File: ./lib/file-type.c
+Hash: 9b360c9dba47a27fbcdcfa7c880672f23094a4332459655d5a06abaf75724544
+License: GPL-3+ 
+Copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* Return a string describing the type of a file.
+#
+#   Copyright (C) 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/file-type.h
+Hash: 33f7ce18b9037520c8a1d64bce9ba5ccfccc1ac39b4b08510f2f2caab56064b9
+License: GPL-3+ 
+Copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software
+Licence-Text: 
+#Header: 
+#/* Return a string describing the type of a file.
+#
+#   Copyright (C) 1993, 1994, 2001, 2002, 2004, 2005 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/fileblocks.c
+Hash: 15debca15418300f226a883a5ce4e98d3b687ef448b5b30e08247e56908be2ae
+License: GPL-3+ 
+Copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* Convert file size to number of blocks on System V-like machines.
+#
+#   Copyright (C) 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/filemode.c
+Hash: 169a543533dec3c22ffde0c0391528ea49b2440c80bc3ffde47196967ad49af0
+License: GPL-3+ 
+Copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* filemode.c -- make a string describing file modes
+#
+#   Copyright (C) 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/filemode.h
+Hash: 6439a9bafba8f71ce6dd51c897b653f713d013a8496413a19361cac6f515dcaf
+License: GPL-3+ 
+Copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Make a string describing file modes.
+#
+#   Copyright (C) 1998, 1999, 2003, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/filename.h
+Hash: 4f53c064d5d3411085081f0e8d109ed3132ab4333b1eefff9c22a968fa751ad8
+License: GPL-3+ 
+Copyright: ( == '/' || == '\\') / tests whether C is a directory separator character / 2001-2004, 2007-2008 Free Software Foundation, Inc / ( == '/')
+Licence-Text: 
+#Header: 
+#/* Basic filename support macros.
+#   Copyright (C) 2001-2004, 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/filenamecat.c
+Hash: d956c0d319ac571bc4c8d3e7d5be91e47dfbe356a8f4c2c64abe944b8e094af8
+License: GPL-3+ 
+Copyright: 1996-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate two arbitrary file names.
+#
+#   Copyright (C) 1996-2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/filenamecat.h
+Hash: 6ddfa3af34686669e746d1cb478b10753b7d450b3097c4b856230acdf11a5a6a
+License: GPL-3+ 
+Copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate two arbitrary file names.
+#
+#   Copyright (C) 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/filevercmp.c
+Hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+Licence-Text: 
+#Header: 
+#/*
+#   Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
+#   Copyright (C) 2001 Anthony Towns <aj@azure.humbug.org.au>
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/filevercmp.h
+Hash: 0ce28d9844bce3d3e9f26b062ac47e2cf4da42ab2ee00ae731a79879eed35024
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
+Licence-Text: 
+#Header: 
+#/*
+#   Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
+#   Copyright (C) 2001 Anthony Towns <aj@azure.humbug.org.au>
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/findprog-lgpl.c
+Hash: f142976d34ef0acffd72143865aadaacf7318c9391ac036941d725be41fd1424
+License: GPL-3+ 
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locating a program in PATH.
+#   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2008.
+#
+#   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
+
+File: ./lib/findprog.c
+Hash: 0dfc19e772afe61de75fb5844aec46027116c8e89e71b3d1da85482635daf928
+License: GPL-3+ 
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locating a program in PATH.
+#   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/findprog.h
+Hash: 52461483d830d7ff18633a15addd92530f4b6d1632f3cb1dbf15de8092a7758f
+License: GPL-3+ 
+Copyright: 2001-2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locating a program in PATH.
+#   Copyright (C) 2001-2003 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/float+.h
+Hash: e0f837de3dc39e0b747f0927653fa501e3e873bdfe1c26b0961519fd8dd897b4
+License: GPL 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Supplemental information about the floating-point formats.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/float.in.h
+Hash: 0c19c5ab4c8e1d8499f9edd1fd44d287083f329b75ec2b54100b101310e88ab6
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A correct <float.h>.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/flock.c
+Hash: c4837f3ed93fcac221405077e40e31648eda752325afe74b7b28d32928fbdec3
+License: LGPL-2.1+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emulate flock on platforms that lack it, primarily Windows and MinGW.
+#
+#   This is derived from sqlite3 sources.
+#   http://www.sqlite.org/cvstrac/rlog?f=sqlite/src/os_win.c
+#   http://www.sqlite.org/copyright.html
+#
+#   Written by Richard W.M. Jones <rjones.at.redhat.com>
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/floor.c
+Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards negative infinity.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/floorf.c
+Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards negative infinity.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/floorl.c
+Hash: 72b8c6aaf7655ad7df6333e04796ec29152012f8279842d977ec5469f240ccbe
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards negative infinity.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fnmatch.c
+Hash: a1023b214fa5f3433ca30359a6857be416dc1dade27370bdbd7100857341f56c
+License: GPL 
+Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009
+#      Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/fnmatch.in.h
+Hash: a5c8c5adbf49f1404d18740af34363323265ef6c7588387425b5797518dd9317
+License: GPL 
+Copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
+#   2005, 2007 Free Software Foundation, Inc.
+#
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/fnmatch_loop.c
+Hash: 5351dffc7f21918d5a731915aca1c452c091beb8a7df2ed78acf823afad6d785
+License: GPL 
+Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/fopen-safer.c
+Hash: 2c3a39bc70dada2b591df7cbf00ccc0ceed6e2f66c08fd5e01c7f70cc55eade6
+License: GPL-3+ 
+Copyright: 2001, 2004, 2005, 2006, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* Invoke fopen, but avoid some glitches.
+#
+#   Copyright (C) 2001, 2004, 2005, 2006, 2009 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/fopen.c
+Hash: 0eae410e55fc3de8810a3f68d37626df92ba75bbadf58269f8e802be2c05310b
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Open a stream to a file.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fpending.c
+Hash: af0350b9abdd28ebb8e56a842c10a760620a22b242a6a2f74402ee4222dcc8a2
+License: GPL-3+ 
+Copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* fpending.c -- return the number of pending output bytes on a stream
+#   Copyright (C) 2000, 2004, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fpending.h
+Hash: 01eea55927650242b2ec6a6293963c43ab840f135e5d4e9895c43aaff5d529a1
+License: GPL-3+ 
+Copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Declare __fpending.
+#
+#   Copyright (C) 2000, 2003, 2005, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fprintf.c
+Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+License: GPL-3+ 
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to a stream.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fprintftime.c
+Hash: 2f439ed60059d2a1a96bdb1e19ca32c81fdcced639c884f1deaf416f4d750e84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define FPRINTFTIME 1
+##include "strftime.c"
+
+File: ./lib/fprintftime.h
+Hash: 4f0efdf4cf65af56c865a1cf73b3314360fe7b326a00eb9994ba12a5bb0d2920
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Generate time strings directly to the output.  */
+#
+#/* Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fpucw.h
+Hash: e47878db46d7035debf5275a50634b563f90405b938fb8721ade14b526fc4738
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Manipulating the FPU control word.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/fpurge.c
+Hash: 979d16d694737fea189e9bf8d29a91f31305bc10386618604a2efd317703b257
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Flushing buffers of a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freadable.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freadable.h
+Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freadahead.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freadahead.h
+Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freading.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freading.h
+Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freadptr.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freadptr.h
+Hash: 00304cead11097ec9ffc74b1142d025cf304498f8219973a092cd80fa9a2128f
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freadseek.c
+Hash: e5dad14d411c6ebf4122bb8b36c186dc7c6c396d1a13b24aeea84bd19679c098
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Skipping input from a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/freadseek.h
+Hash: c7545f90ba5bf8bba37c297551a1a35b4c1814f8cf6d6c3f8d57b2e56ebaba0c
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Skipping input from a FILE stream.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/free.c
+Hash: b573f5b5fea990902e68d85f02b015cf9320100fe56678f14e732f90cf83e473
+License: GPL-3+ 
+Copyright: 2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Work around incompatibility on older systems where free (NULL) fails.
+#
+#   Copyright (C) 2003, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/freopen.c
+Hash: 58204a89790d1470a883e67f10cd0ddd7153655334e185ca64530467b797a4f9
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Open a stream to a file.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/frexp.c
+Hash: 91c12c41ce9b83e5cb3b66a32ee07dd6c30c8d24dd94f452238c006a0322287e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Split a double into fraction and mantissa.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/frexpl.c
+Hash: c03c58defe40517c302193125927eacad08dcda5bf4f49afaec567a5729e3a3d
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Split a 'long double' into fraction and mantissa.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fseek.c
+Hash: 0047d7b482dad80bda7de91feaa9d092a02a2a7fdcc852df3c8dc2f9c4bd0191
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An fseek() function that, together with fflush(), is POSIX compliant.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fseeko.c
+Hash: 7b2541be24bdcf54f417ab2189fb821a645f6a4f06a21adaff8f058594862194
+License: GPL 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An fseeko() function that, together with fflush(), is POSIX compliant.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/fseterr.c
+Hash: 7db3706c69835761a78a456fd39fb66f59d80b7ec061c6c204cceb4ac8cc5094
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Set the error indicator of a stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fseterr.h
+Hash: 59926523da017089371d4894c0e5bccd77843a75a6a837ab203c875d993393fb
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Set the error indicator of a stream.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fstatat.c
+Hash: e4dee1ca9774aa96627d99386e03d3a973f79dd331825b6d818b8f50a77bd65d
+License: GPL-3+ 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Work around an fstatat bug on Solaris 9.
+#
+#   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fstrcmp.c
+Hash: bfca8347502966f7b7e533a47fc2545366b589adee21a653689f4503158b2e5e
+License: GPL-3+ 
+Copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008
+Licence-Text: 
+#Header: 
+#/* Functions to make fuzzy comparisons between strings
+#   Copyright (C) 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008
+#   Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fstrcmp.h
+Hash: affd05fb827a563d7f36a218fddb5aabf27be47e86157d97d850ff3f98ef74e1
+License: GPL-3+ 
+Copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software
+Licence-Text: 
+#Header: 
+#/* Fuzzy string comparison.
+#   Copyright (C) 1995, 2000, 2002-2003, 2006, 2008 Free Software
+#   Foundation, Inc.
+#
+#   This file was written by Peter Miller <pmiller@agso.gov.au>
+#
+#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.
+
+File: ./lib/fsusage.c
+Hash: bf6546df7e894ec6855dfb9c9548dae4acbe9b4d69acde87b3c3d5deb1534091
+License: GPL-3+ 
+Copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009
+Licence-Text: 
+#Header: 
+#/* fsusage.c -- return space usage of mounted file systems
+#
+#   Copyright (C) 1991-1992, 1996, 1998-1999, 2002-2006, 2009
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/fsusage.h
+Hash: 0fbfea12b9dabb5987b88390bdc84d23c2dcd6a435f842f44d26c0a985a490b7
+License: GPL-3+ 
+Copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* fsusage.h -- declarations for file system space usage info
+#
+#   Copyright (C) 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/fsync.c
+Hash: 3d47bf5b981a180ca9cc8a052b84b52744342a9cc13c1c814274b04ed0ccce99
+License: LGPL-2.1+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emulate fsync on platforms that lack it, primarily Windows and
+#   cross-compilers like MinGW.
+#
+#   This is derived from sqlite3 sources.
+#   http://www.sqlite.org/cvstrac/rlog?f=sqlite/src/os_win.c
+#   http://www.sqlite.org/copyright.html
+#
+#   Written by Richard W.M. Jones <rjones.at.redhat.com>
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/ftell.c
+Hash: bdacd27661da79a67395f4c109a4ca358cbf5f7708013ac8b4597e1748cb866c
+License: GPL-3+ 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An ftell() function that works around platform bugs.
+#   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/ftello.c
+Hash: 8eb3edb3ac0a89c7d9fbf79c0f5b80d54bf4ba9150f30175b5c00d56b78da476
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An ftello() function that works around platform bugs.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/ftruncate.c
+Hash: 7e7eb364e0c33931844842e8432d1ba9a9f8b8dd506599b01ab206d1a414039f
+License: *No copyright* Public domain
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* ftruncate emulations that work on some System V's.
+#   This file is in the public domain.  */
+#
+##include <config.h>
+#
+#/* Specification.  */
+##include <unistd.h>
+#
+##include <sys/types.h>
+##include <fcntl.h>
+#
+##ifdef F_CHSIZE
+#
+#int
+#ftruncate (int fd, off_t length)
+
+File: ./lib/fts-cycle.c
+Hash: fc1d44a722404dd98d94914dab1b5ec263ac0d9749adcb8eadab0455348c1b8e
+License: GPL-3+ 
+Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Detect cycles in file tree walks.
+#
+#   Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+#   Written by Jim Meyering.
+#
+#   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.
+
+File: ./lib/fts.c
+Hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
+License: BSD (3 clause) GPL-3+ 
+Copyright: 1990, 1993, 1994 / 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Traverse a file hierarchy.
+#
+#   Copyright (C) 2004-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fts_.h
+Hash: 031ee2fa332e516ef11403356250388f67d165775a3ca9f03fa43bc7fe3695ec
+License: BSD (3 clause) GPL-3+ 
+Copyright: 1989, 1993 / 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Traverse a file hierarchy.
+#
+#   Copyright (C) 2004-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/full-read.c
+Hash: 8a27da95d11da5cac1d6d93a7c5408ac9e9e9b84c727c9d6426d536d74329533
+License: GPL-3+ 
+Copyright: 2002, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An interface to read that retries after partial reads and interrupts.
+#   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/full-read.h
+Hash: d4d3d1e43b305e2074d6ceb67dfc077058f73fa50b9188c61e3322de4c84a156
+License: GPL-3+ 
+Copyright: 2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An interface to read() that reads all it is asked to read.
+#
+#   Copyright (C) 2002 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/full-write.c
+Hash: 14aac294502e565d0475a4605c4fa84cd3ba3b006dc9f31359bd20cd01d223fb
+License: GPL-3+ 
+Copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003
+Licence-Text: 
+#Header: 
+#/* An interface to read and write that retries (if necessary) until complete.
+#
+#   Copyright (C) 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
+#   2004, 2005, 2006 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/full-write.h
+Hash: 6fc92b2c6f57f68ee664efc58bd464d3694584a11c7895b3e10d073f7463e4eb
+License: GPL-3+ 
+Copyright: 2002-2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An interface to write() that writes all it is asked to write.
+#
+#   Copyright (C) 2002-2003 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/fwritable.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fwritable.h
+Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fwriteerror.c
+Hash: 1a1137f1f41c92585bea0ad15c2c294253d8d496638763318511930ddc34559f
+License: GPL-3+ 
+Copyright: 2003-2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Detect write error on a stream.
+#   Copyright (C) 2003-2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/fwriteerror.h
+Hash: 57d77b30a81499334eeb50f7dfc84fa69ae4232ff0670018e7d4544f670e33a0
+License: GPL-3+ 
+Copyright: 2003, 2005-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Detect write error on a stream.
+#   Copyright (C) 2003, 2005-2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/fwriting.c
+Hash: a5abdbf63e5f0a4445b38c4af2b59138283911fe1cd2e69236cf839d7baada5f
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/fwriting.h
+Hash: 6ed3175e10c5665dcf6db713c0e2349045f3bd4fd4168fd28f47c63e550bc6be
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Retrieve information about a FILE stream.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/gai_strerror.c
+Hash: 6fa8c98c6159a1bc336cc672906d02a7c2b14a0db56b900ebd375c79e93e0a51
+License: GPL 
+Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Philip Blundell <pjb27@cam.ac.uk>, 1997.
+#
+#   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
+
+File: ./lib/gc-gnulib.c
+Hash: a1a6cd40081db989deb6d637777e1ea5e616b3d6a283a7a7f4a9d5e09291c419
+License: GPL 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+Licence-Text: 
+#Header: 
+#/* gc-gnulib.c --- Common gnulib internal crypto interface functions
+# * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+# * Software Foundation, Inc.
+# *
+# * This file 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 file 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
+
+File: ./lib/gc-libgcrypt.c
+Hash: 17a44f44fe9aa32fa885740126dc77e9789d91af8a7b6481c1c03a99b378b010
+License: GPL 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+Licence-Text: 
+#Header: 
+#/* gc-libgcrypt.c --- Crypto wrappers around Libgcrypt for GC.
+# * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+# * Software Foundation, Inc.
+# *
+# * This file 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 file 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
+
+File: ./lib/gc-pbkdf2-sha1.c
+Hash: 2286c6ae2cbbc15032408e0ab1b986db3f9ba1b141f1a542dbddcbb50c8dce4c
+License: GPL 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* gc-pbkdf2-sha1.c --- Password-Based Key Derivation Function a'la PKCS#5
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/gc.h
+Hash: a4f94bdf9e032840c9e93a7a9da02fd788642e5def0abcfa0107c6a129f2f4b8
+License: GPL 
+Copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
+Licence-Text: 
+#Header: 
+#/* gc.h --- Header file for implementation agnostic crypto wrapper API.
+# * Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008  Simon Josefsson
+# *
+# * This file 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 file 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 file; if not, write to the Free Software
+
+File: ./lib/gcd.c
+Hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
+License: GPL-3+ 
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Arithmetic.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/gcd.h
+Hash: a2ea24efb51452f1ebaf0e5bbb73d198ea84aafce9245acb74dca920986c4acf
+License: GPL-3+ 
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Arithmetic.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/gen-uni-tables.c
+Hash: aad2b45b19beca4f2ac5d5f5bb9edce6d0afc88e1b7b9d1047748f876a287f4a
+License: GPL-3+ 
+Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Generate Unicode conforming character classification tables and
+#   line break properties tables and word break property tables and
+#   decomposition/composition and case mapping tables from a UnicodeData file.
+#   Copyright (C) 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2000-2002.
+#
+#   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.
+
+File: ./lib/getaddrinfo.c
+Hash: adc75b9ed0c95c54930e8aed577992958efb7d055fee5326a497b8abb69d0316
+License: GPL 
+Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
+Licence-Text: 
+#Header: 
+#/* Get address information (partial implementation).
+#   Copyright (C) 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
+#   Foundation, Inc.
+#   Contributed by Simon Josefsson <simon@josefsson.org>.
+#
+#   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.
+
+File: ./lib/getcwd.c
+Hash: 5875b69c2fe815331158284d7517251ab1bf88edae205ac42d739b529a6d4873
+License: GPL-3+ 
+Copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991-1999, 2004-2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/getdate.h
+Hash: b9389accd94ac78a67232edb3c527f3f70ee67ad6f01602d68b55ba4fbcd0dba
+License: GPL-3+ 
+Copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software
+Licence-Text: 
+#Header: 
+#/* Parse a string into an internal time stamp.
+#
+#   Copyright (C) 1995, 1997, 1998, 2003, 2004, 2007 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/getdate.y
+Hash: b5fca8ba27d142ddf8675e4f97a669f215e388619b18a6be948a2fb748066a5c
+License: GPL-3+ 
+Copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+Licence-Text: 
+#Header: 
+#%{
+#/* Parse a string into an internal time stamp.
+#
+#   Copyright (C) 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/getdelim.c
+Hash: 992ace4fcbea4653a4c94a5e3161682e707b458f19befe7a2efe9b6d0536c45b
+License: GPL 
+Copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007
+Licence-Text: 
+#Header: 
+#/* getdelim.c --- Implementation of replacement getdelim function.
+#   Copyright (C) 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007,
+#   2008, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getdomainname.c
+Hash: 49d9ff73b25a4e25ab534f038da03ecc6bd4f1e55511d312f3e3652d79e561f3
+License: GPL-3+ 
+Copyright: 2003, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getdomainname emulation for systems that doesn't have it.
+#
+#   Copyright (C) 2003, 2006, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getdtablesize.c
+Hash: 51191e642c33bb0d979044844f6eff55029ec458cd21474f85bb0b0d51eb1353
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getdtablesize() function for platforms that don't have it.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/getgroups.c
+Hash: 0f0b9f4b7e5c2b88b951017ee86711bfeafe90b04b0b610061b888563f4fdded
+License: GPL-3+ 
+Copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software
+Licence-Text: 
+#Header: 
+#/* provide consistent interface to getgroups for systems that don't allow N==0
+#
+#   Copyright (C) 1996, 1999, 2003, 2006, 2007, 2008 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/gethostname.c
+Hash: 08b8fc75fb3ab4c65596a95988f9a243016039c6a6d58db033df382b3e85ef91
+License: GPL-3+ 
+Copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* gethostname emulation for SysV and POSIX.1.
+#
+#   Copyright (C) 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/gethrxtime.c
+Hash: 1cec40c1dcc320f69be6e1c805d217f9abab323dfc4d321daeb53e6d8a47b7d8
+License: GPL-3+ 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* gethrxtime -- get high resolution real time
+#
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/gethrxtime.h
+Hash: 0f5ade662a7551e4b033ef5d892a59fa220a1ca1e4fca8feb3778e6102444739
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* gethrxtime -- get high resolution real time
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getline.c
+Hash: db509c33815c26829232154304e781d89be477ad3f316afe1d06f654877e7697
+License: GPL 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getline.c --- Implementation of replacement getline function.
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getloadavg.c
+Hash: 2d24f7a43c161425aa87eff2a7f2fb2bc4a9a1f84761f74178139d04c1fece2b
+License: GPL-3+ 
+Copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994
+Licence-Text: 
+#Header: 
+#/* Get the system load averages.
+#
+#   Copyright (C) 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994,
+#   1995, 1997, 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+#   Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with gnulib.
+#   Bugs can be reported to bug-gnulib@gnu.org.
+#
+#   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,
+
+File: ./lib/getlogin_r.c
+Hash: 71342da5c9fce5ffc521819fbf5ea380288d8dd31a5a80d9272b7f75b422173c
+License: GPL 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide a working getlogin_r for systems which lack it.
+#
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getndelim2.c
+Hash: 9ee7610ebe6f8a37f5a5a68a7b3449214c14a38ff0d7dd572812bb7859df98f1
+License: GPL-3+ 
+Copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free
+Licence-Text: 
+#Header: 
+#/* getndelim2 - Read a line from a stream, stopping at one of 2 delimiters,
+#   with bounded memory allocation.
+#
+#   Copyright (C) 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/getndelim2.h
+Hash: f5045e0d348580d1368f95e10cdc98ef5dc5cb756ace0005aa8ea0b4b3ec3c44
+License: GPL-3+ 
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getndelim2 - Read a line from a stream, stopping at one of 2 delimiters,
+#   with bounded memory allocation.
+#
+#   Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/getnline.c
+Hash: bbdd86a205f27f15ef28fbde34d1623b507bb2453e631af80a1afab6cd8981ec
+License: GPL-3+ 
+Copyright: 2003, 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getnline - Read a line from a stream, with bounded memory allocation.
+#
+#   Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getnline.h
+Hash: 03573e9a526808be4f0f78b44449e9d23df1f24379e10ec2ba8ca76d47a3c4a6
+License: GPL-3+ 
+Copyright: 2003, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getnline - Read a line from a stream, with bounded memory allocation.
+#
+#   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getopt.c
+Hash: 4d0fd46f29bb8073586f8ec6d6970bb6076904b387b4ba39b52e67f894fad2ac
+License: GPL-3+ 
+Copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008
+Licence-Text: 
+#Header: 
+#/* Getopt for GNU.
+#   NOTE: getopt is now part of the C library, so if you don't know what
+#   "Keep this file name-space clean" means, talk to drepper@gnu.org
+#   before changing it!
+#   Copyright (C) 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008
+#      Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/getopt.in.h
+Hash: 85fd6cbd9bf519076eb2762b34c713e170afc8e197126defee267fedcee58ff4
+License: GPL-3+ 
+Copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007
+Licence-Text: 
+#Header: 
+#/* Declarations for getopt.
+#   Copyright (C) 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/getopt1.c
+Hash: 40109d2a58167504326aad2cb1b61592e621cfc075c9499cc9fc8c4428517863
+License: GPL-3+ 
+Copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009
+Licence-Text: 
+#Header: 
+#/* getopt_long and getopt_long_only entry points for GNU getopt.
+#   Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009
+#     Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/getopt_int.h
+Hash: 54606da8ebed47f74fd89143417b60de590aa10ec0620f8a7a78ebd0c36557e3
+License: GPL-3+ 
+Copyright: 1989-1994,1996-1999,2001,2003,2004
+Licence-Text: 
+#Header: 
+#/* Internal declarations for getopt.
+#   Copyright (C) 1989-1994,1996-1999,2001,2003,2004
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/getpagesize.c
+Hash: cc8c7a17126f58bdff2c354feec2eed60d44ff713caa57dc3075bc3f136601ba
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getpagesize emulation for systems where it cannot be done in a C macro.
+#
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getpass.c
+Hash: 3c4602671b814d6de906dbab501db462e449060ec3b662a3cc813158469c1c41
+License: GPL 
+Copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software
+#   Foundation, Inc.
+#
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/getpass.h
+Hash: 715da55d6addef9aba7f35a6d79bf776995ba58b92e85e1355038b36d4dd757c
+License: GPL 
+Copyright: 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getpass.h -- Read a password of arbitrary length from /dev/tty or stdin.
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#   Contributed by Simon Josefsson <jas@extundo.com>, 2004.
+#
+#   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
+
+File: ./lib/getpeername.c
+Hash: 3a2f22e1c404ed3915fd5dfe38a6d499d2cb70e1fd51eaa0dd53aadc7b7be703
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getpeername.c --- wrappers for Windows getpeername function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getsockname.c
+Hash: db4f104421692ccfcaec0efbeefb8abf3170e8e83c3f80d16d4088a9570c0747
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getsockname.c --- wrappers for Windows getsockname function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getsockopt.c
+Hash: cfa28503953c834f7db8e9d1e3113792201bf64a0b7ef2ef1e4f2cbb56b5ac98
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* getsockopt.c --- wrappers for Windows getsockopt function
+#
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/getsubopt.c
+Hash: ec9a4323b51dc83a8a3dab5470517e58f1bb6eade183c6dc3eba458312ab0d3e
+License: GPL-3+ 
+Copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Parse comma separated list into words.
+#   Copyright (C) 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
+#
+#   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.
+
+File: ./lib/gettext.h
+Hash: 136f1ff682700ad9f5fb60428eeada20f160e6ed38a19ad78bd1dc4e440f55f0
+License: GPL 
+Copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convenience header for conditional use of GNU <libintl.h>.
+#   Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/gettime.c
+Hash: 77086b931aa5e0345ebf249afe25b980450af522098b0dc7db39c72cda600702
+License: GPL-3+ 
+Copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* gettime -- get the system clock
+#
+#   Copyright (C) 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/gettimeofday.c
+Hash: cde7080c035c43c360bf0a39981d8e1f56a5745a9f0857f3fab617c0414c9aa6
+License: GPL 
+Copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* Provide gettimeofday for systems that don't have it or for which it's broken.
+#
+#   Copyright (C) 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/getugroups.c
+Hash: 270b3c42be956bed158bfc6996f80f6ea8860856d9d24ce150bc04e2d49c0cb4
+License: GPL-3+ 
+Copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/* getugroups.c -- return a list of the groups a user is in
+#
+#   Copyright (C) 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation.
+#
+#   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
+
+File: ./lib/getugroups.h
+Hash: 5a293b9aa238d490fa967e3b2edb180d4e6dc234cc662fd796ebefe226ef0c7d
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Get a list of group IDs associated with a specified user ID.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/getusershell.c
+Hash: 1fd7fb9cb095692b1bf2300b27d245389e99a34347ace403e72b60d4bf3dd633
+License: GPL-3+ 
+Copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free
+Licence-Text: 
+#Header: 
+#/* getusershell.c -- Return names of valid user shells.
+#
+#   Copyright (C) 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/git-merge-changelog.c
+Hash: 1eb639ccc3a04697cdb5744ebbcb63f90893e0de7ec866b6dd449e350d28915f
+License: GPL-2+ 
+Copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
+Licence-Text: 
+#Header: 
+#/* git-merge-changelog - git "merge" driver for GNU style ChangeLog files.
+#   Copyright (C) 2008-2009 Bruno Haible <bruno@clisp.org>
+#
+#   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 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/>.  */
+
+File: ./lib/gl_anyavltree_list1.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anyavltree_list2.h
+Hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anyhash_list1.h
+Hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with another list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anyhash_list2.h
+Hash: dbcade12e1f50e403d11ebbaad5a9e362dff88d6f9e130105030da8d8d6fae64
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with another list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anylinked_list1.h
+Hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anylinked_list2.h
+Hash: ebec01e1e27b8f47a348c6c8aab61a6cd8a6d756d7af2d6af0fb0717ebac9699
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anyrbtree_list1.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anyrbtree_list2.h
+Hash: 2f28e0e9b640419e3adc55dde88d2c484a1a854b13974ed27b450acec3791e75
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anytree_list1.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anytree_list2.h
+Hash: 40c2faf4dbc261cf4e9ef93bd5c202d96530b5ad6198c8421f85b2d5c9e841ef
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anytree_oset.h
+Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anytreehash_list1.h
+Hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_anytreehash_list2.h
+Hash: 005fd6a046fcc5e517cffe8fc6f8e653eb1b3dd14a09c48681a9af382b7cb41f
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_array_list.c
+Hash: 0c25ceacf9c0bdb5aab3741b0cb9cda44011e1dc5d268cbc8bf5101e0acce283
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by an array.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_array_list.h
+Hash: 863f801e67908ee9891c3f0dcb4f8ce0e131de5453303e2a7790b0bd3958ca0a
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by an array.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_array_oset.c
+Hash: c819d4f4a184e90641f6cefcacbf6b02abed3b6e38373b86c138dea7cac916ac
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Ordered set data type implemented by an array.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_array_oset.h
+Hash: 019de04fadf81baec6bf31de9ff73bb78d4ad248796b60a6875b604a8a4fbaa7
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Ordered set data type implemented by an array.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_avltree_list.c
+Hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
+License: GPL-3+ 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_avltree_list.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_avltree_oset.c
+Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_avltree_oset.h
+Hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_avltreehash_list.c
+Hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
+License: GPL-3+ 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_avltreehash_list.h
+Hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_carray_list.c
+Hash: 1231124fa2b6eb2388f59849dfadbcc1121ac93c1498182180307abef125f81e
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a circular array.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_carray_list.h
+Hash: 69dc4efd9c2c04954ad4b58ec33e4e452068e7afc4bd466a824816dc6a94dc82
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a circular array.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_linked_list.c
+Hash: ed7862364a0ad9a0b599013e8efaf9a1bd4ca2fee8ca914048d25296fa8a55af
+License: GPL-3+ 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_linked_list.h
+Hash: 3d18920349eb96b1c9c8412fbffd5bd4869cdf18aeee313529abf6e7a275cbdb
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a linked list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_linkedhash_list.c
+Hash: 0ac3aac0adac6ac1565820f39242ce8abaf6ce35fe9f110d5bda696eb80db47f
+License: GPL-3+ 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with a linked list.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_linkedhash_list.h
+Hash: dd97ead793ac89798799ec721b21cc9e52051b5bf68d0c4b5a0437b938a30069
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with a linked list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_list.c
+Hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Abstract sequential list data type.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_list.h
+Hash: 6d3ec28eb9735a874306f37e5fb0d215f5cfaeeba000e7e065dd7998505991fc
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Abstract sequential list data type.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_oset.c
+Hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Abstract ordered set data type.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_oset.h
+Hash: c7340dbc3fc3cded9a0f0793de5fa5546beb7fd6286b2506e50bab6939223b95
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Abstract ordered set data type.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_rbtree_list.c
+Hash: a92f8069aaceab0d000fbc884fddfbff3643775bcdea56be024ce95e33ecf71c
+License: GPL-3+ 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_rbtree_list.h
+Hash: 8ac70eb000a4bcc6a992b5e313e1a9ff249140a28f8860d985beee4c432ac540
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_rbtree_oset.c
+Hash: eb71f87b156ea9fbb2d5e66ff268b540cd0b8ae8d368fa8bd5944f989ae9b582
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_rbtree_oset.h
+Hash: 940c03f4ddaf5bda590298605fa2c9742b12f2842dbe1d6b1da8436168cca0ea
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Ordered set data type implemented by a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_rbtreehash_list.c
+Hash: 9aed625067da6250c2d03f7f7d4cdfbef445b7c4d85084f0adb647d544cee8ec
+License: GPL-3+ 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_rbtreehash_list.h
+Hash: 9eab1fd35b9d44dbd4bf80d7dc437cc40018c36b0e239f1ade4c6ef5c5b4e744
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type implemented by a hash table with a binary tree.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_sublist.c
+Hash: 73915aa3876fd8f8947afe4eea6a3383db1680e283ed8da437d4ce635e8148d5
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type backed by another list.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/gl_sublist.h
+Hash: 6b2c4954c29b3c4f64ecfc9ea385e7613778fe57581326d0bb0865f30f47bdf2
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sequential list data type backed by another list.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/glob-libc.h
+Hash: b8ac91c8cae0271efb81ee15e750224494a993f3198db3e110c2affbe1dbbf6d
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C 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.
+#
+#   The GNU C 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 the GNU C Library; if not, write to the Free
+
+File: ./lib/glob.c
+Hash: f71e836c564095b672ee61d58fa2acf0272842c03360d1642e7ada6d132305a0
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C 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.
+#
+#   The GNU C 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
+
+File: ./lib/glob.in.h
+Hash: 6064b1858ef6f12b46d80c41a6c8e25567a40c42ea0a9e7712fcbf75d7d1b499
+License: GPL 
+Copyright: 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* glob.h -- Find a path matching a pattern.
+#
+#   Copyright (C) 2005-2007 Free Software Foundation, Inc.
+#
+#   Written by Derek Price <derek@ximbiot.com> & Paul Eggert <eggert@CS.UCLA.EDU>
+#
+#   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.
+
+File: ./lib/glthread/cond.c
+Hash: d5641ae46998e1a8654c5e3549b9c7b3db1d3ca85dd8fe7f311bc8e674cb71e2
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Condition variables for multithreading.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/glthread/cond.h
+Hash: b3332b7fa3f32abab59fe03fbc119d02861b28da6534ce9ad1f3469f070f0971
+License: GPL 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Condition variables for multithreading.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/glthread/lock.c
+Hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
+License: GPL 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locking in multithreaded situations.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/glthread/lock.h
+Hash: 5ea27810cbd910f12a558e110c0cf620d1bf2d0f8fb791b69284d3bdd922bb04
+License: GPL 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locking in multithreaded situations.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/glthread/thread.c
+Hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
+License: GPL 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Creating and controlling threads.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/glthread/thread.h
+Hash: 2bddc48226d7489010faf3f45607cfe71eba8b8c89c6d7c3974569d35d4dac32
+License: GPL 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Creating and controlling threads.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/glthread/threadlib.c
+Hash: 2294600f29fbe5bce62a905bfe009f89a1c37bd29adcd4b57528e33d3e793a06
+License: GPL 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Multithreading primitives.
+#   Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/glthread/tls.c
+Hash: 23dde3cdce3671ccb6ea2e6d89bad99e9b6be9e40ad0295a2bc4025aa4e99f07
+License: GPL-3+ 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Thread-local storage in multithreaded situations.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/glthread/tls.h
+Hash: ed954c215d967d813727cef3ec96b920dbfecedb4774907236526505e9fc97ac
+License: GPL-3+ 
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Thread-local storage in multithreaded situations.
+#   Copyright (C) 2005, 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/glthread/yield.h
+Hash: 2bcbee6893754730a99361ac72c8b8af2bcb514f7ee153772ff69c10a6ad7ea7
+License: GPL 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Yielding the processor to other threads and processes.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/group-member.c
+Hash: 8474fc86e2ee602d1afb18ec7ebbae7f9f83d113d63848cfb4df91f6b741bbad
+License: GPL-3+ 
+Copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* group-member.c -- determine whether group id is in calling user's group list
+#
+#   Copyright (C) 1994, 1997, 1998, 2003, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/group-member.h
+Hash: 563dcdfc1c58f40bf17d5ab635d790c0c7844c61ccd6e496de34fa33a2b3dd40
+License: GPL-3+ 
+Copyright: 1994, 1997, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine whether group id is in calling user's group list.
+#
+#   Copyright (C) 1994, 1997, 2003 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/hard-locale.c
+Hash: ac46d3e77162a575cb9cd0c05179c4a69489214f6bc3c02f037007dfca33d5eb
+License: GPL-3+ 
+Copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free
+Licence-Text: 
+#Header: 
+#/* hard-locale.c -- Determine whether a locale is hard.
+#
+#   Copyright (C) 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/hard-locale.h
+Hash: ecaf6cfa27e7cf1f1d6352bb186bc8e4e65b5fdfcb09c13e99ef463705a8fb0c
+License: GPL-3+ 
+Copyright: 1999, 2003, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine whether a locale is hard.
+#
+#   Copyright (C) 1999, 2003, 2004 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/hash-pjw.c
+Hash: b468ec2f4a022e97eaf348f80c034c2e2e60123e1ac7e7616870d776d32f223d
+License: GPL-3+ 
+Copyright: 2001, 2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* hash-pjw.c -- compute a hash value from a NUL-terminated string.
+#
+#   Copyright (C) 2001, 2003, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/hash-pjw.h
+Hash: 102a798ca5da9f9351c39aa2c91082bf9d774f1a330d81b924966f58543eed81
+License: GPL-3+ 
+Copyright: 2001, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* hash-pjw.h -- declaration for a simple hash function
+#   Copyright (C) 2001, 2003 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/hash-triple.c
+Hash: fbf36f90dc1c8954ed95b4cccf669147164280573695a4286b79f36dc4c1c4ec
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Hash functions for file-related triples: name, device, inode.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/hash-triple.h
+Hash: 96088774b989d1fc41e81f6377fbe2c1a17baec684be47bbca7ec9a7c0071c04
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##ifndef HASH_TRIPLE_H
+##define HASH_TRIPLE_H
+#
+##include <sys/types.h>
+##include <sys/stat.h>
+##include <stdbool.h>
+#
+#/* Describe a just-created or just-renamed destination file.  */
+#struct F_triple
+#{
+#  char *name;
+#  ino_t st_ino;
+#  dev_t st_dev;
+#};
+
+File: ./lib/hash.c
+Hash: 4062f069a5ed949dfecf5ed42bddd98a48a5090946d9b54d800d6fa02c4c611d
+License: GPL-3+ 
+Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007
+Licence-Text: 
+#Header: 
+#/* hash - hashing table processing.
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007,
+#   2009 Free Software Foundation, Inc.
+#
+#   Written by Jim Meyering, 1992.
+#
+#   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
+
+File: ./lib/hash.h
+Hash: f6f040c23d292aacf272c2311ed2e73b4e442125219242180ca61b8a8b8a01c1
+License: GPL-3+ 
+Copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* hash - hashing table processing.
+#   Copyright (C) 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc.
+#   Written by Jim Meyering <meyering@ascend.com>, 1998.
+#
+#   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
+
+File: ./lib/hmac-md5.c
+Hash: ed5bd8c5068d05ebc413d1374482c55577681191971dbfd83a866beb78da5152
+License: GPL 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* hmac-md5.c -- hashed message authentication codes
+#   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/hmac-sha1.c
+Hash: 4bf9541934465ef6d67baa91aceb2287bc67777ed6f7c25c0952c43c6ea464a8
+License: GPL 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* hmac-sha1.c -- hashed message authentication codes
+#   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/hmac.h
+Hash: 567a64cdb7bc0339a02d4df869ded8aab7a23849fbd9e981af8a9a9acfa0d215
+License: GPL 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* hmac.h -- hashed message authentication codes
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/human.c
+Hash: e32265ab4d043a7abcb8f615e2cc58a500928f0421d37ecc9d774895580c1e4d
+License: GPL-3+ 
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
+Licence-Text: 
+#Header: 
+#/* human.c -- print human readable file size
+#
+#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+#   2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/human.h
+Hash: 9cecd9075608ba01827d4b74ea741b74eeb0b933f1a8850b7163cbfefaeaf456
+License: GPL-3+ 
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
+Licence-Text: 
+#Header: 
+#/* human.h -- print human readable file size
+#
+#   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+#   2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/i-ring.c
+Hash: 04cc3226eee4b74df051e43d1b1131567b9837369d3dd9f02a53ebc685f1607d
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* a simple ring buffer
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/i-ring.h
+Hash: 83d5e547a1b2282a81722d24d3fd7ab460d6d5d9062532235e0030df6de1bdb2
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* definitions for a simple ring buffer
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/iconv.c
+Hash: 3059e46d2d2c44be2ae300d27f485ee07d544f254865f96ebf86dea813b4fffa
+License: GPL 
+Copyright: 1999-2001, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character set conversion.
+#   Copyright (C) 1999-2001, 2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/iconv.in.h
+Hash: a0c00abb098262610f94109af9bc3bc9f27219dd9f3169ad081a47cd9228d1ca
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <iconv.h>.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/iconv_close.c
+Hash: 4871e1d8a40deb9c674779c24cf93e04b326ab61be8bcb4cc8e739d22ba70961
+License: GPL 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character set conversion.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/iconv_open-aix.gperf
+Hash: 6da2acfc8d64cb160d117fcf2ae6ff0c1074e75e98ec00cebcbcd25c91ff6c71
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#struct mapping { int standard_name; const char vendor_name[10 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On AIX 5.1, look in /usr/lib/nls/loc/uconvTable.
+#ISO-8859-1, "ISO8859-1"
+#ISO-8859-2, "ISO8859-2"
+#ISO-8859-3, "ISO8859-3"
+
+File: ./lib/iconv_open-hpux.gperf
+Hash: 1af956e948c4e74ae425bc40a8df179820746ac4407e809a8c2c83971c8e0f6f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#struct mapping { int standard_name; const char vendor_name[9 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On HP-UX 11.11, look in /usr/lib/nls/iconv.
+#ISO-8859-1, "iso88591"
+#ISO-8859-2, "iso88592"
+#ISO-8859-5, "iso88595"
+
+File: ./lib/iconv_open-irix.gperf
+Hash: 828615fa97c1771502ef557a7aef007676e378822a93f914e2b67b5ec3ce3912
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#struct mapping { int standard_name; const char vendor_name[10 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On IRIX 6.5, look in /usr/lib/iconv and /usr/lib/international/encodings.
+#ISO-8859-1, "ISO8859-1"
+#ISO-8859-2, "ISO8859-2"
+#ISO-8859-3, "ISO8859-3"
+
+File: ./lib/iconv_open-osf.gperf
+Hash: 2c9f609f72f0c386bfbcac0e2f65cd6624a1279429fae6d38e4c2fb91bb4fa2b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#struct mapping { int standard_name; const char vendor_name[10 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On OSF/1 5.1, look in /usr/lib/nls/loc/iconv.
+#ISO-8859-1, "ISO8859-1"
+#ISO-8859-2, "ISO8859-2"
+#ISO-8859-3, "ISO8859-3"
+
+File: ./lib/iconv_open-solaris.gperf
+Hash: 855843d24b44701480c504188b9c91b3b602d6c134e3b450cd8573fd92b35ca6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#struct mapping { int standard_name; const char vendor_name[10 + 1]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name standard_name
+#%define hash-function-name mapping_hash
+#%define lookup-function-name mapping_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name mappings
+#%pic
+#%%
+## On Solaris 10, look in the "iconv -l" output. Some aliases are advertised but
+## not actually supported by the iconv() function and by the 'iconv' program.
+## For example:
+##   $ echo abc | iconv -f 646 -t ISO-8859-1
+
+File: ./lib/iconv_open.c
+Hash: 9ed1da2147b3e675bbd6775a42ab67d25e2fe781f6cdf15eaab5c231273ff0e7
+License: GPL 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character set conversion.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/iconveh.h
+Hash: 67e4aaef11864ffbdc1e1f005051bea04babd77da24011ef95dbb4d36320570e
+License: GPL-3+ 
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character set conversion handler type.
+#   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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
+
+File: ./lib/idcache.c
+Hash: b9013a2865d4a3daaca3b55f2be4ed9e3a20a075a05ea60d26ea660978090977
+License: GPL-3+ 
+Copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007
+Licence-Text: 
+#Header: 
+#/* idcache.c -- map user and group IDs, cached for speed
+#
+#   Copyright (C) 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/idcache.h
+Hash: be4efe8ffdf2e8d49697677451ff6b5db99c836286bace3d23e00fe57cf35725
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##ifndef IDCACHE_H
+## define IDCACHE_H 1
+#
+## include <sys/types.h>
+#
+#extern char *getuser (uid_t uid);
+#extern char *getgroup (gid_t gid);
+#extern uid_t *getuidbyname (const char *user);
+#extern gid_t *getgidbyname (const char *group);
+#
+##endif
+
+File: ./lib/idpriv-drop.c
+Hash: 7f9a23470304193f0c1f172af0a8809eabc7b87a17c08a904e03e6f0e23c4412
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Dropping uid/gid privileges of the current process permanently.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/idpriv-droptemp.c
+Hash: 489bb045e6211eb0d6389cfc83518e2fe2ddc45fe2c192956d5403520ab12454
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Dropping uid/gid privileges of the current process temporarily.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/idpriv.h
+Hash: 46f34c0a8796bc8842508928d2398c9e0348051b305656e2e8a6b0a7b6f16b85
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Dropping uid/gid privileges of the current process.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/ignore-value.h
+Hash: b844f7425a0066e987565375e711d4932b9f502ff6f149a93c5ba9120c99ea63
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ignore a function return without a compiler warning
+#
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/imaxabs.c
+Hash: 4c3cd71956269b0c624236e9f02355a8ab08d726ee6663e731a88cb79a85330f
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* imaxabs() function: absolute value of 'intmax_t'.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/imaxdiv.c
+Hash: 1c1e3f382e0b77378c6c8f9632d7c4635f390115c0897a74b6b7b22a3ac34be7
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* imaxdiv() function: division of 'intmax_t'.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/imaxtostr.c
+Hash: c5ccba8a9cadbb5e7d6bcb207caa40a490337d0f938712b6886792bb1c3f750f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define inttostr imaxtostr
+##define inttype intmax_t
+##include "inttostr.c"
+
+File: ./lib/inet_ntop.c
+Hash: bb85be451bd6abe2730ae9c900eca3d5dfeb58717a5fe8020fd32c3197efe395
+License: ISC GPL 
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc / 1996-1999 by Internet Software Consortium
+Licence-Text: 
+#Header: 
+#/* inet_ntop.c -- convert IPv4 and IPv6 addresses from binary to text form
+#
+#   Copyright (C) 2005, 2006, 2008, 2009  Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/inet_pton.c
+Hash: 33b53b62f48e6b8843c4109e0cb9632ed41cd3ff07ea81a3842fb24a3d42781e
+License: ISC GPL-3+ 
+Copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* inet_pton.c -- convert IPv4 and IPv6 addresses from text to binary form
+#
+#   Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/intprops.h
+Hash: 9e2808fa7e1039a775f0131499ed427895f2ae4376bf394d44e98dc59d256c3b
+License: GPL-3+ 
+Copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* intprops.h -- properties of integer types
+#
+#   Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/inttostr.c
+Hash: 1890559866d6095b73e83459b5eaca3ea71812c130099e512534096ef240c29e
+License: GPL-3+ 
+Copyright: 2001, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* inttostr.c -- convert integers to printable strings
+#
+#   Copyright (C) 2001, 2006, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/inttostr.h
+Hash: 7f7f2820aac6266245de58217005c72002285153e793b1bdbdbab45aea9b2234
+License: GPL-3+ 
+Copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* inttostr.h -- convert integers to printable strings
+#
+#   Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/inttypes.in.h
+Hash: b572e765fe79d49fffbc38520ba9a41cf3b650f9078db83da161ddf1bd81d03d
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#   Written by Paul Eggert, Bruno Haible, Derek Price.
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/ioctl.c
+Hash: a838bb30b06340f3dd9a82218a003ea0bd38e4312c6342ae7f20c6bc1fef878b
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ioctl.c --- wrappers for Windows ioctl function
+#
+#   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/isapipe.c
+Hash: 457e1ad81d87c14336cc33a66c0a6470db91a5d315e83811d98e82aab1dfe238
+License: GPL-3+ 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether a file descriptor is a pipe.
+#
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/isapipe.h
+Hash: 1e08bd60adc2a94f785eb57858cc60eee319d0250d409627b746953c9778a34e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* Whether pipes are FIFOs; -1 if not known.  */
+##ifndef HAVE_FIFO_PIPES
+## define HAVE_FIFO_PIPES (-1)
+##endif
+#
+#int isapipe (int fd);
+
+File: ./lib/isdir.c
+Hash: 03760bca801b4b55e9e0a1e0cf3b2df572ad1dc4a10cceac16254afd692ad1f2
+License: GPL-3+ 
+Copyright: 1990, 1998, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* isdir.c -- determine whether a directory exists
+#
+#   Copyright (C) 1990, 1998, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/isfinite.c
+Hash: 040962d83f2dc48a4f86e204594272a3a1345da3bf72f77a0141696c2e67670d
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for finite value (zero, subnormal, or normal, and not infinite or NaN).
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/isinf.c
+Hash: 8b36f7949b786a5b398b697020f0bae0094e677bc8237320acdf88dd784c4f27
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for positive or negative infinity.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/isnan.c
+Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/isnand-nolibm.h
+Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/isnand.c
+Hash: 130313c72e69a6238a9736af813940f148965be7cd35509e7a7db5af4b502737
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/isnanf-nolibm.h
+Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/isnanf.c
+Hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/isnanl-nolibm.h
+Hash: 47455ca42a4c758859e6598a1869394a1e0e133c2ecc9837c6dd88231495f26e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/isnanl.c
+Hash: a3e5b3fa9e97033b7406816c100134db359f0a16e5291ea96efb5027e0888b48
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for NaN that does not need libm.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/javacomp.c
+Hash: 5510a586bdbed690c0f58f407e86f128dd19f69e30f7b763fc80645dfdb5fdab
+License: GPL-3+ 
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compile a Java program.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/javacomp.h
+Hash: 7796f276d24731ee6d3c7f5294adfe566e8c046007020386e7f14820b6e0719a
+License: GPL-3+ 
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compile a Java program.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/javaexec.c
+Hash: d5c2f1711f1f3dd4c31a2579a9a93a3f361c1b1b03e78713f1935e5c360e3e01
+License: GPL-3+ 
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Execute a Java program.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/javaexec.h
+Hash: fdd928324e8ecf1d026624ada4377dc47be047d3e38b42a0456e1dec3b50a51b
+License: GPL-3+ 
+Copyright: 2001-2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Execute a Java program.
+#   Copyright (C) 2001-2002 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/javaversion.c
+Hash: fdead42e957d45aad5a32be39fc000b965f101ba1255624f9b54cccc347dab26
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine the Java version supported by javaexec.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/javaversion.class
+Hash: 2bee26b0b761a52a418a6488d94be8af824a30a3f87f50cb8d35f4b7a54a13a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Êþº¾\0\ 3\0-\0!
+#\0\a\0\10  \0\11\0\12\b\0\13
+#\0\11\0\14
+#\0\15\0\16\a\0\17\a\0\18\ 1\0\ 6<init>\ 1\0\ 3()V\ 1\0\ 4Code\ 1\0\ fLineNumberTable\ 1\0\ 4main\ 1\0\16([Ljava/lang/String;)V\ 1\0
+#SourceFile\ 1\0\10javaversion.java\f\0\b\0     \a\0\19\f\0\1a\0\e\ 1\0\1ajava.specification.version\f\0\1c\0\1d\a\0\1e\f\0\1f\0 \ 1\0\vjavaversion\ 1\0\10java/lang/Object\ 1\0\10java/lang/System\ 1\0\ 3out\ 1\0\15Ljava/io/PrintStream;\ 1\0\vgetProperty\ 1\0&(Ljava/lang/String;)Ljava/lang/String;\ 1\0\13java/io/PrintStream\ 1\0\aprintln\ 1\0\15(Ljava/lang/String;)V\0!\0\ 6\0\a\0\0\0\0\0\ 2\0\ 1\0\b\0    \0\ 1\0
+#\0\0\0\1d\0\ 1\0\ 1\0\0\0\ 5*·\0\ 1±\0\0\0\ 1\0\v\0\0\0\ 6\0\ 1\0\0\0\18\0    \0\f\0\r\0\ 1\0
+#\0\0\0(\0\ 2\0\ 1\0\0\0\f²\0\ 2\12\ 3¸\0\ 4¶\0\ 5±\0\0\0\ 1\0\v\0\0\0
+#\0\ 2\0\0\0\1a\0\v\0\e\0\ 1\0\ e\0\0\0\ 2\0\ f
+
+File: ./lib/javaversion.h
+Hash: 29a446b837cf48407147af943a7093bdb31bb10c00fc791eab8870a4acc0602e
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine the Java version supported by javaexec.
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/javaversion.java
+Hash: a97b370d2fde64e69acc4e2896d1da82e09cbf28058f4565b2f61d6433088d72
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Show the Java version.
+# * Copyright (C) 2006 Free Software Foundation, Inc.
+# *
+# * 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/>.
+
+File: ./lib/lchown.c
+Hash: 953d98a6f7fe6ee1359d3d4946aa47ae6596a61298964fd3c03b359f351f0338
+License: GPL-3+ 
+Copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free
+Licence-Text: 
+#Header: 
+#/* Provide a stub lchown function for systems that lack it.
+#
+#   Copyright (C) 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/ldexpl.c
+Hash: c540324ac2ca2517b41b719aad57bf1773ee104baf901c03daa8bbf5208d3e3c
+License: GPL-3+ 
+Copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emulation for ldexpl.
+#   Contributed by Paolo Bonzini
+#
+#   Copyright 2002, 2003, 2007, 2008 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/linebuffer.c
+Hash: d85578cc459795d236f48e817ded298d632fa6890aac27376aecf0c47a856fa8
+License: GPL-3+ 
+Copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007
+Licence-Text: 
+#Header: 
+#/* linebuffer.c -- read arbitrarily long lines
+#
+#   Copyright (C) 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/linebuffer.h
+Hash: 34656b0c4b8d689a203a09d7b36721f38b76bcb871571a8c4b0d923840a9fe58
+License: GPL-3+ 
+Copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software
+Licence-Text: 
+#Header: 
+#/* linebuffer.h -- declarations for reading arbitrarily long lines
+#
+#   Copyright (C) 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/link.c
+Hash: c0b30ef6d1e001b2928d2bb394b5762a98b6b6ede802eaa83c1319c2e03dce1e
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emulate link on platforms that lack it, namely native Windows platforms.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/listen.c
+Hash: c6134f3762f75b62f22278b0c4dd5119a598c12d4e5c20957e32c6cd33314666
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* listen.c --- wrappers for Windows listen function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/localcharset.c
+Hash: 1548af2400728ae263f6a2bb0118e7778437b3639878649dc0257a527e4e0629
+License: GPL 
+Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine a canonical name for the current locale's character encoding.
+#
+#   Copyright (C) 2000-2006, 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/localcharset.h
+Hash: 119c2de543436735fe784154d840a118ae31756c5fbbbb7f30b1cd3e2b54616a
+License: GPL 
+Copyright: 2000-2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine a canonical name for the current locale's character encoding.
+#   Copyright (C) 2000-2003 Free Software Foundation, Inc.
+#   This file is part of the GNU CHARSET Library.
+#
+#   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
+
+File: ./lib/locale.in.h
+Hash: 208f60fb61b19efcd077917af5a61aad7ac1210ed158ba35d67c172ead537649
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A POSIX <locale.h>.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/localename.c
+Hash: f6fbb8df7f52b6eafa7552a49d6e5eee9816b690a0d89c2b03462044652914d2
+License: LGPL 
+Copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine name of the currently selected locale.
+#   Copyright (C) 1995-1999, 2000-2008 Free Software Foundation, Inc.
+#
+#   This program 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, 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
+#   Library General Public License for more details.
+#
+#   You should have received a copy of the GNU Library General Public
+#   License along with this program; if not, write to the Free Software
+
+File: ./lib/localename.h
+Hash: 6a79383773a37a8b6886c6d119e3890f98db4a414a013cc80eac6449b8e5fe4b
+License: LGPL 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine name of the currently selected locale.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   This program 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, 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
+#   Library General Public License for more details.
+#
+#   You should have received a copy of the GNU Library General Public
+#   License along with this program; if not, write to the Free Software
+
+File: ./lib/logl.c
+Hash: 85d31985f40705b82f8d0816e8f6861d9544a057be0b15056632551829c0b8b3
+License: GPL-3+ 
+Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+Licence-Text: 
+#Header: 
+#/* Copyright 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
+#
+#   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/>.  */
+
+File: ./lib/long-options.c
+Hash: 4365412d9fe5d790d7ad8e3e03649fe0e872a7e666491c956fbbdaded0030cc0
+License: GPL-3+ 
+Copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* Utility to accept --help and --version options as unobtrusively as possible.
+#
+#   Copyright (C) 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005,
+#   2006 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/long-options.h
+Hash: 4f9add7cfbe1ff66d2f74e25eefc73829aef3fb75c1d70eb1760a07c288b5a31
+License: GPL-3+ 
+Copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* long-options.h -- declaration for --help- and --version-handling function.
+#   Copyright (C) 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/lseek.c
+Hash: 02f75754750c8263d25c4282d7b6167a2d40d0c8f8cf8a952486fc65dc812321
+License: GPL 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An lseek() function that detects pipes.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/lstat.c
+Hash: 345ec037534ce5c96f9599c78e87c36be1fee4649a8ec187168445e6bb2d1cc7
+License: GPL-3+ 
+Copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Work around a bug of lstat on some systems
+#
+#   Copyright (C) 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/malloc.c
+Hash: 7754ece2820e7ddc5a364b370c2560187d53c00f4695409abd04ecedeff2aa94
+License: GPL 
+Copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* malloc() function that is glibc compatible.
+#
+#   Copyright (C) 1997, 1998, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/malloca.c
+Hash: e0f9431b8801560a2ec9fecb1893f9c1443bd37ac24a4785196d0c03321f52da
+License: GPL 
+Copyright: 2003, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Safe automatic memory allocation.
+#   Copyright (C) 2003, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/malloca.h
+Hash: 56c3717d1d0f5f3cbdf6f2b581ad097dd47935c459a239db9ca84db9fd339f1c
+License: GPL 
+Copyright: 2003-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Safe automatic memory allocation.
+#   Copyright (C) 2003-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/malloca.valgrind
+Hash: 93322a37edfb58a01aa98fa0cc0c4887861c816c873681286b20873bee36e170
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Suppress a valgrind message about use of uninitialized memory in freea().
+## This use is OK because it provides only a speedup.
+#{
+#    freea
+#    Memcheck:Cond
+#    fun:freea
+#}
+
+File: ./lib/math.in.h
+Hash: 1d71d3fe653ddb331f364aadd7e0db6e31fc0a63300b049925c39c9120777288
+License: GPL-3+ 
+Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <math.h>.
+#
+#   Copyright (C) 2002-2003, 2007-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/mbchar.c
+Hash: 1b800acccc08b7bf9876ec834e26931f8cbc2ca5f69d788879010a196026a89a
+License: GPL-3+ 
+Copyright: 2001, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2001, 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mbchar.h
+Hash: 419eac128ee022faceedcbce731388308f72bf42d570dcc74d67721645d9ad75
+License: GPL-3+ 
+Copyright: 2001, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Multibyte character data type.
+#   Copyright (C) 2001, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mbfile.h
+Hash: f148ab5a88b3ab7847530f40507a08b257c44574da3e3824feca0501fc1ff87d
+License: GPL-3+ 
+Copyright: 2001, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Multibyte character I/O: macros for multi-byte encodings.
+#   Copyright (C) 2001, 2005 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mbiter.h
+Hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
+License: GPL-3+ 
+Copyright: 2001, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterating through multibyte strings: macros for multi-byte encodings.
+#   Copyright (C) 2001, 2005, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mbmemcasecmp.c
+Hash: f5ab326ce04660d7c088d2589429beeb7310d839bd0559a3a37f42497870f830
+License: GPL-3+ 
+Copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare two memory areas with possibly different lengths, case-insensitive.
+#   Copyright (C) 1998-1999, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009,
+#   based on earlier glibc code.
+#
+#   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.
+
+File: ./lib/mbmemcasecmp.h
+Hash: 85c672759815348bfc4928739797c22787d4f55386d3bb5effd4685cd12f7496
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare two memory areas with possibly different lengths, case-insensitive.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mbmemcasecoll.c
+Hash: cab139308f71e0434b70aeaf0f3dbed1381ead7271c0d992e00b93438c1d6499
+License: LGPL-3+ 
+Copyright: 2001, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale-specific case-ignoring memory comparison.
+#   Copyright (C) 2001, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/mbmemcasecoll.h
+Hash: 746e4714316afcd2eb3d13bb38d3c2776496e6f2f77b745a1d694e53a6f74a61
+License: LGPL-3+ 
+Copyright: 2001, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale-specific case-ignoring memory comparison.
+#   Copyright (C) 2001, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mbrlen.c
+Hash: 34f5f51edaf35ee0284c34df8f8288a04625716cf5817d6eefc9c8dad9b06473
+License: GPL-3+ 
+Copyright: 1999-2000, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Recognize multibyte character.
+#   Copyright (C) 1999-2000, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/mbrtowc.c
+Hash: 76ee0ca75066f435d593cbebd63b7abab83e289e38af89d03f5fbba1a1b9ca8a
+License: GPL-3+ 
+Copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert multibyte character to wide character.
+#   Copyright (C) 1999-2002, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/mbscasecmp.c
+Hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
+License: GPL-3+ 
+Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-insensitive string comparison function.
+#   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005,
+#   based on earlier glibc code.
+#
+#   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.
+
+File: ./lib/mbscasestr.c
+Hash: 067b762668e77d779287cb9e16e0d9d0d54425834153a41df667fe96abe6d5ea
+License: GPL-3+ 
+Copyright: 2005-2008 Free Software Foundation, Inc / TOLOWER 
+Licence-Text: 
+#Header: 
+#/* Case-insensitive searching in a string.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   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
+
+File: ./lib/mbschr.c
+Hash: 0400e89b869bf824f778a6860325c96dbf6fc811f1872770a0bd662a5af0f847
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching a string for a character.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbscspn.c
+Hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
+License: GPL-3+ 
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching a string for a character among a given set of characters.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbsinit.c
+Hash: 295fe542f5ad6e27ca5816217b9805d2428ea1aabd57962bdb2d3306a6c769fb
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for initial conversion state.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/mbslen.c
+Hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Counting the multibyte characters in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbsncasecmp.c
+Hash: eab28341ca62dcfeffc1705aaa0bafa3b6726453600b7b5770f6618293eedf6a
+License: GPL-3+ 
+Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-insensitive string comparison function.
+#   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005,
+#   based on earlier glibc code.
+#
+#   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.
+
+File: ./lib/mbsnlen.c
+Hash: bc739905ac2ba0754682240585411c921f16404b1a3336fa054adce1bfba711e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Counting the multibyte characters in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbsnrtowcs.c
+Hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert string to wide string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/mbspbrk.c
+Hash: 521d859626ca3fa118b8a6a7dd57ea000f9571efab9d4ccfcaa013905d6df41e
+License: GPL-3+ 
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching a string for a character among a given set of characters.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbspcasecmp.c
+Hash: 07f7fe969a7c752b56b078f855dce95806287b22873440d798b831f5629d3589
+License: GPL-3+ 
+Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-insensitive string comparison function.
+#   Copyright (C) 1998-1999, 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbsrchr.c
+Hash: aae99e9b396b908d7c7fcd21ce6bcb2e4aaef1810a36771e91c2436918d26978
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching a string for the last occurrence of a character.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbsrtowcs-state.c
+Hash: c1ee8e5f9ff539152510bee610b85b5129447259bd0740852310fbe0aa05dcfb
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert string to wide string.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/mbsrtowcs.c
+Hash: 94b7dfcea2b58b8c709f9a6ccf0ac9d22d38b00230ffe204d0053d076700ffee
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert string to wide string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/mbssep.c
+Hash: e91f2687c32b2d7fbb211e0e114d331fff93022b0c657cc6b2a6a934cb3b67b4
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Tokenizing a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbsspn.c
+Hash: 96a736a43629e5ae2f508a50e854f65078635e6552ac998e4b72d981b4de9333
+License: GPL-3+ 
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching a string for a character outside a given set of characters.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbsstr.c
+Hash: 05f8fd03123cf70b50e8a4ca02b2bef23c41c488ce1f33530c0e5b912b20898c
+License: GPL-3+ 
+Copyright: c / 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching in a string.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   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
+
+File: ./lib/mbstok_r.c
+Hash: 1f180b2d8a6c65bfff77cd72bec0837f16a2a39411db702acaeeddcd0797a7cf
+License: GPL-3+ 
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Tokenizing a string.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/mbswidth.c
+Hash: 20f724a9c2c1b2039071c36cc6fa2828284e3561211957e7800e0275df016a16
+License: GPL-3+ 
+Copyright: 2000-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine the number of screen columns needed for a string.
+#   Copyright (C) 2000-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mbswidth.h
+Hash: f66eede184bcac83a9639c243acc2e81ac0b5c2ce302a8ef776ce3896ab69682
+License: GPL-3+ 
+Copyright: 2000-2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine the number of screen columns needed for a string.
+#   Copyright (C) 2000-2004, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mbuiter.h
+Hash: 0bcda1d7c62a89aeec2562fa1ea482ba814850f1159a623c894b03181f7d25a2
+License: GPL-3+ 
+Copyright: 2001, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterating through multibyte strings: macros for multi-byte encodings.
+#   Copyright (C) 2001, 2005, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/md2.c
+Hash: 04204819baa32da88084b2206ea067ea6a78cde426759ad1eaf12598747f9715
+License: GPL 
+Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+Licence-Text: 
+#Header: 
+#/* Functions to compute MD2 message digest of files or memory blocks.
+#   according to the definition of MD2 in RFC 1319 from April 1992.
+#   Copyright (C) 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/md2.h
+Hash: 1635bb2eff1d6c4202462a1493aa8fa1122f0b8c628f9d5e1a1bd1b959fdab11
+License: GPL 
+Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/* Declarations of functions and data types used for MD2 sum
+#   library functions.
+#   Copyright (C) 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation,
+#   Inc.
+#
+#   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.
+
+File: ./lib/md4.c
+Hash: 0862a8a513fa370cc94a968cac68ab365d1c9a3648137d2af8aaf5c719a4b737
+License: GPL 
+Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+Licence-Text: 
+#Header: 
+#/* Functions to compute MD4 message digest of files or memory blocks.
+#   according to the definition of MD4 in RFC 1320 from April 1992.
+#   Copyright (C) 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/md4.h
+Hash: dcc57d0ac574c78b51a7293f7ad573d8a4c524cf2988b283d86fc5ff1b5f57bf
+License: GPL 
+Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/* Declarations of functions and data types used for MD4 sum
+#   library functions.
+#   Copyright (C) 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation,
+#   Inc.
+#
+#   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.
+
+File: ./lib/md5.c
+Hash: ffa2dd5235fc5bc1cff6f871fca1f3804da0f74bbdcfa48050479b24225ac1e6
+License: GPL 
+Copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008
+Licence-Text: 
+#Header: 
+#/* Functions to compute MD5 message digest of files or memory blocks.
+#   according to the definition of MD5 in RFC 1321 from April 1992.
+#   Copyright (C) 1995,1996,1997,1999,2000,2001,2005,2006,2008
+#      Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/md5.h
+Hash: e0f5a2253099054a9a71d12e1df625a6f7afa5bed4c53400f687e1b319bd0f95
+License: GPL 
+Copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009
+Licence-Text: 
+#Header: 
+#/* Declaration of functions and data types used for MD5 sum computing
+#   library functions.
+#   Copyright (C) 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009
+#      Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/memcasecmp.c
+Hash: 807b6ac25ddd6d8ae26a583a2ae26a3a1cfb85acd6c8c70fd81e0dcbb30b7905
+License: GPL-3+ 
+Copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-insensitive buffer comparator.
+#   Copyright (C) 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/memcasecmp.h
+Hash: 18edc330f64fe3fe7683e14bcb89316afede0ebbf8ce49bc0abcd324eaecdf41
+License: GPL-3+ 
+Copyright: 1996, 1998, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-insensitive buffer comparator.
+#
+#   Copyright (C) 1996, 1998, 2003 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/memchr.c
+Hash: 1b3448d898ff7ee9149e469a0d1dfaa91777ad13ac93aeca526c1d7534006686
+License: GPL 
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008
+#   Free Software Foundation, Inc.
+#
+#   Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
+#   with help from Dan Sahlin (dan@sics.se) and
+#   commentary by Jim Blandy (jimb@ai.mit.edu);
+#   adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu),
+#   and implemented by Roland McGrath (roland@ai.mit.edu).
+#
+#NOTE: The canonical source of this file is maintained with the GNU C Library.
+#Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#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 any
+
+File: ./lib/memchr.valgrind
+Hash: c4d33a28f691c84b723d8efc9fcdf251c64affe0008457a7b2fe246c1493dff7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Suppress a valgrind message about use of uninitialized memory in memchr().
+## POSIX states that when the character is found, memchr must not read extra
+## bytes in an overestimated length (for example, where memchr is used to
+## implement strnlen).  However, we use a safe word read to provide a speedup.
+#{
+#    memchr-value4
+#    Memcheck:Value4
+#    fun:rpl_memchr
+#}
+#{
+#    memchr-value8
+#    Memcheck:Value8
+#    fun:rpl_memchr
+#}
+
+File: ./lib/memchr2.c
+Hash: f8a8a07596253d814b66f51a219b27446056819948a185735c326a34032971de
+License: GPL 
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006,
+#   2008 Free Software Foundation, Inc.
+#
+#   Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
+#   with help from Dan Sahlin (dan@sics.se) and
+#   commentary by Jim Blandy (jimb@ai.mit.edu);
+#   adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu),
+#   and implemented in glibc by Roland McGrath (roland@ai.mit.edu).
+#   Extension to memchr2 implemented by Eric Blake (ebb9@byu.net).
+#
+#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 any
+#later version.
+
+File: ./lib/memchr2.h
+Hash: 5b2e0321ef5edf4284193b2bb4a6b3837d05ba4d909864b2faea89fa327027c0
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Scan memory for the first of two bytes.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/memchr2.valgrind
+Hash: 44d9292cd45aeb29569397844ca468602c6e200a76dcba52f4f852fd64fab480
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Suppress a valgrind message about use of uninitialized memory in memchr2().
+## Like memchr, it is safe to overestimate the length when the terminator
+## is guaranteed to be found.  In this case, we may end up reading a word
+## that is partially uninitialized, but this use is OK for a speedup.
+#{
+#    memchr2-value4
+#    Memcheck:Value4
+#    fun:memchr2
+#}
+#{
+#    memchr2-value8
+#    Memcheck:Value8
+#    fun:memchr2
+#}
+
+File: ./lib/memcmp.c
+Hash: 115e253d20ce838f3f9a7b7bdb87ca7bc9c5f1cfb6217d3659c62d22b284250f
+License: GPL 
+Copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software
+#   Foundation, Inc.
+#
+#   Contributed by Torbjorn Granlund (tege@sics.se).
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   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 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
+
+File: ./lib/memcmp2.c
+Hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare two memory areas with possibly different lengths.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/memcmp2.h
+Hash: a94977681569220a73fb152f9a83071998ee942dac7eac0dcae786aed8cf67d9
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare two memory areas with possibly different lengths.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/memcoll.c
+Hash: 45afdae44d3da5345c4e1ff5bbbe23a35f6c8f04d1f7913937376f96d3927dd6
+License: GPL-3+ 
+Copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale-specific memory comparison.
+#
+#   Copyright (C) 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/memcoll.h
+Hash: ceebe2fe05b83b4b212dc4dc72283ab2d56ca2e8778bd92fd1867d9df2c2b1ba
+License: GPL-3+ 
+Copyright: 1999, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale-specific memory comparison.
+#
+#   Copyright (C) 1999, 2003 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/memcpy.c
+Hash: e77f76fb0280fc06e306294c9d397a3319c397fa293104c6f3c231c149ae3597
+License: GPL-3+ 
+Copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/memmem.c
+Hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
+License: GPL 
+Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
+#   Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/memmove.c
+Hash: bbdc865dae97e17c0683fdb3a8eada83f89acfb60003bfa558dc1a7bb63fd59c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* memmove.c -- copy memory.
+#   Copy LENGTH bytes from SOURCE to DEST.  Does not null-terminate.
+#   In the public domain.
+#   By David MacKenzie <djm@gnu.ai.mit.edu>.  */
+#
+##include <config.h>
+#
+##include <stddef.h>
+#
+#void *
+#memmove (void *dest0, void const *source0, size_t length)
+#{
+#  char *dest = dest0;
+#  char const *source = source0;
+#  if (source < dest)
+
+File: ./lib/mempcpy.c
+Hash: 162deb5da2eb01183cd1ea3c6c29887ff8f634735322780be17607aa892ec4a5
+License: GPL 
+Copyright: 2003, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy memory area and return pointer after last written byte.
+#   Copyright (C) 2003, 2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/memrchr.c
+Hash: 7df103a286eed4dd6f31836264675378b140d030d4dcbb3e810f24d122227d43
+License: GPL-3+ 
+Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* memrchr -- find the last occurrence of a byte in a memory block
+#
+#   Copyright (C) 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005,
+#   2006, 2007, 2008 Free Software Foundation, Inc.
+#
+#   Based on strlen implementation by Torbjorn Granlund (tege@sics.se),
+#   with help from Dan Sahlin (dan@sics.se) and
+#   commentary by Jim Blandy (jimb@ai.mit.edu);
+#   adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu),
+#   and implemented by Roland McGrath (roland@ai.mit.edu).
+#
+#   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.
+
+File: ./lib/memset.c
+Hash: 40655652ef5140299df50fcd8dbb02a23d78c3961e6078fcf866232c481752b7
+License: GPL 
+Copyright: 1991, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* memset.c -- set an area of memory to a given value
+#   Copyright (C) 1991, 2003 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/memxfrm.c
+Hash: 925c125df6e81f5c5be0eee6a767546cf977fc4e55b5712c490cd84f80061da8
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent memory area transformation for comparison.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/memxfrm.h
+Hash: 8fbe3c5f0271469b59387f418cf5a7a39d02a67082c24952d53ad9e12e1ff3f2
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent memory area transformation for comparison.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/memxor.c
+Hash: 95bea5a33c7fc7fa109f69789827d4274d5f8f8b0d8ad5e195fcfa3df0838ac5
+License: GPL 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* memxor.c -- perform binary exclusive OR operation of two memory blocks.
+#   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/memxor.h
+Hash: 8b8f42a17c5880f430a23152165a2a48a1d9ce6f523fcc08cf0fa013d207820c
+License: GPL 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* memxor.h -- perform binary exclusive OR operation on memory blocks.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/minmax.h
+Hash: fc14ab477958a0d028d651e94f71938ac898148d7a4fb3641065e97ffc0033ac
+License: GPL 
+Copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* MIN, MAX macros.
+#   Copyright (C) 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/mkancesdirs.c
+Hash: fbf7223604ae868a286a8b7782520dcfecf8871450373ce6eddd4231d6987d86
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Make a file's ancestor directories.
+#
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/mkancesdirs.h
+Hash: a956611cade93a9ab7ab7b3a953fd1555ed37d0bf625e985bf66067e1b158431
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <stddef.h>
+#struct savewd;
+#ptrdiff_t mkancesdirs (char *, struct savewd *,
+#                     int (*) (char const *, char const *, void *), void *);
+
+File: ./lib/mkdir-p.c
+Hash: cca87ad7e743252b92404f484d9be69bc26ebc17de6d3091edfe804910f54529
+License: GPL-3+ 
+Copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* mkdir-p.c -- Ensure that a directory and its parents exist.
+#
+#   Copyright (C) 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005,
+#   2006, 2007 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/mkdir-p.h
+Hash: bf444d5e7cf40b933757ee95b2fb1d8348f6c03d75afbb4b093609ff4cc6d27a
+License: GPL-3+ 
+Copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006
+Licence-Text: 
+#Header: 
+#/* mkdir-p.h -- Ensure that a directory and its parents exist.
+#
+#   Copyright (C) 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/mkdir.c
+Hash: e036cb236f6cf2b150e76519fa45b1e2d5a887bf7d45803e686f5a302b0f4e66
+License: GPL-3+ 
+Copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* On some systems, mkdir ("foo/", 0700) fails because of the trailing
+#   slash.  On those systems, this wrapper removes the trailing slash.
+#
+#   Copyright (C) 2001, 2003, 2006, 2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/mkdirat.c
+Hash: e9de0eaf6cda53b633eb6f3b637d1a89e21ee06ea81e2578412a0a1f4f33a0ae
+License: GPL-3+ 
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* fd-relative mkdir
+#   Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/mkdtemp.c
+Hash: 90c1ed532e82f71aea40266d94df8e15d52ef9622ee699ae2a3358ba9e0fa5db
+License: GPL-3+ 
+Copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/mkostemp.c
+Hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
+License: GPL-3+ 
+Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#   This file is derived from the one in the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/mkstemp-safer.c
+Hash: 5dfad6cc702f2dcd88df092b3ebee11ef4795e45592e03d7f1c7841a9a5e48e2
+License: GPL-3+ 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke mkstemp, but avoid some glitches.
+#
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/mkstemp.c
+Hash: 06edc2403511191aa56b8a2676a40bbd9636e8a6fda8dd86008206c34571194b
+License: GPL-3+ 
+Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#   This file is derived from the one in the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/mktime.c
+Hash: 1a80cec494e14569464c9c913b8d639fde5ca46a2ad8b19c097398be567c3987
+License: GPL 
+Copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert a `struct tm' to a time_t value.
+#   Copyright (C) 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Paul Eggert <eggert@twinsun.com>.
+#
+#   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.
+
+File: ./lib/modechange.c
+Hash: 04c294fd66aee3490b759ca54e9bbc039f30063774f91b695f200425413f52cc
+License: GPL-3+ 
+Copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* modechange.c -- file mode manipulation
+#
+#   Copyright (C) 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005,
+#   2006 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/modechange.h
+Hash: 9e926e58af501dd9da1d504389fed35d905b66bccc24a4ab3a30e0e2eb6d8d5b
+License: GPL-3+ 
+Copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* modechange.h -- definitions for file mode manipulation
+#
+#   Copyright (C) 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/mountlist.c
+Hash: 8131b2bba35b93115b79375a032a364f5821a6773dbee18aa26a24e896829459
+License: GPL-3+ 
+Copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* mountlist.c -- return a list of mounted file systems
+#
+#   Copyright (C) 1991, 1992, 1997-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/mountlist.h
+Hash: 19c16002f5ad4f33a7ebd8c726e357e18d9a7f2f8ae6b1a42459ecb2eba2e0c8
+License: GPL-3+ 
+Copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* mountlist.h -- declarations for list of mounted file systems
+#
+#   Copyright (C) 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/mpsort.c
+Hash: 754a18c37e339daeaa3129f85d1e11a2e8eb04ce0b9b382d25a02b40dee33112
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Sort a vector of pointers to data.
+#
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/mpsort.h
+Hash: b88563a5eb4834d0691531bdfead0f4a1c6441fb83fca6b4d49b862ca6d4e651
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <stddef.h>
+#void mpsort (void const **, size_t, int (*) (void const *, void const *));
+
+File: ./lib/nanosleep.c
+Hash: 2fb5279d8f37cfd3ec3a500d9127e805131b37d39fa15187a82bfefb3b7fbe77
+License: GPL-3+ 
+Copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free
+Licence-Text: 
+#Header: 
+#/* Provide a replacement for the POSIX nanosleep function.
+#
+#   Copyright (C) 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/netdb.in.h
+Hash: 313d83faf1e58b363f56df9abd41c694cc877655a1f383b9c96c52f2b5492090
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide a netdb.h header file for systems lacking it (read: MinGW).
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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
+
+File: ./lib/netinet_in.in.h
+Hash: ba843c9c4800f24e66a3b94aefe21730afdc0233254175a20b3f503b12b022a1
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substitute for <netinet/in.h>.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/nproc.c
+Hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Detect the number of processors.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/nproc.h
+Hash: ceec9dfba071d23a5d3ee61940ec7b65b8cc27fcf4667cf089950ca02b45fe16
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Detect the number of processors.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/obstack.c
+Hash: c51f2b4012075fb4a6f199dc311d6a80a6da3a59080e65c78ab906d198fa52c8
+License: GPL-3+ 
+Copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997
+Licence-Text: 
+#Header: 
+#/* obstack.c - subroutines used implicitly by object stack macros
+#
+#   Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997,
+#   1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/obstack.h
+Hash: bec03a89fef72b0110d29ed4efaa664fc79fd03132e71c57e2088432a3af65ba
+License: GPL-3+ 
+Copyright: 1988-1994,1996-1999,2003,2004,2005,2006
+Licence-Text: 
+#Header: 
+#/* obstack.h - object stack macros
+#   Copyright (C) 1988-1994,1996-1999,2003,2004,2005,2006
+#      Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/obstack_printf.c
+Hash: ec3b6ee4cf323b218382e7b0b4c647e67f88d44b9bde87ad0faf1004fa480c69
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to obstacks.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/offtostr.c
+Hash: 97beafafd8e31c4c52db5355eb0acef1fa5771aa4b21e8d75e9355494786978b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define inttostr offtostr
+##define inttype off_t
+##include "inttostr.c"
+
+File: ./lib/open-safer.c
+Hash: f5c5c83637f90b3f8e7310337390ff817b1c3eb020f5f944b7d2cc04f809f581
+License: GPL-3+ 
+Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke open, but avoid some glitches.
+#
+#   Copyright (C) 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/open.c
+Hash: 1700deda821715bdbac72d0da2e09c3ce1dc34279381170e21eab9187e142c63
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Open a descriptor to a file.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/openat-die.c
+Hash: c32e1b799da53de52b5bee09ffcbbe4f2b4b4db28ef45bbcdf0af0346fee99c8
+License: GPL-3+ 
+Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Report a save- or restore-cwd failure in our openat replacement and then exit.
+#
+#   Copyright (C) 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/openat-priv.h
+Hash: de3bc79756c38bf4c0d3930bd43e5559159edaff0ee82652ee068d1f3ce3507a
+License: GPL-3+ 
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Internals for openat-like functions.
+#
+#   Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/openat-proc.c
+Hash: 5adc0d5b70d50bb5b44d3de2819622c2e2f6ebbb06b868b4013b245d24e772e3
+License: GPL-3+ 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Create /proc/self/fd-related names for subfiles of open directories.
+#
+#   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/openat-safer.c
+Hash: 56934bd9aed0b0823c2ee17a8b46147af53d10daea72b9ca7c1a132ceead70d2
+License: GPL-3+ 
+Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke openat, but avoid some glitches.
+#
+#   Copyright (C) 2005, 2006, 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/openat.c
+Hash: 2cc87825fb5511fc2a3e5e700dceb67002be17775fa619eb19d96a15d8b5be2a
+License: GPL-3+ 
+Copyright: 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* provide a replacement openat function
+#   Copyright (C) 2004-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/openat.h
+Hash: aef33cd705f809a57238d48fd05fb4491c97687b372cecf7c69341cdcab2f654
+License: GPL-3+ 
+Copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* provide a replacement openat function
+#   Copyright (C) 2004-2006, 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/opendir-safer.c
+Hash: 2429dbf23e1213eb581af6196c671f69f35fed4b342c7fd3fff0d504356d93a5
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke opendir, but avoid some glitches.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/pagealign_alloc.c
+Hash: 556403e976c41313f9325e500d34e5165c9f3173eeb22c7d1e80481b40a08425
+License: GPL-3+ 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Memory allocation aligned to system page boundaries.
+#
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/pagealign_alloc.h
+Hash: eb99842218a16ee4d0c565f1ad99bb5143f4ee3a77e8dcce80a0bd95cf085cd5
+License: GPL-3+ 
+Copyright: 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Memory allocation aligned to system page boundaries.
+#
+#   Copyright (C) 2005, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/parse-duration.c
+Hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Parse a time duration and return a seconds count
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruce Korb <bkorb@gnu.org>, 2008.
+#
+#   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
+
+File: ./lib/parse-duration.h
+Hash: 47dd7c93e1b4dd5ca06f960f8f9a143aa331c5b6b40a8c14a313ccedcb61055f
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Parse a time duration and return a seconds count
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruce Korb <bkorb@gnu.org>, 2008.
+#
+#   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
+
+File: ./lib/pathmax.h
+Hash: c643310e04770fbcc160973a5552561f7c122f2a5e6a61adba5b1f6f6073596d
+License: GPL 
+Copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Define PATH_MAX somehow.  Requires sys/types.h.
+#   Copyright (C) 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/perror.c
+Hash: 9a22ceeb839da7e1b91e96f5d0812174c06aa7deb3f1312c1b9d137bbe191602
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Print a message describing error code.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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
+
+File: ./lib/physmem.c
+Hash: b06bd14f93155ac98d9a92df716ba22a1fa39c63b510a32beb9c06627c183012
+License: GPL-3+ 
+Copyright: 2000, 2001, 2003, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* Calculate the size of physical memory.
+#
+#   Copyright (C) 2000, 2001, 2003, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/physmem.h
+Hash: 3a6cbe3d952eab59a5cd17b28b2b869ebdc9b8f19c1eded770524ea7c863270a
+License: GPL-3+ 
+Copyright: 2000, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Calculate the size of physical memory.
+#
+#   Copyright (C) 2000, 2003 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/pipe-filter-aux.h
+Hash: dd7eec8d6ec8c14b97efee5589cb013a0d4bf682e94019d235b35fead5b42d07
+License: GPL-3+ 
+Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Auxiliary code for filtering of data through a subprocess.
+#   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2009.
+#
+#   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
+
+File: ./lib/pipe-filter-gi.c
+Hash: 7b798dfae0edb799145d56afbab5ad04a9af74dfbe6bb5614fcf4f5357e51aea
+License: GPL-3+ 
+Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Filtering of data through a subprocess.
+#   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009,
+#   and Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/pipe-filter-ii.c
+Hash: 9049b5c7b4ed08a8c9dd5a090c5f0632c4f769691c9d0bc3abafd2ed205c449a
+License: GPL-3+ 
+Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Filtering of data through a subprocess.
+#   Copyright (C) 2001-2003, 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/pipe-filter.h
+Hash: cb4091cc5532a11d2184725fbafb495b5dc0e0e99d888529d15ec9f6ac8db90b
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Filtering of data through a subprocess.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2009,
+#   and Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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.
+
+File: ./lib/pipe-safer.c
+Hash: 8b0ecacdeacd13de295a1575a525fb82a56a4a6315081874b0c32cf2cfe958e0
+License: GPL-3+ 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke pipe, but avoid some glitches.
+#   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/pipe.c
+Hash: 4bad855b30e4735483d65e1b608087804110d24a67ba16cf7ed987c5f5bcd5c2
+License: GPL-3+ 
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Creation of subprocesses, communicating via pipes.
+#   Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/pipe.h
+Hash: 8e9240d53e76426a4087f6a35ebd4b865be3105da821c9139043bf9232c4c171
+License: GPL-3+ 
+Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Creation of subprocesses, communicating via pipes.
+#   Copyright (C) 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/pipe2.c
+Hash: 61562647025e035a2e08fcbba935557f0ce2b3a273ca93855a3184d523bdc97f
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Create a pipe, with specific opening flags.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/poll.c
+Hash: 033d3d5afa8977c21203f543b7bac8bc53f51acf846088848087638d72ff8bf0
+License: GPL 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emulation for poll(2)
+#   Contributed by Paolo Bonzini.
+#
+#   Copyright 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/poll.in.h
+Hash: 75e680c286d79502b2c414e7b8929c31247c980612c852936f7ca1d1593362b8
+License: GPL 
+Copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Header for poll(2) emulation
+#   Contributed by Paolo Bonzini.
+#
+#   Copyright 2001, 2002, 2003, 2007 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/popen-safer.c
+Hash: da9c884b0efa4edd9844b332c14b060d0cab98c6049f38731a3d590b89a00d06
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke popen, but avoid some glitches.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/popen.c
+Hash: d7c25fe6b43efdd98d5042c3424eba51cd53ea80bb948f9a92a099fb8c02142c
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Open a stream to a sub-process.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/posixtm.c
+Hash: 4ba1c7c3e6714bb668acbece4b919082141b0a2736fb94262f2eb8e2598235d5
+License: GPL-3+ 
+Copyright: ((unsigned int) - '0' <= 9) / 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004
+Licence-Text: 
+#Header: 
+#/* Parse dates for touch and date.
+#
+#   Copyright (C) 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004,
+#   2005, 2006, 2007 Free Software Foundation Inc.
+#
+#   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.
+
+File: ./lib/posixtm.h
+Hash: 942d45b6994556544668951294f7b94af106ac8b0b2ce064003998679266d698
+License: GPL-3+ 
+Copyright: 1998, 2003, 2005, 2007 Free Software Foundation Inc
+Licence-Text: 
+#Header: 
+#/* Parse dates for touch and date.
+#
+#   Copyright (C) 1998, 2003, 2005, 2007 Free Software Foundation Inc.
+#
+#   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
+
+File: ./lib/posixver.c
+Hash: f931363ed3fde9bde1676789900417a39c317a4fd6dd869b69d1dbe7ff3a035a
+License: GPL-3+ 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* Which POSIX version to conform to, for utilities.
+#
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/posixver.h
+Hash: 36d1d0fffe2504bfc87051722c32887652d6719a80a23e93cc01daee61006134
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#int posix2_version (void);
+
+File: ./lib/printf-args.c
+Hash: 12bb86c9307ecf947c3e487e6bf53531b56f83f43d5e9babf59a2a57cde92c7c
+License: GPL 
+Copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposed printf argument list.
+#   Copyright (C) 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/printf-args.h
+Hash: cf140b5cb22fa0718dbc5a41c94ab6327a7a447612d93e4b6c51016418701bc8
+License: GPL 
+Copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposed printf argument list.
+#   Copyright (C) 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/printf-frexp.c
+Hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Split a double into fraction and mantissa, for hexadecimal printf.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/printf-frexp.h
+Hash: 894f4bcedd350047bec9271875deaa8852b6cd1332b9c52d42e405eb1071356f
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Split a double into fraction and mantissa, for hexadecimal printf.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/printf-frexpl.c
+Hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Split a 'long double' into fraction and mantissa, for hexadecimal printf.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/printf-frexpl.h
+Hash: 6652dc29a798e98a2836532a11ace35430f19549469330e7ce0a8ae40922f3c8
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Split a 'long double' into fraction and mantissa, for hexadecimal printf.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/printf-parse.c
+Hash: e87d67950b9b8fd0411ed7bd3201b3ae9eb97549cf5d6255c2f6065e46d1aff1
+License: GPL 
+Copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/printf-parse.h
+Hash: 1cbba74b564ba38b983e35311a8dcb098229112ee464a2940dae6abba3a12247
+License: GPL 
+Copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Parse printf format string.
+#   Copyright (C) 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/printf.c
+Hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to a stream.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/priv-set.c
+Hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Query, remove, or restore a Solaris privilege.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/priv-set.h
+Hash: 15a45af6239123ba300f4991a50e351f24f3feb276d343037089aec85c9ac1a3
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Query, remove, or restore a Solaris privilege.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/progname.c
+Hash: 92661819f28e9fd0cb1b6c24c52d6f96e2746bf9eb417cf6cd6fb92a009d0fbb
+License: GPL-3+ 
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Program name management.
+#   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/progname.h
+Hash: fb156ffb4593024e0b50a3bfa0f8e0c9d280dfe5cc173a7c2b3796e892b3243b
+License: GPL-3+ 
+Copyright: 2001-2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Program name management.
+#   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/progreloc.c
+Hash: babc96a49ada0b13bd47d6931240b971ddf7a571a2c9a989c351f1b54caec1df
+License: GPL-3+ 
+Copyright: 2003-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide relocatable programs.
+#   Copyright (C) 2003-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/propername.c
+Hash: 453584a838b6191dd3f10ed6858fbc73356af59689880952a06d1984c013e443
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Localization of proper names.
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/propername.h
+Hash: b709e58dcf9e44473ab7139d39df8d4143a783b73be0b4b8e5f589e2f37ff33f
+License: GPL-3+ 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Localization of proper names.
+#   Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/pthread.in.h
+Hash: ef4cc2c979afda964299a12c9b1d50231399227aa30af97c27d6fad997de2255
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Implement a trivial subset of the pthreads library.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/putenv.c
+Hash: 17b29fb75137b2e5e475f2813253c186798f360d5711c1ac87ef1796680902b1
+License: GPL 
+Copyright: 1991, 1994, 1997-1998, 2000, 2003-2008
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1994, 1997-1998, 2000, 2003-2008
+#   Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C
+#   Library.  Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   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 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.
+
+File: ./lib/quote.c
+Hash: c4a8b48c291af2ee7a2a7f70e0a643b88950e3ade7d29053180a8e109d792efa
+License: GPL-3+ 
+Copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* quote.c - quote arguments for output
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/quote.h
+Hash: 5d10e05c536ff1a439a2f8460f1e6ac91d61ba93ebf6280fe6ab090f9321d27b
+License: GPL-3+ 
+Copyright: 1998, 1999, 2000, 2001, 2003 Free Software
+Licence-Text: 
+#Header: 
+#/* quote.h - prototypes for quote.c
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/quotearg.c
+Hash: aa0d608c0d77808b3ad8e91a0a3b802b9a13118b657be7df6bd43b7aec178ef0
+License: GPL-3+ 
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007
+Licence-Text: 
+#Header: 
+#/* quotearg.c - quote arguments for output
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007,
+#   2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/quotearg.h
+Hash: 2e6f8072d5c251a83bae1fd9e1d85ed223633968bae640a6ab6e759963b50d0c
+License: GPL-3+ 
+Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
+Licence-Text: 
+#Header: 
+#/* quotearg.h - quote arguments for output
+#
+#   Copyright (C) 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/raise.c
+Hash: 50b03c3b985400bc1e7f8910337b51a9ce593ebd8b792aa1f1a1788960c9c26a
+License: GPL-3+ 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide a non-threads replacement for the POSIX raise function.
+#
+#   Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/random_r.c
+Hash: 56ff6e2aaf2d55a023c78529f964988504c867e654d0df6993406e27656be439
+License: BSD (3 clause) LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+#   Copyright (C) 1995, 2005, 2008 Free Software Foundation
+#
+#   The GNU C 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.
+#
+#   The GNU C 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 the GNU C Library; if not, write to the Free
+
+File: ./lib/rawmemchr.c
+Hash: 45a83b9183090995a3bb18e9b251a511464e420d7fa99da1e03ce2d9bd3d4e6b
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching in a string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/rawmemchr.valgrind
+Hash: f728bb18311f04d34ed0495880117ccaa59b4c6bc8ebaac82459903cfc3247c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Suppress a valgrind message about use of uninitialized memory in rawmemchr().
+## This use is OK because it provides only a speedup.
+#{
+#    rawmemchr-value4
+#    Memcheck:Value4
+#    fun:rawmemchr
+#}
+#{
+#    rawmemchr-value8
+#    Memcheck:Value8
+#    fun:rawmemchr
+#}
+
+File: ./lib/read-file.c
+Hash: 51c7d95dd1381f2a59ceb5c375cfb7998aec903e9b91e27baa7da0afa5e8468c
+License: GPL 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* read-file.c -- read file contents into a string
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Simon Josefsson and Bruno Haible.
+#
+#   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
+
+File: ./lib/read-file.h
+Hash: ca324b683cf28737c1848bb23eb0b92cdc0044ee67094c57e91c08bdbf81f53e
+License: GPL 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* read-file.h -- read file contents into a string
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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
+
+File: ./lib/readline.c
+Hash: 1c45ecec189bf0ab208143e3b0965baabebfcccb8f2389c02fe5ba6b4b7648a0
+License: GPL-3+ 
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* readline.c --- Simple implementation of readline.
+#   Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#   Written by Simon Josefsson
+#
+#   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
+
+File: ./lib/readline.h
+Hash: 4cafc96af802460b1d7f54218bf92ca62cf6b7cd0a2abffc02d7ea516d1d1946
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* readline.h --- Simple implementation of readline.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#   Written by Simon Josefsson
+#
+#   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
+
+File: ./lib/readlink.c
+Hash: 4a11f960e0153527f36536d9b396257683b425331d992420cffc853dfec35ddc
+License: GPL-3+ 
+Copyright: 2003-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Stub for readlink().
+#   Copyright (C) 2003-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/readtokens.c
+Hash: ffc9a757ad67bba5dcce13dfac14da216892391e5879cee666b99d8154c49b0e
+License: GPL-3+ 
+Copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* readtokens.c  -- Functions for reading tokens from an input stream.
+#
+#   Copyright (C) 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/readtokens.h
+Hash: 452dfbc07c636749aa830a30599c7c5bc109f4c51b72d8891b968640b102b9d5
+License: GPL-3+ 
+Copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* readtokens.h -- Functions for reading tokens from an input stream.
+#
+#   Copyright (C) 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/readtokens0.c
+Hash: 8cb5713080fed145a957a71a48ce5c11d1d74bd0964b2f90d2d52f9e643a1db4
+License: GPL-3+ 
+Copyright: 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* readtokens0.c -- Read NUL-separated tokens from an input stream.
+#
+#   Copyright (C) 2004, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/readtokens0.h
+Hash: fa2844a8aefa737f7d2630364652206697cebc7c5d15193fb3273257c1afa96b
+License: GPL-3+ 
+Copyright: 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* readtokens0.h -- read NUL-separated tokens from an input stream.
+#
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/readutmp.c
+Hash: 6018c3b26e7b6cc70156a39368851213becaa215df3e58ef5966e9237d173463
+License: GPL-3+ 
+Copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* GNU's read utmp module.
+#
+#   Copyright (C) 1992-2001, 2003, 2004, 2005, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/readutmp.h
+Hash: e4edf9b2cd3b4a9662bd1a50b7a068f8dadee724d6b47e05b5c629cc890cb0f4
+License: GPL-3+ 
+Copyright: 1992-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Declarations for GNU's read utmp module.
+#
+#   Copyright (C) 1992-2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/realloc.c
+Hash: b65d6b9cadf8e53a3ff901459826791ef77acce1f247a65f3759c647442f3de9
+License: GPL-3+ 
+Copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* realloc() function that is glibc compatible.
+#
+#   Copyright (C) 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/recv.c
+Hash: 86a2667aca771f6d5c7502ac7cbddf51018f3dea268d5a1461b98f7b9af5f095
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* recv.c --- wrappers for Windows recv function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/recvfrom.c
+Hash: 76c2990bcd168811c2511e685b811321ebc18fb7257375d1cb2f7d025d90dd34
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* recvfrom.c --- wrappers for Windows recvfrom function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/ref-add.sin
+Hash: 384e11c05bb265e3613f6e8b6c445f77d0cecc679e59cddac3c606015c6f5fc3
+License: GPL 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Add this package to a list of references stored in a text file.
+##
+##   Copyright (C) 2000 Free Software Foundation, Inc.
+##
+##   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
+
+File: ./lib/ref-del.sin
+Hash: 55d01b01839af2472b2f966cda363787756440f9ac8024938ea8dfa8b2323862
+License: GPL 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Remove this package from a list of references stored in a text file.
+##
+##   Copyright (C) 2000 Free Software Foundation, Inc.
+##
+##   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
+
+File: ./lib/regcomp.c
+Hash: c2483b14cafcc8625bd4c467a5fd09efa0d50666fbb8a5fd38e2123b1ecb0945
+License: GPL 
+Copyright: 2002,2003,2004,2005,2006,2007,2008,2009
+Licence-Text: 
+#Header: 
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   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.
+
+File: ./lib/regex.c
+Hash: b01492f4d85ec55b5acc0f48cbe61e292c5b461a01bda985e49a53989594e947
+License: GPL 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   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.
+
+File: ./lib/regex.h
+Hash: c53492d2516ee161d8077ce24002a78d186df06b5c5941fa8401ef7998ac8375
+License: GPL 
+Copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006
+Licence-Text: 
+#Header: 
+#/* Definitions for data structures and routines for the regular
+#   expression library.
+#   Copyright (C) 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/regex_internal.c
+Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+License: GPL 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+Licence-Text: 
+#Header: 
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   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.
+
+File: ./lib/regex_internal.h
+Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+License: GPL 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+Licence-Text: 
+#Header: 
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   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.
+
+File: ./lib/regexec.c
+Hash: 0b6408563600e005b9f5af1621999b97907a1ad5d35e6372dc5542279f7fb6cd
+License: GPL 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+Licence-Text: 
+#Header: 
+#/* Extended regular expression matching and search library.
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+#   Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Isamu Hasegawa <isamu@yamato.ibm.com>.
+#
+#   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.
+
+File: ./lib/relocatable.c
+Hash: 0d1858bafd12c7ab346742483ec5d97e6efbdebfd46524a7a8f231696f2a22ac
+License: LGPL 
+Copyright: 2003-2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide relocatable packages.
+#   Copyright (C) 2003-2006, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   This program 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, 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
+#   Library General Public License for more details.
+#
+#   You should have received a copy of the GNU Library General Public
+
+File: ./lib/relocatable.h
+Hash: bcbac1b3bdd53abac5276b593b5ab4e22160d29de32e77245f5d9a04269770cf
+License: LGPL 
+Copyright: 2003, 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide relocatable packages.
+#   Copyright (C) 2003, 2005, 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   This program 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, 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
+#   Library General Public License for more details.
+#
+#   You should have received a copy of the GNU Library General Public
+
+File: ./lib/relocwrapper.c
+Hash: c167810a619a4782afbe8842f06bdd194461d73cc0a1f4c1dfc0e5c49815a107
+License: GPL-3+ 
+Copyright: 2003, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Relocating wrapper program.
+#   Copyright (C) 2003, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/rename-dest-slash.c
+Hash: ef1b249ccdf7cb59741f8b296b4aad87ef269ecddf2d084a4d560b83e6a804e2
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A rename wrapper to make tools like mv -- that would normally rely
+#   on the underlying rename syscall -- work more consistently.
+#   On at least NetBSD 1.6, `rename ("dir", "B/")' fails when B doesn't
+#   exist, whereas it succeeds on Linux-2.6.x and Solaris 10.  This wrapper
+#   provides an interface for systems like the former so that the tools
+#   (namely mv) relying on the rename syscall have more consistent
+#   semantics.
+#
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/rename.c
+Hash: 1f9e11ca836ae5b2fb8b9e66aed55f3d358c7e104a480df3fd71801eb0a0bb64
+License: GPL-3+ 
+Copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* Work around rename bugs in some systems.  On SunOS 4.1.1_U1
+#   and mips-dec-ultrix4.4, rename fails when the source file has
+#   a trailing slash.  On mingw, rename fails when the destination
+#   exists.
+#
+#   Copyright (C) 2001, 2002, 2003, 2005, 2006, 2009 Free Software
+#   Foundation, Inc.
+#
+#   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
+
+File: ./lib/rijndael-alg-fst.c
+Hash: 49cc6c6e9d8de361675d0546671526e3109140364ce29855fbb8de575d6fee29
+License: BSD GPL 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* rijndael-alg-fst.c --- Rijndael cipher implementation.
+# * Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+# *
+# * This file 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 file 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 file; if not, write to the Free Software
+
+File: ./lib/rijndael-alg-fst.h
+Hash: 162ce649f0d069335d8228a612fdf65ceae6f3475f5dac1558ec29010f225634
+License: BSD GPL 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* rijndael-alg-fst.h --- Rijndael cipher implementation.
+# * Copyright (C) 2005 Free Software Foundation, Inc.
+# *
+# * This file 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 file 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 file; if not, write to the Free Software
+
+File: ./lib/rijndael-api-fst.c
+Hash: b99f158275dd4fe795b389f5caccddb053dff98d2b957da0f54453adbfd5a538
+License: BSD GPL 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* rijndael-api-fst.c --- Rijndael cipher implementation.
+# * Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+# *
+# * This file 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 file 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 file; if not, write to the Free Software
+
+File: ./lib/rijndael-api-fst.h
+Hash: 5e47a11e8fa358f2f9d5b74032b2f486490674675a23560778ff639f0ac38985
+License: BSD GPL 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* rijndael-api-fst.h --- Rijndael cipher implementation.
+# * Copyright (C) 2005 Free Software Foundation, Inc.
+# *
+# * This file 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 file 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 file; if not, write to the Free Software
+
+File: ./lib/rmdir.c
+Hash: 018a558c35eb9dac411a0a1df8bc31f403fdd1d5de43451c3a4dfc748b0a4ed6
+License: GPL-3+ 
+Copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* BSD compatible remove directory function for System V
+#
+#   Copyright (C) 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/round.c
+Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+License: GPL 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round toward nearest, breaking ties away from zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/roundf.c
+Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+License: GPL 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round toward nearest, breaking ties away from zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/roundl.c
+Hash: 29c7537bfa12a1bf0dce9cb9a55affc57f544d6f66a1562ce1a2de81043999f2
+License: GPL 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round toward nearest, breaking ties away from zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/rpmatch.c
+Hash: 55373da72f4e3da7649f19e32ad56f0c83c97a9d3259a237b8997c00ddcf5b9a
+License: GPL-3+ 
+Copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software
+Licence-Text: 
+#Header: 
+#/* Determine whether string value is affirmation or negative response
+#   according to current locale's data.
+#
+#   Copyright (C) 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/safe-alloc.c
+Hash: 9844c4950cc5bf374ef430b7dc9b69be026b2120e88864e26aea2bbf2855ae62
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/*
+# * safe-alloc.c: safer memory allocation
+# *
+# * Copyright (C) 2009 Free Software Foundation, Inc.
+# *
+# * 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.
+# *
+
+File: ./lib/safe-alloc.h
+Hash: 5211b4e3531c33d28506f04532eeffb65e8df0d999c5b9a00e3f36d3fe7bf46c
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/*
+# * safe-alloc.h: safer memory allocation
+# *
+# * Copyright (C) 2009 Free Software Foundation, Inc.
+# *
+# * 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.
+# *
+
+File: ./lib/safe-read.c
+Hash: d12efe172ef14861fdb86cf76cb61277327a60cabf2a7afdafc1ade15afb9187
+License: GPL-3+ 
+Copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* An interface to read and write that retries after interrupts.
+#
+#   Copyright (C) 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/safe-read.h
+Hash: 2667a28d26546c5be4bcaa1fca81b4e13cd518f9717d314db29d047fdd7494d6
+License: GPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An interface to read() that retries after interrupts.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/safe-write.c
+Hash: 6aa76f15c5e0ee9a8e0b1be63deb69b31fe263a9d1c5c10ffb2e8fe6dcd7c0f1
+License: GPL-3+ 
+Copyright: 2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An interface to write that retries after interrupts.
+#   Copyright (C) 2002 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/safe-write.h
+Hash: 8179ca35d82597a466d03026c42e05761523d0036556a873fe42692f500476ae
+License: GPL-3+ 
+Copyright: 2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* An interface to write() that retries after interrupts.
+#   Copyright (C) 2002 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/same-inode.h
+Hash: 81b80979de8a7e53f45381e99597bc7390cfaa00e499dac502c31c58415b42a8
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine whether two stat buffers refer to the same file.
+#
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/same.c
+Hash: ce1a1ec04e3aec75a5006861db979396761bc69c62096f1996e7ba2f5f3bbba4
+License: GPL-3+ 
+Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* Determine whether two file names refer to the same file.
+#
+#   Copyright (C) 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/same.h
+Hash: 01df5ca3af0102dba2561b287d19d5651e891876ac5c54f1dde91b7bd23bb64c
+License: GPL-3+ 
+Copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software
+Licence-Text: 
+#Header: 
+#/* Determine whether two file names refer to the same file.
+#
+#   Copyright (C) 1997, 1998, 1999, 2000, 2003, 2004 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/save-cwd.c
+Hash: 422df5e09ad67e75a7c147e25f3da9a175fa80d7259241a3da6155c5ce96f539
+License: GPL-3+ 
+Copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* save-cwd.c -- Save and restore current working directory.
+#
+#   Copyright (C) 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/save-cwd.h
+Hash: 4b0e13da5aef3208b1bce2ab1b10c453cbf1e370c969b41bac7be51e2b76e809
+License: GPL-3+ 
+Copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Save and restore current working directory.
+#
+#   Copyright (C) 1995, 1997, 1998, 2003 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/savedir.c
+Hash: 928cfb9bf8e834b1b6ef7b1825e58d6b44fd5770a7cea787dd66589c84e8c274
+License: GPL-3+ 
+Copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* savedir.c -- save the list of files in a directory in a string
+#
+#   Copyright (C) 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+#   2006, 2009 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/savedir.h
+Hash: cfa56cb818e618c3fe57c975e9f0c5ba8723bc62e0de5473481cd5587cbe8350
+License: GPL-3+ 
+Copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Save the list of files in a directory in a string.
+#
+#   Copyright (C) 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/savewd.c
+Hash: 587bc08918885aa18f980c1c6950d2dcd55e2ffa0c869d562185891b6960dc6f
+License: GPL-3+ 
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Save and restore the working directory, possibly using a child process.
+#
+#   Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/savewd.h
+Hash: 6d491cbfc2163751c419f2376a46d56cb899e625395ca51efb08dfeb6ad2b7ea
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Save and restore the working directory, possibly using a subprocess.
+#
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/scandir.c
+Hash: 2bea6e6d81d5f7fd79619df895eaf13e5823217eeabbf1ef38c343dc53d17b06
+License: GPL 
+Copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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,
+
+File: ./lib/sched.in.h
+Hash: 5c835c4e5fd04776b804eab97562bd18f61757bfecab83a838e62f90997512b6
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Replacement <sched.h> for platforms that lack it.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/se-context.in.h
+Hash: e71efe13fc9c187c71a5f39e76a5a4e4c03a3194a14acf7b4af3fb81c3d879a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##ifndef SELINUX_CONTEXT_H
+## define SELINUX_CONTEXT_H
+#
+## include <errno.h>
+#
+#typedef int context_t;
+#static inline context_t context_new (char const *s _UNUSED_PARAMETER_)
+#  { errno = ENOTSUP; return 0; }
+#static inline char *context_str (context_t con _UNUSED_PARAMETER_)
+#  { errno = ENOTSUP; return (void *) 0; }
+#static inline void context_free (context_t c _UNUSED_PARAMETER_) {}
+#
+#static inline int context_user_set (context_t sc _UNUSED_PARAMETER_,
+#                                  char const *s _UNUSED_PARAMETER_)
+#  { errno = ENOTSUP; return -1; }
+
+File: ./lib/se-selinux.in.h
+Hash: 70669262b44df770b656e06dd0607d4fa4e070616a4a93731d36d8254d0eb8bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##ifndef SELINUX_SELINUX_H
+## define SELINUX_SELINUX_H
+#
+## include <sys/types.h>
+## include <errno.h>
+#
+#typedef unsigned short security_class_t;
+## define security_context_t char*
+## define is_selinux_enabled() 0
+#
+#static inline int getcon (security_context_t *con _UNUSED_PARAMETER_)
+#  { errno = ENOTSUP; return -1; }
+#static inline void freecon (security_context_t con _UNUSED_PARAMETER_) {}
+
+File: ./lib/search.in.h
+Hash: 98707f0a63adefec5733713c576243f083b682775057a7d5971cef4277fc8960
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <search.h>.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/select.c
+Hash: db938a6d1b5d591ba63dd3673bb2ccd0ecd9f8b9fcaad86d3c607368122268a8
+License: GPL 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emulation for select(2)
+#   Contributed by Paolo Bonzini.
+#
+#   Copyright 2008-2009 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/selinux-at.c
+Hash: e73ac0c418e767f09a8d77674df132f0b446c5448c43a1d9303e58907d17018f
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* openat-style fd-relative functions for SE Linux
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/selinux-at.h
+Hash: 2e95007054f57abccc9c2dbc0df4520778025ef925f3b74873d5d58af819e36e
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Prototypes for openat-style fd-relative SELinux functions
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/send.c
+Hash: 47748f45a6a25cadf5542f9543f49778f7ea6b2c87fef1bf9926c8c66e7f5661
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* send.c --- wrappers for Windows send function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sendto.c
+Hash: 634c06211e79ad265f869003e97612a84a67d40fa6d275ace86b12592b0a8eab
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* sendto.c --- wrappers for Windows sendto function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/set-mode-acl.c
+Hash: e859e38ad22b32346c568c33be9a662b92a792f63402be0645020fe91e7a865e
+License: GPL-3+ 
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* set-mode-acl.c - set access control list equivalent to a mode
+#
+#   Copyright (C) 2002-2003, 2005-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/setenv.c
+Hash: 5927758c893aede52f8fdc5263d4117e4614fb619646a37d5464b249f19cc91e
+License: GPL-3+ 
+Copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/setsockopt.c
+Hash: 1fe9bb029b10267e47bbc61360ce31f9915584f8824b3da8569b084bba160c32
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* setsockopt.c --- wrappers for Windows setsockopt function
+#
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/settime.c
+Hash: f3fef53696d8c8b81a746528ddebe430eabebc29f83bae24fefffef92380d23e
+License: GPL-3+ 
+Copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* settime -- set the system clock
+#
+#   Copyright (C) 2002, 2004, 2005, 2006, 2007, 2009 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/sh-quote.c
+Hash: 27a65b308d278b6fdef8dcaac9558d0d90b8ff6974551e8892d1767765097bc7
+License: GPL-3+ 
+Copyright: 2001-2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Shell quoting.
+#   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/sh-quote.h
+Hash: e049a481e491c1fd1433d5f930becd727d362737d16f575f5108daf88ed3e08e
+License: GPL-3+ 
+Copyright: 2001-2002, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Shell quoting.
+#   Copyright (C) 2001-2002, 2004 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/sha1.c
+Hash: e6f4ad18bb6193ea3a3c57b7bdd4d4c371e65ba20e2af676b3fd8578c462c6e9
+License: GPL 
+Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software
+Licence-Text: 
+#Header: 
+#/* sha1.c - Functions to compute SHA1 message digest of files or
+#   memory blocks according to the NIST specification FIPS-180-1.
+#
+#   Copyright (C) 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/sha1.h
+Hash: 59bead7118f2949f37fdfa01470646bd275f2507e9be8ab76882bbe653057d9b
+License: GPL 
+Copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009
+Licence-Text: 
+#Header: 
+#/* Declarations of functions and data types used for SHA1 sum
+#   library functions.
+#   Copyright (C) 2000, 2001, 2003, 2005, 2006, 2008, 2009
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/sha256.c
+Hash: 3425dcf95c1f50702ebec678cc893f4d4c851054bf580de3d9a3f56bd0e01978
+License: GPL-3+ 
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* sha256.c - Functions to compute SHA256 and SHA224 message digest of files or
+#   memory blocks according to the NIST specification FIPS-180-2.
+#
+#   Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/sha256.h
+Hash: 66581e4bc70d286563b89d7bb632dc9f3591df5dc926494ef60ac5e1ffb478ab
+License: GPL-3+ 
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Declarations of functions and data types used for SHA256 and SHA224 sum
+#   library functions.
+#   Copyright (C) 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sha512.c
+Hash: 2d33540040b9cfd894cfda268216acf3ba9cf967d1e536a8661ae9bbf6b2e4ff
+License: GPL-3+ 
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* sha512.c - Functions to compute SHA512 and SHA384 message digest of files or
+#   memory blocks according to the NIST specification FIPS-180-2.
+#
+#   Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/sha512.h
+Hash: ee0dec75a513f6772789a0b6bf0ee1ead955abeb34696a489d19ec6e13e3388b
+License: GPL-3+ 
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Declarations of functions and data types used for SHA512 and SHA384 sum
+#   library functions.
+#   Copyright (C) 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/shutdown.c
+Hash: 51160b16d7393090800e4bf94a60a1df431f62ec86b1ae2f26a6c51152458de6
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* shutdown.c --- wrappers for Windows shutdown function
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sig-handler.h
+Hash: dc43801fc9a9f3dc8ba0d661a7db3e864cb14324b7c2cb2196f3b59a89fd6159
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convenience declarations when working with <signal.h>.
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sig2str.c
+Hash: ca70d2eda30326ad5a9d6cf9336be308827519fa3ec0a948ddb151f104506663
+License: GPL-3+ 
+Copyright: 2002, 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* sig2str.c -- convert between signal names and numbers
+#
+#   Copyright (C) 2002, 2004, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sig2str.h
+Hash: e5747ec456c7780cd6b05fbfd22631cbc4bd955a230a013649b51f33a60b8011
+License: GPL-3+ 
+Copyright: 2002, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* sig2str.h -- convert between signal names and numbers
+#
+#   Copyright (C) 2002, 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sigaction.c
+Hash: 961a07c6f2a1fa494905a8c380725451d27e61e2cade6aff296fd560d9f41564
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* POSIX compatible signal blocking.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Eric Blake <ebb9@byu.net>, 2008.
+#
+#   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
+
+File: ./lib/siglist.h
+Hash: 1f7435d5ada1229db0e79551b2d1ded46d3de7caa6030ade8ed1a9c8385b7475
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 1996,97,98,99,2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Canonical list of all signal names.
+#   Copyright (C) 1996,97,98,99,2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C 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.
+#
+#   The GNU C 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
+
+File: ./lib/signal.in.h
+Hash: a49f6db94dacf94abe74624ea1ddddc7559f95c8feb120e671e0b4ff215382ef
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <signal.h>.
+#
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/signbitd.c
+Hash: 4fe9d03e71253b7cb6553e84b2c0c91449a1cac16afa810f0e5f1db489edd244
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* signbit() macro: Determine the sign bit of a floating-point number.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/signbitf.c
+Hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* signbit() macro: Determine the sign bit of a floating-point number.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/signbitl.c
+Hash: 037630e987739015e0f1836168f7fd6c8e6b823585619d775c47c04a53b6fcde
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* signbit() macro: Determine the sign bit of a floating-point number.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/sigpipe-die.c
+Hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Report a SIGPIPE signal and exit.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/sigpipe-die.h
+Hash: 4b5f023114428ddeafbe3924f1f2d4649c44398bca6d89f47ca81b9700ad3bd3
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Report a SIGPIPE signal and exit.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/sigprocmask.c
+Hash: 64a5bd137e4ffceed28ce56b1c3ebeebbf5a2bceb1dbf8274afb4563db1a856e
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* POSIX compatible signal blocking.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./lib/sincosl.c
+Hash: 1772f687d81fd114abb5d80bbb46c95f407f818faa4b6c89cf9c0eb57f2e536d
+License: GPL-3+ 
+Copyright: 1999, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Quad-precision floating point trigonometric functions on <-pi/4,pi/4>.
+#   Copyright (C) 1999, 2006, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Jakub Jelinek <jj@ultra.linux.cz>
+#
+#   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.
+
+File: ./lib/sinl.c
+Hash: aec40ee7886ef37669c9218c5d8a5e07ad40fefa4fc7a1e4e48703d51124a9dc
+License: 
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+Licence-Text: 
+#Header: 
+#/* s_sinl.c -- long double version of s_sin.c.
+# * Conversion to long double by Jakub Jelinek, jj@ultra.linux.cz.
+# */
+#
+#/*
+# * ====================================================
+# * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
+# *
+# * Developed at SunPro, a Sun Microsystems, Inc. business.
+# * Permission to use, copy, modify, and distribute this
+# * software is freely granted, provided that this notice
+# * is preserved.
+# * ====================================================
+# */
+
+File: ./lib/size_max.h
+Hash: 26c9e27b3895dc767fb1cd998cd3d2039f08bc4eb973ca8344a2957a21ea8d3f
+License: GPL 
+Copyright: 2005-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* size_max.h -- declare SIZE_MAX through system headers
+#   Copyright (C) 2005-2006 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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
+
+File: ./lib/sleep.c
+Hash: 648a1c7305e84d30515cb11664201e9544fe1f2d824adb21b4e66a75bbfaaf7f
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Pausing execution of the current thread.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/snprintf.c
+Hash: da7f665f0930c194dc67de8e3f84305d1d9efb6941fb0c1f75bfb3017e6e2501
+License: GPL 
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Simon Josefsson and Paul Eggert.
+#
+#   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
+
+File: ./lib/socket.c
+Hash: 73aa233a19dcdef4826a6e9c76995947a86d2671e189f51b08cd39743b9395ab
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* socket.c --- wrappers for Windows socket function
+#
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sockets.c
+Hash: 99bf26833d5e9d9cd2556408cf92c515c24d6f5473b27e278d51604655b38611
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* sockets.c --- wrappers for Windows socket functions
+#
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sockets.h
+Hash: 2c890a5e463ceb8ea9e9bbdb6f2a4a07c745c89fe71888191634079bd96b28d3
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* sockets.h - wrappers for Windows socket functions
+#
+#   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/spawn.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawn.in.h
+Hash: dd423bdec70d026b36d8aca617a940f03fe19b9a450e3981de91dfdad00e2a4a
+License: GPL-3+ 
+Copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Definitions for POSIX spawn interface.
+#   Copyright (C) 2000, 2003, 2004, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/spawn_faction_addclose.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawn_faction_adddup2.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawn_faction_addopen.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawn_faction_destroy.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawn_faction_init.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawn_int.h
+Hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
+License: GPL-3+ 
+Copyright: 2000, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_destroy.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_getdefault.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_getflags.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_getpgroup.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_getschedparam.c
+Hash: 03b892eeaf1895ea6a49b8623038b8775e4e1aeb921ddadd3fe29ff938f0a27b
+License: GPL-3+ 
+Copyright: 2000, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_getschedpolicy.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_getsigmask.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_init.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_setdefault.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_setflags.c
+Hash: 7f583d13179aba639b22ec305fd749afdeecb96823d2c32cb4dd9294a51bdbd2
+License: GPL-3+ 
+Copyright: 2000, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000, 2004 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_setpgroup.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_setschedparam.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_setschedpolicy.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawnattr_setsigmask.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/spawni.c
+Hash: 62be6e45aaad94e9dbc02b27f7dba559de55fac508f2e3954479674ce637e015
+License: GPL-3+ 
+Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Guts of POSIX spawn interface.  Generic POSIX.1 version.
+#   Copyright (C) 2000-2006, 2008-2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/spawnp.c
+Hash: a0184bd9df1f725146985b88bdb35678d5048512426f06771d3b1c027a2b0032
+License: GPL-3+ 
+Copyright: 2000 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/sprintf.c
+Hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
+License: GPL-3+ 
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/sqrtl.c
+Hash: 755a6706b4cfafc6b498d6efa76315b826063474b7f91834ef5aac159f116c5e
+License: GPL-3+ 
+Copyright: 2002, 2003, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Emulation for sqrtl.
+#   Contributed by Paolo Bonzini
+#
+#   Copyright 2002, 2003, 2007 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/stat-macros.h
+Hash: 148738a233ce05f8eb8f7d34330ceb02c5bd65c8221d02bbab595257b813e2ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* All the mode bits that can be affected by chmod.  */
+##define CHMOD_MODE_BITS \
+#  (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO)
+
+File: ./lib/stat-time.h
+Hash: 9aba76bc91ed527925d4c43ee4224d8ef90fa0d21475d5e4fe2976cf797daa08
+License: GPL-3+ 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* stat-related time functions.
+#
+#   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stdarg.in.h
+Hash: fed8bc6587d9b9b46807cec06b2104a0c7f4f4edd00f5c3104c86ab78d64722e
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substitute for and wrapper around <stdarg.h>.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/stdbool.in.h
+Hash: e8683e07480c37941452e3970f57d5f5bbcd0d742248766ea32158872b843013
+License: GPL 
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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,
+
+File: ./lib/stddef.in.h
+Hash: f3ff9d2469e9e018bbfe1a8d85d2454f7a54673420acdb29aa429cd583e45834
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A substitute for POSIX 2008 <stddef.h>, for platforms that have issues.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stdint.in.h
+Hash: 31871000acd29901edf1cd726ea2f32b9837e497b9e19a49c00374e0291c1997
+License: GPL 
+Copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2001-2002, 2004-2009 Free Software Foundation, Inc.
+#   Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood.
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/stdio--.h
+Hash: 8c7711ff90032c75717f2f7363d9a7ee7e94afa86d29510878f66dba39bb3f5b
+License: GPL-3+ 
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Like stdio.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stdio-impl.h
+Hash: 1ab5922a50832223e0ffc2c70fc544f9d91a363ecb50bcdb55e55c991d88b33d
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Implementation details of FILE streams.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/stdio-safer.h
+Hash: bcaf909a5c5f8071d1141fe63d90c50832df9f511b5934124b18613c2cc60631
+License: GPL-3+ 
+Copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke stdio functions, but avoid some glitches.
+#
+#   Copyright (C) 2001, 2003, 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stdio-write.c
+Hash: ef387fa21fd98ef04fd7a0c63399aecb0f271036efc4d192baeca9c964fb1b05
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* POSIX compatible FILE stream write function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/stdio.in.h
+Hash: 90996147d8e36f5883486d804050c8256ebd75940339821fbe964fc12816a9db
+License: GPL 
+Copyright: 2004, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <stdio.h>.
+#
+#   Copyright (C) 2004, 2007-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stdlib--.h
+Hash: 6f719ffb3bd563d1191de42881829b2e53ac17d32dd1d6708c4c22b0c065181b
+License: GPL-3+ 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Like stdlib.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stdlib-safer.h
+Hash: ad05b244170755ded620afdb4d6a499a61182625b45f4458df212dd48b9b05fc
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke stdlib.h functions, but avoid some glitches.
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stdlib.in.h
+Hash: 0ffeef75662fb92247d373df32beb5d8dcc8d52845a1a0cf2e3afe0f75df2164
+License: GPL-3+ 
+Copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <stdlib.h>.
+#
+#   Copyright (C) 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stpcpy.c
+Hash: e277a69ab969893f97dbf9b683e7462bd56bb4a3d83e01b3637c705a0b240b0d
+License: GPL 
+Copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* stpcpy.c -- copy a string and return pointer to end of new string
+#   Copyright (C) 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   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 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.
+
+File: ./lib/stpncpy.c
+Hash: 63243814e0160f070d456614689aea5b26f421817aa249c25f3449b22bd82220
+License: GPL 
+Copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 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.
+
+File: ./lib/str-kmp.h
+Hash: 6ebb0ef34e3af533dd72b1cac88faebfab78edf50fcbe16d66a8f53ad4da159a
+License: GPL 
+Copyright: A macro that canonicalizes an element right after / 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring search in a NUL terminated string of 'char' elements,
+#   using the Knuth-Morris-Pratt algorithm.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   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.
+
+File: ./lib/str-two-way.h
+Hash: 333e7d492bb7a06bd7eceb738c5bbfaa45fd376cd1fa873159ae6c102fb5abe8
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc / A macro that canonicalizes an element right after
+Licence-Text: 
+#Header: 
+#/* Byte-wise substring search, using the Two-Way algorithm.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Written by Eric Blake <ebb9@byu.net>, 2008.
+#
+#   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.
+
+File: ./lib/strcasecmp.c
+Hash: 9fac5af7b69ba93dda82ad7e40d81dce148b1b3805ad1f85e96ed8f361e75307
+License: GPL 
+Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-insensitive string comparison function.
+#   Copyright (C) 1998-1999, 2005-2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/strcasestr.c
+Hash: df44f98303720564f510cd6080f83b2479ba81a607e0ff35a70065d332775e9d
+License: GPL 
+Copyright: 2005-2008 Free Software Foundation, Inc / TOLOWER 
+Licence-Text: 
+#Header: 
+#/* Case-insensitive searching in a string.
+#   Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2005.
+#
+#   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
+
+File: ./lib/strchrnul.c
+Hash: 4f484d4cc0befecd8997334083c58252e9234ad7b53c9ed4e68dbb21366491ea
+License: GPL-3+ 
+Copyright: 2003, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Searching in a string.
+#   Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/strchrnul.valgrind
+Hash: 110d49dc4750f651d0f237887bbdd3ed01c2d8950db226835e552d195ad9dc03
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Suppress a valgrind message about use of uninitialized memory in strchrnul().
+## This use is OK because it provides only a speedup.
+#{
+#    strchrnul-value4
+#    Memcheck:Value4
+#    fun:strchrnul
+#}
+#{
+#    strchrnul-value8
+#    Memcheck:Value8
+#    fun:strchrnul
+#}
+
+File: ./lib/strcspn.c
+Hash: 9c6096a1c313c8363bc4fb7ea9c8670d50859635fa4fbf18354f17b98fcdf6e4
+License: GPL 
+Copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 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.
+
+File: ./lib/strdup.c
+Hash: 12e93fe471e7edcd885e207e311df99c6d850b7b9ca5c3b28e39e316c66fb2ab
+License: GPL 
+Copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free
+#   Software Foundation, Inc.
+#
+#   This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/streq.h
+Hash: 9830f7c0042519dd01e35295d2e694c760b032cd222a31f3855f44b1a526e12c
+License: LGPL-3+ 
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Optimized string comparison.
+#   Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/strerror.c
+Hash: f4503783120d3b66707b724877e32b0ea1eda13cbf9e79f4640b32e3f44c7019
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* strerror.c --- POSIX compatible system error routine
+#
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/strftime.c
+Hash: 7600ea0821aa8b38178ea32004b358cc84e69df14ea395dd865c955b8677c320
+License: GPL-3+ 
+Copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
+#   Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   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.
+
+File: ./lib/strftime.h
+Hash: 4c32312ac57884519ab011ab68c92dd237dd76c2f232cd5395e8d283f365bc1e
+License: GPL-3+ 
+Copyright: 2002, 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* declarations for strftime.c
+#
+#   Copyright (C) 2002, 2004, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/striconv.c
+Hash: 5e8b516e5b0f28f80803a45eb2c6be6a4c0a2282bedc384d0c3b6324c3d0df55
+License: GPL 
+Copyright: 2001-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Charset conversion.
+#   Copyright (C) 2001-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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
+
+File: ./lib/striconv.h
+Hash: daea9a49adb2283a8f85bb18fda76f59028c8bfdd046db63226ca0c0e0350702
+License: GPL 
+Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Charset conversion.
+#   Copyright (C) 2001-2004, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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
+
+File: ./lib/striconveh.c
+Hash: 34bb63b9a451ec7185541467e05029b4d5fbd1cbf5a03d3fe84ac381843e053c
+License: GPL-3+ 
+Copyright: 2001-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character set conversion with error handling.
+#   Copyright (C) 2001-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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
+
+File: ./lib/striconveh.h
+Hash: 86eb681bccb0a53f2a391f680da5d74679c2482f39258d92ef8d6b0ef17ab474
+License: GPL-3+ 
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character set conversion with error handling.
+#   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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
+
+File: ./lib/striconveha.c
+Hash: 5cb3167be3296d381de5cc20753a6e13eb849c736c76cdf79875fa9ffa1a41ea
+License: GPL-3+ 
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character set conversion with error handling and autodetection.
+#   Copyright (C) 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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
+
+File: ./lib/striconveha.h
+Hash: d78d74cdfaacc28ecd3e6b1d1c1934ef42f23ffe6e6a940c2fd8b9f3396d78b5
+License: GPL-3+ 
+Copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Character set conversion with error handling and autodetection.
+#   Copyright (C) 2002, 2005, 2007-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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
+
+File: ./lib/string.in.h
+Hash: 1136d0b98b57be6dd7253ef5cacf9f4da5f028f2d885723c8bbc35a3ab13745b
+License: GPL 
+Copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A GNU-like <string.h>.
+#
+#   Copyright (C) 1995-1996, 2001-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/strings.in.h
+Hash: 10e5bc3121d2994aa8fc0890d99464664f2b9d6f3e67177e371d1f4c072bc250
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A substitute <strings.h>.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/stripslash.c
+Hash: ca9f072b31bf11e52cbb5c73957988d28de77f56c962b0785f07af77418be677
+License: GPL-3+ 
+Copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* stripslash.c -- remove redundant trailing slashes from a file name
+#
+#   Copyright (C) 1990, 2001, 2003-2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/strncasecmp.c
+Hash: 815116d5f75c679aca0d1bb421a8370e66e40168c384ed9dd6a98d3f5ca83391
+License: GPL 
+Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* strncasecmp.c -- case insensitive string comparator
+#   Copyright (C) 1998-1999, 2005-2007 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/strndup.c
+Hash: 493b47a8d6f269acc1510b98b35176cc820945e10980a25eff018b436ae1bcfe
+License: GPL 
+Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007
+Licence-Text: 
+#Header: 
+#/* A replacement function, for systems that lack strndup.
+#
+#   Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/strnlen.c
+Hash: 90b853a0e4af9628fcd17de3f30a70c1a406d6517e1d18a5f5b9413c856b1c10
+License: GPL 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Find the length of STRING, but scan at most MAXLEN characters.
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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
+
+File: ./lib/strnlen1.c
+Hash: ca122eb96644afef5d06ddd05a5ee8d1672a9df41eb9dee6a04360b119d62dac
+License: GPL-3+ 
+Copyright: 2005-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Find the length of STRING + 1, but scan at most MAXLEN bytes.
+#   Copyright (C) 2005-2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/strnlen1.h
+Hash: 150c8f3b97a0d8163ec53ce9eeac9922489186f5ca66d9250750116cb1f8a5c1
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Find the length of STRING + 1, but scan at most MAXLEN bytes.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/strpbrk.c
+Hash: 96b98866fadc00e26886d758144724ccbbc594f237800fb4314473bede51c53e
+License: GPL 
+Copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1994, 2000, 2002-2003, 2006 Free Software
+#   Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@prep.ai.mit.edu.
+#
+#   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.
+
+File: ./lib/strptime.c
+Hash: e7a81072f584025045e8cd27a8aed09e13a467c6a3a157eee758bd6613856191
+License: GPL 
+Copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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,
+
+File: ./lib/strsep.c
+Hash: af7bac86580b20527ae1d65b6b78a1b038b7b9e0b005a67835c2058a71215932
+License: GPL 
+Copyright: 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2004, 2007 Free Software Foundation, Inc.
+#
+#   Written by Yoann Vandoorselaere <yoann@prelude-ids.org>.
+#
+#   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
+
+File: ./lib/strsignal.c
+Hash: e182db866c03cb48b20804d461064af0a10923ccec042890b5604c9c43d228ca
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C 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.
+#
+#   The GNU C 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 the GNU C Library; if not, write to the Free
+
+File: ./lib/strstr.c
+Hash: a4affaf4166ce546e4b9877cf63839f8b5ec3c8e3aad4edce9225941ef20d89a
+License: GPL 
+Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
+#   Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/strtod.c
+Hash: 528883e0f68c192c7f4c418737f36efc6ede11ce51636f8145c70d1101163e8b
+License: GPL-3+ 
+Copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free
+#   Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/strtoimax.c
+Hash: 7973e7dce509583335e94002f1d80e0f651365102e54f37f6643260b5a0f3a11
+License: GPL-3+ 
+Copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* Convert string representation of a number into an intmax_t value.
+#
+#   Copyright (C) 1999, 2001, 2002, 2003, 2004, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/strtok_r.c
+Hash: aef52797442d97f89d26281a0226055638efc2009e04f911fb4bbbccf7671efb
+License: GPL-3+ 
+Copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Reentrant string tokenizer.  Generic version.
+#   Copyright (C) 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/strtol.c
+Hash: 9a28728b276103445a0aa97cad8332a2cc26aa2b9be2c964b2c166b56391b73c
+License: GPL 
+Copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005
+Licence-Text: 
+#Header: 
+#/* Convert string representation of a number into an integer value.
+#
+#   Copyright (C) 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005,
+#   2006, 2007
+#   Free Software Foundation, Inc.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C
+#   Library.  Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 any
+#   later version.
+#
+#   This program is distributed in the hope that it will be useful,
+
+File: ./lib/strtoll.c
+Hash: ffeacd90d3869005c1cbaa8aa6090606681dd0ce4407a93a241510abba0719ea
+License: GPL-3+ 
+Copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Function to parse a `long long int' from text.
+#   Copyright (C) 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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
+
+File: ./lib/strtoul.c
+Hash: be855c203200b5a984ae3290890f46d4580f377b4bdafd0266e7873dab9b1731
+License: GPL-3+ 
+Copyright: 1991, 1997 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1991, 1997 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/strtoull.c
+Hash: a844c45a1416b2420bd76bef0e85cb2d0a7e363cf88325e65d285bbf5882e58e
+License: GPL 
+Copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Function to parse an `unsigned long long int' from text.
+#   Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+#   NOTE: The canonical source of this file is maintained with the GNU C
+#   Library.  Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 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.
+
+File: ./lib/strtoumax.c
+Hash: 20d59ba9f3d7a1001d08e6aab61d928dbae2fd051e69eab2867765f8663460b6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define UNSIGNED 1
+##include "strtoimax.c"
+
+File: ./lib/strverscmp.c
+Hash: dd6243d19084dfaafaac9441be9a71dde27f33c595c685beee735da6b4158cf4
+License: GPL 
+Copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc / ((unsigned int) - '0' <= 9)
+Licence-Text: 
+#Header: 
+#/* Compare strings while treating digits characters numerically.
+#   Copyright (C) 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Jean-François Bignolles <bignolle@ecoledoc.ibp.fr>, 1997.
+#
+#   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.
+
+File: ./lib/symlinkat.c
+Hash: dcc854e76c58e26c2b9f652e67d1f4d656d1115d1dc966d5a8ac27025490d91a
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Create a symlink relative to an open directory.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/sys_file.in.h
+Hash: 868915ed2b23fee8738485eaf605b0f29674ea76f2f27fc0a330c7e40476e7e1
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide a more complete sys/file.h.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sys_ioctl.in.h
+Hash: 5a85be194ab973fc6eee2464d2f6043be6ca5a0e0ca50c24c8e1947d3ba9c366
+License: GPL 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substitute for and wrapper around <sys/ioctl.h>.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/sys_select.in.h
+Hash: 6385d79cdb0b4995cd2158dcdc2df844a99ee46a25909c5c4f1227065077e6a8
+License: GPL 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substitute for <sys/select.h>.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/sys_socket.in.h
+Hash: 362d22c2394c4e40e8e2f5184c97bbd879f5b56d4ee18b4d91e7c6e29b7deaf9
+License: GPL 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide a sys/socket header file for systems lacking it (read: MinGW)
+#   and for systems where it is incomplete.
+#   Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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.
+
+File: ./lib/sys_stat.in.h
+Hash: e70e9a10084c5f7be3fb6d2aa62228b6f5ded082be4afadd19c01d119c502415
+License: GPL 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide a more complete sys/stat header file.
+#   Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/sys_time.in.h
+Hash: 808d4417fc9f057d4ad55b6add3f133d03a5322fabe3dcfe925bd47d14616a66
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide a more complete sys/time.h.
+#
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/sys_times.in.h
+Hash: 3cf5a711d1c92858d4b654284c43c7ecc25d06763f8418c2e54c3309c914a541
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Provide a sys/times.h header file.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/sys_utsname.in.h
+Hash: fae5021bf23d69bd35dc0d59126fd5506a194d7b57a8c0ffca7d480f8843b12f
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substitute for <sys/utsname.h>.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/sys_wait.in.h
+Hash: 3c64ce849ea907e265c1bb91f56556fa9f828395cf62f5192851eda0f62cf63e
+License: GPL 
+Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A POSIX-like <sys/wait.h>.
+#   Copyright (C) 2001-2003, 2005-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/sysexits.in.h
+Hash: 2f0fc879d2f3a165ed05292bd2ce8f091f60eced3a2fa6f8fc1445ed4548a5d0
+License: GPL-3+ 
+Copyright: 2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* exit() exit codes for some BSD system programs.
+#   Copyright (C) 2003, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/t-idcache
+Hash: af02ece347f0cc0361537b092cba7066186fc98ab1a92c6d10435a9be9ec9f84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Compare the two halves (user and group) of idcache.c.
+## Once xformed, they'd better be the same:
+#
+#pwd=`pwd`
+#t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
+#trap 'status=$?; cd "$pwd" && chmod -R u+rwx $t0 && rm -rf $t0 && exit $status' 0
+#trap '(exit $?); exit $?' 1 2 13 15
+#
+#srcdir=../..
+#framework_failure=0
+#mkdir -p $tmp || framework_failure=1
+#cd $tmp || framework_failure=1
+#
+#if test $framework_failure = 1; then
+
+File: ./lib/tanl.c
+Hash: 1f3518e0705fc06460c8a4c98999f4c188b0dacc611e78239f11c5deaaf35b27
+License: 
+Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
+Licence-Text: 
+#Header: 
+#/* s_tanl.c -- long double version of s_tan.c.
+# * Conversion to IEEE quad long double by Jakub Jelinek, jj@ultra.linux.cz.
+# */
+#
+#/* @(#)s_tan.c 5.1 93/09/24 */
+#/*
+# * ====================================================
+# * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
+# *
+# * Developed at SunPro, a Sun Microsystems, Inc. business.
+# * Permission to use, copy, modify, and distribute this
+# * software is freely granted, provided that this notice
+# * is preserved.
+# * ====================================================
+# */
+
+File: ./lib/tempname.c
+Hash: f8c04e91069ab576b32bf499cda2face1c55ff82a288717173934b8e70a4dc9b
+License: GPL-3+ 
+Copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
+Licence-Text: 
+#Header: 
+#/* tempname.c - generate the name of a temporary file.
+#
+#   Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
+#   2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation,
+#   Inc.
+#
+#   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.
+
+File: ./lib/tempname.h
+Hash: 3c1441c47f4337bfb8d432fa03ee9b1ebaaa25a5dd874e64f37eb260e8c441ad
+License: GPL-3+ 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Create a temporary file or directory.
+#
+#   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/time.in.h
+Hash: 41f65ec87233a41b8ccfe9364732c124a99001f260b8ac3570402b0a1628a4e1
+License: GPL 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A more-standard <time.h>.
+#
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/time_r.c
+Hash: 5dd79182477034f96e494ee4d68c9e08f882485e73c1bd05f0a650f9a46629c2
+License: GPL 
+Copyright: 2003, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Reentrant time functions like localtime_r.
+#
+#   Copyright (C) 2003, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/timegm.c
+Hash: f8d8b41a303f3b09ee22b4a9a247f85ffa515b47569011d5abe2f205923fc4ed
+License: GPL 
+Copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software
+Licence-Text: 
+#Header: 
+#/* Convert UTC calendar time to simple time.  Like mktime but assumes UTC.
+#
+#   Copyright (C) 1994, 1997, 2003, 2004, 2006, 2007 Free Software
+#   Foundation, Inc.  This file is part of the GNU C Library.
+#
+#   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.
+
+File: ./lib/times.c
+Hash: ae2efd1b1623d1978cb2d18227edd02db9d9a9f47dbecc71fbf6806f8da628d1
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Get process times
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/timespec.h
+Hash: 9d3c4eda40d629233b24827f15f5dd80c40d897e119a01126bf867193d6be14c
+License: GPL-3+ 
+Copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* timespec -- System time interface
+#
+#   Copyright (C) 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/tmpdir.c
+Hash: 9de08a71227a2821978be3e6919f6232ccf2022430447f39b22e612021217871
+License: GPL-3+ 
+Copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc / ( == '/' || == '\\') / tests whether C is a directory separator character / ( == '/')
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1999, 2001-2002, 2006 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/tmpdir.h
+Hash: 4b2eb7839ae3ddbdafca11312d499ac3f469953e05e927e65a57b2d9308792ef
+License: GPL-3+ 
+Copyright: 2001-2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine a temporary directory.
+#   Copyright (C) 2001-2002 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/tmpfile-safer.c
+Hash: b6f4f570c8724d3c78e2c7ab73929f9b4a3b30aefc058105e71ec434b5d5fc89
+License: GPL-3+ 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke tmpfile, but avoid some glitches.
+#   Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/tmpfile.c
+Hash: 5626c82fc49099877c1350e01f8a80e576b6fdc73ea57162c6989f956945259f
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Create a temporary file.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/trigl.c
+Hash: 8b60f78b69de56a777043569a8e3ccbef997faaac10c41e5bc0f4b450c5a66ae
+License: GPL-3+ 
+Copyright: 1999, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Quad-precision floating point argument reduction.
+#   Copyright (C) 1999, 2007 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Jakub Jelinek <jj@ultra.linux.cz>
+#
+#   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.
+
+File: ./lib/trigl.h
+Hash: 449a860f004a88ea94a76732170e38c1a861ddabf4f12c537138efbb777195c6
+License: GPL-3+ 
+Copyright: 2002, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Declarations for sinl, cosl, tanl internal functions
+#   Contributed by Paolo Bonzini
+#
+#   Copyright 2002, 2003 Free Software Foundation, Inc.
+#
+#   This file is part of gnulib.
+#
+#   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
+
+File: ./lib/trim.c
+Hash: 44cefabd5123525fff9af425e47c2ddb0a6a20909271f557f7954ed07cedca92
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Removes leading and/or trailing whitespaces
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/trim.h
+Hash: 9bb7a015426b58554581d2f9b0de5a6befeeaa73d42329bcd2d57fe4dcd84b1b
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Removes leading and/or trailing whitespaces
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/trunc.c
+Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/truncf.c
+Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/truncl.c
+Hash: 592bf2d338bc257c402b5227f178a77bb4ed8f92ccf16dcafe25177c2e3882f3
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Round towards zero.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/tsearch.c
+Hash: 2db46af0a909abf4d92d20a20556b8de4d7d625028def290071fe4974ed0187b
+License: GPL 
+Copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc.
+#   Contributed by Bernd Schmidt <crux@Pool.Informatik.RWTH-Aachen.DE>, 1997.
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C
+#   Library.  Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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 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.
+
+File: ./lib/u64.h
+Hash: 691a491094cad62e2b863a76aeeed5899b9d8b7ecc6c6aef6ea2cbc1f4fd6dff
+License: GPL-3+ 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* uint64_t-like operations that work even on hosts lacking uint64_t
+#
+#   Copyright (C) 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/uinttostr.c
+Hash: 2dc91a8e7841d85e1d053f04554487d1eb07a9f84f68af10180ba7b0d865ac01
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define inttostr uinttostr
+##define inttype unsigned int
+##include "inttostr.c"
+
+File: ./lib/umaxtostr.c
+Hash: 690d780ea9b95f6c5cdc34874b540dd5b1bb28599537659f46ace170d23ed219
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define inttostr umaxtostr
+##define inttype uintmax_t
+##include "inttostr.c"
+
+File: ./lib/uname.c
+Hash: 68f248ca49d11bdb00b1adfa2bf6527ea340aed829064d91877566fc4841c919
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* uname replacement.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unicase.h
+Hash: 5ee6233f3be7001239f84aacf30f5e5ca96631f010b6f91a16a9b6f877642fae
+License: LGPL-3+ 
+Copyright: 2002, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Unicode character case mappings.
+#   Copyright (C) 2002, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unicase/cased.c
+Hash: c996cbcd82623c5036d89e080e6689b335915047febbe60fe2d10b98b4a99023
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether a Unicode character is cased.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/cased.h
+Hash: dff874729fe88b9abf1df3a7e29d95060e758a13afe27f18862e9091171bac89
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Casing Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[15 << 4];
+#  }
+
+File: ./lib/unicase/casefold.h
+Hash: d0ff7d9648a8496f25c563ab8a2d7b0a1200cbcb64444b238f29606d4bfc6ecb
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/caseprop.h
+Hash: bf76e4707fab507bdb7069d1750d83c55e5e7e355a93af71fd735ad042068179
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case related properties of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/context.h
+Hash: 13a1c95eebeae5e2b3ff2ca41305b3524504304664cd71a17eaa832894493f23
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping contexts of UTF-8/UTF-16/UTF-32 substring.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/empty-prefix-context.c
+Hash: 493f93cb9eabb70c693a5d984111996d190a98c2c7fe60a7c67fd984414df699
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of empty prefix string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/empty-suffix-context.c
+Hash: b55f2b593f51969d89f98c6e7c460af0afa6d588e8123971775b1e2629a44b0a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of empty suffix string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/ignorable.c
+Hash: a8487e39b5d100c90eebc45fa11632191a89a473d5ec421ff55594e53de557bb
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether a Unicode character is case-ignorable.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/ignorable.h
+Hash: eebec1a20e857e920041811c16a084f7517860f172ebf6dbe93bc9e89b00de9c
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Casing Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+
+File: ./lib/unicase/invariant.h
+Hash: 2b5beb7dbf02de63e2b3d6debd2322c0d62a0c2d1f309f0cecfb6daa5de73437
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Internal functions for Unicode character case mappings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/locale-language.c
+Hash: 3add1adc16ce963dcff1fd7b7596b8aafaa5e33639dbaff0dcbc4074d86db3d1
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Language code of current locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/locale-languages.gperf
+Hash: 95c56feb8187781fe9f326e97d88816e218edd31dfceee6446844c7d8009bfa8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#%language=ANSI-C
+#%define hash-function-name uc_locale_language_hash
+#%define lookup-function-name uc_locale_languages_lookup
+#%compare-lengths
+#%compare-strncmp
+#%readonly-tables
+#%pic
+#/* List of languages taken from gettext/gettext-tools/src/lang-table.c
+#   on 2009-02-07.  */
+#%%
+#"aa", /* Afar" */
+#"ab", /* Abkhazian" */
+#"ace", /* Achinese" */
+#"ae", /* Avestan" */
+#"af", /* Afrikaans" */
+
+File: ./lib/unicase/simple-mapping.h
+Hash: 895a0e771188c08f6fd448c3cee007eb3cd4ffefa11bb366422bb261dd5c851f
+License: LGPL-3+ 
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Simple case mapping for Unicode characters.
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/special-casing-table.gperf
+Hash: a4b12e5d88d868cec05dd05e6bcf4f2484acfc55fde9c60a44d9f7bf345a9d93
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Special casing rules of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables.c for Unicode 5.1.0.  */
+#struct special_casing_rule { char code[3]; };
+#%struct-type
+#%language=ANSI-C
+#%define slot-name code
+#%define hash-function-name gl_unicase_special_hash
+#%define lookup-function-name gl_unicase_special_lookup
+#%compare-lengths
+#%compare-strncmp
+#%readonly-tables
+#%omit-struct-type
+#%%
+#"\x00\x49\x00", 1,  SCC_MORE_ABOVE       , {  'l',  't' }, { 0x0049,      0,      0 }, { 0x0069, 0x0307,      0 }, { 0x0049,      0,      0 }, { 0x0069,      0,      0 }
+
+File: ./lib/unicase/special-casing.c
+Hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Special casing table.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/special-casing.h
+Hash: c50793e43a15e33302f098553785e7d85ef33806182dba5a694c7e4508ef8add
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Special casing table.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/tocasefold.c
+Hash: 703c9c241129843d8d359363451912cddac5124fd6767b3df0331f490d4cef0d
+License: LGPL-3+ 
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefold mapping for Unicode characters (locale and context independent).
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/tocasefold.h
+Hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Simple character mapping of Unicode characters.  */
+#/* Generated automatically by gen-case.c for Unicode 5.1.0.  */
+##define mapping_header_0 16
+##define mapping_header_1 2
+##define mapping_header_2 7
+##define mapping_header_3 511
+##define mapping_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[26 << 7];
+#  }
+
+File: ./lib/unicase/tolower.c
+Hash: 6ea23704da935f20f2444eb5226c07f8a734da7cf55afdb1219395887e6848ca
+License: LGPL-3+ 
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Lowercase mapping for Unicode characters (locale and context independent).
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/tolower.h
+Hash: d98bb2e683293e1ee5f6bc8c2322f3bc13dc7968ef9c0f3f1c1723ead44c049a
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Simple character mapping of Unicode characters.  */
+#/* Generated automatically by gen-case.c for Unicode 5.1.0.  */
+##define mapping_header_0 16
+##define mapping_header_1 2
+##define mapping_header_2 7
+##define mapping_header_3 511
+##define mapping_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[26 << 7];
+#  }
+
+File: ./lib/unicase/totitle.c
+Hash: 7c2f4b5f520e8591e420340d3d582ec1ad48b0936da5b8893b4d7fb00243a9f8
+License: LGPL-3+ 
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for Unicode characters (locale and context independent).
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/totitle.h
+Hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Simple character mapping of Unicode characters.  */
+#/* Generated automatically by gen-case.c for Unicode 5.1.0.  */
+##define mapping_header_0 16
+##define mapping_header_1 2
+##define mapping_header_2 7
+##define mapping_header_3 511
+##define mapping_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[29 << 7];
+#  }
+
+File: ./lib/unicase/toupper.c
+Hash: b42a7680521ba55979491c693e3642382a98438c56de36812766067cc151d3b5
+License: LGPL-3+ 
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Uppercase mapping for Unicode characters (locale and context independent).
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/toupper.h
+Hash: dde1977a4388e01340fc5876c8112143f9ec640daa70c2ae4fc2936f36a74b8f
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Simple character mapping of Unicode characters.  */
+#/* Generated automatically by gen-case.c for Unicode 5.1.0.  */
+##define mapping_header_0 16
+##define mapping_header_1 2
+##define mapping_header_2 7
+##define mapping_header_3 511
+##define mapping_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[29 << 7];
+#  }
+
+File: ./lib/unicase/u-casecmp.h
+Hash: bb95e0aba8ef01b225a0c2888a95a322733d0b39d3206f21b44f00d2b11a430d
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case and normalization insensitive comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-casecoll.h
+Hash: d3d6b4ec932f80e78f2e81cc958dcc14ff902e2977a213c27ba521270864a873
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, case and normalization insensitive comparison of Unicode
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unicase/u-casefold.h
+Hash: fcee85a09cd481698f5296dae6dde1b8d84d33fb95ff41483cc4788c692812f2
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding mapping for Unicode strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-casemap.h
+Hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-casexfrm.h
+Hash: 1639cd4e229bbbf5df8d53b658e691f476f9d9485f16edcfe5d7cc148e86a497
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for case insensitive comparison of Unicode
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unicase/u-ct-casefold.h
+Hash: a2275dea893b28c3fe92ae867de9c70a7fdf39001053d9ef2f4091a7497e9c1b
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding mapping for Unicode substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-ct-totitle.h
+Hash: 2570f24e1a280b6b4cb7de56c85279674319e4cea7c2ad984241975245e76226
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for UTF-8/UTF-16/UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-is-cased.h
+Hash: b4e0b17776175ec6033c0aba5d535daa7c3667a42c53463114840fbf600d5cb9
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether case matters for a Unicode string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-is-invariant.h
+Hash: f6e201df57529cae6e7639242610ee3722e3447d1d3ecfd99c67f98811982a3a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether a Unicode string is invariant under a given case mapping.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-prefix-context.h
+Hash: 823e52633d441082aa1489c520794e4fb0ef899378e8e5f75838d66a448ae3a7
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of prefix UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-suffix-context.h
+Hash: 9c7366f076df0f676f00acef4437ffea7f561447d007d2f7d5476e9e0fd6f74b
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of suffix UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u-totitle.h
+Hash: 245ae2aa6d16c22e82aaabe269a3759b3a45a50bf72453eccfcbd3162c57222b
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-casecmp.c
+Hash: 3a18bce5adf8c96faba2f53500087a79f62fc9e8e3dfe15ec13f0cb1f547f218
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case and normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-casecoll.c
+Hash: cf6f8d7d407a05dee71fb2903a326d279bf99c7dcadbcce7dfe2753b99386a94
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, case and normalization insensitive comparison of UTF-16
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unicase/u16-casefold.c
+Hash: 75f35ff374fbb2c36d1d0e23f4a52d96dc924835dea6fbd11181b714a8b9a88c
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-casemap.c
+Hash: 7ca080531110c4bbc03962b55be3cc21200cdb8dce98b6a8b207c1295bb556d7
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-casexfrm.c
+Hash: 2a3efd68520d13af88078b6294c4fb7eb225b0e8671c614ea31dd446d448278a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for case insensitive comparison of UTF-16
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unicase/u16-ct-casefold.c
+Hash: 24f57fcc73e888d74a192de0090f47f428b35a680d6ad7c69c164dab39ff4c47
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding mapping for UTF-16 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-ct-tolower.c
+Hash: d7dd5fefe8bd374e2f5f46c7f77a2521bd272c6078ae4cc013e3d1fc65106b30
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Lowercase mapping for UTF-16 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-ct-totitle.c
+Hash: 0a0527c17c90268b46de1096fbac12b53e7b60ee1e5077f6e34f7fdb6e648aee
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for UTF-16 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-ct-toupper.c
+Hash: 465b7179f665acb6d3c0e552e8d0d765089dce1ade88007d34a0b367f683f47e
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Uppercase mapping for UTF-16 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-is-cased.c
+Hash: 9ec0139d88d886ab48d1975d53ebd8a5a09332ce426b8febeb5dba0357f68f3a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether case matters for an UTF-16 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-is-casefolded.c
+Hash: 9d7f494e9dc39a744a34b4c147d142cbeebddff7b543829ad15cc13a9eb29cbf
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-16 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-is-invariant.c
+Hash: dd5c520c3534286f4aa5e4327f9d4c303736f424c95627795342c46aeb781cd8
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-16 string is invariant under a given case mapping.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-is-lowercase.c
+Hash: 204472e2bec896b7e33430f737c98353a125ff880b31094642769f4b2f7577ba
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-16 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-is-titlecase.c
+Hash: ee90d96cfa019ed4e11214211d2ea9730eb6f098dbff34c2db011a1757c91e87
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-16 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-is-uppercase.c
+Hash: 010d6156b827f55f04ceacc5bc59dcf08fab12f5db42c4636d41a15292ad1ce1
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-16 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-prefix-context.c
+Hash: da3309e1a77a472f5ade2ed85dc9271221109158157c6579b902e0756539b643
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of prefix UTF-16 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-suffix-context.c
+Hash: d51c3f25e16b9bbd18428d84681d7a0acfd756fcce1c341bd472f1079da44f22
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of suffix UTF-16 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-tolower.c
+Hash: 655b2ed28eeba9ad9c255747e307455643e2fc47b498a2e71e0178590b25d5b2
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Lowercase mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-totitle.c
+Hash: c4408b2dcc2c238f29f621912ecc12719d353ba1317d179d2224fe8ddb0322fe
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u16-toupper.c
+Hash: 220470c0e6a7cfd81d08f4c8f0b8fe5d574782bbd13f1c820af6ef70ed2b3385
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Uppercase mapping for UTF-16 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-casecmp.c
+Hash: 1781408004da90c050ae9a5f6570946516817493ba3fe45afde124d51583089a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case and normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-casecoll.c
+Hash: 3300da7050c301689a45980d17099c391d7648b19c03c2d5f42557b804d061ec
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, case and normalization insensitive comparison of UTF-32
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unicase/u32-casefold.c
+Hash: 45bb91d48e51b6cec99641778244ab581c70aeacdb122f32a74b8f243d2fda3b
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-casemap.c
+Hash: 247aa4ba2a663446dce07f5c913f40b60673b7f7e3ca19f403bee9d3a78ea93e
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-casexfrm.c
+Hash: 4ebb9b8760ba8a740ddfab863217d0868628faab7f9e24f26788741b48ea77fa
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for case insensitive comparison of UTF-32
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unicase/u32-ct-casefold.c
+Hash: 39bd9add0aed1db997be47956d8e91683fc6fc2db50d12228ef6b49d4c7b9c54
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding mapping for UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-ct-tolower.c
+Hash: 5e11cb2a0b6b64c1876630a435fb7c2f7d28d37bb656785b75d588cc9369ff27
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Lowercase mapping for UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-ct-totitle.c
+Hash: 5a1479bf7f4997033a317be5e2bece1df438b55cdbc1cb577fac817314f41fa4
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-ct-toupper.c
+Hash: e9e26cd78f76cc5a964f8528618e20cd2e3f6689754b5c753feab64e1b9b720d
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Uppercase mapping for UTF-32 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-is-cased.c
+Hash: 37f54a0969d6155ec3c8bcd617764b5c3cc5188acd4f800693ce4cb905a50a26
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether case matters for an UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-is-casefolded.c
+Hash: 266206ce9a0daf342cd70f30bd761d5d4c4c3731299b5db880df0d77ac22effc
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-32 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-is-invariant.c
+Hash: 7c8f061345e51ebfdb5ce97958c50ba769e4082cb19dbc42e96981eb4db800b6
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-32 string is invariant under a given case mapping.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-is-lowercase.c
+Hash: 9dc638c9ad9f87b2be59801ccc280ad79b58577dad018f9749e0ca8438f7211e
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-32 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-is-titlecase.c
+Hash: d833857fc52a56d8c5c6b41b0170810ecf56c399611254909febef6150854139
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-32 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-is-uppercase.c
+Hash: e03ec24b3075004b438ab9007fb42afc786d694f1260409db1b8c963dc35be4e
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-32 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-prefix-context.c
+Hash: 2d3ebd1fe1ca9d551f7ea8c5ff3dd4eec61c67e8864a251143122304ac020169
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of prefix UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-suffix-context.c
+Hash: de92f410f7f6c2f4f59fc279e266069f68bebb3cf25d821bde419d5ff8649b49
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of suffix UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-tolower.c
+Hash: 04e0d3c9e752bb842c5255065caa6fed1aaa7124bbc9872b4bc596b29b646b1a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Lowercase mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-totitle.c
+Hash: ec057f66ee289c109f8b27dca03f86f335bdd05f950070280d61f2ba618646c3
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u32-toupper.c
+Hash: 606b4a302876209c7e238817387def24e5ab25c80234eb6fd6d0e4a996d4dc09
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Uppercase mapping for UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-casecmp.c
+Hash: b41ef1fbbe478f5e3b1eb110e5e6b250c5979421502f6ca1b7dd19de6fa798b1
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case and normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-casecoll.c
+Hash: 86360fb8c79bf57b016601bee20af58b883c31f6a04536ea4f395a228987d704
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, case and normalization insensitive comparison of UTF-8
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unicase/u8-casefold.c
+Hash: a60314a48ef1bae6d56c720648375fb4e57db1acb91ae7b0c208b93ce8535cbd
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-casemap.c
+Hash: 24edb83e00615db47ba7c0efec239390e1c2d9ed8f6b30e604adcd3a0c82d0f5
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-casexfrm.c
+Hash: 167f36a57e4c24ac18f4a6e9bc73d9257a39d3efa6b38bcbd186084501395295
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for case insensitive comparison of UTF-8
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unicase/u8-ct-casefold.c
+Hash: ffad7b59d6730a4f76e99dc964df770e6014da0ee66c45206264d9f709e621bd
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Casefolding mapping for UTF-8 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-ct-tolower.c
+Hash: b16f9a890b5817213de428b7f08aac3ffe1702b0821d98a0f0a3b56463e1c091
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Lowercase mapping for UTF-8 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-ct-totitle.c
+Hash: 7304bf1b4bac0c2ba21867f89287a0c478f7ac1b9d0ce1418009798468b69335
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for UTF-8 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-ct-toupper.c
+Hash: ba46d214f489da0c181c73148e83191840c448fd417a17161061a3c5be227066
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Uppercase mapping for UTF-8 substrings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-is-cased.c
+Hash: 2094cfba452dcdde8e0de5eb5b8a34860eccd1673f4f1ec34de86d8887f2deb2
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether case matters for an UTF-8 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-is-casefolded.c
+Hash: ad6836695e22fc1c621033a020438153a8389f1ea9c00c3aa7db503668e87b8c
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-8 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-is-invariant.c
+Hash: 896e334b5f842024399c0bf0d0aede192f16c5503e6008659a286281e8d275d3
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-8 string is invariant under a given case mapping.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-is-lowercase.c
+Hash: 9ad379585ec68ebcaf3e6020e2874cb590ef8392bfabe67b0f415a36283d1582
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-8 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-is-titlecase.c
+Hash: 40cddd86874cd3df35e51cf677bd29c84f0bdcfda6279263a149d4889018590e
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-8 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-is-uppercase.c
+Hash: e6b62e7fa6784af5a99641078aa13cd2ed9636c64e9ca02ec2500c009aa90498
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether an UTF-8 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-prefix-context.c
+Hash: 2faad600e89a2f4df323bb0bce43f95d9c50c70477c783b5069bdcdcef2c823f
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of prefix UTF-8 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-suffix-context.c
+Hash: 9b47dcd3d28b76b4c20ecb89edca813790c5587a53b66d811be0f119344dd512
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case-mapping context of suffix UTF-8 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-tolower.c
+Hash: 3596157072c41f644c9922e9b8b776dda9a83aaad3b5ac6228db0c697dba7b22
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Lowercase mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-totitle.c
+Hash: 6caca3f452e6e3d203e6b9753be9652b60beecad4fa92a0ece54e81814bea56c
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Titlecase mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/u8-toupper.c
+Hash: a6fb8d6fa933fd65fffc9ca374211407209be087c7009bde3a72a43024734e9f
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Uppercase mapping for UTF-8 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/ulc-casecmp.c
+Hash: a14530498e0386b3448529dafb33fdce903ec4592d2be37361260862b2fa0f16
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case and normalization insensitive comparison of strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/ulc-casecoll.c
+Hash: 6f77627a28abe40aea7d9b6d12d0402d8390fc1e9b01ef47f55c8b197544dc48
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, case and normalization insensitive comparison of strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/ulc-casexfrm.c
+Hash: 34c8a6903e645541b4faddf6fc29db8e42c13da1b6c136dd6f41caa01745f4e4
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for case insensitive comparison of strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicase/unicasemap.h
+Hash: 49997880bc6149b06eb748675e384d3be939fa12e8db6b2b0a0e7dfc5ccf0ecd
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Case mapping for UTF-8/UTF-16/UTF-32 strings (locale dependent).
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unicodeio.c
+Hash: 33aacdf0005527850dd4fb652e296df5c0c204a8054ea9ddcfa120866f3a0e9e
+License: GPL-3+ 
+Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Unicode character output to streams with locale dependent encoding.
+#
+#   Copyright (C) 2000-2003, 2006, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/unicodeio.h
+Hash: 1e47f450b9b67595834d03f31709e694aa7d4ad6febfdbb6ecbaa1bec1cee139
+License: GPL-3+ 
+Copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Unicode character output to streams with locale dependent encoding.
+#
+#   Copyright (C) 2000-2003, 2005, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/uniconv.h
+Hash: 5e6e0f51341a6e53f0b352b8bb7db9465bb35a0e3cd37942b46076d0a7af3702
+License: LGPL-3+ 
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversions between Unicode and legacy encodings.
+#   Copyright (C) 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u-conv-from-enc.h
+Hash: 188629e474bbbcd1229c8c6833219797032c420574e752902bca4747712a6d66
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-16/UTF-32 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u-conv-to-enc.h
+Hash: e0aa45049139d0368fd9cc0402cf2f6ac92e52d781ad1466a494513b14fb40b3
+License: LGPL-3+ 
+Copyright: 2002, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-16/UTF-32 to legacy encodings.
+#   Copyright (C) 2002, 2006-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u-strconv-from-enc.h
+Hash: 7be24e48ba83701cdbc39b85497b3fdb44b90463a283f46fb720f91ce2d7ae33
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-8/UTF-16/UTF-32 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u-strconv-to-enc.h
+Hash: 7a46757983eda3f42167efe493ff5b1224b5fa378ccbb3ef3a54a34774fff733
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-16/UTF-32 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u16-conv-from-enc.c
+Hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-16 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u16-conv-to-enc.c
+Hash: 63cf6c42e78a055e4bc0152c66c81d9e677aca47430eeff2566e821608a1f937
+License: LGPL-3+ 
+Copyright: 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-16 to legacy encodings.
+#   Copyright (C) 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u16-strconv-from-enc.c
+Hash: 47f58ed7aa8e9cd5f7dce253f85a6bf5bb502ae758e93c180f1573d83123ffc4
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-16 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u16-strconv-from-locale.c
+Hash: abbeae189b434069f8b5082a0b74cc1c0ef22496521de651ee804512ebbcf297
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-16 from the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u16-strconv-to-enc.c
+Hash: 00764e134b95f7908e7ddd1a025d875ec6785ff8b6b69d9e92d37be3f23fa300
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-16 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u16-strconv-to-locale.c
+Hash: f67645d89afa61a452bfd22d22f76fb39ef24abdd3e44667aade0ac4d78c1fac
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-16 to the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u32-conv-from-enc.c
+Hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-32 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u32-conv-to-enc.c
+Hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-32 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u32-strconv-from-enc.c
+Hash: 605b7049869f7a21fbf13a73f6833afce11cea3b529ec11ccab1c177f630bd09
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-32 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u32-strconv-from-locale.c
+Hash: b5f98b5645d8b9d620808c54cbe34c5977a84043ce50fc58401924535f12208f
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-32 from the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u32-strconv-to-enc.c
+Hash: 9534dafdcbd251120f00efab90b64a99c9029d7530f97a8ecc460b8ea7a05800
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-32 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u32-strconv-to-locale.c
+Hash: e1b205c9ed76dd104a13b1f6427ff0fedfe1ac06bc458fcd942d94557d74e437
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-32 to the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u8-conv-from-enc.c
+Hash: f48ae3336f9571f13c2904bc2878141e7a9d272c1baf5d3a4688fd1f226f3546
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-8 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u8-conv-to-enc.c
+Hash: c0e5b93ef7fa66fca4a5b9fbd7dfcabd13c1d87f9713fbaac56bcc56fa4137eb
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-8 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u8-strconv-from-enc.c
+Hash: c9992a9820bc23e9834057a26dff394918e76ca830c2f5ac97e0d67c102baa7c
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-8 from legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u8-strconv-from-locale.c
+Hash: 6da43447486f93c497947a213640c53bf620094b211a782c60138d9057455ecb
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion to UTF-8 from the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u8-strconv-to-enc.c
+Hash: 0942490a0de4f7b06edd517c57084e60348a1d79142fec2f05c531689a4cb814
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-8 to legacy encodings.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniconv/u8-strconv-to-locale.c
+Hash: e38b1c908eef1d22cb3bee0f7157cbc3b3a409ac8fda47c5f4f9c630687e934c
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion from UTF-8 to the locale encoding.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unictype.h
+Hash: b8e67dc9e906270547a47f99abb0a4b7b1f7b1acf607726786df995910314d43
+License: LGPL-3+ 
+Copyright: 2002, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Unicode character classification and properties.
+#   Copyright (C) 2002, 2005-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unictype/3level.h
+Hash: ca73868d0849016e4c33c48ca11bccc77fda03863928d329ea03f644c3e4e020
+License: GPL 
+Copyright: 2000-2001 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000-2001 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Bruno Haible <haible@clisp.cons.org>, 2000.
+#
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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
+
+File: ./lib/unictype/3levelbit.h
+Hash: f1ad93bae7eab43736b46a51a2dc7303c2c4d8ad4563a2cd7e0740587a86880a
+License: GPL 
+Copyright: 2000-2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 2000-2002 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#   Contributed by Bruno Haible <haible@clisp.cons.org>, 2000.
+#
+#
+#   NOTE: The canonical source of this file is maintained with the GNU C Library.
+#   See glibc/locale/programs/ld-ctype.c.
+#   Bugs can be reported to bug-glibc@gnu.org.
+#
+#   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,
+
+File: ./lib/unictype/Makefile
+Hash: bdab4fa6ea70dfa476e8e0bfb1a837bc7e67c3fb607376e6171cc27d23e66848
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Makefile for generating the table files from unicode.org data.
+#
+#ARCHIVE_DIR = /gfs/ibook/Volumes/ExtData/www-archive/software/i18n/unicode/ftp.unicode.org/ArchiveVersions
+#VERSION = 5.0.0
+#UCD_DIR = $(ARCHIVE_DIR)/$(VERSION)/ucd
+#
+#EXTRA_DIST = gen-ctype.c 3levelbit.h 3level.h
+#
+#all: force
+#      gcc -g -Wall gen-ctype.c -o gen-ctype
+#      ./gen-ctype $(UCD_DIR)/UnicodeData.txt \
+#                  $(UCD_DIR)/PropList.txt \
+#                  $(UCD_DIR)/DerivedCoreProperties.txt \
+#                  $(UCD_DIR)/Scripts.txt \
+#                  $(UCD_DIR)/Blocks.txt \
+
+File: ./lib/unictype/bidi_byname.c
+Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Bidi categories of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/bidi_name.c
+Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Bidi categories of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/bidi_of.c
+Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Bidi categories of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/bidi_of.h
+Hash: c2182d910737b90cff77f4bab4cc2b1567a8713202c2b24e55951bab986d6627
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Bidi categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define bidi_category_header_0 16
+##define bidi_category_header_1 17
+##define bidi_category_header_2 7
+##define bidi_category_header_3 511
+##define bidi_category_header_4 127
+#static const
+#struct
+#  {
+#    int level1[17];
+#    short level2[4 << 9];
+#    unsigned short level3[101 * 40 + 1];
+#  }
+
+File: ./lib/unictype/bidi_test.c
+Hash: f0c58c49f58b267b76325b492ae5da0081674ec3c0efa1031221fef2be39f194
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Bidi categories of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/bitmap.h
+Hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
+License: LGPL-3+ 
+Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Three-level bitmap lookup.
+#   Copyright (C) 2000-2002, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2000-2002.
+#
+#   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
+
+File: ./lib/unictype/block_test.c
+Hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Blocks of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/blocks.c
+Hash: efe51b1d2914459a91e0d77a67720b4d06d29a49869d757b326d44e3fc2d7ba7
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Blocks of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/blocks.h
+Hash: b6a9e5481a1b0ef31c2bcdeecce12f84a6b3107f42cda43d7b5490e51c7e6b88
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Unicode blocks.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#static const uc_block_t blocks[] =
+#{
+#  { 0x0000, 0x007F, "Basic Latin" },
+#  { 0x0080, 0x00FF, "Latin-1 Supplement" },
+#  { 0x0100, 0x017F, "Latin Extended-A" },
+#  { 0x0180, 0x024F, "Latin Extended-B" },
+#  { 0x0250, 0x02AF, "IPA Extensions" },
+#  { 0x02B0, 0x02FF, "Spacing Modifier Letters" },
+#  { 0x0300, 0x036F, "Combining Diacritical Marks" },
+#  { 0x0370, 0x03FF, "Greek and Coptic" },
+#  { 0x0400, 0x04FF, "Cyrillic" },
+#  { 0x0500, 0x052F, "Cyrillic Supplement" },
+
+File: ./lib/unictype/categ_C.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_C.h
+Hash: 8e35c171e0730e196c1752e71128804f55f2ae84579e656cc0a6aa47a1eb35ba
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[5 << 7];
+#    /*unsigned*/ int level3[52 << 4];
+#  }
+
+File: ./lib/unictype/categ_Cc.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Cc.h
+Hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/categ_Cf.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Cf.h
+Hash: 47db4afe1e094f7e2c2ef9d8189af3a3412ffc4705e0de359c9f1b921fd15e66
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+
+File: ./lib/unictype/categ_Cn.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Cn.h
+Hash: b39549af020761e1993a548f9b823c05ff2a6e49e6a537ce7fa343aeaa53b145
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[6 << 7];
+#    /*unsigned*/ int level3[51 << 4];
+#  }
+
+File: ./lib/unictype/categ_Co.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Co.h
+Hash: 99e430ef6329b9f7d5ebc51a76e1e2ca53c0507494d6c10546b784e6049bc663
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+
+File: ./lib/unictype/categ_Cs.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Cs.h
+Hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/categ_L.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_L.h
+Hash: 8fc9e0984df0753aa0b9fad85007840415de5c70af85be4dfbe95bf520fb1385
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[42 << 4];
+#  }
+
+File: ./lib/unictype/categ_Ll.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Ll.h
+Hash: 785b1fa8fec42960be4917a6e8f82b3c4c7525cadc22dd518aac0cb7bfcd958f
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[13 << 4];
+#  }
+
+File: ./lib/unictype/categ_Lm.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Lm.h
+Hash: a37e7a248becadc97caf50c64c3a3e054194e5a71c4eb62054f56f24f2c97729
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[16 << 4];
+#  }
+
+File: ./lib/unictype/categ_Lo.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Lo.h
+Hash: 65c339f1a109086f8d25277fa55fd83bf5aa46d2fc13004aecbc8ca503750a54
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[39 << 4];
+#  }
+
+File: ./lib/unictype/categ_Lt.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Lt.h
+Hash: f78dca06ee53b82be63262113da2e6f5ddd027a997d069657b643daff281d7c6
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/categ_Lu.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Lu.h
+Hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[12 << 4];
+#  }
+
+File: ./lib/unictype/categ_M.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_M.h
+Hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+
+File: ./lib/unictype/categ_Mc.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Mc.h
+Hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[12 << 4];
+#  }
+
+File: ./lib/unictype/categ_Me.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Me.h
+Hash: 19978c351a45dad43fc65cd804226182244c2b634a8a7e6541489ac1f174e000
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[4 << 4];
+#  }
+
+File: ./lib/unictype/categ_Mn.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Mn.h
+Hash: 9c1efbbf5bcf0e991e93f8bb403599aebb7f1bc5d3187af8a18dc8c05e3930f6
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+
+File: ./lib/unictype/categ_N.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_N.h
+Hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+
+File: ./lib/unictype/categ_Nd.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Nd.h
+Hash: 645d0029c292be21c462e6bd7af2d005278ff9bc83122e0eeaacaadf94cd21d3
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[17 << 4];
+#  }
+
+File: ./lib/unictype/categ_Nl.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Nl.h
+Hash: e884eada39c812b459e7b7e481b4419599b18f1af710bd8482a696c5cada155a
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+
+File: ./lib/unictype/categ_No.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_No.h
+Hash: 0deece216789474ac445dbdb7296d6d5e8e7e5a8f95dfaf2e67a4c5711e18b57
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[18 << 4];
+#  }
+
+File: ./lib/unictype/categ_P.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_P.h
+Hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+
+File: ./lib/unictype/categ_Pc.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Pc.h
+Hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+
+File: ./lib/unictype/categ_Pd.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Pd.h
+Hash: f547ebd71e710e45743883d9de8b47192f46dfc611373c5c89daf8bdaf5aca6e
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+
+File: ./lib/unictype/categ_Pe.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Pe.h
+Hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[11 << 4];
+#  }
+
+File: ./lib/unictype/categ_Pf.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Pf.h
+Hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+
+File: ./lib/unictype/categ_Pi.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Pi.h
+Hash: f345b53a2178e886f52e2b0ef5e47985e2c929c7ad19a78a353a08c6d0a0b5ff
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+
+File: ./lib/unictype/categ_Po.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Po.h
+Hash: 26e8efe9bcc1419927bbca15527c8d81a1b903390185ff5e0b585341b94ad994
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+
+File: ./lib/unictype/categ_Ps.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Ps.h
+Hash: 6379df3a03e20ac05b3bf86a9fd1ebb1f7b849164bb1464cf3879a1ceaac8531
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[11 << 4];
+#  }
+
+File: ./lib/unictype/categ_S.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_S.h
+Hash: 81291c4df9432e81c35739340c26ef260186afb2e55916cadd9c6a52dc28dae6
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[36 << 4];
+#  }
+
+File: ./lib/unictype/categ_Sc.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Sc.h
+Hash: a172e78fd27a83c4692b30614cc4ebd009a1b0684b24bb6be9aeb769febacdd8
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+
+File: ./lib/unictype/categ_Sk.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Sk.h
+Hash: c15094a471ca185c4c200e38783cf9e759fa3e0e8fd07b81e3058a1a7ffd5f44
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+
+File: ./lib/unictype/categ_Sm.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Sm.h
+Hash: cfebbedf3ddf3e0b1868606ce2bfebc1cbe52b2c584d3ac2a0af2291378ae030
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[12 << 4];
+#  }
+
+File: ./lib/unictype/categ_So.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_So.h
+Hash: 5681a08936ef189025daead306e589d8d2a8c0294596812d48db900d0f2b80d1
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+
+File: ./lib/unictype/categ_Z.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Z.h
+Hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/categ_Zl.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Zl.h
+Hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/categ_Zp.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Zp.h
+Hash: 353a8154adcb7b130efc7712763f66ac8d44ca27deec8665b39a1f3603f25191
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/categ_Zs.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_Zs.h
+Hash: a3ce4401d9936f8e54f42d42eaa1d1b6d24cd8cf548aa959a99628f7ad6781c0
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/categ_and.c
+Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/categ_and_not.c
+Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/categ_byname.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_name.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_none.c
+Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/categ_of.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/categ_of.h
+Hash: 2a28fb8f13c04a8d3e8f05dba59e8336dbb1c9fcd244a69729bda0d6cab7903c
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Categories of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define category_header_0 16
+##define category_header_1 17
+##define category_header_2 7
+##define category_header_3 511
+##define category_header_4 127
+#static const
+#struct
+#  {
+#    int level1[17];
+#    short level2[5 << 9];
+#    unsigned short level3[148 * 40 + 1];
+#  }
+
+File: ./lib/unictype/categ_or.c
+Hash: 33755f955bc34ea8067b10296690b2afc0a617a2e59cb4cae950fa2a1616f6a8
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/categ_test.c
+Hash: af6395f644d54fe5257282bb8af3a3703fd47b1ddd3783c076afbfceab8d5b85
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Categories of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/combining.c
+Hash: 90adbd1167196894d026717b09dc16ead930ab4e0e79fc939f9b943b5444cb36
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Combining classes of Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/combining.h
+Hash: 1344ff3ca3a44994d02dfae3bf4d2e1ef6b65e951856e19ba186eff2a5f3ddfe
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Combining class of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define combclass_header_0 16
+##define combclass_header_1 2
+##define combclass_header_2 7
+##define combclass_header_3 511
+##define combclass_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    unsigned char level3[43 << 7];
+#  }
+
+File: ./lib/unictype/ctype_alnum.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_alnum.h
+Hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[44 << 4];
+#  }
+
+File: ./lib/unictype/ctype_alpha.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_alpha.h
+Hash: 2c9938acf771d5771935a9433070523b56bec08dd3a362a7bb63fe73da62eb32
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[44 << 4];
+#  }
+
+File: ./lib/unictype/ctype_blank.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_blank.h
+Hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/ctype_cntrl.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_cntrl.h
+Hash: c07f81242830a91177e15d05045170319602acc2f3494d6e1d6abc1ddd693c0d
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/ctype_digit.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_digit.h
+Hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/ctype_graph.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_graph.h
+Hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[5 << 7];
+#    /*unsigned*/ int level3[52 << 4];
+#  }
+
+File: ./lib/unictype/ctype_lower.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_lower.h
+Hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[11 << 4];
+#  }
+
+File: ./lib/unictype/ctype_print.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_print.h
+Hash: b23acbdc38215248665e1ba3e41efa28138f59d20447287cc95b51d8e2218f5a
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[5 << 7];
+#    /*unsigned*/ int level3[52 << 4];
+#  }
+
+File: ./lib/unictype/ctype_punct.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_punct.h
+Hash: cb1c5c1ff9e38b590896695c0436f5a583961a5aecf9ca57e76b27ba0a4e33c8
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[45 << 4];
+#  }
+
+File: ./lib/unictype/ctype_space.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_space.h
+Hash: 52e91c7e5e01fa23b33231df811e4b0bd2f2da83f4c796773fa6f59245897ec9
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/ctype_upper.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_upper.h
+Hash: 1811e3be37bc409bd83c6fc5d518827197d7fe7095f1b928068c3ff72882046c
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[11 << 4];
+#  }
+
+File: ./lib/unictype/ctype_xdigit.c
+Hash: 36c6d7b171b6df37d7e5946c31e8f53c686f7f4fc4535abba40d2a9076d4ef01
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* ISO C <ctype.h> like properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/ctype_xdigit.h
+Hash: 7ade15fb6f69dc300838438c3207b6e87ac2b18c66eced437baae513e7384ef5
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* ISO C <ctype.h> like properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/decdigit.c
+Hash: dd98fdcdaa9cd24e7260ed5252c6393ca1fc1c32b1afef1b4a9b98e57eadc26d
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Values of decimal digit Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/decdigit.h
+Hash: 729a7ffd2cedc46ac857f670fadbd787a8bd1dae5b9433ebebda7916d18af8ce
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Decimal digit values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define decdigit_header_0 16
+##define decdigit_header_1 2
+##define decdigit_header_2 7
+##define decdigit_header_3 511
+##define decdigit_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    unsigned char level3[12 << 6];
+#  }
+
+File: ./lib/unictype/digit.c
+Hash: 96f1f23423e02f86953ba94177173864040511deeb2b553746c503eedc69f695
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Values of digit Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/digit.h
+Hash: e354516c3c1294749f97668b7aecc4aba4cd72013024992226add61ca235a879
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Digit values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define digit_header_0 16
+##define digit_header_1 2
+##define digit_header_2 7
+##define digit_header_3 511
+##define digit_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    unsigned char level3[20 << 6];
+#  }
+
+File: ./lib/unictype/identsyntaxmap.h
+Hash: 754ae27a37bd5cd2c9b6f51690d4629d76f4b81c25c11bd2b1ea5ac5c9a337ea
+License: LGPL-3+ 
+Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Three-level bitmap lookup.
+#   Copyright (C) 2000-2002, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2000-2002.
+#
+#   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
+
+File: ./lib/unictype/mirror.c
+Hash: c8eb63b007266041de16a9e45bf7b8766d2016e3dd82e9b801920e7e8ee0b265
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Mirrored Unicode characters.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/mirror.h
+Hash: 4e47d47442a6953840583406acab5bcd285bb8c2d7356180dc28bb277e1e7953
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Mirrored Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define mirror_header_0 16
+##define mirror_header_1 2
+##define mirror_header_2 7
+##define mirror_header_3 511
+##define mirror_header_4 127
+#static const
+#struct
+#  {
+#    int level1[2];
+#    short level2[2 << 9];
+#    int level3[22 << 7];
+#  }
+
+File: ./lib/unictype/numeric.c
+Hash: 14a734bfffede7c850c2263c2844a2f42a847a8fdb26c6f4940a825a35a672e2
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Values of numeric Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/numeric.h
+Hash: ba1e5ba6fcb88dbb798cd02e5cc119132bc31e49b5a24d8e19ae906ada5711ea
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Numeric values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#static const uc_fraction_t u_numeric_values[108] =
+#{
+#  { 0, 0 },
+#  { 0, 1 },
+#  { 1, 1 },
+#  { 2, 1 },
+#  { 3, 1 },
+#  { 4, 1 },
+#  { 5, 1 },
+#  { 6, 1 },
+#  { 7, 1 },
+#  { 8, 1 },
+
+File: ./lib/unictype/pr_alphabetic.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_alphabetic.h
+Hash: 99efc65e4f46e3ad0efe4f73de0fc1fd74196d0de0892e8640d57da681726ea2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[44 << 4];
+#  }
+
+File: ./lib/unictype/pr_ascii_hex_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_ascii_hex_digit.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_arabic_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_arabic_digit.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_arabic_right_to_left.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_arabic_right_to_left.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_block_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_block_separator.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_boundary_neutral.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_boundary_neutral.h
+Hash: cfee85fd908c11272a95f63abb54df22efd9342b5462d93c6b38df59fbd1ab71
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_common_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_common_separator.h
+Hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[4 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_control.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_embedding_or_override.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_embedding_or_override.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_eur_num_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_eur_num_separator.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_eur_num_terminator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_eur_num_terminator.h
+Hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_european_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_european_digit.h
+Hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_hebrew_right_to_left.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_hebrew_right_to_left.h
+Hash: 66483e8eda823c6234a852450a0e3d7d1b26de2c6f4e7ed117dfd7a5f60b4eb8
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_left_to_right.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_left_to_right.h
+Hash: cca189bf24e298f3c3f5f843ff18dfce8c007eed8233e52d0e6dd7f92c32a2bf
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[38 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_non_spacing_mark.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_non_spacing_mark.h
+Hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_other_neutral.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_other_neutral.h
+Hash: 1e8e84691fd416f70f94e14f52604d742feb401a9e83a8f82c5c2610488e4849
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[31 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_pdf.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_pdf.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_segment_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_segment_separator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_bidi_whitespace.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_bidi_whitespace.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/pr_byname.c
+Hash: d40e7939956111bd30348da1dac41960fd3fdc6cf6f680cb8573e79ccbedc970
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/pr_byname.gperf
+Hash: b16f7907c490b5f7fb2747f5b6b19bd7f6792f0f901474152f7c7fc7b95b151c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#struct named_property { const char *name; uc_property_t property; };
+#%struct-type
+#%language=ANSI-C
+#%define hash-function-name properties_hash
+#%define lookup-function-name uc_property_lookup
+#%7bit
+#%readonly-tables
+#%global-table
+#%define word-array-name properties
+#%%
+#white_space, { &uc_is_property_white_space }
+#alphabetic, { &uc_is_property_alphabetic }
+#other_alphabetic, { &uc_is_property_other_alphabetic }
+#not_a_character, { &uc_is_property_not_a_character }
+#default_ignorable_code_point, { &uc_is_property_default_ignorable_code_point }
+
+File: ./lib/unictype/pr_combining.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_combining.h
+Hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+
+File: ./lib/unictype/pr_composite.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_composite.h
+Hash: c768605f7580ce16b1f809ff6581158ff3026e0f7e626da4b880421c26f3f758
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[23 << 4];
+#  }
+
+File: ./lib/unictype/pr_currency_symbol.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_currency_symbol.h
+Hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+
+File: ./lib/unictype/pr_dash.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_dash.h
+Hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+
+File: ./lib/unictype/pr_decimal_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_decimal_digit.h
+Hash: d43559860ba0321bc4126988b80b371e40fefd13543804b8cf1e2f323c2e6757
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[17 << 4];
+#  }
+
+File: ./lib/unictype/pr_default_ignorable_code_point.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_default_ignorable_code_point.h
+Hash: 10c6b0ae007cf9d8f016b4a35adc99a18c9253e20cb8212c2920cf601eee37fc
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[10 << 4];
+#  }
+
+File: ./lib/unictype/pr_deprecated.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_deprecated.h
+Hash: eaf7422b8873ab174df241ef321d8b1048a085432d4f6eef3b7e0549335dd9a8
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[4 << 4];
+#  }
+
+File: ./lib/unictype/pr_diacritic.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_diacritic.h
+Hash: c22e31f490d3c3010b02a8bd72e1f9d47cdcb168d70d30b805d732b343b511aa
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[21 << 4];
+#  }
+
+File: ./lib/unictype/pr_extender.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_extender.h
+Hash: 7454c1a8c7e88851161788171e398142fc47d8bd1c23e62960fa7d9c0c991b33
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[10 << 4];
+#  }
+
+File: ./lib/unictype/pr_format_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_format_control.h
+Hash: f060d73220f70a9073c426b53a1c1b77d83d62d53b2c20c8ed16a37dbec4466e
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/pr_grapheme_base.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_grapheme_base.h
+Hash: 61aa89df11fbca4b079e004f95edb176863f5f5bda22579d93489404b0f9a3bb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[51 << 4];
+#  }
+
+File: ./lib/unictype/pr_grapheme_extend.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_grapheme_extend.h
+Hash: 997161a202d900ca245870a6e8af39250b1ee6ff3bb2de78976233cc8687ac29
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[26 << 4];
+#  }
+
+File: ./lib/unictype/pr_grapheme_link.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_grapheme_link.h
+Hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+
+File: ./lib/unictype/pr_hex_digit.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_hex_digit.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/pr_hyphen.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_hyphen.h
+Hash: 1cfda6a60e4fbb2baa92f4c06e315f40f4b685e0d1330afe5788de693a79afdb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+
+File: ./lib/unictype/pr_id_continue.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_id_continue.h
+Hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[45 << 4];
+#  }
+
+File: ./lib/unictype/pr_id_start.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_id_start.h
+Hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[42 << 4];
+#  }
+
+File: ./lib/unictype/pr_ideographic.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_ideographic.h
+Hash: 91d9bdf96ea6ddc4acbc5e4dba0610a5f9dd7cf5121431e1d34dafbe7e715f36
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+
+File: ./lib/unictype/pr_ids_binary_operator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_ids_binary_operator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_ids_trinary_operator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_ids_trinary_operator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_ignorable_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_ignorable_control.h
+Hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+
+File: ./lib/unictype/pr_iso_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_iso_control.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_join_control.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_join_control.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_left_of_pair.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_left_of_pair.h
+Hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+
+File: ./lib/unictype/pr_line_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_line_separator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_logical_order_exception.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_logical_order_exception.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_lowercase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_lowercase.h
+Hash: c49d818a753284b69b8292112ec7829b4973d7c33cabb0b264bc3eb7193f2e2a
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[14 << 4];
+#  }
+
+File: ./lib/unictype/pr_math.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_math.h
+Hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[13 << 4];
+#  }
+
+File: ./lib/unictype/pr_non_break.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_non_break.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/pr_not_a_character.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_not_a_character.h
+Hash: 69c1881b0d0172f2bd222a8d49636e2525f8c53af810fa281b7bf91d2cfaef79
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/pr_numeric.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_numeric.h
+Hash: e82cebb512f6ebca3baf39cf0cfb1d65899d1000520acb30b4c4c52fef800dba
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[32 << 4];
+#  }
+
+File: ./lib/unictype/pr_other_alphabetic.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_other_alphabetic.h
+Hash: 6eed9d08b80ef5850bc90bf4ec966d5e32a1f13697b484b978c1984ba200e200
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[19 << 4];
+#  }
+
+File: ./lib/unictype/pr_other_default_ignorable_code_point.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_other_default_ignorable_code_point.h
+Hash: 670e3738c51a7b91634167670f9f9f7d24237d3bc2d1def297357bed948de48e
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+
+File: ./lib/unictype/pr_other_grapheme_extend.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_other_grapheme_extend.h
+Hash: 9aa2474131882b3c150f9bd76ef13f46fcac63b97810c8540bc226612fd6cff7
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+
+File: ./lib/unictype/pr_other_id_continue.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_other_id_continue.h
+Hash: 68dddcca5a9cf7a98b19f1dbcf36daedc23cbb189126ba3d560fc72cadddf7e1
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+
+File: ./lib/unictype/pr_other_id_start.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_other_id_start.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/pr_other_lowercase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_other_lowercase.h
+Hash: d5edc016b278de0f7e45c4b97282e69eeaa7e2dcf8ccdf80305e0631a2265331
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[6 << 4];
+#  }
+
+File: ./lib/unictype/pr_other_math.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_other_math.h
+Hash: 29e60ffb17e0d28d6faf0dabcb729b97f9ea2640083c733e9d5bb80550af024d
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[10 << 4];
+#  }
+
+File: ./lib/unictype/pr_other_uppercase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_other_uppercase.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/pr_paired_punctuation.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_paired_punctuation.h
+Hash: ebe02ad17a4e4371c42838e5563c2d78367ad4ea35d50417263a80cfb64bde01
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[8 << 4];
+#  }
+
+File: ./lib/unictype/pr_paragraph_separator.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_paragraph_separator.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_pattern_syntax.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_pattern_syntax.h
+Hash: c5b3fc81b92ffa1bd250b0226c276b501cd08b86539c80bcdd090d0968df56bc
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+
+File: ./lib/unictype/pr_pattern_white_space.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_pattern_white_space.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/pr_private_use.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_private_use.h
+Hash: b579ae087c5f5d39920557ccb10ed9e3e85c9a37d1579f40c7e51b7442503680
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[17];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+
+File: ./lib/unictype/pr_punctuation.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_punctuation.h
+Hash: 879fa687217ae7978e17cdb24937d63ed1b30c34acca5d08c249fb2aa2bec067
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[30 << 4];
+#  }
+
+File: ./lib/unictype/pr_quotation_mark.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_quotation_mark.h
+Hash: b70da0081e6b42dc766f001cbfa62dec20eeb862ab59032c685a318f3eacc04c
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[4 << 4];
+#  }
+
+File: ./lib/unictype/pr_radical.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_radical.h
+Hash: 4132f65926eca2ec6bed0a2c3363444a4afb01546f214470cc8a21c8f803d4e2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/pr_sentence_terminal.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_sentence_terminal.h
+Hash: ba2398b9115f8b18f76d9aacaa96041ae918a63b2834f16d66e586276b3b6afd
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[17 << 4];
+#  }
+
+File: ./lib/unictype/pr_soft_dotted.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_soft_dotted.h
+Hash: e3be529d661a64a49d7bbf83e3193bc6364b0dc4099adf02db4ea3c0a48fe4a0
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[9 << 4];
+#  }
+
+File: ./lib/unictype/pr_space.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_space.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/pr_terminal_punctuation.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_terminal_punctuation.h
+Hash: 8a1e71d67eab269ce9dc3e2893389f951c1c2a7c64c1f722df6206f210ee662c
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[22 << 4];
+#  }
+
+File: ./lib/unictype/pr_test.c
+Hash: 1f771b18097da3eb006ae20cb5d9a4088eae2d181a611500ba400e2d8ec2df5d
+License: LGPL-3+ 
+Copyright: 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_titlecase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_titlecase.h
+Hash: e88a368992dc725f22bce97fa9d12c447f6656c5436fb5332132fbd66b7b60cb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[2 << 4];
+#  }
+
+File: ./lib/unictype/pr_unassigned_code_value.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_unassigned_code_value.h
+Hash: d60cbdaeaf6f4a9135cbd2ec2066e26df90bf74818e2fb55771b0ea03d148c4a
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[5 << 7];
+#    /*unsigned*/ int level3[51 << 4];
+#  }
+
+File: ./lib/unictype/pr_unified_ideograph.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_unified_ideograph.h
+Hash: 4429500f5e5676e777499ce11cef619f91b5e880a9dabd1669bca41d0718d5f8
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/pr_uppercase.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_uppercase.h
+Hash: e4feff12910a49ce0b6cd9068dce1a962abda72e0c58d2fb666992532bea1c3b
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[2];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[13 << 4];
+#  }
+
+File: ./lib/unictype/pr_variation_selector.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_variation_selector.h
+Hash: abe47e0d33a6fde0c278a443c6255038d6cea6574c38f56dd5d7c1a4fd4a91ec
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[2 << 7];
+#    /*unsigned*/ int level3[3 << 4];
+#  }
+
+File: ./lib/unictype/pr_white_space.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_white_space.h
+Hash: 59925454796f8c0bd7033db35093d9df46d2762cb6bc5c963188542f562f3cdf
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[5 << 4];
+#  }
+
+File: ./lib/unictype/pr_xid_continue.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_xid_continue.h
+Hash: 01007ffcb3d967be8893ede4c08a883363a5d6c8c763986dc52d3ebeaa9c9960
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[4 << 7];
+#    /*unsigned*/ int level3[45 << 4];
+#  }
+
+File: ./lib/unictype/pr_xid_start.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_xid_start.h
+Hash: f3e6304d698b166c87864af92aa1c1f33d8583f47df62f0ad6978bcd04f20d66
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[3];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[42 << 4];
+#  }
+
+File: ./lib/unictype/pr_zero_width.c
+Hash: 224bd19d21daefee2048dbaa56e285ebea57aeb00fdb627ac1f37041b6a3969a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Properties of Unicode characters.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unictype/pr_zero_width.h
+Hash: 4e8491a63822621864c4f7db52ace106cacabe967ff176a405fbec74caced893
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[15];
+#    short level2[3 << 7];
+#    /*unsigned*/ int level3[7 << 4];
+#  }
+
+File: ./lib/unictype/scripts.c
+Hash: 3fcb47fc8c55790740bf21cdfc85cacb89c92805b7a0692b5d331d04839c7431
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Scripts of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/scripts.h
+Hash: 909da48adc878aafd8b39b3ea48765c54e60373f9511c2132c27bb2108fccafd
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Unicode scripts.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#static const uc_interval_t script_common_intervals[] =
+#{
+#  { 0x0000, 1, 0 }, { 0x0040, 0, 1 },
+#  { 0x005B, 1, 0 }, { 0x0060, 0, 1 },
+#  { 0x007B, 1, 0 }, { 0x00A9, 0, 1 },
+#  { 0x00AB, 1, 0 }, { 0x00B9, 0, 1 },
+#  { 0x00BB, 1, 0 }, { 0x00BF, 0, 1 },
+#  { 0x00D7, 1, 1 },
+#  { 0x00F7, 1, 1 },
+#  { 0x02B9, 1, 0 }, { 0x02DF, 0, 1 },
+#  { 0x02E5, 1, 0 }, { 0x02FF, 0, 1 },
+#  { 0x0374, 1, 1 },
+
+File: ./lib/unictype/scripts_byname.gperf
+Hash: 2957f52be908b9f9a16d6385681ed2513485321c9f2d54c8d365790acb1236e3
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Unicode scripts.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#struct named_script { const char *name; unsigned int index; };
+#%struct-type
+#%language=ANSI-C
+#%define hash-function-name scripts_hash
+#%define lookup-function-name uc_script_lookup
+#%readonly-tables
+#%global-table
+#%define word-array-name script_names
+#%%
+#Common, 0
+#Latin, 1
+#Greek, 2
+
+File: ./lib/unictype/sy_c_ident.c
+Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Syntax properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/sy_c_ident.h
+Hash: 9a50ec74eda18bc573df963aa5bae900789cff2ac4b9193674828efc5b802f69
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Language syntax properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define identsyntax_header_0 12
+##define identsyntax_header_1 14
+##define identsyntax_header_2 7
+##define identsyntax_header_3 31
+##define identsyntax_header_4 127
+#static const
+#struct
+#  {
+#    int level1[14];
+#    short level2[9 << 5];
+#    unsigned short level3[39 * 16];
+#  }
+
+File: ./lib/unictype/sy_c_whitespace.c
+Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Syntax properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/sy_c_whitespace.h
+Hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Language syntax properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unictype/sy_java_ident.c
+Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Syntax properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/sy_java_ident.h
+Hash: 0f004bb9bffa1f06d3a475612c9cd4f5f5df347a81109f243602e9360583f592
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Language syntax properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define identsyntax_header_0 12
+##define identsyntax_header_1 225
+##define identsyntax_header_2 7
+##define identsyntax_header_3 31
+##define identsyntax_header_4 127
+#static const
+#struct
+#  {
+#    int level1[225];
+#    short level2[16 << 5];
+#    unsigned short level3[113 * 16];
+#  }
+
+File: ./lib/unictype/sy_java_whitespace.c
+Hash: 2ad509ec6a049b5960e4ee705e7f70ea7197735e9f308e39415274d143609733
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Syntax properties of Unicode characters.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unictype/sy_java_whitespace.h
+Hash: 79e76e7358bdd836e078ebcac8f6804632e8aa3310e67d5be9d002ccd3648cf3
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Language syntax properties of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+##define header_0 16
+##define header_2 9
+##define header_3 127
+##define header_4 15
+#static const
+#struct
+#  {
+#    int header[1];
+#    int level1[1];
+#    short level2[1 << 7];
+#    /*unsigned*/ int level3[1 << 4];
+#  }
+
+File: ./lib/unilbrk.h
+Hash: 2f408b704e7b02de9b9a8224c0bf0b93bedcb50b13ea7f824895f85f9c28eaee
+License: LGPL-3+ 
+Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of Unicode strings.
+#   Copyright (C) 2001-2003, 2005-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/lbrkprop1.h
+Hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
+License: GPL-3+ GENERATED FILE
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Line breaking properties of Unicode characters.  */
+#/* Generated automatically by gen-lbrk for Unicode 5.1.0.  */
+#
+#/* Copyright (C) 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/unilbrk/lbrkprop2.h
+Hash: bd8a23b4d05aa7a0fb9c7430ea6863b7580e8f9e7126160e431a0622eec72da8
+License: GPL-3+ GENERATED FILE
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Line breaking properties of Unicode characters.  */
+#/* Generated automatically by gen-lbrk for Unicode 5.1.0.  */
+#
+#/* Copyright (C) 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/unilbrk/lbrktables.c
+Hash: 570dd537a8aad86cc9f03b3a187de16b187fa22f7de51a4c78b10bd8513b5140
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking auxiliary tables.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/lbrktables.h
+Hash: cc2a66b6d3c60a6a4bc00cc2cacead4543035a5c9a1c2c1dcb6310525ad50d3f
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking auxiliary tables.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/u16-possible-linebreaks.c
+Hash: dcb291f946f60f8ce400b0cf6612abce1f55d7525d62c20de92e371964fa2a25
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of UTF-16 strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/u16-width-linebreaks.c
+Hash: 858930664890823e81d8b0e0713d7edc3770a87b4a54c5ea4bffc97ae40cf765
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of UTF-16 strings.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/u32-possible-linebreaks.c
+Hash: e5d81325f7140b2d7980081c9c1b1bfe027d481b42d41b84fa859e689614604b
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of UTF-32 strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/u32-width-linebreaks.c
+Hash: cb3f972142bc182e67f148e4aee254b9d86e402a8c980d6aced66aa70785fdea
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of UTF-32 strings.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/u8-possible-linebreaks.c
+Hash: e914e04b1abf7f5737295a9365605c4b321978c304d4f779fcbbb02c5ff1558d
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of UTF-8 strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/u8-width-linebreaks.c
+Hash: 8250277a0f84de0b4416a1e30345251e466e2245ba64e63269d38d0ec4abdf7c
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of UTF-8 strings.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/ulc-common.c
+Hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
+License: LGPL-3+ 
+Copyright: || c_isspace )) / 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking auxiliary functions.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/ulc-common.h
+Hash: d2a8ea77a96bdd375cbe24c79326436c511bedbe630c67132a1844c4314b562d
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking auxiliary functions.
+#   Copyright (C) 2001-2003, 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/ulc-possible-linebreaks.c
+Hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unilbrk/ulc-width-linebreaks.c
+Hash: 4f633da682dfdc64de1fba3344f3d2b46ca7ba02c6cf6a578849b6a205f5cd75
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Line breaking of strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/uniname.h
+Hash: 271fe75b63886d9af9730fc72bcecc8bcf121a97946be427032f4ed46d2d2711
+License: LGPL-3+ 
+Copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Association between Unicode characters and their names.
+#   Copyright (C) 2000-2002, 2005, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniname/gen-uninames.lisp
+Hash: d28d41fa6a3eef2669af73aaeb8ce7e2479501eff9b820f3649344dceec287b2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/usr/local/bin/clisp -C
+#
+#;;; Creation of gnulib's uninames.h from the UnicodeData.txt table.
+#;;; Bruno Haible 2000-12-28
+#
+#(defparameter add-comments nil)
+#
+#(defstruct unicode-char
+#  (code nil :type integer)
+#  (name nil :type string)
+#  word-indices
+#  word-indices-index
+#)
+#
+#(defstruct word-list
+
+File: ./lib/uniname/uniname.c
+Hash: 96556ea7962ce3b99d5e5559021018733e37096b261e513193d63a30e5ee4b2d
+License: LGPL-3+ 
+Copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Association between Unicode characters and their names.
+#   Copyright (C) 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniname/uninames.h
+Hash: 5cc016a12ea5182eb761959d10e5191aca3a76fa8980e231f2449ac38c1ea1dc
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/*
+# * uninames.h
+# *
+# * Unicode character name table.
+# * Generated automatically by the gen-uninames utility.
+# */
+#
+#static const char unicode_name_words[39544] = {
+#  'A',
+#  'B',
+#  'C',
+#  'D',
+#  'E',
+#  'F',
+
+File: ./lib/uninorm.h
+Hash: 811b4d2f8b8f36161342c743db5c5509ac8b0043c13551f7a52704c707f135c4
+License: LGPL-3+ 
+Copyright: 2001-2002, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization forms (composition and decomposition) of Unicode strings.
+#   Copyright (C) 2001-2002, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/canonical-decomposition.c
+Hash: 87f0bcf9df0580072c9e56c9b085df3d8e09770d61475e329c904bc2b049e5cb
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Canonical decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/compat-decomposition.c
+Hash: be35616c47cb657687ee31b508418eb405d8e7175ea0c7ebda9c83d292ee0f76
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compatibility decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/composition-table.gperf
+Hash: b4aa8605984c2a64f166ac2137a7436cbcf969c067088baf3efc3099cd610685
+License: GPL-3+ GENERATED FILE
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Canonical composition of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables for Unicode 5.1.0.  */
+#
+#/* Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/uninorm/composition.c
+Hash: b056563f0bb123c409b7ebc8c15d83ff328c9f985c828e088794b6779686593e
+License: LGPL-3+ 
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Canonical composition of Unicode characters.
+#   Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/decompose-internal.c
+Hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposition of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/decompose-internal.h
+Hash: 23b90fea67f92caaf3084c382a1c48df4f7091f5c26617125f6cc4ded25b8791
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposition of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/decomposing-form.c
+Hash: 34162fc9b81dddd60e3d1768a87407a9c58c7a4246f8131990655af950eb8fa6
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposing variant of a normalization form.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/decomposition-table.c
+Hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/decomposition-table.h
+Hash: 7e5319f3d15b429b3ca981cb77d13a14e63eb6d91c87b6896bcb4b261f212864
+License: LGPL-3+ 
+Copyright: 2001-2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposition of Unicode characters.
+#   Copyright (C) 2001-2003, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/decomposition-table1.h
+Hash: 295f82a865c8d38feab20d2d0ef7c344f2af45d2a8a6e47aaaebfccfbb53cc24
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Decomposition of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables.c for Unicode 5.1.0.  */
+#
+#extern const unsigned char gl_uninorm_decomp_chars_table[];
+#
+##define decomp_header_0 10
+##define decomp_header_1 191
+##define decomp_header_2 5
+##define decomp_header_3 31
+##define decomp_header_4 31
+#
+#typedef struct
+#  {
+#    int level1[191];
+
+File: ./lib/uninorm/decomposition-table2.h
+Hash: b855a154049268ffe6cdfea458537883ba134e854cf00d17be5ab3b2b3559f4d
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Decomposition of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables.c for Unicode 5.1.0.  */
+#
+#const unsigned char gl_uninorm_decomp_chars_table[] =
+#{
+#  0x08, 0x00, 0x20, 0xC0, 0x00, 0x20, 0x00, 0x03, 0x08, 0x20, 0x00, 0x61,
+#  0xC0, 0x00, 0x20, 0x00, 0x03, 0x04, 0x20, 0x00, 0x32, 0x20, 0x00, 0x33,
+#  0xC0, 0x00, 0x20, 0x00, 0x03, 0x01, 0x40, 0x03, 0xBC, 0xC0, 0x00, 0x20,
+#  0x00, 0x03, 0x27, 0x20, 0x00, 0x31, 0x20, 0x00, 0x6F, 0xBC, 0x00, 0x31,
+#  0x80, 0x20, 0x44, 0x00, 0x00, 0x34, 0xBC, 0x00, 0x31, 0x80, 0x20, 0x44,
+#  0x00, 0x00, 0x32, 0xBC, 0x00, 0x33, 0x80, 0x20, 0x44, 0x00, 0x00, 0x34,
+#  0x80, 0x00, 0x41, 0x00, 0x03, 0x00, 0x80, 0x00, 0x41, 0x00, 0x03, 0x01,
+#  0x80, 0x00, 0x41, 0x00, 0x03, 0x02, 0x80, 0x00, 0x41, 0x00, 0x03, 0x03,
+#  0x80, 0x00, 0x41, 0x00, 0x03, 0x08, 0x80, 0x00, 0x41, 0x00, 0x03, 0x0A,
+
+File: ./lib/uninorm/decomposition.c
+Hash: 905122926e56bdb3d0dec7c4ffe77a363956fd4278c5e99d225338d341d82a48
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/nfc.c
+Hash: afe74037d702264dada2f09f62b6bcd009116cbade5b92da86a092ec363709fa
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Unicode Normalization Form C.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/nfd.c
+Hash: 2c52442b51c53cae04d69af55fc465368ef6cdea78236bbd9e4ead35024be8aa
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Unicode Normalization Form D.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/nfkc.c
+Hash: 7e203b8f3ad1ca16886b641a503c7ef40c63839f2c5013b377ee16191eda890c
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Unicode Normalization Form KC.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/nfkd.c
+Hash: 96fca2de089de494f5189cc1b6baba83a22050a2f73680251f883dbf4f29c4c6
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Unicode Normalization Form KD.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/normalize-internal.h
+Hash: dc3a239e87668655e6ffadf04e4e625525bb77f3159f49970bfe1fdd1fb742ec
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u-normalize-internal.h
+Hash: 8948c5a1ae3c902f7399c23c670da87e46b5538a4e44cea25fe6092fc69e57f3
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposition and composition of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u-normcmp.h
+Hash: a38204b457c2da606da593fbe185d2697622fc39dfa9938580cfc4d21f8fd9d3
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization insensitive comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u-normcoll.h
+Hash: d15873e9d0f8361722b856cc6b5a4b141d8c153651a1cb1694c28c0be3fdf15e
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, normalization insensitive comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u-normxfrm.h
+Hash: 2995d01c87bd38694e454d2aa7acd9440bb01ef2fe3775c2ddddfd9a2055d354
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u16-normalize.c
+Hash: c4417f93ba857c0341ad56a963370ce1ac8690dc8d56ea8704d42bc0f4cd57d4
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u16-normcmp.c
+Hash: 70b5b38d00121704a5bdc8dec6c3510938a1ee773296c68bdf4770a9d3ad3ba2
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u16-normcoll.c
+Hash: b2a6a3dde9a5d277817a7bdf3a9da9cba9c5af84d43f02b8de59972c0efc6e06
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u16-normxfrm.c
+Hash: 6a535a6e2b2866d4d2f674604fdec7c48cd37a7d26d1b28aa56b1b55cff64d0c
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u32-normalize.c
+Hash: 21948dd01001327d66a37ac6a8120566d704ef23efaf3a32134244e0e8b297db
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u32-normcmp.c
+Hash: 3aee963a47e892f820670cbdde9841ad7809e3cb739fe6fe4a4eb82b337fe7aa
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u32-normcoll.c
+Hash: e05b8dc2bc7995766bf46052c4718b74c0ffcae0cac15dd8135777dd379c34f4
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u32-normxfrm.c
+Hash: 6d8ff48fb188d7d15ae549430423f962ca47de75f2e3fa27d0c65099e653e5d8
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u8-normalize.c
+Hash: b46220839acddb8068a99f781da004eeb988271397e318e6077f00e1b4d9eb99
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u8-normcmp.c
+Hash: 88af27918ea6a884ebb5ddc98c75a2f01462cc627d489ca3a0387b2337cfff01
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u8-normcoll.c
+Hash: 781e09bd1453b3872c591e97c19b1855dc70cee271fded19eef00469baede34f
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent, normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/u8-normxfrm.c
+Hash: d59367c5c15d6f235b1e68265d3e3a57fef210ab8796ed36a04f40d08f302e3f
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale dependent transformation for comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uninorm/uninorm-filter.c
+Hash: fde778aae106254be586328ae3ecb4ee2843b387fb9bd68bd6e8ebf8b7dfe8f3
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Stream-based normalization of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unistd--.h
+Hash: adf5345fbcb95c5bb36d54daf54a986985f38945478711e734fb90742f8a5262
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Like unistd.h, but redefine some names to avoid glitches.
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/unistd-safer.h
+Hash: f1b41b4d684751d4d0fd03bb4855a4ab9c168f72e25dbcab58fa5e7cf7edebf9
+License: GPL-3+ 
+Copyright: 2001, 2003, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Invoke unistd-like functions, but avoid some glitches.
+#
+#   Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/unistd.in.h
+Hash: a6926ba851d67cbfe9bc3f8f5c0a100992084e9d90ff1e51b25bd373b976d588
+License: GPL 
+Copyright: 2003-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substitute for and wrapper around <unistd.h>.
+#   Copyright (C) 2003-2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/unistdio.h
+Hash: 670451fad5381e7d81619f0268d7dcac2693a959612603a4fd77a67f102b98eb
+License: LGPL-3+ 
+Copyright: 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Elementary Unicode string functions.
+#   Copyright (C) 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-asnprintf.h
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-asprintf.h
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-printf-args.c
+Hash: a27d294cbfad2286e039e9816ee9acb269f976fcc6f6c6f13a22d74056689600
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposed printf argument list.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-printf-args.h
+Hash: a6fe38b9879275d7c142bc95e0b7e4caed91ccce4714c11749fdd64ecf990bf5
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Decomposed printf argument list.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-printf-parse.h
+Hash: 429fb79a4fedd4e52cd53cd4e50638cd94893eecb1b7a62844d082be64efe0dd
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Parse printf format string.
+#   Copyright (C) 1999, 2002, 2005, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-snprintf.h
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-sprintf.h
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-vasprintf.h
+Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-vsnprintf.h
+Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u-vsprintf.h
+Hash: b9c41c9ac66b01a78b136a19a034422213fc60ef758ee941be6ba767a9116898
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-printf-parse.c
+Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-u16-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-u16-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-u16-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-u16-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-u16-vasnprintf.c
+Hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-u16-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-u16-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-u16-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-vasnprintf.c
+Hash: da31dfeafbc49adf6e8bca735abf8a4fc40ef3fbf2b7b29fdc699e3afcc3fa4a
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u16-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-printf-parse.c
+Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-u32-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-u32-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-u32-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-u32-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-u32-vasnprintf.c
+Hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-u32-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-u32-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-u32-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-vasnprintf.c
+Hash: c8fd34cc8240d960449f5dcfccbdb12a0936ec8fa2e8f39cb6d7bcb4b8ce045a
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u32-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-printf-parse.c
+Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-u8-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-u8-asprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-u8-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-u8-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-u8-vasnprintf.c
+Hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to UTF-8 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-u8-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-u8-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-u8-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-vasnprintf.c
+Hash: 19c0193ed81a747256b7f27ee90ea832f582782bd3a43216150c3e742523821d
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to UTF-8 strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/u8-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-asnprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-asprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-fprintf.c
+Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+License: GPL-3+ 
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to a stream.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-printf-parse.c
+Hash: 7b54d6c5b67508c72e37fe050b2da9d818b6856ddb1082f2ca3d4fd389d08d5d
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-snprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-sprintf.c
+Hash: 0ab2525eca7a9dd6d9417c05bf606a50e1313cb6e8a2c4453c3ddc36ec0dbaf8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-vasnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-vasprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-vfprintf.c
+Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+License: GPL-3+ 
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to a stream.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-vsnprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistdio/ulc-vsprintf.c
+Hash: 948a7862dcf995e03d9b3011cd0db1379c17fb7395101b47a66fbe21208ca0ba
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistr.h
+Hash: 13f5e38dabdfbceb3b445638bc8e99064f239e14e73d4e488187a92b7181157a
+License: LGPL-3+ 
+Copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Elementary Unicode string functions.
+#   Copyright (C) 2001-2002, 2005-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/unistr/u-cmp2.h
+Hash: 353c54ecf4321b660412e19cf505114ea8af7b940afc9fb4f817f32c73fe68dc
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare pieces of UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unistr/u-cpy-alloc.h
+Hash: 33a2cf4d1751fb8b89c16c2e464679a25254a1da5aa823af5026981e3f9f04aa
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-cpy.h
+Hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-endswith.h
+Hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-move.h
+Hash: 7fc06f2c907b5bb91e873de20f7b59e18a79b1b4eae0f15f234c557812a6702f
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-set.h
+Hash: ad540bb3c29abee866d49045d7549895c69e88f9c7e421fc288f06e683371efe
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Fill UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-startswith.h
+Hash: 08d8150ff19b29a61ef4cdbb505c4a35456571e3a7f7d7b808897da1e7d58e1a
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-stpcpy.h
+Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-stpncpy.h
+Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strcat.h
+Hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strcoll.h
+Hash: edd8e7309806a8c6748205b082becf74015ca7a86a99f4abfe90fd29cafc9bfe
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-8/UTF-16/UTF-32 strings using the collation rules of the current
+#   locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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.
+
+File: ./lib/unistr/u-strcpy.h
+Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strcspn.h
+Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strdup.h
+Hash: 29b7da996418f450dc43ca85a629a13e9f41b4e0759a3d26dee1f0f570cd1fdb
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strlen.h
+Hash: 5ab8a4c4f7df43b1ab702777309a99e463464ecbb02813a12c642b680564a3eb
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine length of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strncat.h
+Hash: a961e1649e2718572131466575d22ae66be83b02a48dfecd251cdd37469ae1ca
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strncpy.h
+Hash: a0ff79e5cb42488d87ec1cca56029036d2e50f6b98af62c13a3b56fbfab68993
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strnlen.h
+Hash: c2287c09b8102ca5941250c212c3065bc5f0310d5047a6d4c540c3d8bd55c71f
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine bounded length of UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strpbrk.h
+Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strspn.h
+Hash: d7ab7b4ccb82a0ef40aef3c8e98bfd365981f0f65c10a6a776798d574cd8c718
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strstr.h
+Hash: c6fe6020affec0baee70c698a6c983e4924b5b578266c453a7aaf55cc23e2a1c
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u-strtok.h
+Hash: 124e2d5c65832f8f2b09cb250453ac36538f42bc04e58097b83683954a9fd220
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Tokenize UTF-8/UTF-16/UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-check.c
+Hash: c5ae8c4ac9aa94462744b11f56b7d108a26665c45bfb27222547583236670660
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Check UTF-16 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-chr.c
+Hash: e3329f60b17e2dfcf738c0ab4d315772c23c15c736a185ef7c9dc9896095d74b
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in piece of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-cmp.c
+Hash: a178e2ef622d6775701cd298960a8dccafa331ca0d80c79fcaa4de012bd5b28f
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare pieces of UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-cmp2.c
+Hash: 2cb5dfa391e0c72cda11f0fb2350422ebde0432a2abf811e5941c06223b8cb67
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare pieces of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unistr/u16-cpy-alloc.c
+Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-cpy.c
+Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-endswith.c
+Hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-16 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-mblen.c
+Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-mbsnlen.c
+Hash: 1cdbe9c2450930156e5c3b60065663d3280f3a42a62725b5208c39ced2b34318
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Count characters in UTF-16 string.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unistr/u16-mbtouc-aux.c
+Hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion UTF-16 to UCS-4.
+#   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u16-mbtouc-unsafe-aux.c
+Hash: ec7ce47d063e86605efa45e0be8f01f0efabf73bb2603d8aa48e719bec606285
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion UTF-16 to UCS-4.
+#   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u16-mbtouc-unsafe.c
+Hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
+License: LGPL-3+ 
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u16-mbtouc.c
+Hash: 4ada88e2e5532e06003f9aa9a81856bbf9c4dd137acc883037b6f17acccdb915
+License: LGPL-3+ 
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u16-mbtoucr.c
+Hash: 2b36b04649b3581ad0cc9161ab1e4715a48625e133a0ec6f539ed6e91dfcf628
+License: LGPL-3+ 
+Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-16 string, returning an error code.
+#   Copyright (C) 1999-2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u16-move.c
+Hash: ddc6d0b1c24fae8bf8c5e118e688c8ee185839613af6bf604789671da44e8da1
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-next.c
+Hash: bac4e802fa60437f5741d1488d912d2d731d12795334311793de72c042b1614f
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterate over next character in UTF-16 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-prev.c
+Hash: 966105ec4cf71caa305c1b9bebab2829b77a48e5003424e4c013eeea374f9328
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterate over previous character in UTF-16 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-set.c
+Hash: c5bb09f11189403180a6576abf7d68fb059968f7f39dc4847bc991ac3223f6aa
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Fill UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-startswith.c
+Hash: 8e8522dc6c83ea7988118d8dd2df8a2a417fd9bad4b69071207f0be3076949fe
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-16 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-stpcpy.c
+Hash: 6a2cb6d1b10aa92814ff9ed6e973f7c9a0fa2bc7f1465286ac1e39590cb45b73
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-stpncpy.c
+Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strcat.c
+Hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strchr.c
+Hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strcmp.c
+Hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strcoll.c
+Hash: f617d544f7c4374c658b004a34b75f439c8492b5d53e032c89fef04f11982f8a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-16 strings using the collation rules of the current locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unistr/u16-strcpy.c
+Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strcspn.c
+Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strdup.c
+Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strlen.c
+Hash: a9ceaf1d9ede8791c7f986d76c2bba8ed75106e4a6bf10665a66b95683bac6f8
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine length of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strmblen.c
+Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strmbtouc.c
+Hash: de7667c40cd91ab0145919cec2f83745f20824a5899b8c24c09ae686f553c090
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-16 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strncat.c
+Hash: ee8455d2fd227daaeca87f86710de28d391034f8e6331427bb5ef5bc9b86d0c0
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strncmp.c
+Hash: ec30e9d9c6efbe512acb3badb2b617fe005ed05256518b748995fa4ac5bf88dd
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strncpy.c
+Hash: cf912ed968ec9acb3b1c9068f162b2b14ffb7260de2894c47fc2fe5ea0bbc9dc
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strnlen.c
+Hash: 4eb212ed57eb468178f80781c20209a087129a621a86543b3c0ec39b4ad5d8bd
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine bounded length of UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strpbrk.c
+Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strrchr.c
+Hash: 73c7bd1cf6d36c624d4981ced5e9528db0c37ae465561f2f8fda198f77b19aab
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strspn.c
+Hash: 5358f40fe533920c4567b60655092a2a8fb66d4408bd18ef1b99d7040c341bb2
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strstr.c
+Hash: 63d133e15b867e7895edd2352c173567fe0d265932e367156cf3be247cb76d49
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-16 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-strtok.c
+Hash: b3612c8df3c80589505dff2b00de24316e2ec6ff9c42ea3e5d1b3d0520ca0b2b
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Tokenize UTF-16 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-to-u32.c
+Hash: c888c31db109f599e0d02beb4ef0ce5f61c56ddaa3ece94bc5b9cc4b2516c852
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert UTF-16 string to UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-to-u8.c
+Hash: 59a93e5bcafc66d68def3b14157e23f301775715a31659046cb4e692b8800674
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert UTF-16 string to UTF-8 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-uctomb-aux.c
+Hash: 02b5c6e86d0a8def7f78e1a70e0f104a3e283bb1d7a2de6223763bcde8845be7
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion UCS-4 to UTF-16.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u16-uctomb.c
+Hash: 88d0197e480ceaa71d8fc9a34aaa68463f25d20524f758f55c023108338967d8
+License: LGPL-3+ 
+Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Store a character in UTF-16 string.
+#   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-check.c
+Hash: 685489582302507fc4d2a831d903c752d9a900d2380f8bc33e8babeaf6a7637d
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Check UTF-32 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-chr.c
+Hash: 3d390e18ce2a42908d41cd6f2b9a9386775538654e35534760251a9e5528b952
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in piece of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-cmp.c
+Hash: 7c6276b59ecfdc1dd63882769b6b4ccf919c844520679d75c03d00ef01610243
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare pieces of UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-cmp2.c
+Hash: 57babbf34fd1be9100c5c49c352d468779d176c16711bf88df426bd0b0ecdeb5
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare pieces of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unistr/u32-cpy-alloc.c
+Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-cpy.c
+Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-endswith.c
+Hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-32 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-mblen.c
+Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-mbsnlen.c
+Hash: e2d35901a65cc0a9ef634e286369d131cd95c820698d2cff405423031ee4b9ec
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Count characters in UTF-32 string.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unistr/u32-mbtouc-unsafe.c
+Hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-mbtouc.c
+Hash: 90103c80e426ca3b47c9838e75b1364f3aa15f089d9f22c982748dc04f42ca71
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-mbtoucr.c
+Hash: 5f2b794282efb3b432d0c8a917dc1f4f498a1c2f89392970a62db00da6c71abb
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-32 string, returning an error code.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-move.c
+Hash: 91739f598ff44c13465e1e73edbe4e8d4040029e6656f06c5df8750268f416cd
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-next.c
+Hash: 7ba432d038ecd2515356b8e70fa519d4cdac9e76b0d6e93a8a537ef4fda17448
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterate over next character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-prev.c
+Hash: 1508e6ba9768221299556836be8fbc1d5791cc3115cf08850ac9bec8623c918c
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterate over previous character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-set.c
+Hash: 3dd041a6e485dbcd0ea0984b44bab7767b28a4665038ddf05b9955a2d6e6a596
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Fill UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-startswith.c
+Hash: 02d17f82909774642db1ea935ebe17dc8a51c0bf585db7d02f019079730d7a08
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-32 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-stpcpy.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-stpncpy.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strcat.c
+Hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strchr.c
+Hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strcmp.c
+Hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strcoll.c
+Hash: 6420d21bdaae7143502fa4278291a88e2834749b42928b0df438fbb4fc3b95a1
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-32 strings using the collation rules of the current locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unistr/u32-strcpy.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strcspn.c
+Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strdup.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strlen.c
+Hash: 050991d876a33888be18fc49d7ec4d1146ff674decd9c3b4a3f1a1f9c168e632
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine length of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strmblen.c
+Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strmbtouc.c
+Hash: f0c220ddf819c9fd4fe8f7c30d63c63df074032e45b69485d3800fd71ff45a63
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strncat.c
+Hash: 19bbd85dc2c399adad67aaa1d3e368df9f49315fc92016f6ec6c45835035a092
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strncmp.c
+Hash: bbb55fbb9de8b789436fa0f3e0383baf40e3b17e883beca469800fdfdc6ef387
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strncpy.c
+Hash: 0a8e368a16d0af79d91e55d5b73d70e15a20a93ded62f6ae40e4d4bf05a82e5d
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strnlen.c
+Hash: e1a20f548b672e6d0aa8b7954bc31b9c2157c4204b1e7346a250ab8840e7e356
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine bounded length of UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strpbrk.c
+Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strrchr.c
+Hash: 95c25e6af577104d190c6b5dc2b297f34fb260ab5e8b99f306b1ed9ee40727aa
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strspn.c
+Hash: bfa927b172fdb0f080a0400ab7dc1a070d0990f69b0a62194420bea65be6a895
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strstr.c
+Hash: 96be8a0f8ea189120bfe1f5c10629c0b840b2f2e9f64c54df9fce677f701d887
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-32 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-strtok.c
+Hash: dedd8fbb7d1265bba868dfd5099d076b6587298e050805ec6eaced0ab5faf332
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Tokenize UTF-32 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-to-u16.c
+Hash: c34e87d4172d3339a781e39d59f8fb9132c09ef980f44c2b1574bfafa685cd66
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert UTF-32 string to UTF-16 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-to-u8.c
+Hash: d5933d39852f021cbafa03fcd622fe179fbfa3d2b7160e25a2a0f9cf649b331a
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert UTF-32 string to UTF-8 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u32-uctomb.c
+Hash: 34f3faef9d257a051c8d8272922f3e20f5fa880baea40b25ba02a9256e3b74df
+License: LGPL-3+ 
+Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Store a character in UTF-32 string.
+#   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-check.c
+Hash: eac2b052e4d9e60b9eb93ae9ec997c386e730de4bf3194fca888eba17a103f37
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Check UTF-8 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-chr.c
+Hash: 42ec57a2ff9ac547a74c24b611b35ff9d2604edd08dc27f2eec1d887c295d1bd
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in piece of UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-cmp.c
+Hash: fac6baf649d3fd3670f2fd9aa97dbd2dfa67d7311eba66c76fb96874a6a6f2b9
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare pieces of UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-cmp2.c
+Hash: a93c38c1183febaf9ba16e653abf0df27e59ddad5f92762b2ba9e3f6deda64aa
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare pieces of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unistr/u8-cpy-alloc.c
+Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-cpy.c
+Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-endswith.c
+Hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-mblen.c
+Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-mbsnlen.c
+Hash: d777639cdf076ed27839f1eeaabd23eef4465185239d987ba767f2a866c300bc
+License: LGPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Count characters in UTF-8 string.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./lib/unistr/u8-mbtouc-aux.c
+Hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion UTF-8 to UCS-4.
+#   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u8-mbtouc-unsafe-aux.c
+Hash: 81219cfc4fef5264c192b8a3c045b96c4310830a26fe1a01c2456b8dd7c5c6ef
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion UTF-8 to UCS-4.
+#   Copyright (C) 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u8-mbtouc-unsafe.c
+Hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
+License: LGPL-3+ 
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u8-mbtouc.c
+Hash: 380657a8596a4df15a3de97723e4f090af40a2f13388dc3254244acfd2f7cb5e
+License: LGPL-3+ 
+Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u8-mbtoucr.c
+Hash: 7eb628bfecb6088142dbddc04daeb302c95a2a16ab2f4ce7fe96ac6515d1f822
+License: LGPL-3+ 
+Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-8 string, returning an error code.
+#   Copyright (C) 1999-2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2001.
+#
+#   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
+
+File: ./lib/unistr/u8-move.c
+Hash: fc7e284d8d0d095dd96a0a0c320e5605b82edbec1d6beb00d51999039704dd87
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy piece of UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-next.c
+Hash: 00d3e25ac3c18c5d77c1d250c8220544e99fc346a8015da6b43e3ffe5014baef
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterate over next character in UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-prev.c
+Hash: 3d57d758b00dd01225b001edc0a71b3e6a7dc55957f00b1a5bbc950ae037f281
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Iterate over previous character in UTF-8 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-set.c
+Hash: bcb3f22a0098c66883640efdd098aed40903b82c9a5d62b7d1936a805148d2a1
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Fill UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-startswith.c
+Hash: aed60baa4fdea6c1923899158d4ccf6327877b44af6f93c72bed7e74580aa095
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-stpcpy.c
+Hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-stpncpy.c
+Hash: b8d9719fd7d335e35de37a53acc0c67c6eb8cd64e5a39c3f95886daedea35e45
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strcat.c
+Hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strchr.c
+Hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strcmp.c
+Hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strcoll.c
+Hash: 9c5e8a7ef380723d07e0ad180fe59421bf9bf28e1a4d289d05263339cb4025d2
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-8 strings using the collation rules of the current locale.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/unistr/u8-strcpy.c
+Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strcspn.c
+Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strdup.c
+Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strlen.c
+Hash: 3f5efa4cf915f83bfdc9adfac2a13ca7d3c75c63c4fc993377e9dee1b36e9f13
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine length of UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strmblen.c
+Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strmbtouc.c
+Hash: feee2cbf5365e3d339d37c28a4f4036787e5480d40fd223b487c251e16502841
+License: LGPL-3+ 
+Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Look at first character in UTF-8 string.
+#   Copyright (C) 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strncat.c
+Hash: 34fa4e46d0bc51731c723690c4d8b8877be70471fea175365062a1a6a91e1651
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Concatenate UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strncmp.c
+Hash: cc21eac5ab1ebf474484b9b9da2bbe5d4233e0b70b3914ba90dd9bfcd80b4f90
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compare UTF-8 strings.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strncpy.c
+Hash: f554dd0a1524996a93d9a12920e721387f1ff1c6981d5891793a0280289c5b8e
+License: LGPL-3+ 
+Copyright: 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copy UTF-8 string.
+#   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strnlen.c
+Hash: e591a71a08b4377ef29017795f592adf1ebf56caa73d172428942ed3d8735e53
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine bounded length of UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strpbrk.c
+Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strrchr.c
+Hash: 02af1c85eaff6bcec748ddcb2a1859f706a9b730ddf3aca6095fba09af975800
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search character in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strspn.c
+Hash: c49bd0f65af992e9714b32bbd42047ea6f164c01ce22550ada5a777d99f46c39
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Search for some characters in UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strstr.c
+Hash: 62e3171131f084bb524e8e4b7b677e51dc0a4ddd7920c791e861fc6209824057
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Substring test for UTF-8 strings.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-strtok.c
+Hash: 70422453328ab4382d464bc5e573a7921b44d303c4da2e58aa0cd67c8285ba1d
+License: LGPL-3+ 
+Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Tokenize UTF-8 string.
+#   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-to-u16.c
+Hash: 7743fd5caa826417f0cc0e0da91677000cd23088c2b345a21a27aa43b0b595f1
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert UTF-8 string to UTF-16 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-to-u32.c
+Hash: 7308a76a0f28176be9098511a4dc13f5625aa399c70a8bf9993f78ddf7b319ef
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert UTF-8 string to UTF-32 string.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-uctomb-aux.c
+Hash: 44e95c47ddf3343b1c02157c12c9a0a950852563cd543850488cb21944559e11
+License: LGPL-3+ 
+Copyright: 2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Conversion UCS-4 to UTF-8.
+#   Copyright (C) 2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unistr/u8-uctomb.c
+Hash: 60d6859b731140e5420ea2e3093e3ac272522cc9685459a9eddbdf4909d79f40
+License: LGPL-3+ 
+Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Store a character in UTF-8 string.
+#   Copyright (C) 2002, 2005-2006, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unitypes.h
+Hash: 0eaaeed4ca0138967cd6fe4e6956edef837fa8461248425e893e1fc2fa0cbfee
+License: LGPL-3+ 
+Copyright: 2002, 2005-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Elementary types for the GNU UniString library.
+#   Copyright (C) 2002, 2005-2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniwbrk.h
+Hash: 43906fff693dfdb439dee0927665138c03553941b19dec5efbca942a96aaa603
+License: LGPL-3+ 
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word breaks in Unicode strings.
+#   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwbrk/u-wordbreaks.h
+Hash: fc09df77911b0e107a808ffff910b9e323519e9c45a98f3c013cf11a38865d20
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word breaks in UTF-8/UTF-16/UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwbrk/u16-wordbreaks.c
+Hash: b5dea0d0ecc05dcf54c0de70762cc9cde64ffa38e40aa9ddad0b8a84d01d2c5e
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word breaks in UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwbrk/u32-wordbreaks.c
+Hash: 4e66094a2b8797f527af80fd87fed6a222d621c8b8acffe7f7bdd9684fd5ac24
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word breaks in UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwbrk/u8-wordbreaks.c
+Hash: 00a1587322d98dd8948a091a85b45d8ebc70469f9e8c58552e3ea591b1908786
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word breaks in UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwbrk/ulc-wordbreaks.c
+Hash: 1f3d4b29e74270464b552516539bd93bb486915d5e06e59452e3f58b1732d324
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word breaks in strings.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwbrk/wbrkprop.h
+Hash: d8007020c5f8a08911ff92b7ff5bfd74f9448c47e568b430f2f1ab7999fc0d87
+License: GPL-3+ GENERATED FILE
+Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Line breaking properties of Unicode characters.  */
+#/* Generated automatically by gen-uni-tables for Unicode 5.1.0.  */
+#
+#/* Copyright (C) 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/uniwbrk/wbrktable.c
+Hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word break auxiliary table.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwbrk/wbrktable.h
+Hash: fca8953f954254c2d6f99340ba81cc111d993a2b7226f491480a90df88bc754a
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word break auxiliary table.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwbrk/wordbreak-property.c
+Hash: 4265f2bbb6cd20db8b5b6034d1d7da59b5a2b943cc9543c158091658bb61a36a
+License: LGPL-3+ 
+Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Word break property.
+#   Copyright (C) 2001-2003, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2009.
+#
+#   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
+
+File: ./lib/uniwidth.h
+Hash: e4c6ff2cb013a8b2de23e758533e34077d64fd62e6c4098af88169ecd9ca1425
+License: LGPL-3+ 
+Copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Display width functions.
+#   Copyright (C) 2001-2002, 2005, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/uniwidth/cjk.h
+Hash: 6d886d39c5a9bed7c747138b4025cd035c6b59163b1632e3eff5be730f9db943
+License: LGPL-3+ 
+Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for CJK encoding.
+#   Copyright (C) 2001-2002, 2005-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/uniwidth/u16-strwidth.c
+Hash: 25a3cc5a8562b7025075a92b2acd9499fb20191bfea045cdfbf6ab778fcd2130
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine display width of UTF-16 string.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/uniwidth/u16-width.c
+Hash: 6447db6c2460f0cc11bea62a47e273a6cc33ca44ecdca0e7c640756cad86fc70
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine display width of UTF-16 string.
+#   Copyright (C) 2001-2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/uniwidth/u32-strwidth.c
+Hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine display width of UTF-32 string.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/uniwidth/u32-width.c
+Hash: 01f35f1bf88cce91ccb6a648ae19d763834f22a2a2054522fdaf40ee5a68fe0d
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine display width of UTF-32 string.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/uniwidth/u8-strwidth.c
+Hash: 5e92bd8858f143e5c3888e1890f467f6b2a077b1c6e5622e888cdba7922207fb
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine display width of UTF-8 string.
+#   Copyright (C) 2001-2002, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/uniwidth/u8-width.c
+Hash: 5992f0453d5de4d8a6ba85cd63b8090006ba2c0b148afd9e07ab6d5dc36dea0c
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine display width of UTF-8 string.
+#   Copyright (C) 2001-2002, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/uniwidth/width.c
+Hash: 8f8187cd1a09e3412e237881244e68c314bcfb39c5c851ec7f251e17742ab6ab
+License: LGPL-3+ 
+Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine display width of Unicode character.
+#   Copyright (C) 2001-2002, 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2002.
+#
+#   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
+
+File: ./lib/unlinkdir.c
+Hash: c9c22134c02523e933f8d5d7ca013d594047f1ee23b58a5ae39377525f9f046e
+License: GPL-3+ 
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* unlinkdir.c - determine whether we can unlink directories
+#
+#   Copyright (C) 2005-2006, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/unlinkdir.h
+Hash: 02cd119ca3d63148dd23165be0b728a05b4dc02618dbb0d81782d83029dcf4ae
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* unlinkdir.h - determine (and maybe change) whether we can unlink directories
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/unlocked-io.h
+Hash: a68721dbc7b80415c8f613c429da32c306e587ca487707e3cc920e7e34ac13a8
+License: GPL-3+ 
+Copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Prefer faster, non-thread-safe stdio functions if available.
+#
+#   Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/unsetenv.c
+Hash: 0b078599d4ea56fe10c153183b0254ed4945619c4c08c9ce35d5b32019d920de
+License: GPL-3+ 
+Copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   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/>.  */
+
+File: ./lib/userspec.c
+Hash: 87e09ee21b48597c439740bea48e07ce2dfe3daee61e331c0fea028a4572f53e
+License: GPL-3+ 
+Copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software
+Licence-Text: 
+#Header: 
+#/* userspec.c -- Parse a user and group string.
+#   Copyright (C) 1989-1992, 1997-1998, 2000, 2002-2007 Free Software
+#   Foundation, Inc.
+#
+#   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
+
+File: ./lib/userspec.h
+Hash: 8fc9e48846b3c4b567f7da8a4b872193d48989f6861b60277e4077a61585ad55
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##ifndef USERSPEC_H
+## define USERSPEC_H 1
+#
+## include <sys/types.h>
+#
+#const char *
+#parse_user_spec (const char *spec_arg, uid_t *uid, gid_t *gid,
+#               char **username_arg, char **groupname_arg);
+#
+##endif
+
+File: ./lib/utime.c
+Hash: 0200b3aa44e66773c0cde9fec4a180d0eb7111465207468fc42520867fb69e64
+License: GPL 
+Copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software
+Licence-Text: 
+#Header: 
+#/* Copyright (C) 1998, 2001, 2002, 2003, 2004, 2006 Free Software
+#   Foundation, Inc.
+#
+#   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 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/>.  */
+
+File: ./lib/utimecmp.c
+Hash: 513c0e1f4b1f45d732838695ab385c411afac14ce1c8841ad8bcc3855d16900c
+License: GPL-3+ 
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* utimecmp.c -- compare file time stamps
+#
+#   Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/utimecmp.h
+Hash: 4f328c1b87b0637f3cbb0c01968bbc5ffc5350b420f90f7f51de75d6872837ae
+License: GPL-3+ 
+Copyright: 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* utimecmp.h -- compare file time stamps
+#
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/utimens.c
+Hash: dd356a50d7062392a2b51927c4e390f09e3cb059bf0c2702ace1865130b3f136
+License: GPL 
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+Licence-Text: 
+#Header: 
+#/* Set file access and modification times.
+#
+#   Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
+#   Software Foundation, Inc.
+#
+#   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 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.
+
+File: ./lib/utimens.h
+Hash: d065c418d4fc1dad24e122f61cd9c4d59db9b05a6dba7ec8c17a8fd0fd9d9472
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <time.h>
+#int gl_futimens (int, char const *, struct timespec const [2]);
+#int utimens (char const *, struct timespec const [2]);
+
+File: ./lib/vasnprintf.c
+Hash: f826f12032ff66714226a5c720dd2dbd1d645ba0536b39dfbea651b792404c5d
+License: GPL 
+Copyright: 1999, 2002-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* vsprintf with automatic memory allocation.
+#   Copyright (C) 1999, 2002-2009 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/vasnprintf.h
+Hash: 2bf66b7f11449085cc6395a5d6d60496f6f13b08aa0187a5f52e9252e6cab2fa
+License: GPL 
+Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* vsprintf with automatic memory allocation.
+#   Copyright (C) 2002-2004, 2007-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/vasprintf.c
+Hash: 48c7f19d29a46ec6dbaf09a38b3ecbde38b8191f9bca32208ece53a6b2de08ee
+License: GPL 
+Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 1999, 2002, 2006-2008 Free Software Foundation, Inc.
+#
+#   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,
+
+File: ./lib/vdprintf.c
+Hash: da1c7c53e8a8c30976ec7a4bed151fb411c3b8f16b95c8e5b8d7e0b0ee003342
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to a file descriptor.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/verify.h
+Hash: a231e15e8b20379f38be81f4674fec177045e91abec1cc68481b6eb081c51312
+License: GPL-3+ 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Compile-time assert-like macros.
+#
+#   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/verror.c
+Hash: 2d2abd16891d68fb47a4f777060632ab389041f3cecbb9b5cce131f889f0fa8a
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* va_list error handler for noninteractive utilities
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/verror.h
+Hash: bfd2d5bbe94db1c367a3e3e4348fa2597a1c980ef1f74c10b7082ae569d56fb4
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Declaration for va_list error-reporting function
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/version-etc-fsf.c
+Hash: 2200910e2dfcad20e1ed7fa171431d1ee58058ddcf354bc54b58c6f812ece50f
+License: GPL-3+ 
+Copyright: %s %d Free Software Foundation, Inc."; / 1999-2006 Free Software Foundation, Inc / goes to the FSF. */
+Licence-Text: 
+#Header: 
+#/* Variable with FSF copyright information, for version-etc.
+#   Copyright (C) 1999-2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/version-etc.c
+Hash: 54f16006d89e39c40e5de0ff2f87f3f8a0498e25d2032fb2ef3b3e5c8a7f8bae
+License: GPL-3+ 
+Copyright: 1999-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Print --version and bug-reporting information in a consistent format.
+#   Copyright (C) 1999-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/version-etc.h
+Hash: 8fe8c52a2462c979791b9718376564da4abfb5e764de7bca57ec4ff85a97dfc3
+License: GPL-3+ 
+Copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Print --version and bug-reporting information in a consistent format.
+#   Copyright (C) 1999, 2003, 2005, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/vfprintf.c
+Hash: aa1a253878623a94f68f010ac82170a4014be547950a022203713850bbb93740
+License: GPL-3+ 
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to a stream.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/vprintf.c
+Hash: bf9c5a5e7f2aac3ca5262c519d08905ea7653704a52b35d1a79faf319dd61b4e
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to a stream.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/vsnprintf.c
+Hash: 2be1271317efe1b22a2d9f18376d0a225658aa69ce7d86064c5a767779711336
+License: GPL 
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#   Written by Simon Josefsson and Yoann Vandoorselaere <yoann@prelude-ids.org>.
+#
+#   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
+
+File: ./lib/vsprintf.c
+Hash: a9ee505897ed783d1bbe0291fe61915a0d1c8fab15bc157edb88143072b5e3d6
+License: GPL-3+ 
+Copyright: 2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Formatted output to strings.
+#   Copyright (C) 2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/w32sock.h
+Hash: 1fd87a23e6def0b721fd23be4572dc15592716c646eff400eb8fa64fffda4962
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* w32sock.h --- internal auxilliary functions for Windows socket functions
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/w32spawn.h
+Hash: 010dd0544b69c6f163c5243a3b721ac0e3d23cc3e1b9ce1a8a30fce6789b7e6a
+License: GPL-3+ 
+Copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Auxiliary functions for the creation of subprocesses.  Native Woe32 API.
+#   Copyright (C) 2001, 2003, 2004-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/wait-process.c
+Hash: 580ab33dd9e9ad4be37f0440dce7774cf758ac9eef6725756be9a2d08481b529
+License: GPL-3+ 
+Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Waiting for a subprocess to finish.
+#   Copyright (C) 2001-2003, 2005-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/wait-process.h
+Hash: 9c746de4916059b6ca40492142d370bc7006d4b8f032ad0111f6db7b0f653306
+License: GPL-3+ 
+Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Waiting for a subprocess to finish.
+#   Copyright (C) 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2001.
+#
+#   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
+
+File: ./lib/wchar.in.h
+Hash: e2b50e5f1a1293246463b729146da631d3afced4d48e395e00d38ccef20ea230
+License: GPL 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A substitute for ISO C99 <wchar.h>, for platforms that have issues.
+#
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/wcrtomb.c
+Hash: 10ecd599d0542d9a8001cca8225ee9c13514679962f22a531c75270aede87343
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert wide character to multibyte character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/wcsnrtombs.c
+Hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert wide string to string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/wcsrtombs-state.c
+Hash: 04a4e1633ad0400f2161a87e7cf9a6aed6f826572214e001af1c7dddc850d7aa
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert wide string to string.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/wcsrtombs.c
+Hash: fa89466dc4267bc9a1eb8e6afd1f79ef76c1dffac7fdb2827a02101ec5c34dc9
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert wide string to string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/wctob.c
+Hash: c1b08427605521353fd457e9a00f2c3c9b08f1b424e5a75a9186d803debec1b5
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Convert wide character to unibyte character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/wctype.in.h
+Hash: af0dc33178ed26851e8f3cb509f0acd760c6d25a876e8dc19ddb362d74ea46cf
+License: GPL 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* A substitute for ISO C99 <wctype.h>, for platforms that lack it.
+#
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/wcwidth.c
+Hash: 0aa6edaa085279cd62d2af3087586c8d95c4a611a683295b382144145735fede
+License: GPL-3+ 
+Copyright: 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine the number of screen columns needed for a character.
+#   Copyright (C) 2006, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/write-any-file.c
+Hash: 91ab05c6935f8e51a763879fb79b2f3e9a68d664409800351c677574461519ce
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Determine whether we can write any file.
+#
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/write-any-file.h
+Hash: 3baee9b8366345680cfc53a87f5dee015146c4255cee16b96803bb3f26cc9d2c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <stdbool.h>
+#bool can_write_any_file (void);
+
+File: ./lib/write.c
+Hash: 862d3fd531460e25f2438bd1a28cf38b2f681566dc0e6eb1870e0c903173909c
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* POSIX compatible write() function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2008.
+#
+#   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
+
+File: ./lib/xalloc-die.c
+Hash: 29f127d04d8c8d1e5999b7a07f26a3c5a00f5162135417f5956adf7ef53b7578
+License: GPL-3+ 
+Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free
+Licence-Text: 
+#Header: 
+#/* Report a memory allocation failure and exit.
+#
+#   Copyright (C) 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/xalloc.h
+Hash: 671d0dba30c52a75befe251993cc88c9cd3c9d5c047bf49267ccf26b133b4fa2
+License: GPL-3+ 
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+Licence-Text: 
+#Header: 
+#/* xalloc.h -- malloc with out-of-memory checking
+#
+#   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+#   1999, 2000, 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/xasprintf.c
+Hash: 8f74172c8681a5c0982e04312d1ce3104bab1aef39016d11869f0176d5fd27ed
+License: GPL-3+ 
+Copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* vasprintf and asprintf with out-of-memory checking.
+#   Copyright (C) 1999, 2002-2004, 2006 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/xconcat-filename.c
+Hash: 59cbb064a3c661e6ed52527b3dcacd4909d2ab526a7f030348a09cf9a6416c33
+License: GPL 
+Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Construct a full filename from a directory and a relative filename.
+#   Copyright (C) 2001-2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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 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/>.  */
+
+File: ./lib/xgetcwd.c
+Hash: 07b391c85dc4337c756a55eec0eda78ec9cd0e0975b181a48c5029c172a023af
+License: GPL-3+ 
+Copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* xgetcwd.c -- return current directory with unlimited length
+#
+#   Copyright (C) 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xgetcwd.h
+Hash: 291895105e1bb54b496008ad5954bc8163c0ac56b8287f27e49adbe54e9ed0cf
+License: GPL-3+ 
+Copyright: 1995, 2001, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* prototype for xgetcwd
+#   Copyright (C) 1995, 2001, 2003 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/xgetdomainname.c
+Hash: 088792dafaec8531ae554297ad6ae5d481593dfab6921835648a8bce17c0c116
+License: GPL-3+ 
+Copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software
+Licence-Text: 
+#Header: 
+#/* xgetdomainname.c -- Return the NIS domain name, without size limitations.
+#   Copyright (C) 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software
+#   Foundation, Inc.
+#
+#   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
+
+File: ./lib/xgetdomainname.h
+Hash: b26e437c9a8e6901a5034314c104978730a0753855f02e620edac0428c35b0a0
+License: GPL-3+ 
+Copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* xgetdomainname.h -- Return the NIS domain name, without size limitations.
+#   Copyright (C) 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/xgethostname.c
+Hash: 2c4e8d5075dbcfa989f2855a9f231d4c98065036c64acf489b1449f4a3af9c39
+License: GPL-3+ 
+Copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009
+Licence-Text: 
+#Header: 
+#/* xgethostname.c -- return current hostname with unlimited length
+#
+#   Copyright (C) 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/xgethostname.h
+Hash: e9a81c8fca91ef7a8fd72e8246a5fe6367dba77986f6935a318fe7d551ab1e7a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#char *xgethostname (void);
+
+File: ./lib/xmalloc.c
+Hash: 25035c1bcf6b0d4ab5f9894ec09f8312b715a2e72e95d7f56b4b9ce41f53aade
+License: GPL-3+ 
+Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
+Licence-Text: 
+#Header: 
+#/* xmalloc.c -- malloc with out of memory checking
+#
+#   Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
+#   1999, 2000, 2002, 2003, 2004, 2005, 2006, 2008-2009 Free Software Foundation,
+#   Inc.
+#
+#   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.
+
+File: ./lib/xmalloca.c
+Hash: e84a48177ef61605b6eed93be0310de6dac9146bbaf454bd7fb6caa1beb416f5
+License: GPL-3+ 
+Copyright: 2003, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Safe automatic memory allocation with out of memory checking.
+#   Copyright (C) 2003, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/xmalloca.h
+Hash: b8589d4f03fc2e4441ee611dd5596e4a3ac0657bd6974d6b21e95d435aef8f6f
+License: GPL-3+ 
+Copyright: 2003, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Safe automatic memory allocation with out of memory checking.
+#   Copyright (C) 2003, 2005, 2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2003.
+#
+#   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
+
+File: ./lib/xmemcoll.c
+Hash: f6215d92c92b8dd0afcb4da7a17068eb6b7d997bd3b8f7a3cf6e3e0ae25ed83c
+License: GPL-3+ 
+Copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Locale-specific memory comparison.
+#
+#   Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xmemcoll.h
+Hash: 06a32178ba593d8d983c9d741edf99f4a67fa37ba8e8b45cfe60e796fe6e9fcc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##include <stddef.h>
+#int xmemcoll (char *, size_t, char *, size_t);
+
+File: ./lib/xmemdup0.c
+Hash: 244bfde7ef2ec650951db25d48ca2a94b61b77db3692c001b316f58057af7d14
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* xmemdup0.c -- copy a block of arbitrary bytes, plus a trailing NUL
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xmemdup0.h
+Hash: 0d3d9d1a970022933ab73db3375f0cc46e5fbf23a16ad79242cbd6461110201d
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* xmemdup0.h -- copy a block of arbitrary bytes, plus a trailing NUL
+#
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xnanosleep.c
+Hash: 587481ebf1cf8ff5a01e7ce8889b66fa2be4a4c631fd020f2df12deb6322f814
+License: GPL-3+ 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+Licence-Text: 
+#Header: 
+#/* xnanosleep.c -- a more convenient interface to nanosleep
+#
+#   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+#   Foundation, Inc.
+#
+#   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.
+
+File: ./lib/xnanosleep.h
+Hash: dec8f8b2087a79c9bb77d7f89d934625f2b83dd66bbfda194299b351baa1a38c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#int xnanosleep (double);
+
+File: ./lib/xprintf.c
+Hash: 53c512f199ddd3f96147026f3ec162d4a4795ba009341a77dc173cdb6652a06b
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* printf wrappers that fail immediately for non-file-related errors
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/xprintf.h
+Hash: 6d16969445a022a51044c272fb9aeefd3fa1bce9b54006cd10226a704b05f6fb
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* printf wrappers that fail immediately for non-file-related errors
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/xreadlink.c
+Hash: 3cb513689749db6e11f0f29fbee0e970aa1b69b3b1c1ab4b7ebf35f70eb59525
+License: GPL-3+ 
+Copyright: 2001, 2003-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* xreadlink.c -- readlink wrapper to return the link name in malloc'd storage
+#
+#   Copyright (C) 2001, 2003-2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xreadlink.h
+Hash: 0137f3b154dfc2a56910915e2522eb83920cfa9dc1684b241d60fae327d93f9e
+License: GPL-3+ 
+Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Reading symbolic links without size limitation.
+#
+#   Copyright (C) 2001, 2003, 2004, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xsetenv.c
+Hash: b18f92f3404ce0f52b6536522986febc64c972fbea548ba151a12abd0550c875
+License: GPL-3+ 
+Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Setting environment variables, with out-of-memory checking.
+#   Copyright (C) 2001-2002, 2005-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/xsetenv.h
+Hash: 02f0e5d1c1bee87cfcc15ef5d22da97530a2213cce025f98bbd07440a9346aad
+License: GPL-3+ 
+Copyright: 2001-2002, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Setting environment variables, with out-of-memory checking.
+#   Copyright (C) 2001-2002, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/xsize.h
+Hash: af3fdcacfe8f3dbae26f9d806b0a9b2274f86ea7daed7117f09e29858b85d38f
+License: GPL 
+Copyright: 2003, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* xsize.h -- Checked size_t computations.
+#
+#   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xstriconv.c
+Hash: 42d740ec07e24b23ef7e205783f456e0ab80a5a2d716e4d045408b73365440a5
+License: GPL-3+ 
+Copyright: 2001-2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Charset conversion with out-of-memory checking.
+#   Copyright (C) 2001-2004, 2006 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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
+
+File: ./lib/xstriconv.h
+Hash: 07f01b89d3917786fdb52af236bc0007f98425b6167f083f2440d19e17dd3c5f
+License: GPL-3+ 
+Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Charset conversion with out-of-memory checking.
+#   Copyright (C) 2001-2004, 2006-2007 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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
+
+File: ./lib/xstriconveh.c
+Hash: e35dae25c1d50a7d5d5b3df39059abf308145f43ae4e85ba73931745e7017995
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Charset conversion with out-of-memory checking.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible.
+#
+#   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
+
+File: ./lib/xstriconveh.h
+Hash: f64f01e0d0569fa1f4c52371b10abc77b255d1a578f06d141d682561ee8c28bf
+License: GPL-3+ 
+Copyright: 2001-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Charset conversion with out-of-memory checking.
+#   Copyright (C) 2001-2007, 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible and Simon Josefsson.
+#
+#   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
+
+File: ./lib/xstrndup.c
+Hash: 0fb519e75e481ad8278a17ca05d2a40e377c265586ca996d18c4a56ddd4c2697
+License: GPL-3+ 
+Copyright: 2003, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Duplicate a bounded initial segment of a string, with out-of-memory
+#   checking.
+#   Copyright (C) 2003, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xstrndup.h
+Hash: 41aeea4d051e789e9ee829206990c84da4e6ab74f5a5ebbf1e7444ecdb2e7093
+License: GPL-3+ 
+Copyright: 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Duplicate a bounded initial segment of a string, with out-of-memory
+#   checking.
+#   Copyright (C) 2003 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xstrtod.c
+Hash: 7433646b920b02364625fd3d4b09fb30c050b37a3c73ee2c644d63ee95bca8c6
+License: GPL-3+ 
+Copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free
+Licence-Text: 
+#Header: 
+#/* error-checking interface to strtod-like functions
+#
+#   Copyright (C) 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free
+#   Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/xstrtod.h
+Hash: ace9d21f9ff0ac53904c27c990f62e2b8819a7776acbd67c3f05c6893dcaef4a
+License: GPL-3+ 
+Copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Error-checking interface to strtod-like functions.
+#
+#   Copyright (C) 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xstrtoimax.c
+Hash: b2ce36a250657c54d51627b616310f70c9870fd5fc7941bf18d3924067f28563
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define __strtol strtoimax
+##define __strtol_t intmax_t
+##define __xstrtol xstrtoimax
+##define STRTOL_T_MINIMUM INTMAX_MIN
+##define STRTOL_T_MAXIMUM INTMAX_MAX
+##include "xstrtol.c"
+
+File: ./lib/xstrtol-error.c
+Hash: 831f1f9013ce8fe06ea3685fd92d37cebc8125b91e0c87a93758fd5f4b17c47b
+License: GPL-3+ 
+Copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008
+Licence-Text: 
+#Header: 
+#/* A more useful interface to strtol.
+#
+#   Copyright (C) 1995, 1996, 1998, 1999, 2001-2004, 2006-2008
+#   Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/xstrtol.c
+Hash: 1de66c39110e53ed0f5d4cc2737b14547ef7657e0c6ff41b7d14bf71b617b792
+License: GPL-3+ 
+Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* A more useful interface to strtol.
+#
+#   Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+#   2006, 2007 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/xstrtol.h
+Hash: 03fe7afdcf7063d6f46436f0ca5dc6cd12a9f6bac186bc36f3af26dd745995d6
+License: GPL-3+ 
+Copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007
+Licence-Text: 
+#Header: 
+#/* A more useful interface to strtol.
+#
+#   Copyright (C) 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007,
+#   2008 Free Software Foundation, Inc.
+#
+#   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.
+
+File: ./lib/xstrtold.c
+Hash: 1a077cc54d4bfd4cee5ff0022623e5f8553d4eae977ca2f0bed5d0de5c51119b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define LONG 1
+##include "xstrtod.c"
+
+File: ./lib/xstrtoul.c
+Hash: bebc6e6916fdada92bda5d5fd7a22c71074205ca0b8476130d540d9139a83d3a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define __strtol strtoul
+##define __strtol_t unsigned long int
+##define __xstrtol xstrtoul
+##define STRTOL_T_MINIMUM 0
+##define STRTOL_T_MAXIMUM ULONG_MAX
+##include "xstrtol.c"
+
+File: ./lib/xstrtoumax.c
+Hash: 70b5ba83b8bfc540ad4dfead90cff12b8240919d0e368c0ded31a409271b5de6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define __strtol strtoumax
+##define __strtol_t uintmax_t
+##define __xstrtol xstrtoumax
+##define STRTOL_T_MINIMUM 0
+##define STRTOL_T_MAXIMUM UINTMAX_MAX
+##include "xstrtol.c"
+
+File: ./lib/xtime.h
+Hash: 93ba493c1b4263ae9363cbeabfe1a8abe0959b8380c740b34e3c4b3909c9f26d
+License: GPL-3+ 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* xtime -- extended-resolution integer time stamps
+#
+#   Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/xvasprintf.c
+Hash: 52187c5a41b1f31643add5fb4e3f204c74131d3030ce4b7668476584bc3075cf
+License: GPL-3+ 
+Copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* vasprintf and asprintf with out-of-memory checking.
+#   Copyright (C) 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/xvasprintf.h
+Hash: 43236f9f154af870f714a7b11b1f4955a7e1e7a2e9f322608e5780e185014f63
+License: GPL-3+ 
+Copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* vasprintf and asprintf with out-of-memory checking.
+#   Copyright (C) 2002-2004, 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./lib/yesno.c
+Hash: 89bdc0ba46060accf0008dc08a620a5629f006515f4bf5cc12a17775d448bfa3
+License: GPL-3+ 
+Copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* yesno.c -- read a yes/no response from stdin
+#
+#   Copyright (C) 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./lib/yesno.h
+Hash: f6ea7fda3622e6ce79f8737d3a6c12e11e9b077489cdbfe3a89e2105aa54493b
+License: GPL-3+ 
+Copyright: 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* declare yesno
+#   Copyright (C) 2004 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./m4/00gnulib.m4
+Hash: 199b5fcd827c6451f70d8e1d1a64e314dbae7654c56b74f6588a5bdc54544e70
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## 00gnulib.m4 serial 2
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl This file must be named something that sorts before all other
+#dnl gnulib-provided .m4 files.  It is needed until such time as we can
+#dnl assume Autoconf 2.64, with its improved AC_DEFUN_ONCE semantics.
+#
+## AC_DEFUN_ONCE([NAME], VALUE)
+## ----------------------------
+## Define NAME to expand to VALUE on the first use (whether by direct
+## expansion, or by AC_REQUIRE), and to nothing on all subsequent uses.
+## Avoid bugs in AC_REQUIRE in Autoconf 2.63 and earlier.  This
+
+File: ./m4/README
+Hash: ba4cd61e99798f7ea35082c20cc09f366c65ec5fccfd0fed9f9d155cf7e29bc5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Many of the files in this directory are shared between the coreutils,
+#diffutils, tar and gettext packages -- and others, so if you
+#change them, try to ensure that you don't break those packages.
+#That's hard without a systematic approach, but here is a set of conventions
+#that makes it easy.
+#
+#- The lib/ sources are split into modules.  Usually the module of a
+#  lib/foo.h and lib/foo.c is called "foo" - not unexpected, hey! -, but
+#  in more ambiguous cases you can look up the module a file belongs to
+#  by doing "grep lib/foo.c modules/*".
+#
+#- For every module there is an autoconf macro file, usually called
+#  m4/foo.m4 according to the module name.  When you modify lib/foo.h or
+#  lib/foo.c, remember to modify m4/foo.m4 as well!
+#  What if you don't find m4/foo.m4? This probably means that the module
+
+File: ./m4/absolute-header.m4
+Hash: cd06c8f2c0e593aea317496f932d01531368be33ed202d8f67fa9d07f592d4e4
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## absolute-header.m4 serial 11
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Derek Price.
+#
+## gl_ABSOLUTE_HEADER(HEADER1 HEADER2 ...)
+## ---------------------------------------
+## Find the absolute name of a header file, assuming the header exists.
+## If the header were sys/inttypes.h, this macro would define
+## ABSOLUTE_SYS_INTTYPES_H to the `""' quoted absolute name of sys/inttypes.h
+## in config.h
+## (e.g. `#define ABSOLUTE_SYS_INTTYPES_H "///usr/include/sys/inttypes.h"').
+
+File: ./m4/accept4.m4
+Hash: b3e97bc4b7996b0d54a8110f94d6eeb97c61532d392ee4edc10ac18bb4ecbea4
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## accept4.m4 serial 2
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ACCEPT4],
+#[
+#  AC_REQUIRE([gl_SYS_SOCKET_H_DEFAULTS])
+#
+#  dnl Persuade glibc <sys/socket.h> to declare accept4().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([accept4])
+#  if test $ac_cv_func_accept4 != yes; then
+
+File: ./m4/acl.m4
+Hash: 2062b336b8b9acae4a5a7acd0bc88988e5d79d2868fcd2e28ef211ee2fa0844d
+License: 
+Copyright: 2002, 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## acl.m4 - check for access control list (ACL) primitives
+## serial 9
+#
+## Copyright (C) 2002, 2004-2009 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Paul Eggert and Jim Meyering.
+#
+#AC_DEFUN([gl_FUNC_ACL],
+#[
+#  AC_ARG_ENABLE([acl],
+#    AS_HELP_STRING([--disable-acl], [do not support ACLs]),
+#    , [enable_acl=auto])
+
+File: ./m4/afs.m4
+Hash: 568ef913f651e507daaa7d5e2f78566ce66e4d1c1b275c229fbfe1810ea7e0b2
+License: 
+Copyright: 1999-2001, 2004, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 10
+#
+## Copyright (C) 1999-2001, 2004, 2008-2009 Free Software Foundation, Inc.
+## 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.
+#
+#AC_DEFUN([gl_AFS],
+#  [
+#    AC_ARG_WITH([afs],
+#              AS_HELP_STRING([--with-afs],
+#                             [support for the Andrew File System [[default=no]]]),
+#    test "$withval" = no || with_afs=yes, with_afs=no)
+#    if test "$with_afs" = yes; then
+#      AC_DEFINE([AFS], [1], [Define if you have the Andrew File System.])
+
+File: ./m4/alloca.m4
+Hash: 1c05b753d58a7541c6aabb8d0ae65e359233c6e0f6c660cee8edffbb50d0dba1
+License: 
+Copyright: 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## alloca.m4 serial 9
+#dnl Copyright (C) 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ALLOCA],
+#[
+#  dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
+#  AC_REQUIRE([AC_PROG_CPP])
+#  AC_REQUIRE([AC_PROG_EGREP])
+#
+#  AC_REQUIRE([AC_FUNC_ALLOCA])
+#  if test $ac_cv_func_alloca_works = no; then
+#    gl_PREREQ_ALLOCA
+
+File: ./m4/alphasort.m4
+Hash: ca5d108291340e87953a7da10112597eb36fe789578740fa3ce5266b621c777d
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## alphasort.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ALPHASORT],
+#[
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#
+#  dnl Persuade glibc and Solaris <dirent.h> to declare alphasort().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS([alphasort])
+#  if test $ac_cv_func_alphasort = no; then
+
+File: ./m4/arcfour.m4
+Hash: a5713df7392190ea048a75a71afb1588cabaa6e3d6c1417961eb77168f44eca1
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## arcfour.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ARCFOUR],
+#[
+#  AC_LIBOBJ([arcfour])
+#])
+
+File: ./m4/arctwo.m4
+Hash: 36abc4a75d5117bfc913d1a8bf2c5e8e8a8bc6d7286f1303ce8880ee46be3431
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## arctwo.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ARCTWO],
+#[
+#  AC_LIBOBJ([arctwo])
+#  # Prerequisites of lib/arctwo.c.
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+
+File: ./m4/argmatch.m4
+Hash: 4854bb865e261cec0fbb829700d2a7cd23fbebf0289ebf4a02f105691ccaedd9
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 3
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ARGMATCH],
+#[
+#  AC_LIBOBJ([argmatch])
+#])
+
+File: ./m4/argp.m4
+Hash: 21e67baca54a3803f21fb63836804e99e202c709dcbc16d3ad6a7b7e272a3381
+License: 
+Copyright: 2003-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## argp.m4 serial 10
+#dnl Copyright (C) 2003-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ARGP],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_REQUIRE([AC_C_RESTRICT])
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl argp-parse.c depends on GNU getopt internals, therefore use GNU getopt
+#  dnl always.
+#  gl_REPLACE_GETOPT
+#  dnl Note: gl_REPLACE_GETOPT does AC_LIBOBJ([getopt]), AC_LIBOBJ([getopt1]).
+
+File: ./m4/argz.m4
+Hash: 07bb623d7aa89977ca15b1d78a201ca4b7b4762561dac92466c89d0a65c17336
+License: 
+Copyright: 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Portability macros for glibc argz.                    -*- Autoconf -*-
+##
+##   Copyright (C) 2004-2009 Free Software Foundation, Inc.
+##   Written by Gary V. Vaughan <gary@gnu.org>
+##
+## 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.
+#
+## serial 7 argz.m4
+#
+#AC_DEFUN([gl_FUNC_ARGZ],
+#[gl_PREREQ_ARGZ
+#
+#AC_REQUIRE([AC_C_RESTRICT])
+
+File: ./m4/arpa_inet_h.m4
+Hash: 50b6027adea6ea1c675d502272095e88d7dc11f7e5ceca51ec845c4aa15295a5
+License: 
+Copyright: 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## arpa_inet_h.m4 serial 5
+#dnl Copyright (C) 2006, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Simon Josefsson and Bruno Haible
+#
+#AC_DEFUN([gl_HEADER_ARPA_INET],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_ARPA_INET_H_DEFAULTS])
+#
+#  AC_CHECK_HEADERS_ONCE([arpa/inet.h])
+
+File: ./m4/assert.m4
+Hash: 9939631ab7942c8ec4fe23d07695acdee8af208c98c7c15871b671dee73aaf8e
+License: 
+Copyright: 1998, 1999, 2001, 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 7
+#
+## Copyright (C) 1998, 1999, 2001, 2004, 2008 Free Software Foundation, Inc.
+## 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.
+#
+#dnl based on code from Eleftherios Gkioulekas
+#dnl Autoconf 2.60 provides AC_HEADER_ASSERT for the same purpose, but
+#dnl it has broken semantics for --enable-assert until 2.64.
+#AC_DEFUN([gl_ASSERT],
+#[
+#  AC_MSG_CHECKING([whether to enable assertions])
+#  AC_ARG_ENABLE([assert],
+#    [AS_HELP_STRING([--disable-assert], [turn off assertions])],
+
+File: ./m4/atexit.m4
+Hash: 8085939167e8cb64ea4d9d89a945f2cde32d6b68df8fc6153ed1d7b8d1512597
+License: 
+Copyright: 2002, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## atexit.m4 serial 3
+#dnl Copyright (C) 2002, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ATEXIT],
+#[
+#  AC_REPLACE_FUNCS([atexit])
+#  if test $ac_cv_func_atexit = no; then
+#    gl_PREREQ_ATEXIT
+#  fi
+#])
+#
+## Prerequisites of lib/atexit.c.
+
+File: ./m4/atoll.m4
+Hash: ba4f896e8c9fb0a4bd310145ca06ec6cf35be47f96e9e6af01ba1eb817fa40b4
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## atoll.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ATOLL],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  dnl We don't need (and can't compile) the replacement strtoll
+#  dnl unless the type 'long long int' exists.
+#  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+#  if test "$ac_cv_type_long_long_int" = yes; then
+#    AC_CHECK_FUNCS([atoll])
+#    if test $ac_cv_func_atoll = no; then
+
+File: ./m4/autobuild.m4
+Hash: f5a4a593a144c5649aecf131a8cd7921e8f6c6f5e7dbfba1343aaae61734bd59
+License: 
+Copyright: 2004, 2006, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## autobuild.m4 serial 7
+#dnl Copyright (C) 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Simon Josefsson
+#
+## Usage: AB_INIT([MODE]).
+#AC_DEFUN([AB_INIT],
+#[
+#  AC_REQUIRE([AC_CANONICAL_BUILD])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#
+#  if test -z "$AB_PACKAGE"; then
+
+File: ./m4/backupfile.m4
+Hash: 08bbe11639a7958632ef367b118a0616b7375a316d87e5ef868c26ebe410ea2f
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## backupfile.m4 serial 12
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_BACKUPFILE],
+#[
+#  AC_LIBOBJ([backupfile])
+#
+#  dnl Prerequisites of lib/backupfile.c.
+#  AC_REQUIRE([gl_CHECK_TYPE_STRUCT_DIRENT_D_INO])
+#  AC_REQUIRE([gl_AC_DOS])
+#  AC_REQUIRE([AC_SYS_LONG_FILE_NAMES])
+#  AC_CHECK_FUNCS_ONCE([pathconf])
+
+File: ./m4/base64.m4
+Hash: f0a6ca66fe9b14a51cd93f1f25116d916ffe72477c4f6cc44ab0f660d9041459
+License: 
+Copyright: 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## base64.m4 serial 3
+#dnl Copyright (C) 2004, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_BASE64],
+#[
+#  gl_PREREQ_BASE64
+#])
+#
+## Prerequisites of lib/base64.c.
+#AC_DEFUN([gl_PREREQ_BASE64], [
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_REQUIRE([AC_C_RESTRICT])
+
+File: ./m4/bison-i18n.m4
+Hash: 965fc67b33c005ee86dca5eecdd0a9497bbe1bd8b6720bc3909c72fea2e4ae5d
+License: 
+Copyright: 2005-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## bison-i18n.m4 serial 3
+#dnl Copyright (C) 2005-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl Support for internationalization of bison-generated parsers.
+#
+#dnl BISON_I18N
+#dnl should be used in configure.ac, after AM_GNU_GETTEXT. If USE_NLS is yes, it
+#dnl sets BISON_LOCALEDIR to indicate where to find the bison-runtime.mo files
+#dnl and defines YYENABLE_NLS if there are bison-runtime.mo files at all.
+#AC_DEFUN([BISON_I18N],
+
+File: ./m4/bison.m4
+Hash: 894a0216128f06bd77d174d18135624574366e95de47fbc8921d6d504eec8072
+License: 
+Copyright: 2002, 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 5
+#
+## Copyright (C) 2002, 2005, 2009 Free Software Foundation, Inc.
+## 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.
+#
+#AC_DEFUN([gl_BISON],
+#[
+#  # getdate.y works with bison only.
+#  : ${YACC='bison -y'}
+#dnl
+#dnl Declaring YACC & YFLAGS precious will not be necessary after GNULIB
+#dnl requires an Autoconf greater than 2.59c, but it will probably still be
+#dnl useful to override the description of YACC in the --help output, re
+
+File: ./m4/btowc.m4
+Hash: a5eb4065f63412f6a83feb9e1f65a2a1f8e26da7c83823787165acbaf0137222
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## btowc.m4 serial 4
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_BTOWC],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_CHECK_FUNCS_ONCE([btowc])
+#  if test $ac_cv_func_btowc = no; then
+#    HAVE_BTOWC=0
+#  else
+
+File: ./m4/byteswap.m4
+Hash: c5aa765b7c6ccc3353870fb151665077a7e38babbeecd726d47c374b6030c142
+License: 
+Copyright: 2005, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## byteswap.m4 serial 3
+#dnl Copyright (C) 2005, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Oskar Liljeblad.
+#
+#AC_DEFUN([gl_BYTESWAP],
+#[
+#  dnl Prerequisites of lib/byteswap.in.h.
+#  AC_CHECK_HEADERS([byteswap.h], [
+#    BYTESWAP_H=''
+#  ], [
+#    BYTESWAP_H='byteswap.h'
+
+File: ./m4/c-stack.m4
+Hash: 5f84f6648d7bba8f1b4a27bd6990d3121ad247cf746dd1e1800dbfea6f2a189b
+License: 
+Copyright: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Check prerequisites for compiling lib/c-stack.c.
+#
+## Copyright (C) 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Paul Eggert.
+#
+## serial 9
+#
+#AC_DEFUN([AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC],
+#  [# for STACK_DIRECTION
+#   AC_REQUIRE([AC_FUNC_ALLOCA])
+#   AC_REQUIRE([AC_CANONICAL_HOST])
+
+File: ./m4/c-strtod.m4
+Hash: f63125eb425fbf1a0f952fabacdb1cc92e8b73b7b535d827cf0238214ec38f7e
+License: 
+Copyright: 2004, 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## c-strtod.m4 serial 11
+#
+## Copyright (C) 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Paul Eggert.
+#
+#AC_DEFUN([gl_C99_STRTOLD],
+#[
+#  AC_CACHE_CHECK([whether strtold conforms to C99],
+#    [gl_cv_func_c99_strtold],
+#    [AC_LINK_IFELSE(
+#       [AC_LANG_PROGRAM(
+
+File: ./m4/calloc.m4
+Hash: 3df4bb22fb92d400e022a50e89cbafc7864c637c4a8bdb540128cdd270263b53
+License: 
+Copyright: 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## calloc.m4 serial 9
+#
+## Copyright (C) 2004-2009 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Jim Meyering.
+#
+## Determine whether calloc (N, S) returns non-NULL when N*S is zero,
+## and returns NULL when N*S overflows.
+## If so, define HAVE_CALLOC.  Otherwise, define calloc to rpl_calloc
+## and arrange to use a calloc wrapper function that does work in that case.
+#
+## _AC_FUNC_CALLOC_IF([IF-WORKS], [IF-NOT])
+
+File: ./m4/canon-host.m4
+Hash: 6e792084f158286ac4f73322ef6232e1d46915a0c9c1d49175ff0f95524d60ff
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## canon-host.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CANON_HOST],
+#[
+#  AC_LIBOBJ([canon-host])
+#  gl_PREREQ_CANON_HOST
+#])
+#
+#AC_DEFUN([gl_PREREQ_CANON_HOST], [
+#  :
+#])
+
+File: ./m4/canonicalize-lgpl.m4
+Hash: 52633d2d1b4de8d850f6a261c9674850ad6b49a6a1cd0bac28a179df50fef773
+License: 
+Copyright: 2003, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## canonicalize-lgpl.m4 serial 5
+#dnl Copyright (C) 2003, 2006-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CANONICALIZE_LGPL],
+#[
+#  dnl Do this replacement check manually because the file name is shorter
+#  dnl than the function name.
+#  AC_CHECK_DECLS_ONCE([canonicalize_file_name])
+#  AC_CHECK_FUNCS_ONCE([canonicalize_file_name])
+#  if test $ac_cv_func_canonicalize_file_name = no; then
+#    AC_LIBOBJ([canonicalize-lgpl])
+#    AC_DEFINE([realpath], [rpl_realpath],
+
+File: ./m4/canonicalize.m4
+Hash: bfb8373080498188c794855955e00f51ab9ba1a0f71f87a369fb782b100ecdac
+License: 
+Copyright: 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 12
+#
+## Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Jim Meyering.
+#
+#AC_DEFUN([AC_FUNC_CANONICALIZE_FILE_NAME],
+#  [
+#    AC_LIBOBJ([canonicalize])
+#
+#    AC_CHECK_HEADERS_ONCE([sys/param.h])
+#    AC_CHECK_DECLS_ONCE([canonicalize_file_name])
+
+File: ./m4/ceil.m4
+Hash: 99018f7541cafb7232e12934ab1020dd0c0071912a56b3a0e268f7c97f009c36
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ceil.m4 serial 3
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_CEIL],
+#[
+#  dnl Test whether ceil() can be used without libm.
+#  gl_FUNC_CEIL_LIBS
+#  if test "$CEIL_LIBM" = "?"; then
+#    CEIL_LIBM=
+#  fi
+#  AC_SUBST([CEIL_LIBM])
+#])
+
+File: ./m4/ceilf.m4
+Hash: 8a43f29a1a6f510ada6a916c12bc8dce19af13bec5252876c9ea5c451fd175db
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ceilf.m4 serial 4
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_CEILF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare ceilf().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether ceilf() is declared.
+#  AC_CHECK_DECLS([ceilf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_ceilf" = yes; then
+#    dnl Test whether ceilf() can be used without libm.
+
+File: ./m4/ceill.m4
+Hash: e7b2a8c6575e96a75b4e0b39c67c8045b023dc4e774d6db56460903035d99847
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ceill.m4 serial 4
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_CEILL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare ceill().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether ceill() is declared.
+#  AC_CHECK_DECLS([ceill], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_ceill" = yes; then
+#    dnl Test whether ceill() can be used without libm.
+
+File: ./m4/chdir-long.m4
+Hash: a4f29bf720ac294a5e9815f9bf97d5b315066371d5ba0c1f73ea8480b87e1d35
+License: 
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 10
+#
+## Use Gnulib's robust chdir function.
+## It can handle arbitrarily long directory names, which means
+## that when it is given the name of an existing directory, it
+## never fails with ENAMETOOLONG.
+## Arrange to compile chdir-long.c only on systems that define PATH_MAX.
+#
+#dnl Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Written by Jim Meyering.
+
+File: ./m4/chdir-safer.m4
+Hash: d4d11a65f4290f666741af1268b3191fe98f808dc2542a5178b54ed4e55ed126
+License: 
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 4
+#dnl Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CHDIR_SAFER],
+#[
+#  AC_LIBOBJ([chdir-safer])
+#  AC_CHECK_FUNCS_ONCE([readlink])
+#])
+
+File: ./m4/check-math-lib.m4
+Hash: 375574fd5cbe36e53461e37f4abbae1347d1b94d1bb7fb713784f988d6509c82
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## check-math-lib.m4 serial 2
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl gl_CHECK_MATH_LIB (VARIABLE, EXPRESSION)
+#dnl
+#dnl Sets the shell VARIABLE according to the libraries needed by EXPRESSION
+#dnl to compile and link: to the empty string if no extra libraries are needed,
+#dnl to "-lm" if -lm is needed, or to "missing" if it does not compile and
+#dnl link either way.
+#dnl
+#dnl Example: gl_CHECK_MATH_LIB([ROUNDF_LIBM], [x = roundf (x);])
+#AC_DEFUN([gl_CHECK_MATH_LIB], [
+
+File: ./m4/check-version.m4
+Hash: db75405103fdbe9b17d63917d875dc924fd24638440bf489dd2e258d75c154d8
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CHECK_VERSION],
+#[
+#  AC_LIBOBJ([check-version])
+#])
+
+File: ./m4/chown.m4
+Hash: 9b3def56d60d2eebd5ca9f5e8163027800bf2fc01df3d092143caa00f80ffa01
+License: 
+Copyright: 1997-2001, 2003-2005, 2007, 2009
+Licence-Text: 
+#Header: 
+## serial 19
+## Determine whether we need the chown wrapper.
+#
+#dnl Copyright (C) 1997-2001, 2003-2005, 2007, 2009
+#dnl Free Software Foundation, Inc.
+#
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## chown should accept arguments of -1 for uid and gid, and it should
+## dereference symlinks.  If it doesn't, arrange to use the replacement
+## function.
+#
+## From Jim Meyering.
+
+File: ./m4/clock_time.m4
+Hash: 19824aa72500f6ce1cd7dad2280d6742b8b97adf59dec61783b165208a384aa8
+License: 
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## clock_time.m4 serial 9
+#dnl Copyright (C) 2002-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Check for clock_gettime and clock_settime, and set LIB_CLOCK_GETTIME.
+## For a program named, say foo, you should add a line like the following
+## in the corresponding Makefile.am file:
+## foo_LDADD = $(LDADD) $(LIB_CLOCK_GETTIME)
+#
+#AC_DEFUN([gl_CLOCK_TIME],
+#[
+#  dnl Persuade glibc and Solaris <time.h> to declare these functions.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+
+File: ./m4/cloexec.m4
+Hash: 4d4b571bd482f975c487221e5a04b89a98bb9ecde57248f8b8e6cc066718ae68
+License: 
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 6
+#dnl Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CLOEXEC],
+#[
+#  AC_LIBOBJ([cloexec])
+#])
+
+File: ./m4/close-stream.m4
+Hash: 3091fb73ef0ac31a2cc908760c33c471d4e7a5c1283c03f5a69d5a82301043fe
+License: 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 3
+#dnl Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CLOSE_STREAM],
+#[
+#  AC_LIBOBJ([close-stream])
+#
+#  dnl Prerequisites of lib/close-stream.c.
+#  :
+#])
+
+File: ./m4/close.m4
+Hash: 7e1b55433c7364fb5ea4be276aa2f2761dd7b50c399d474f11ed787201ad29d2
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## close.m4 serial 5
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_CLOSE],
+#[
+#  m4_ifdef([gl_PREREQ_SYS_H_WINSOCK2], [
+#    gl_PREREQ_SYS_H_WINSOCK2
+#    if test $UNISTD_H_HAVE_WINSOCK2_H = 1; then
+#      dnl Even if the 'socket' module is not used here, another part of the
+#      dnl application may use it and pass file descriptors that refer to
+#      dnl sockets to the close() function. So enable the support for sockets.
+#      gl_REPLACE_CLOSE
+
+File: ./m4/closein.m4
+Hash: f58bf58484cebc1a8bc332904efa060564ca19565dde390c83faa28be18d672f
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## closein.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CLOSEIN],
+#[
+#  AC_LIBOBJ([closein])
+#
+#  dnl Prerequisites of lib/closein.c.
+#  :
+#])
+
+File: ./m4/closeout.m4
+Hash: b472fe6270917cb33de443e6130c9722c4f316f255f00a8a00f3ae37fab0b26a
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## closeout.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CLOSEOUT],
+#[
+#  AC_LIBOBJ([closeout])
+#
+#  dnl Prerequisites of lib/closeout.c.
+#  :
+#])
+
+File: ./m4/codeset.m4
+Hash: 798184a7fbbc98c7faaca47a01a72ef637da6852ab2ea8d9ed4b19ad8f83be66
+License: 
+Copyright: 2000-2002, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## codeset.m4 serial 4 (gettext-0.18)
+#dnl Copyright (C) 2000-2002, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([AM_LANGINFO_CODESET],
+#[
+#  AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],
+#    [AC_TRY_LINK([#include <langinfo.h>],
+#      [char* cs = nl_langinfo(CODESET); return !cs;],
+#      [am_cv_langinfo_codeset=yes],
+#      [am_cv_langinfo_codeset=no])
+
+File: ./m4/cond.m4
+Hash: fc7299e2068e6ff7fb2c149ae8bf9720b040cf1ee5a6862dc34a9fc507a01556
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## cond.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_COND],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+
+File: ./m4/config-h.m4
+Hash: c6cf92e91910d0bd085cf645a73b6ae7cd932ae193edb3c41c9e285aeb84122a
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Say that -DHAVE_CONFIG_H is not needed.
+#
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Paul Eggert.
+#
+## This package's source files all include config.h unconditionally,
+## so there's no need to pass -DHAVE_CONFIG_H to the compiler.
+#AC_DEFUN([gl_CONFIG_H],
+#  [AC_CONFIG_COMMANDS_PRE([test "X$DEFS" = X-DHAVE_CONFIG_H && DEFS=])])
+
+File: ./m4/copy-file.m4
+Hash: 23a58772c01c55b3d027ceae709201c9fafb97744dbe367577674e28588d64d5
+License: 
+Copyright: 2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## copy-file.m4 serial 3
+#dnl Copyright (C) 2003, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_COPY_FILE],
+#[
+#  AC_CHECK_HEADERS_ONCE([unistd.h utime.h])
+#  AC_CHECK_FUNCS([chown utime utimes])
+#])
+
+File: ./m4/count-one-bits.m4
+Hash: 7cb9f7f46b3c69bd552292ce5a9d8ad5372dc27602d1adfffd765688bb918c6e
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## count-one-bits.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_COUNT_ONE_BITS],
+#[
+#  dnl We don't need (and can't compile) count_one_bits_ll
+#  dnl unless the type 'unsigned long long int' exists.
+#  AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
+#])
+
+File: ./m4/crc.m4
+Hash: ac3b61507ffd5e75e6cb43ecc272a4c802c6b05131d7f8855c2a7509fc610386
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## crc.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CRC],
+#[
+#  AC_LIBOBJ([crc])
+#])
+
+File: ./m4/csharp.m4
+Hash: 3e03d469ea0a067f286a667d6fc8fb7c8e373ec8c6aa13b6b7d73d5ecdd411bf
+License: 
+Copyright: 2004-2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## csharp.m4 serial 3
+#dnl Copyright (C) 2004-2005, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Sets CSHARP_CHOICE to the preferred C# implementation:
+## 'pnet' or 'mono' or 'any' or 'no'.
+#AC_DEFUN([gt_CSHARP_CHOICE],
+#[
+#  AC_MSG_CHECKING([for preferred C[#] implementation])
+#  AC_ARG_ENABLE([csharp],
+#    [  --enable-csharp[[=IMPL]]  choose preferred C[#] implementation (pnet or mono)],
+#    [CSHARP_CHOICE="$enableval"],
+#    CSHARP_CHOICE=any)
+
+File: ./m4/csharpcomp.m4
+Hash: bed35278c23c7f90f65c2e1a03b0b535b14f290ba7007cc11f8c3c0a97b06d1e
+License: 
+Copyright: 2003-2005, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## csharpcomp.m4 serial 8
+#dnl Copyright (C) 2003-2005, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Prerequisites of csharpcomp.sh.
+## Checks for a C# compiler.
+## Sets at most one of HAVE_CSCC, HAVE_MCS, HAVE_CSC.
+## Sets HAVE_CSHARPCOMP to nonempty if csharpcomp.sh will work.
+## Also sets CSHARPCOMPFLAGS.
+#AC_DEFUN([gt_CSHARPCOMP],
+#[
+#  AC_REQUIRE([gt_CSHARP_CHOICE])
+#  AC_MSG_CHECKING([for C[#] compiler])
+
+File: ./m4/csharpexec.m4
+Hash: e1de084636e1f5efc990513007c3cfa05561055efcecf49e159166249f61ea8a
+License: 
+Copyright: 2003-2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## csharpexec.m4 serial 4
+#dnl Copyright (C) 2003-2005, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Prerequisites of csharpexec.sh.
+## Checks for a C# execution engine.
+## gt_CSHARPEXEC or gt_CSHARPEXEC(testexecutable, its-directory)
+## Sets at most one of HAVE_ILRUN, HAVE_MONO, HAVE_CLIX.
+## Sets HAVE_CSHARPEXEC to nonempty if csharpexec.sh will work.
+#AC_DEFUN([gt_CSHARPEXEC],
+#[
+#  AC_REQUIRE([gt_CSHARP_CHOICE])
+#  AC_MSG_CHECKING([for C[#] program execution engine])
+
+File: ./m4/cycle-check.m4
+Hash: 08b0141983dcbe0af6eb3adced2241ebe8b6ab88474fe14396559bf2c280ee1e
+License: 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 5
+#dnl Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_CYCLE_CHECK],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_LIBOBJ([cycle-check])
+#])
+
+File: ./m4/d-ino.m4
+Hash: ebc82fd998746123b58231e2d774d7709bbfc7594df11bbc8552c63a28b75c48
+License: 
+Copyright: 1997, 1999-2001, 2003-2004, 2006-2007, 2009 Free Software
+Licence-Text: 
+#Header: 
+## serial 11
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl Check whether struct dirent has a member named d_ino.
+#dnl
+#
+## Copyright (C) 1997, 1999-2001, 2003-2004, 2006-2007, 2009 Free Software
+## Foundation, Inc.
+#
+## 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.
+#
+#AC_DEFUN([gl_CHECK_TYPE_STRUCT_DIRENT_D_INO],
+
+File: ./m4/d-type.m4
+Hash: aaf8c30e46246b12f62710018b00b56cd4ae3ed0f1a0133325d2d727a75db56b
+License: 
+Copyright: 1997, 1999-2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 11
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl Check whether struct dirent has a member named d_type.
+#dnl
+#
+## Copyright (C) 1997, 1999-2004, 2006, 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+#AC_DEFUN([gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE],
+#  [AC_CACHE_CHECK([for d_type member in directory struct],
+
+File: ./m4/des.m4
+Hash: b9009b10ac57e2829610ad77f600ca717a7ddd2622a071ca3393ffee39f474c1
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## des.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_DES],
+#[
+#  AC_LIBOBJ([des])
+#])
+
+File: ./m4/dirent-safer.m4
+Hash: 0df2785f4f2c25e6850aeb7ae112f5292cb556f96c2d79c933b062ec5a840276
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_DIRENT_SAFER],
+#[
+#  AC_CHECK_FUNCS_ONCE([fdopendir])
+#  AC_LIBOBJ([opendir-safer])
+#])
+
+File: ./m4/dirent_h.m4
+Hash: 1e19ccad9ce6a2f856861bf7c23b8cd3e5a42edb574fdb4878ccb77562e5eee0
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## dirent_h.m4 serial 4
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Bruno Haible.
+#
+#AC_DEFUN([gl_DIRENT_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#
+#  gl_CHECK_NEXT_HEADERS([dirent.h])
+
+File: ./m4/dirfd.m4
+Hash: f1a40a07c8854f4be0b3f0f4deae0b1f72de8eb88ed8b30c7a938ad9c4ef1635
+License: 
+Copyright: 2001-2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 17   -*- Autoconf -*-
+#
+#dnl Find out how to get the file descriptor associated with an open DIR*.
+#
+## Copyright (C) 2001-2006, 2008-2009 Free Software Foundation, Inc.
+## 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.
+#
+#dnl From Jim Meyering
+#
+#AC_DEFUN([gl_FUNC_DIRFD],
+#[
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#  gl_REPLACE_DIRENT_H
+
+File: ./m4/dirname.m4
+Hash: 5e5b390ea6a0270ff48f6e0b985c95d3d178a29ab54c859758c87bd19b543cee
+License: 
+Copyright: 2002-2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 7   -*- autoconf -*-
+#dnl Copyright (C) 2002-2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_DIRNAME],
+#[
+#  AC_LIBOBJ([basename])
+#  AC_LIBOBJ([dirname])
+#  AC_LIBOBJ([stripslash])
+#
+#  dnl Prerequisites of lib/dirname.h.
+#  AC_REQUIRE([gl_AC_DOS])
+#  AC_REQUIRE([gl_DOUBLE_SLASH_ROOT])
+
+File: ./m4/dos.m4
+Hash: 0686518ef84a5fed6f1bb276c02d11c84efe40f4450b8b956b4b0f0f4af1f739
+License: 
+Copyright: ( == '/' || == '\\') / 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc / ( == '/')
+Licence-Text: 
+#Header: 
+##serial 11   -*- autoconf -*-
+#
+## Define some macros required for proper operation of code in lib/*.c
+## on MSDOS/Windows systems.
+#
+## Copyright (C) 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc.
+## 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.
+#
+## From Jim Meyering.
+#
+#AC_DEFUN([gl_AC_DOS],
+#  [
+#    AC_CACHE_CHECK([whether system is Windows or MSDOS], [ac_cv_win_or_dos],
+
+File: ./m4/double-slash-root.m4
+Hash: 00cf683e37d5296236bb31b34728935f45e051dd74abf695fda2272406f6231f
+License: 
+Copyright: 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## double-slash-root.m4 serial 4   -*- Autoconf -*-
+#dnl Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_DOUBLE_SLASH_ROOT],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_CACHE_CHECK([whether // is distinct from /], [gl_cv_double_slash_root],
+#    [ if test x"$cross_compiling" = xyes ; then
+#      # When cross-compiling, there is no way to tell whether // is special
+#      # short of a list of hosts.  However, the only known hosts to date
+#      # that have a distinct // are Apollo DomainOS (too old to port to),
+#      # Cygwin, and z/OS.  If anyone knows of another system for which // has
+
+File: ./m4/dprintf-posix.m4
+Hash: 4d518e6a74aa81ddadb7111ad05a9447d5c22202ff954d6dca5964ec1e755cf3
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## dprintf-posix.m4 serial 2
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_DPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/dprintf.m4
+Hash: 193180d094ccea061d44e273da365b72498002d167766c58b7ebe3d9ae421b03
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## dprintf.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_DPRINTF],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([dprintf])
+#  if test $ac_cv_func_dprintf = no; then
+#    HAVE_DPRINTF=0
+#    gl_REPLACE_DPRINTF
+#  fi
+#])
+
+File: ./m4/dup2.m4
+Hash: 7c4b1a9d5d67bca60012e759553f97b72a0ec7f8106e3881845c6545005cb452
+License: 
+Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 8
+#dnl Copyright (C) 2002, 2005, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_DUP2],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_CHECK_FUNCS_ONCE([dup2])
+#  if test $ac_cv_func_dup2 = no; then
+#    HAVE_DUP2=0
+#    AC_LIBOBJ([dup2])
+#  else
+
+File: ./m4/dup3.m4
+Hash: 4ce79f58847153c5a32e74acc00c061c31a87fef94e418168dddb0c0641f1710
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## dup3.m4 serial 2
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_DUP3],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  dnl Persuade glibc <unistd.h> to declare dup3().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([dup3])
+#  if test $ac_cv_func_dup3 != yes; then
+
+File: ./m4/eaccess.m4
+Hash: 2eca1bd5e8430964e61caf77d01a5abf3514931453355b3a99a513ba4203cce0
+License: 
+Copyright: 2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## eaccess.m4 serial 2
+#dnl Copyright (C) 2003, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_EACCESS],
+#[
+#  AC_CHECK_FUNC([eaccess], ,
+#    [AC_DEFINE([eaccess], [access],
+#       [Define as 'access' if you don't have the eaccess() function.])])
+#])
+
+File: ./m4/eealloc.m4
+Hash: b48072eda4c415f4c70dabf3f484840e7dcb508b206b48b83d93b9646361d27e
+License: 
+Copyright: 2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## eealloc.m4 serial 2
+#dnl Copyright (C) 2003, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_EEALLOC],
+#[
+#  AC_REQUIRE([gl_EEMALLOC])
+#  AC_REQUIRE([gl_EEREALLOC])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+#
+#AC_DEFUN([gl_EEMALLOC],
+#[
+
+File: ./m4/environ.m4
+Hash: 4283b25a258a4358150e4422f3c22bc4a5a95fd3b05c3864c656997f245d571f
+License: 
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## environ.m4 serial 2
+#dnl Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ENVIRON],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  dnl Persuade glibc <unistd.h> to declare environ.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  gt_CHECK_VAR_DECL([#include <unistd.h>], environ)
+#  if test $gt_cv_var_environ_declaration != yes; then
+#    HAVE_DECL_ENVIRON=0
+#  fi
+
+File: ./m4/errno_h.m4
+Hash: 4fe293d8c7486c74c2a6ec7b383c10f11e80af0ac1c6c28451e798a62117bd96
+License: 
+Copyright: 2004, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## errno_h.m4 serial 6
+#dnl Copyright (C) 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN_ONCE([gl_HEADER_ERRNO_H],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CACHE_CHECK([for complete errno.h], [gl_cv_header_errno_h_complete], [
+#    AC_EGREP_CPP([booboo],[
+##include <errno.h>
+##if !defined ENOMSG
+#booboo
+##endif
+
+File: ./m4/error.m4
+Hash: d8d8360113fea1e0eab7095a3331097070f8c4adf2dd86b5fd11dc22f73ceebf
+License: 
+Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software
+Licence-Text: 
+#Header: 
+##serial 11
+#
+## Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software
+## Foundation, Inc.
+##
+## 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.
+#
+#AC_DEFUN([gl_ERROR],
+#[
+#  AC_FUNC_ERROR_AT_LINE
+#  dnl Note: AC_FUNC_ERROR_AT_LINE does AC_LIBSOURCES([error.h, error.c]).
+#  gl_PREREQ_ERROR
+#])
+
+File: ./m4/euidaccess.m4
+Hash: b2aa7901f1599ebf72d901afba98b9e218c1855b4396cb39194784aeb9051200
+License: 
+Copyright: 2002-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## euidaccess.m4 serial 11
+#dnl Copyright (C) 2002-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_NONREENTRANT_EUIDACCESS],
+#[
+#  AC_REQUIRE([gl_FUNC_EUIDACCESS])
+#  AC_DEFINE([PREFER_NONREENTRANT_EUIDACCESS], [1],
+#    [Define this if you prefer euidaccess to return the correct result
+#     even if this would make it nonreentrant.  Define this only if your
+#     entire application is safe even if the uid or gid might temporarily
+#     change.  If your application uses signal handlers or threads it
+#     is probably not safe.])
+
+File: ./m4/exclude.m4
+Hash: f157d5680a79611b130e7e6082cdfd076c29a03eaa43c6edc97cc8e5fe25a1bf
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## exclude.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_EXCLUDE],
+#[
+#  AC_LIBOBJ([exclude])
+#])
+
+File: ./m4/execute.m4
+Hash: d91a2923d49049f4b4d8e89e4c75b86ff3a90420e1e36337461f09aef719825f
+License: 
+Copyright: 2003, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## execute.m4 serial 4
+#dnl Copyright (C) 2003, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_EXECUTE],
+#[
+#  dnl Prerequisites of lib/execute.c.
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_REQUIRE([AC_TYPE_MODE_T])
+#])
+
+File: ./m4/exitfail.m4
+Hash: c0bca886587d8ac9978c63a4cd4016879923984497dee2730b5c8cf3e14162f1
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## exitfail.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_EXITFAIL],
+#[
+#  AC_LIBOBJ([exitfail])
+#
+#  dnl No prerequisites of lib/exitfail.c.
+#  :
+#])
+
+File: ./m4/exponentd.m4
+Hash: 5058bb832cabaa10e4a9c9d86746cf504a7f65f202f513d0672d569ca22365ff
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## exponentd.m4 serial 1
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#AC_DEFUN([gl_DOUBLE_EXPONENT_LOCATION],
+#[
+#  AC_CACHE_CHECK([where to find the exponent in a 'double'],
+#    [gl_cv_cc_double_expbit0],
+#    [
+#      AC_TRY_RUN([
+##include <float.h>
+##include <stddef.h>
+##include <stdio.h>
+##include <string.h>
+
+File: ./m4/exponentf.m4
+Hash: 9959e539475d1417ce2a219cbace11d88034d81641007a866c4219aa5341a302
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## exponentf.m4 serial 1
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#AC_DEFUN([gl_FLOAT_EXPONENT_LOCATION],
+#[
+#  AC_CACHE_CHECK([where to find the exponent in a 'float'],
+#    [gl_cv_cc_float_expbit0],
+#    [
+#      AC_TRY_RUN([
+##include <float.h>
+##include <stddef.h>
+##include <stdio.h>
+##include <string.h>
+
+File: ./m4/exponentl.m4
+Hash: 794a89c1dcefd7d2a44a7627ed950cc1de34a3439fb6104e42b476ef7ee745e7
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## exponentl.m4 serial 2
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#AC_DEFUN([gl_LONG_DOUBLE_EXPONENT_LOCATION],
+#[
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_CACHE_CHECK([where to find the exponent in a 'long double'],
+#    [gl_cv_cc_long_double_expbit0],
+#    [
+#      AC_TRY_RUN([
+##include <float.h>
+##include <stddef.h>
+##include <stdio.h>
+
+File: ./m4/extensions.m4
+Hash: bdff048b894f22bac6a6632e68de81828283256a335be4b9e464e943190c0801
+License: 
+Copyright: 2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 8  -*- Autoconf -*-
+## Enable extensions on systems that normally disable them.
+#
+## Copyright (C) 2003, 2006-2009 Free Software Foundation, Inc.
+## 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.
+#
+## This definition of AC_USE_SYSTEM_EXTENSIONS is stolen from CVS
+## Autoconf.  Perhaps we can remove this once we can assume Autoconf
+## 2.62 or later everywhere, but since CVS Autoconf mutates rapidly
+## enough in this area it's likely we'll need to redefine
+## AC_USE_SYSTEM_EXTENSIONS for quite some time.
+#
+## AC_USE_SYSTEM_EXTENSIONS
+
+File: ./m4/faccessat.m4
+Hash: 9f08b4c94c4a06294b64072a9e6b684b627b44440875f145615f66814fc0b702
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 3
+## See if we need to provide faccessat replacement.
+#
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Written by Eric Blake.
+#
+#AC_DEFUN([gl_FUNC_FACCESSAT],
+#[
+#  AC_REQUIRE([gl_FUNC_OPENAT])
+#  AC_REQUIRE([gl_FUNC_EUIDACCESS])
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+
+File: ./m4/fatal-signal.m4
+Hash: 2a78cb0997683eca979321f1f2eb2973b442ce77f106bcefa8859968fbf58f04
+License: 
+Copyright: 2003-2004, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fatal-signal.m4 serial 7
+#dnl Copyright (C) 2003-2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FATAL_SIGNAL],
+#[
+#  AC_REQUIRE([gt_TYPE_SIG_ATOMIC_T])
+#  AC_CHECK_HEADERS_ONCE([unistd.h])
+#  gl_PREREQ_SIG_HANDLER_H
+#])
+
+File: ./m4/fbufmode.m4
+Hash: 47eae3094e71bbbbbdf5e844b7e46629cccefb272730dd90e15929281f04fa48
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fbufmode.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FBUFMODE],
+#[
+#  dnl Prerequisites of lib/fbufmode.c.
+#  AC_CHECK_FUNCS_ONCE([__flbf])
+#])
+
+File: ./m4/fchdir.m4
+Hash: 18dfd391edf590486365f2410fe2d2fb805d743a68136299ddc47fe80711db98
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fchdir.m4 serial 9
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FCHDIR],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([fchdir])
+#  if test $ac_cv_func_fchdir = no; then
+#    REPLACE_FCHDIR=1
+#    AC_LIBOBJ([fchdir])
+
+File: ./m4/fclose.m4
+Hash: cb8402f12d3a7e62c3e5617f98e19cc1c0ddef4904bf4d04467c445f5853ed0c
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fclose.m4 serial 2
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FCLOSE],
+#[
+#])
+#
+#AC_DEFUN([gl_REPLACE_FCLOSE],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  REPLACE_FCLOSE=1
+#  AC_LIBOBJ([fclose])
+
+File: ./m4/fcntl-safer.m4
+Hash: 125531e3fb7fa9ce62b6f25142454078fdc1653288e56dd770c0917c3e88f4e3
+License: 
+Copyright: 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 7
+#dnl Copyright (C) 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FCNTL_SAFER],
+#[
+#  AC_LIBOBJ([open-safer])
+#  AC_LIBOBJ([creat-safer])
+#  # Prerequisites of lib/open-safer.c.
+#  AC_REQUIRE([gl_PROMOTED_TYPE_MODE_T])
+#])
+#
+#AC_DEFUN([gl_OPENAT_SAFER],
+
+File: ./m4/fcntl_h.m4
+Hash: 876ecbcebae308d5b51d7fefbbb44a0cc20781eae03ab416895c50118ad8d06c
+License: 
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 3
+## Configure fcntl.h.
+#dnl Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Paul Eggert.
+#
+#AC_DEFUN([gl_FCNTL_H],
+#[
+#  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])
+#  dnl Persuade glibc <fcntl.h> to define O_NOATIME and O_NOFOLLOW.
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#  AC_CACHE_CHECK([for working fcntl.h], [gl_cv_header_working_fcntl_h],
+
+File: ./m4/fdopendir.m4
+Hash: 5d0d75f6c33c69ddb9b253fdf2cbcb08752a3bca92d5a9e44cac0d0935f05e1d
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 1
+## See if we need to provide fdopendir.
+#
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Written by Eric Blake.
+#
+#AC_DEFUN([gl_FUNC_FDOPENDIR],
+#[
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_FUNCS_ONCE([fdopendir])
+#  if test $ac_cv_func_fdopendir = no; then
+
+File: ./m4/fflush.m4
+Hash: a42927338afd7b316951faf1c953daafbea033ab310824f84ecbb58383228f48
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fflush.m4 serial 7
+#
+## Copyright (C) 2007-2009 Free Software Foundation, Inc.
+## 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.
+#
+#dnl From Eric Blake
+#
+#dnl Find out how to obey POSIX semantics of fflush(stdin) discarding
+#dnl unread input on seekable streams, rather than C99 undefined semantics.
+#
+#AC_DEFUN([gl_FUNC_FFLUSH],
+#[
+#  AC_CACHE_CHECK([whether fflush works on input streams],
+
+File: ./m4/file-type.m4
+Hash: 312a84168ac2f1b1c14220aeb335cf1268efe38307848c9a882c099a057ed59e
+License: 
+Copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## file-type.m4 serial 6
+#dnl Copyright (C) 2002, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FILE_TYPE],
+#[
+#  AC_LIBOBJ([file-type])
+#])
+
+File: ./m4/fileblocks.m4
+Hash: afc5994b8cd6b810f81c0bb605c9768ba3c724ebf1ac33b1940081b564db76fd
+License: 
+Copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fileblocks.m4 serial 5
+#dnl Copyright (C) 2002, 2005, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FILEBLOCKS],
+#[
+#  AC_STRUCT_ST_BLOCKS
+#  dnl Note: AC_STRUCT_ST_BLOCKS does AC_LIBOBJ([fileblocks]).
+#  if test $ac_cv_member_struct_stat_st_blocks = no; then
+#    gl_PREREQ_FILEBLOCKS
+#  fi
+#])
+
+File: ./m4/filemode.m4
+Hash: 8dd4d3ccf500ebd64522a379c41fec1ed74e007244f7cd946dc9a8c6b0a95e4e
+License: 
+Copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## filemode.m4 serial 7
+#dnl Copyright (C) 2002, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FILEMODE],
+#[
+#  AC_REQUIRE([AC_STRUCT_ST_DM_MODE])
+#  AC_LIBOBJ([filemode])
+#  AC_CHECK_DECLS_ONCE([strmode])
+#])
+
+File: ./m4/filenamecat.m4
+Hash: ac5ada6787a8617ef2ca718ff8043193dda141d1d57be957af8840cd2ec371dd
+License: 
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## filenamecat.m4 serial 9
+#dnl Copyright (C) 2002-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FILE_NAME_CONCAT],
+#[
+#  AC_LIBOBJ([filenamecat])
+#
+#  dnl Prerequisites of lib/filenamecat.c.
+#  AC_CHECK_FUNCS_ONCE([mempcpy])
+#])
+
+File: ./m4/findprog.m4
+Hash: 90578a64ef1f6ce7f9d541fac5cb328d7f900ca600e1b1c491e97a729c4391ed
+License: 
+Copyright: 2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## findprog.m4 serial 2
+#dnl Copyright (C) 2003, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FINDPROG],
+#[
+#  dnl Prerequisites of lib/findprog.c.
+#  AC_CHECK_HEADERS_ONCE([unistd.h])
+#  AC_REQUIRE([gl_FUNC_EACCESS])
+#])
+
+File: ./m4/flexmember.m4
+Hash: 91bd9e053632cf0678e82035378bc32d21c404e017c0cb13c1888887ccceed56
+License: 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 2
+## Check for flexible array member support.
+#
+## Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Paul Eggert.
+#
+#AC_DEFUN([AC_C_FLEXIBLE_ARRAY_MEMBER],
+#[
+#  AC_CACHE_CHECK([for flexible array member],
+#    ac_cv_c_flexmember,
+#    [AC_COMPILE_IFELSE(
+
+File: ./m4/float_h.m4
+Hash: ed0472c9ce5a69206792765536ce26bf056cb09a0e4e00fbf6f92a804b92dce6
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## float_h.m4 serial 3
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FLOAT_H],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  FLOAT_H=
+#  case "$host_os" in
+#    beos* | openbsd*)
+#      FLOAT_H=float.h
+#      gl_CHECK_NEXT_HEADERS([float.h])
+
+File: ./m4/flock.m4
+Hash: 46ec46659d20d4d889859493fcff0d6fa0adf9c0f714cf2e1f26abc0d5d26878
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## flock.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FLOCK],
+#[
+#  AC_REQUIRE([gl_HEADER_SYS_FILE_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([flock])
+#  if test $ac_cv_func_flock = no; then
+#    HAVE_FLOCK=0
+#    AC_LIBOBJ([flock])
+#    gl_PREREQ_FLOCK
+#  fi
+
+File: ./m4/floor.m4
+Hash: 1c106d3c05b2afa08097d196eed80b85166a5c7058ba2e9e36be6635d27b1cec
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## floor.m4 serial 3
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FLOOR],
+#[
+#  dnl Test whether floor() can be used without libm.
+#  gl_FUNC_FLOOR_LIBS
+#  if test "$FLOOR_LIBM" = "?"; then
+#    FLOOR_LIBM=
+#  fi
+#  AC_SUBST([FLOOR_LIBM])
+#])
+
+File: ./m4/floorf.m4
+Hash: aa5e12760098221878cffc006320adffba688133460e279f740759c7faec4b05
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## floorf.m4 serial 4
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FLOORF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare floorf().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether floorf() is declared.
+#  AC_CHECK_DECLS([floorf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_floorf" = yes; then
+#    dnl Test whether floorf() can be used without libm.
+
+File: ./m4/floorl.m4
+Hash: b85a4fe69e190a88a16dd404a61599e8070a3b3bf9ab37c9690b543c81b629e3
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## floorl.m4 serial 4
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FLOORL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare floorl().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether floorl() is declared.
+#  AC_CHECK_DECLS([floorl], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_floorl" = yes; then
+#    dnl Test whether floorl() can be used without libm.
+
+File: ./m4/fnmatch.m4
+Hash: 5ad2559cc52140959c55fdd9939dbda831638089cfc85ed96288f33906ae6f79
+License: 
+Copyright: 2000-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Check for fnmatch - serial 4.
+#
+## Copyright (C) 2000-2007, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Autoconf defines AC_FUNC_FNMATCH, but that is obsolescent.
+## New applications should use the macros below instead.
+#
+## Request a POSIX compliant fnmatch function.
+#AC_DEFUN([gl_FUNC_FNMATCH_POSIX],
+#[
+#  m4_divert_text([DEFAULTS], [gl_fnmatch_required=POSIX])
+
+File: ./m4/fopen.m4
+Hash: ad0e94c6fd7ae83f339ed3ab8e1bff3dd2758d7f6031df649ed0b0b97f6e0be1
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fopen.m4 serial 5
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FOPEN],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  case "$host_os" in
+#    mingw* | pw*)
+#      dnl Replace fopen, for handling of "/dev/null".
+#      REPLACE_FOPEN=1
+#      dnl fopen on mingw also has the trailing slash bug.
+
+File: ./m4/fpending.m4
+Hash: 15e76893dd5eb2ccd584f05adfd4d0bf825205860f2ff756e9e1020c18908f66
+License: 
+Copyright: 2000-2001, 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 15
+#
+## Copyright (C) 2000-2001, 2004-2009 Free Software Foundation, Inc.
+## 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.
+#
+#dnl From Jim Meyering
+#dnl Using code from emacs, based on suggestions from Paul Eggert
+#dnl and Ulrich Drepper.
+#
+#dnl Find out how to determine the number of pending output bytes on a stream.
+#dnl glibc (2.1.93 and newer) and Solaris provide __fpending.  On other systems,
+#dnl we have to grub around in the FILE struct.
+
+File: ./m4/fpieee.m4
+Hash: 3f59244481168ae5dfff004b81aeb6f8c894e83e649b61756a5728bbd99f7c0c
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fpieee.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl IEEE 754 standardized three items:
+#dnl - The formats of single-float and double-float - nowadays commonly
+#dnl   available as 'float' and 'double' in C and C++.
+#dnl   No autoconf test needed.
+#dnl - The overflow and division by zero behaviour: The result are values
+#dnl   '±Inf' and 'NaN', rather than exceptions as it was before.
+#dnl   This file provides an autoconf macro for ensuring this behaviour of
+#dnl   floating-point operations.
+#dnl - A set of conditions (overflow, underflow, inexact, etc.) which can
+
+File: ./m4/fprintf-posix.m4
+Hash: a6008d1598b7a24895a472734caac4147d7e0e83af64445440435d102702f0db
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fprintf-posix.m4 serial 14
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/fprintftime.m4
+Hash: b7fa3778dc0b75cfe801816cc9055dc7cf465859763cf969813048c198e5a4f2
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FPRINTFTIME],
+#[
+#  AC_LIBOBJ([fprintftime])
+#])
+
+File: ./m4/fpurge.m4
+Hash: f62512d54c7b8d9c80dd8cce01a414ff826212c7c2c6248a9ed3c7b633c05db5
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fpurge.m4 serial 6
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FPURGE],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([fpurge])
+#  AC_CHECK_FUNCS_ONCE([__fpurge])
+#  AC_CHECK_DECLS([fpurge], , , [[#include <stdio.h>]])
+#  if test "x$ac_cv_func_fpurge" = xyes; then
+#    # Detect BSD bug.  Only cygwin 1.7 is known to be immune.
+#    AC_CACHE_CHECK([whether fpurge works], [gl_cv_func_fpurge_works],
+
+File: ./m4/freadable.m4
+Hash: 3bf013bf28d20f59da11208e07e1df5b7bce00db26854e6f051e7d5d9f8accab
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## freadable.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FREADABLE],
+#[
+#  AC_CHECK_FUNCS_ONCE([__freadable])
+#  if test $ac_cv_func___freadable = no; then
+#    AC_LIBOBJ([freadable])
+#  fi
+#])
+
+File: ./m4/freading.m4
+Hash: 1b93e3045ca266145966f8cc03253dc078a20bcc5718c4cbfb0143e96e71623b
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## freading.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FREADING],
+#[
+#  AC_CHECK_FUNCS_ONCE([__freading])
+#])
+
+File: ./m4/free.m4
+Hash: a73accbd96194e981cf77ac3c837092a69e5bc17d503029f7289b87d3b368a63
+License: 
+Copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Check whether free (NULL) is supposed to work.
+#
+## Copyright (C) 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Paul Eggert.
+#
+## We can't test for free (NULL) even at runtime, since it might
+## happen to "work" for our test program, but not in general.  So, be
+## conservative and use feature tests for relatively modern hosts,
+## where free (NULL) is known to work.  This costs a bit of
+## performance on some older hosts, but we can fix that later if
+## needed.
+
+File: ./m4/freopen.m4
+Hash: 5ebdad15bb6e2f7016d5c80253fb741aa55cd8d814b9540de1a847331950da0f
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## freopen.m4 serial 2
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FREOPEN],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  case "$host_os" in
+#    mingw* | pw*)
+#      REPLACE_FREOPEN=1
+#      AC_LIBOBJ([freopen])
+#      gl_PREREQ_FREOPEN
+
+File: ./m4/frexp.m4
+Hash: dc1ae79deeb763eff6de3d5298100b251865503e40b019a89e3db089bcad3a31
+License: 
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## frexp.m4 serial 7
+#dnl Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FREXP],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  FREXP_LIBM=
+#  AC_CACHE_CHECK([whether frexp() can be used without linking with libm],
+#    [gl_cv_func_frexp_no_libm],
+#    [
+#      AC_TRY_LINK([#include <math.h>
+#                   double x;],
+
+File: ./m4/frexpl.m4
+Hash: 9eaf5d91b7fdceaec549c9d2f9ab9d7e1310c826c42c98e3617d338820d46491
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## frexpl.m4 serial 9
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FREXPL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  FREXPL_LIBM=
+#  AC_CACHE_CHECK([whether frexpl() can be used without linking with libm],
+#    [gl_cv_func_frexpl_no_libm],
+#    [
+#      AC_TRY_LINK([#include <math.h>
+#                   long double x;],
+
+File: ./m4/fseek.m4
+Hash: 31705112d71a7dca0c55e58f71bb7793f5e8c34f031a0c8c3a9e5fc4e02f831d
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fseek.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FSEEK],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_FSEEKO])
+#  dnl When fseeko needs fixes, fseek needs them too.
+#  if test $REPLACE_FSEEKO != 0; then
+#    AC_LIBOBJ([fseek])
+#    REPLACE_FSEEK=1
+#  fi
+
+File: ./m4/fseeko.m4
+Hash: 6395a4c99169cdd30546e688899aafb3463f40f644f76627f7faa5ae579e04ee
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fseeko.m4 serial 4
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FSEEKO],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_REQUIRE([gl_STDIN_LARGE_OFFSET])
+#
+#  dnl Persuade glibc <stdio.h> to declare fseeko().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+
+File: ./m4/fstypename.m4
+Hash: febf3d78aaad07d686dc0df84606d52ac546108e705860bb0215d8ce5a405cc9
+License: 
+Copyright: 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 6
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl See if struct statfs has the f_fstypename member.
+#dnl If so, define HAVE_STRUCT_STATFS_F_FSTYPENAME.
+#dnl
+#
+## Copyright (C) 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc.
+## 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.
+#
+#AC_DEFUN([gl_FSTYPENAME],
+#[
+
+File: ./m4/fsusage.m4
+Hash: 3f4ff242e495ac68b8e83f016aa01d83f890eb555ecd89730b95db0b1519d48b
+License: 
+Copyright: 1997-1998, 2000-2001, 2003-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 25
+## Obtaining file system usage information.
+#
+## Copyright (C) 1997-1998, 2000-2001, 2003-2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+## Written by Jim Meyering.
+#
+#AC_DEFUN([gl_FSUSAGE],
+#[
+#  AC_CHECK_HEADERS_ONCE([sys/param.h])
+#  AC_CHECK_HEADERS_ONCE([sys/vfs.h sys/fs_types.h])
+
+File: ./m4/fsync.m4
+Hash: 77db5b0972952ed1ea04f93e7da8814121e35fe2dd6ac987ecb230dad1ff2e6a
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fsync.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FSYNC],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([fsync])
+#  if test $ac_cv_func_fsync = no; then
+#    HAVE_FSYNC=0
+#    AC_LIBOBJ([fsync])
+#    gl_PREREQ_FSYNC
+#  fi
+
+File: ./m4/ftell.m4
+Hash: d75a25a7df953391070aaf846037d45c4acd0b49dec2f2b6d5ffd42efa912d8f
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ftell.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FTELL],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_FTELLO])
+#  dnl When ftello needs fixes, ftell needs them too.
+#  if test $REPLACE_FTELLO != 0; then
+#    AC_LIBOBJ([ftell])
+#    REPLACE_FTELL=1
+#  fi
+
+File: ./m4/ftello.m4
+Hash: 8325ff7415b489bb4cda6d66da300385b44ef26bc5d2d2f0dcea088931d45276
+License: 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ftello.m4 serial 4
+#dnl Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FTELLO],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_REQUIRE([gl_STDIN_LARGE_OFFSET])
+#
+#  dnl Persuade glibc <stdio.h> to declare fseeko().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+
+File: ./m4/ftruncate.m4
+Hash: f7488bef88571b9f271591596eb95b19045177a6732d63cf4f1d4bbb4682840d
+License: 
+Copyright: 2000, 2001, 2003-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 14
+#
+## See if we need to emulate a missing ftruncate function using fcntl or chsize.
+#
+## Copyright (C) 2000, 2001, 2003-2007, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## FIXME: remove this macro, along with all uses of HAVE_FTRUNCATE in 2010,
+## if the check below provokes no more reports.  So far, the only report
+## arose from a test build of this gnulib module, cross-compiling to mingw:
+## <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/9203>
+#
+#AC_DEFUN([gl_FUNC_FTRUNCATE],
+
+File: ./m4/fts.m4
+Hash: 4f513e7bacffd2fd728bbb1ba8590d68154aad24bd93f9e3f180437b79c5ceea
+License: 
+Copyright: 2005-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 16
+#dnl Copyright (C) 2005-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FTS],
+#[
+#  gl_FUNC_FTS_CORE
+#])
+#
+#AC_DEFUN([gl_FUNC_FTS_LGPL],
+#[
+#  gl_FUNC_FTS_CORE
+#])
+
+File: ./m4/func.m4
+Hash: 399a8add7bf539263c73610b55864fa380c55b671a1475c2665b4e44a492f651
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## func.m4 serial 2
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Written by Simon Josefsson
+#
+#AC_DEFUN([gl_FUNC],
+#[
+#  AC_CACHE_CHECK([whether __func__ is available], [gl_cv_var_func],
+#     AC_COMPILE_IFELSE(
+#       [AC_LANG_PROGRAM([[]], [[const char *str = __func__;]])],
+#       [gl_cv_var_func=yes],
+#       [gl_cv_var_func=no]))
+
+File: ./m4/fwritable.m4
+Hash: 5e3d7fabafc4390341689eab88fb336422580b76c3d8e69bf3ee14c4d1b8fb5f
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fwritable.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FWRITABLE],
+#[
+#  AC_CHECK_FUNCS_ONCE([__fwritable])
+#  if test $ac_cv_func___fwritable = no; then
+#    AC_LIBOBJ([fwritable])
+#  fi
+#])
+
+File: ./m4/fwriting.m4
+Hash: 1ad3e75d2fb60d18c45f3836e75300e8269bc88ec64462820c09c910d9f52503
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## fwriting.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_FWRITING],
+#[
+#  AC_CHECK_FUNCS_ONCE([__fwriting])
+#  if test $ac_cv_func___fwriting = no; then
+#    AC_LIBOBJ([fwriting])
+#  fi
+#])
+
+File: ./m4/gc-arcfour.m4
+Hash: 9efa840a3efc3447c567fa7289fe2ebe32bb1d871418edd1b4b24110a85851df
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-arcfour.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_ARCFOUR],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_ARCFOUR
+#  fi
+#])
+
+File: ./m4/gc-arctwo.m4
+Hash: 2e87cd8b7b772699b901021af1778dc199583766bcde241517d2b31dede60e28
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-arctwo.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_ARCTWO],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_ARCTWO
+#  fi
+#])
+
+File: ./m4/gc-camellia.m4
+Hash: 1cc1d8a7ebf5b851e2e4dbd647b73831533ee517189c1e5b42395944508f3c90
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-camellia.m4 serial 2
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_CAMELLIA],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" = yes; then
+#    AC_CACHE_CHECK([for camellia in libgcrypt], [gl_cv_libgcrypt_camellia], [
+#      AC_TRY_COMPILE([#include <gcrypt.h>],
+#        [return gcry_cipher_open (NULL, GCRY_CIPHER_CAMELLIA128, 0, 0);],
+#        [gl_cv_libgcrypt_camellia=yes],
+#        [gl_cv_libgcrypt_camellia=no])])
+
+File: ./m4/gc-des.m4
+Hash: 00b153202ac5b51eb239ca87808efccc65a24713beb6211f670533ac858b2417
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-des.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_DES],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_DES
+#  fi
+#])
+
+File: ./m4/gc-hmac-md5.m4
+Hash: 2cc833715be1b2e57351273907eaff653c0165732898f852fbc4aac9a9eaf89c
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-hmac-md5.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_HMAC_MD5],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_MD5
+#    gl_HMAC_MD5
+#    gl_MEMXOR
+#  fi
+#])
+
+File: ./m4/gc-hmac-sha1.m4
+Hash: b1c3c8753c14de1d3eddf5de258bbfbad6c215251cd5b61018a7515d6cef20e6
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-hmac-sha1.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_HMAC_SHA1],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_SHA1
+#    gl_HMAC_SHA1
+#    gl_MEMXOR
+#  fi
+#])
+
+File: ./m4/gc-md2.m4
+Hash: ac2dbdefb3eb77364d1898cf795c625244227b19b4d0ea88ed078d333cf09ea9
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-md2.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_MD2],
+#[
+#])
+
+File: ./m4/gc-md4.m4
+Hash: eb88ac5149f21b181faa2db6f1b13cb63b4902c3ef347111cf4fe93d44407c6f
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-md4.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_MD4],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_MD4
+#  fi
+#])
+
+File: ./m4/gc-md5.m4
+Hash: afc266c338301066708dc7430a92399e3d8716e33001daba899c95640e527f0c
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-md5.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_MD5],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_MD5
+#  fi
+#])
+
+File: ./m4/gc-pbkdf2-sha1.m4
+Hash: 477893cd24822028dd94a1f6ec75e6effc823ddbe57289886454a1b353c1b8eb
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-pbkdf2-sha1.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_PBKDF2_SHA1],
+#[
+#  AC_LIBOBJ([gc-pbkdf2-sha1])
+#])
+
+File: ./m4/gc-random.m4
+Hash: 7c6359250cc4a22a27311b673688f6b1f0622d00c42f57e47425c75c31dd6b17
+License: 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-random.m4 serial 4
+#dnl Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_RANDOM],
+#[
+#  # Devices with randomness.
+#  # FIXME: Are these the best defaults?
+#
+#  AC_REQUIRE([AC_CANONICAL_HOST])dnl
+#
+#  case "$host_os" in
+#    *openbsd*)
+
+File: ./m4/gc-rijndael.m4
+Hash: 6caca24fa5408e0286cbdfb716068d66a352c80142643dba35fcd4011bf6a33e
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-rijndael.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_RIJNDAEL],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_RIJNDAEL
+#  fi
+#])
+
+File: ./m4/gc-sha1.m4
+Hash: 443bfafc3a5eb25299291d7dcfef2ed68f0b57841caf360fc8eb1abb0f32493a
+License: 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc-sha1.m4 serial 2
+#dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC_SHA1],
+#[
+#  AC_REQUIRE([gl_GC])
+#  if test "$ac_cv_libgcrypt" != yes; then
+#    gl_SHA1
+#  fi
+#])
+
+File: ./m4/gc.m4
+Hash: a8f9ebf6d8f1983cbd8b32378b928174f6026da55c11a81aae47e2b2e1c25142
+License: 
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gc.m4 serial 5
+#dnl Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GC],
+#[
+#  AC_ARG_WITH([libgcrypt],
+#    AS_HELP_STRING([--with-libgcrypt], [use libgcrypt for low-level crypto]),
+#    libgcrypt=$withval, libgcrypt=no)
+#  if test "$libgcrypt" != no; then
+#    AC_LIB_HAVE_LINKFLAGS([gcrypt], [], [#include <gcrypt.h>])
+#  fi
+#  if test "$ac_cv_libgcrypt" = yes; then
+
+File: ./m4/getaddrinfo.m4
+Hash: 162f35cf358a5ad9b171d16e437f37a717d01d22d5f17725767ed7f76f6b650b
+License: 
+Copyright: 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getaddrinfo.m4 serial 20
+#dnl Copyright (C) 2004-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GETADDRINFO],
+#[
+#  AC_REQUIRE([gl_HEADER_SYS_SOCKET])dnl for HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H
+#  AC_REQUIRE([gl_HEADER_NETDB])dnl for HAVE_NETDB_H
+#  AC_MSG_NOTICE([checking how to do getaddrinfo, freeaddrinfo and getnameinfo])
+#  GETADDRINFO_LIB=
+#  gai_saved_LIBS="$LIBS"
+#
+#  dnl Where is getaddrinfo()?
+
+File: ./m4/getcwd-abort-bug.m4
+Hash: fd355ed2ae698981232b9c3a5b92ee842d9928342394217c98f5576848b08577
+License: 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 2
+## Determine whether getcwd aborts when the length of the working directory
+## name is unusually large.  Any length between 4k and 16k trigger the bug
+## when using glibc-2.4.90-9 or older.
+#
+## Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## From Jim Meyering
+#
+## gl_FUNC_GETCWD_ABORT_BUG([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
+#AC_DEFUN([gl_FUNC_GETCWD_ABORT_BUG],
+#[
+
+File: ./m4/getcwd-path-max.m4
+Hash: bb780d0c969c10a9d14d8d61d726b682113b7fe3a5505eee66e649fefe99c063
+License: 
+Copyright: 2003-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 14
+## Check for several getcwd bugs with long file names.
+## If so, arrange to compile the wrapper function.
+#
+## This is necessary for at least GNU libc on linux-2.4.19 and 2.4.20.
+## I've heard that this is due to a Linux kernel bug, and that it has
+## been fixed between 2.4.21-pre3 and 2.4.21-pre4.  */
+#
+## Copyright (C) 2003-2007, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## From Jim Meyering
+
+File: ./m4/getcwd.m4
+Hash: 0fc304520a41fcf7ad345780a1cb9eaf73bef3856834b3448bc2283210c77b07
+License: 
+Copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getcwd.m4 - check for working getcwd that is compatible with glibc
+#
+## Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Paul Eggert.
+#
+#AC_DEFUN([gl_FUNC_GETCWD_NULL],
+#  [
+#   AC_CACHE_CHECK([whether getcwd (NULL, 0) allocates memory for result],
+#     [gl_cv_func_getcwd_null],
+#     [AC_TRY_RUN(
+#        [
+
+File: ./m4/getdate.m4
+Hash: c237091fdbe4035e27c3be4829e9e1798870c51bb982585a5c11c1bca74fb1ee
+License: 
+Copyright: 2002-2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getdate.m4 serial 14
+#dnl Copyright (C) 2002-2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Define HAVE_COMPOUND_LITERALS if the C compiler supports compound literals
+#dnl as in ISO C99.
+#dnl Note that compound literals such as (struct s) { 3, 4 } can be used for
+#dnl initialization of stack-allocated variables, but are not constant
+#dnl expressions and therefore cannot be used as initializer for global or
+#dnl static variables (even though gcc supports this in pre-C99 mode).
+#AC_DEFUN([gl_C_COMPOUND_LITERALS],
+#[
+#  AC_CACHE_CHECK([for compound literals], [gl_cv_compound_literals],
+
+File: ./m4/getdelim.m4
+Hash: b6b738dbf34edff9dc3d2f0be5088bfb974fdbe55ac6aa7a255b39a851384122
+License: 
+Copyright: 2005, 2006, 2007 Free Software dnl Foundation, Inc
+Licence-Text: 
+#Header: 
+## getdelim.m4 serial 5
+#
+#dnl Copyright (C) 2005, 2006, 2007 Free Software dnl Foundation, Inc.
+#dnl
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_PREREQ([2.59])
+#
+#AC_DEFUN([gl_FUNC_GETDELIM],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#
+#  dnl Persuade glibc <stdio.h> to declare getdelim().
+
+File: ./m4/getdomainname.m4
+Hash: 7fb3faebffb6a66d558b99423801631258e92e4a782809f808d9f7cd0bcb5094
+License: 
+Copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getdomainname.m4 serial 4
+#dnl Copyright (C) 2002-2003, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_GETDOMAINNAME],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  dnl Persuade glibc <unistd.h> to declare getdomainname().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REPLACE_FUNCS([getdomainname])
+#  if test $ac_cv_func_getdomainname = no; then
+
+File: ./m4/getdtablesize.m4
+Hash: 67ccf670de71994ed6710e1897f64f871a74271c9af2c827cbe55bfaa538a8de
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getdtablesize.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_GETDTABLESIZE],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([getdtablesize])
+#  if test $ac_cv_func_getdtablesize != yes; then
+#    HAVE_GETDTABLESIZE=0
+#    AC_LIBOBJ([getdtablesize])
+#  fi
+#])
+
+File: ./m4/getgroups.m4
+Hash: c3ad064f9d4de711f983f1b373e261e6c5c254520cf1cd2353e98941b5fd3285
+License: 
+Copyright: 1996-1997, 1999-2004, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 12
+#
+#dnl From Jim Meyering.
+#dnl A wrapper around AC_FUNC_GETGROUPS.
+#
+## Copyright (C) 1996-1997, 1999-2004, 2008-2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+#AC_DEFUN([gl_FUNC_GETGROUPS],
+#[
+#  AC_REQUIRE([AC_FUNC_GETGROUPS])
+#  if test "$ac_cv_func_getgroups_works" != yes; then
+
+File: ./m4/gethostname.m4
+Hash: 9fd3d06a71eff8d2be5bd62a266b0bd71283c871f3dda177fb83476dd922e426
+License: 
+Copyright: 2002, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gethostname.m4 serial 8
+#dnl Copyright (C) 2002, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Ensure
+## - the gethostname() function,
+## - the HOST_NAME_MAX macro in <limits.h>.
+#AC_DEFUN([gl_FUNC_GETHOSTNAME],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  gl_PREREQ_SYS_H_WINSOCK2
+#
+#  dnl Where is gethostname() defined?
+
+File: ./m4/gethrxtime.m4
+Hash: 84c7e59b44315629631075311dee0c40fcc834324dd7672cb0f3148be10ba6a4
+License: 
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gethrxtime.m4 serial 8
+#dnl Copyright (C) 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Paul Eggert.
+#
+#AC_DEFUN([gl_GETHRXTIME],
+#[
+#  AC_REQUIRE([gl_ARITHMETIC_HRTIME_T])
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_REQUIRE([gl_XTIME])
+#  AC_CHECK_DECLS([gethrtime], [], [], [#include <time.h>])
+#  case $ac_cv_have_decl_gethrtime,$gl_cv_arithmetic_hrtime_t in
+
+File: ./m4/getline.m4
+Hash: 89ec9fb86746e481d3340d6a2bec769a1bb1ea00e6ed30bdea292e8f1242036a
+License: 
+Copyright: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getline.m4 serial 19
+#
+#dnl Copyright (C) 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_PREREQ([2.59])
+#
+#dnl See if there's a working, system-supplied version of the getline function.
+#dnl We can't just do AC_REPLACE_FUNCS([getline]) because some systems
+#dnl have a function by that name in -linet that doesn't have anything
+#dnl to do with the function we need.
+#AC_DEFUN([gl_FUNC_GETLINE],
+
+File: ./m4/getloadavg.m4
+Hash: 7b0c35c25d813983e2ffc981ad4773d7cbcf126d0d853391cee73b7ad3e60db4
+License: 
+Copyright: 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003
+Licence-Text: 
+#Header: 
+## Check for getloadavg.
+#
+## Copyright (C) 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003,
+## 2006, 2008, 2009 Free Software Foundation, Inc.
+#
+## 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.
+#
+## Autoconf defines AC_FUNC_GETLOADAVG, but that is obsolescent.
+## New applications should use gl_GETLOADAVG instead.
+#
+## gl_GETLOADAVG(LIBOBJDIR)
+## ------------------------
+#AC_DEFUN([gl_GETLOADAVG],
+
+File: ./m4/getlogin_r.m4
+Hash: f42c8994afabe3f85235db3850925d5e613daad1e9f64024023826ff10feef97
+License: 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 4
+#
+## Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+##
+## 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.
+#
+#dnl From Derek Price
+#dnl
+#dnl Provide getlogin_r when the system lacks it.
+#dnl
+#
+#AC_DEFUN([gl_GETLOGIN_R],
+#[
+
+File: ./m4/getndelim2.m4
+Hash: 3172ac8aa677c2d97b39f9d6af0fed26d2fed4da679b616e668066329ec2bd1e
+License: 
+Copyright: 2003, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getndelim2.m4 serial 7
+#dnl Copyright (C) 2003, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GETNDELIM2],
+#[
+#  AC_LIBOBJ([getndelim2])
+#  gl_PREREQ_GETNDELIM2
+#  AC_CHECK_FUNCS_ONCE([flockfile])
+#  AC_CHECK_FUNCS_ONCE([funlockfile])
+#])
+#
+## Prerequisites of lib/getndelim2.h and lib/getndelim2.c.
+
+File: ./m4/getnline.m4
+Hash: 9af45bdccbe7d6ae432a8112390145eaa29f89ba5e448fe8aadd58355ce77f7d
+License: 
+Copyright: 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getnline.m4 serial 3
+#dnl Copyright (C) 2003 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GETNLINE],
+#[
+#  dnl Prerequisites of lib/getnline.h.
+#  AC_REQUIRE([gt_TYPE_SSIZE_T])
+#  dnl Prerequisites of lib/getnline.c.
+#  :
+#])
+
+File: ./m4/getopt.m4
+Hash: 5f06c376d4d0eab902bcd59374dcc3569716156e6a5b3a9f057e901cd8460904
+License: 
+Copyright: 2002-2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getopt.m4 serial 21
+#dnl Copyright (C) 2002-2006, 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Request a POSIX compliant getopt function.
+#AC_DEFUN([gl_FUNC_GETOPT_POSIX],
+#[
+#  m4_divert_text([DEFAULTS], [gl_getopt_required=POSIX])
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  gl_GETOPT_IFELSE([
+#    gl_REPLACE_GETOPT
+#  ],
+#  [])
+
+File: ./m4/getpagesize.m4
+Hash: 2b7fd04beb6e26d86c114fa975404317f7fa575b5902dae6f392c060fb8bce22
+License: 
+Copyright: 2002, 2004-2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getpagesize.m4 serial 7
+#dnl Copyright (C) 2002, 2004-2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_GETPAGESIZE],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_CHECK_FUNCS([getpagesize])
+#  if test $ac_cv_func_getpagesize = no; then
+#    HAVE_GETPAGESIZE=0
+#    AC_CHECK_HEADERS([OS.h])
+#    if test $ac_cv_header_OS_h = yes; then
+
+File: ./m4/getpass.m4
+Hash: a34c89dcb9d116383941ad1d076e7df7db9ecaa7058c9a85b09d0b938d5dc5a8
+License: 
+Copyright: 2002-2003, 2005-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getpass.m4 serial 11
+#dnl Copyright (C) 2002-2003, 2005-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Provide a getpass() function if the system doesn't have it.
+#AC_DEFUN([gl_FUNC_GETPASS],
+#[
+#  AC_REPLACE_FUNCS([getpass])
+#  AC_CHECK_DECLS_ONCE([getpass])
+#  if test $ac_cv_func_getpass = no; then
+#    gl_PREREQ_GETPASS
+#  fi
+#])
+
+File: ./m4/getsubopt.m4
+Hash: 9b04ceb2d89042a3ff134954522fe3cefea7441790d31ab74fc2d0c265c1309d
+License: 
+Copyright: 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getsubopt.m4 serial 4
+#dnl Copyright (C) 2004, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_GETSUBOPT],
+#[
+#  dnl Persuade glibc <stdlib.h> to declare getsubopt().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([getsubopt])
+#  if test $ac_cv_func_getsubopt = no; then
+#    HAVE_GETSUBOPT=0
+
+File: ./m4/gettext.m4
+Hash: 209767111675e6bd3167db5ee4bbcde54189112719d3de3db9f87f6850f60440
+License: 
+Copyright: 1995-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gettext.m4 serial 62 (gettext-0.18)
+#dnl Copyright (C) 1995-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+
+File: ./m4/gettime.m4
+Hash: 2dee3947ea628455e6f99a9429ca412a5727e6ae81fcfc765de229a5f214cb4e
+License: 
+Copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gettime.m4 serial 7
+#dnl Copyright (C) 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GETTIME],
+#[
+#  AC_LIBOBJ([gettime])
+#
+#  dnl Prerequisites of lib/gettime.c.
+#  AC_REQUIRE([gl_CLOCK_TIME])
+#  AC_REQUIRE([gl_TIMESPEC])
+#  AC_CHECK_FUNCS_ONCE([gettimeofday nanotime])
+#])
+
+File: ./m4/gettimeofday.m4
+Hash: 2813667e7bf563ab4d0f747953be0ea2a763ff773c3f251ff9f08daf2f33013b
+License: 
+Copyright: 2001-2003, 2005, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 12
+#
+## Copyright (C) 2001-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
+## 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.
+#
+#dnl From Jim Meyering.
+#
+#AC_DEFUN([gl_FUNC_GETTIMEOFDAY],
+#[
+#  AC_REQUIRE([AC_C_RESTRICT])
+#  AC_REQUIRE([gl_HEADER_SYS_TIME_H])
+#  AC_CHECK_FUNCS_ONCE([gettimeofday])
+
+File: ./m4/getugroups.m4
+Hash: 5fa33ebc62e80a7f354f6e432c4dac78bac05bd75f9381b430a0f638994381ea
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getugroups.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_GETUGROUPS],
+#[
+#  AC_LIBOBJ([getugroups])
+#
+#  dnl Prerequisites of lib/getugroups.c.
+#  AC_TYPE_GETGROUPS
+#])
+
+File: ./m4/getusershell.m4
+Hash: 85822f50f91b2679b6b3607288c46cd4fb5c2f08c12a4329a1ff7de39e2766c0
+License: 
+Copyright: 2002, 2003, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## getusershell.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2006, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_GETUSERSHELL],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  dnl Persuade glibc <unistd.h> to declare {get,set,end}usershell().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REPLACE_FUNCS([getusershell])
+#  if test $ac_cv_func_getusershell = no; then
+
+File: ./m4/gl_list.m4
+Hash: 8b2a1802af815eebecaaf1e75e8931f2f40e8f48695c96b0230339ff56d88eaa
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gl_list.m4 serial 2
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_LIST],
+#[
+#  AC_REQUIRE([gl_INLINE])
+#])
+
+File: ./m4/glibc2.m4
+Hash: 11b39a2f3ca03b195c0ff0fb9170ea87fbe38dd4ff8a481000feb62e48168c97
+License: 
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## glibc2.m4 serial 2
+#dnl Copyright (C) 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Test for the GNU C Library, version 2.0 or newer.
+## From Bruno Haible.
+#
+#AC_DEFUN([gt_GLIBC2],
+#  [
+#    AC_CACHE_CHECK([whether we are using the GNU C Library 2 or newer],
+#      [ac_cv_gnu_library_2],
+#      [AC_EGREP_CPP([Lucky GNU user],
+#      [
+
+File: ./m4/glibc21.m4
+Hash: c38afe2c0836f2ddec80a6aac76a85735b6b0a3e487fea600816d7a460492c6f
+License: 
+Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## glibc21.m4 serial 4
+#dnl Copyright (C) 2000-2002, 2004, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Test for the GNU C Library, version 2.1 or newer.
+## From Bruno Haible.
+#
+#AC_DEFUN([gl_GLIBC21],
+#  [
+#    AC_CACHE_CHECK([whether we are using the GNU C Library 2.1 or newer],
+#      [ac_cv_gnu_library_2_1],
+#      [AC_EGREP_CPP([Lucky GNU user],
+#      [
+
+File: ./m4/glob.m4
+Hash: a90e23db91a3c58be62de6c2bf9556087e2266f338a41bbdfe4d4e9c9017fe47
+License: 
+Copyright: 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## glob.m4 serial 10
+#dnl Copyright (C) 2005-2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## The glob module assumes you want GNU glob, with glob_pattern_p etc,
+## rather than vanilla POSIX glob.  This means your code should
+## always include <glob.h> for the glob prototypes.
+#
+#AC_DEFUN([gl_GLOB_SUBSTITUTE],
+#[
+#  gl_PREREQ_GLOB
+#
+#  GLOB_H=glob.h
+
+File: ./m4/gnu-make.m4
+Hash: 70a7aba0c8a2889370654a6a63b8c36d43163088c2fa61cf20d080eb6151bb6f
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Determine whether recent-enough GNU Make is being used.
+#
+## Copyright (C) 2007 Free Software Foundation, Inc.
+#
+## 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.
+#
+## Written by Paul Eggert.
+#
+## Set GNU_MAKE if we are using a recent-enough version of GNU make.
+#
+## Use --version AND trailing junk, because SGI Make doesn't fail on --version.
+#
+#AC_DEFUN([gl_GNU_MAKE],
+
+File: ./m4/gnulib-common.m4
+Hash: cf953d1ede907c6631070667a43748f8f22368503be57c4207aba45ea49e1804
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gnulib-common.m4 serial 11
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## gl_COMMON
+## is expanded unconditionally through gnulib-tool magic.
+#AC_DEFUN([gl_COMMON], [
+#  dnl Use AC_REQUIRE here, so that the code is expanded once only.
+#  AC_REQUIRE([gl_00GNULIB])
+#  AC_REQUIRE([gl_COMMON_BODY])
+#])
+#AC_DEFUN([gl_COMMON_BODY], [
+#  AH_VERBATIM([isoc99_inline],
+
+File: ./m4/gnulib-tool.m4
+Hash: c6d2fd9c5bba8e3f3ebfc4650a4b9d0432d43d2e4810f637fda353b1f61d7de7
+License: 
+Copyright: 2004-2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## gnulib-tool.m4 serial 2
+#dnl Copyright (C) 2004-2005 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl The following macros need not be invoked explicitly.
+#dnl Invoking them does nothing except to declare default arguments
+#dnl for "gnulib-tool --import".
+#
+#dnl Usage: gl_LOCAL_DIR([DIR])
+#AC_DEFUN([gl_LOCAL_DIR], [])
+#
+#dnl Usage: gl_MODULES([module1 module2 ...])
+#AC_DEFUN([gl_MODULES], [])
+
+File: ./m4/group-member.m4
+Hash: b9ef1ff8203530e2e78714b55cf01b1bbf1c7c258b61ee3536c1cb5892bd8d16
+License: 
+Copyright: 1999-2001, 2003-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 12
+#
+## Copyright (C) 1999-2001, 2003-2007, 2009 Free Software Foundation, Inc.
+#
+## 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.
+#
+#dnl Written by Jim Meyering
+#
+#AC_DEFUN([gl_FUNC_GROUP_MEMBER],
+#[
+#  dnl Persuade glibc <unistd.h> to declare group_member().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+
+File: ./m4/hard-locale.m4
+Hash: 97264040027e35bb6dbe3df675fe93938e7a66d8b148d6fba0ecc36e19d5cf40
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## hard-locale.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl No prerequisites of lib/hard-locale.c.
+#AC_DEFUN([gl_HARD_LOCALE],
+#[
+#  AC_LIBOBJ([hard-locale])
+#])
+
+File: ./m4/hash.m4
+Hash: 819523e80720760423e01ca0720b2940895aef21577d206f09dbc782bf0f5d93
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## hash.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_HASH],
+#[
+#  AC_LIBOBJ([hash])
+#
+#  dnl Prerequisites of lib/hash.c.
+#  AC_REQUIRE([AM_STDBOOL_H])
+#])
+
+File: ./m4/hmac-md5.m4
+Hash: 01aa0b99269598138f369e395801e415957d1f5e99e42b67da35a667bd88f307
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## hmac-md5.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_HMAC_MD5],
+#[
+#  AC_LIBOBJ([hmac-md5])
+#])
+
+File: ./m4/hmac-sha1.m4
+Hash: f261317ddd13a6feb35c7a801adc7f7156819362d3d5efd1e0636fc54e3f67cc
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## hmac-sha1.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_HMAC_SHA1],
+#[
+#  AC_LIBOBJ([hmac-sha1])
+#])
+
+File: ./m4/host-os.m4
+Hash: cf2577e3c69f36ee157700e347082ddfb55659d7ec921569d78be17be2df1a3f
+License: 
+Copyright: 2001, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 7
+#
+## Copyright (C) 2001, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Paul Eggert.
+#
+#dnl From Paul Eggert.
+#
+## Define HOST_OPERATING_SYSTEM to a name for the host operating system.
+#AC_DEFUN([gl_HOST_OS],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])dnl
+
+File: ./m4/hostent.m4
+Hash: 86614585cb9169151c04f411f5a9e8f576954e89bf686b988b3ec4e8d56234be
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## hostent.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_HOSTENT],
+#[
+#  dnl Where are gethostent(), sethostent(), endhostent(), gethostbyname(),
+#  dnl gethostbyaddr() defined?
+#  dnl - On Solaris, they are in libnsl. Ignore libxnet.
+#  dnl - On Haiku, they are in libnetwork.
+#  dnl - On BeOS, they are in libnet.
+#  dnl - On native Windows, they are in ws2_32.dll.
+#  dnl - Otherwise they are in libc.
+
+File: ./m4/human.m4
+Hash: a7fb86bd0bbe797cf1a99630e2764b76f2a8c322acdb3fd3e32d9f5f52288246
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 10
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_HUMAN],
+#[
+#  AC_LIBOBJ([human])
+#
+#  dnl Prerequisites of lib/human.c.
+#  :
+#])
+
+File: ./m4/i-ring.m4
+Hash: 8a89b11945fad17cf70d3830685f646050122bba7c19ecca33a7feec4e7b73a6
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 1
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_I_RING],
+#[
+#  AC_LIBOBJ([i-ring])
+#])
+
+File: ./m4/iconv.m4
+Hash: 58adc1feb91f7df348f3072f3187d4b2487b22efb486a17366fdefadfe1e2453
+License: 
+Copyright: 2000-2002, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## iconv.m4 serial AM8 (gettext-0.18)
+#dnl Copyright (C) 2000-2002, 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([AM_ICONV_LINKFLAGS_BODY],
+#[
+#  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
+#  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
+#  AC_REQUIRE([AC_LIB_RPATH])
+#
+#  dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV
+
+File: ./m4/iconv_h.m4
+Hash: 4bf94c8ab903d28caab6ad4c0ff7f6976cff8aac193e26f06a4ef161ab7cfb7f
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## iconv_h.m4 serial 4
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ICONV_H],
+#[
+#  AC_REQUIRE([gl_ICONV_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([iconv.h])
+#])
+#
+#dnl Unconditionally enables the replacement of <iconv.h>.
+#AC_DEFUN([gl_REPLACE_ICONV_H],
+#[
+
+File: ./m4/iconv_open.m4
+Hash: cc6a4cffaeedc925c4b77d44679278ce74a324ae280a69086127a1244e575694
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## iconv_open.m4 serial 6
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ICONV_OPEN],
+#[
+#  AC_REQUIRE([AM_ICONV])
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([gl_ICONV_H_DEFAULTS])
+#  if test "$am_cv_func_iconv" = yes; then
+#    dnl Test whether iconv_open accepts standardized encoding names.
+#    dnl We know that GNU libiconv and GNU libc do.
+#    AC_EGREP_CPP([gnu_iconv], [
+
+File: ./m4/idcache.m4
+Hash: 684c8544db4656472183f046dacda8f3db85963ccd23353fbcd5dfe988c1356e
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## idcache.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_IDCACHE],
+#[
+#  AC_LIBOBJ([idcache])
+#])
+
+File: ./m4/idpriv.m4
+Hash: 5b4a91d383eb4ddf7108b571d3eeead786ce2af3a1dc207b5b5faee7009db536
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## idpriv.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_IDPRIV],
+#[
+#  dnl Persuade glibc <unistd.h> to declare {get,set}res{uid,gid}.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([getuid geteuid getresuid getgid getegid getresgid])
+#  AC_CHECK_FUNCS_ONCE([setresuid setreuid seteuid setresgid setregid setegid])
+#])
+
+File: ./m4/imaxabs.m4
+Hash: 9ac282ca81021c035a86c34f143d6b7a49de4067e4b69b1b93f39a146447bfac
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## imaxabs.m4 serial 1
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_IMAXABS],
+#[
+#  AC_REQUIRE([gl_INTTYPES_H])
+#  if test "$ac_cv_have_decl_imaxabs" != yes; then
+#    AC_LIBOBJ([imaxabs])
+#    gl_PREREQ_IMAXABS
+#  fi
+#])
+
+File: ./m4/imaxdiv.m4
+Hash: 5fadf938b03a5ea38a211bb8d57402bb672b551cbe5701a7d9db8d054dc16098
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## imaxdiv.m4 serial 1
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_IMAXDIV],
+#[
+#  AC_REQUIRE([gl_INTTYPES_H])
+#  if test "$ac_cv_have_decl_imaxdiv" != yes; then
+#    AC_LIBOBJ([imaxdiv])
+#    gl_PREREQ_IMAXDIV
+#  fi
+#])
+
+File: ./m4/include_next.m4
+Hash: fc10e0ad2c9bd80b98f37d913b9021a9b6538bbcea1386183abe1a5b7ae89d0e
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## include_next.m4 serial 14
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Paul Eggert and Derek Price.
+#
+#dnl Sets INCLUDE_NEXT and PRAGMA_SYSTEM_HEADER.
+#dnl
+#dnl INCLUDE_NEXT expands to 'include_next' if the compiler supports it, or to
+#dnl 'include' otherwise.
+#dnl
+#dnl INCLUDE_NEXT_AS_FIRST_DIRECTIVE expands to 'include_next' if the compiler
+#dnl supports it in the special case that it is the first include directive in
+
+File: ./m4/inet_ntop.m4
+Hash: 2961f88ceca9369b98135b582ea275427282cf3cee5edefabe6510f3a36637a3
+License: 
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## inet_ntop.m4 serial 9
+#dnl Copyright (C) 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_INET_NTOP],
+#[
+#  dnl Persuade Solaris <arpa/inet.h> to declare inet_ntop.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#
+#  gl_REPLACE_ARPA_INET_H
+#
+#  dnl The AC_SEARCH_LIBS call is a hack to persuade the Solaris 8 linker to
+#  dnl find inet_ntop.
+
+File: ./m4/inet_pton.m4
+Hash: 3f59e48fd6fa87c38851d0fb7f14d7fddeb46f50d526beeca3383d01002dfd06
+License: 
+Copyright: 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## inet_pton.m4 serial 7
+#dnl Copyright (C) 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_INET_PTON],
+#[
+#  dnl Persuade Solaris <arpa/inet.h> to declare inet_pton.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#
+#  gl_REPLACE_ARPA_INET_H
+#
+#  AC_REPLACE_FUNCS([inet_pton])
+#  gl_PREREQ_INET_PTON
+
+File: ./m4/inline.m4
+Hash: 1ce32c0db262c643f6c513cf276d533c45afeea4b8f10681b2fd8d8c770f0e9e
+License: 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## inline.m4 serial 4
+#dnl Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Test for the 'inline' keyword or equivalent.
+#dnl Define 'inline' to a supported equivalent, or to nothing if not supported,
+#dnl like AC_C_INLINE does.  Also, define HAVE_INLINE if 'inline' or an
+#dnl equivalent is effectively supported, i.e. if the compiler is likely to
+#dnl drop unused 'static inline' functions.
+#AC_DEFUN([gl_INLINE],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_CACHE_CHECK([whether the compiler generally respects inline],
+
+File: ./m4/intdiv0.m4
+Hash: 3b41e9fe7c042186c2004a938b8f651898d683f34d60198d65048c00eaffe3aa
+License: 
+Copyright: 2002, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## intdiv0.m4 serial 3 (gettext-0.18)
+#dnl Copyright (C) 2002, 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gt_INTDIV0],
+#[
+#  AC_REQUIRE([AC_PROG_CC])dnl
+#  AC_REQUIRE([AC_CANONICAL_HOST])dnl
+#
+#  AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],
+#    gt_cv_int_divbyzero_sigfpe,
+
+File: ./m4/intl.m4
+Hash: 0d7179b34d75a5812cc919c4190baf120690b0155fc61f344967c0805e0d566a
+License: 
+Copyright: 1995-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## intl.m4 serial 8 (gettext-0.17)
+#dnl Copyright (C) 1995-2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+
+File: ./m4/intldir.m4
+Hash: 612428195affe98a7d5441899325dd49d191670b691459bc02e12ab0cfbf966a
+License: 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## intldir.m4 serial 2 (gettext-0.18)
+#dnl Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+
+File: ./m4/intlmacosx.m4
+Hash: 447c46fa3888adb2ccaab83f4cf703a630ef162e4933d79887ea9039a02729e0
+License: 
+Copyright: 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## intlmacosx.m4 serial 3 (gettext-0.18)
+#dnl Copyright (C) 2004-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+
+File: ./m4/intmax.m4
+Hash: c110fc0f8772eb14b1d5e4e98f3bb7a7973aee6a673907e18409a3e79e319b56
+License: 
+Copyright: 2002-2005, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## intmax.m4 serial 5 (gettext-0.18)
+#dnl Copyright (C) 2002-2005, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#dnl Test whether the system has the 'intmax_t' type, but don't attempt to
+#dnl find a replacement if it is lacking.
+#
+#AC_DEFUN([gt_TYPE_INTMAX_T],
+#[
+#  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
+#  AC_REQUIRE([gl_AC_HEADER_STDINT_H])
+#  AC_CACHE_CHECK([for intmax_t], [gt_cv_c_intmax_t],
+
+File: ./m4/intmax_t.m4
+Hash: 86248e08dfb3dbae4bf34645c7909fcfdc517fb975573a8f57f9fa11a9c47fb0
+License: 
+Copyright: 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## intmax_t.m4 serial 7
+#dnl Copyright (C) 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Paul Eggert.
+#
+#AC_PREREQ([2.13])
+#
+## Define intmax_t to 'long' or 'long long'
+## if it is not already defined in <stdint.h> or <inttypes.h>.
+#
+#AC_DEFUN([gl_AC_TYPE_INTMAX_T],
+#[
+
+File: ./m4/inttostr.m4
+Hash: e2b51832fe091eaf612d6dac65a6e704009d76fe68224aed958f392d2637a269
+License: 
+Copyright: 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 7
+#dnl Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_INTTOSTR],
+#[
+#  AC_LIBOBJ([imaxtostr])
+#  AC_LIBOBJ([offtostr])
+#  AC_LIBOBJ([umaxtostr])
+#  AC_LIBOBJ([uinttostr])
+#
+#  gl_PREREQ_INTTOSTR
+#  gl_PREREQ_IMAXTOSTR
+
+File: ./m4/inttypes-pri.m4
+Hash: 8649b8fa7043ccf53fdf62500bad888da4180ee519fb31fab64aaf8c8ce9ded8
+License: 
+Copyright: 1997-2002, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## inttypes-pri.m4 serial 6 (gettext-0.18)
+#dnl Copyright (C) 1997-2002, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#AC_PREREQ([2.52])
+#
+## Define PRI_MACROS_BROKEN if <inttypes.h> exists and defines the PRI*
+## macros to non-string values.  This is the case on AIX 4.3.3.
+#
+#AC_DEFUN([gt_INTTYPES_PRI],
+#[
+
+File: ./m4/inttypes.m4
+Hash: e5b427858f7a6dbbb30e7d900d76402ff9a42c6ec9c38bff2bfa3f59be20e3eb
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## inttypes.m4 serial 14
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Derek Price, Bruno Haible.
+#dnl Test whether <inttypes.h> is supported or must be substituted.
+#
+#AC_DEFUN([gl_INTTYPES_H],
+#[
+#  AC_REQUIRE([gl_STDINT_H])
+#  AC_REQUIRE([gt_INTTYPES_PRI])
+#  AC_CHECK_DECLS_ONCE([imaxabs])
+#  AC_CHECK_DECLS_ONCE([imaxdiv])
+
+File: ./m4/inttypes_h.m4
+Hash: ca5eb68f1650e18a89c61c9ad23ecf5786ead724c985f8a06dc12877c9d326c4
+License: 
+Copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## inttypes_h.m4 serial 9
+#dnl Copyright (C) 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Paul Eggert.
+#
+## Define HAVE_INTTYPES_H_WITH_UINTMAX if <inttypes.h> exists,
+## doesn't clash with <sys/types.h>, and declares uintmax_t.
+#
+#AC_DEFUN([gl_AC_HEADER_INTTYPES_H],
+#[
+#  AC_CACHE_CHECK([for inttypes.h], [gl_cv_header_inttypes_h],
+#  [AC_TRY_COMPILE(
+
+File: ./m4/isapipe.m4
+Hash: 694aef61dce5554fcd26fb2c28e2544ba8e385f8d6e673c37164e578fd6dc342
+License: 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Test whether a file descriptor is a pipe.
+#
+#dnl Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+#
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Paul Eggert.
+#
+#AC_DEFUN([gl_ISAPIPE],
+#[
+#  # OpenVMS has isapipe already, so check for it.
+#  AC_REPLACE_FUNCS([isapipe])
+#  if test $ac_cv_func_isapipe = no; then
+
+File: ./m4/isdir.m4
+Hash: e9d65c52fa170654224baaa1a9a48b18398df1b62c8f0595813ec62b53a55729
+License: 
+Copyright: 2002 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## isdir.m4 serial 2
+#dnl Copyright (C) 2002 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ISDIR],
+#[
+#  dnl Prerequisites of lib/isdir.c.
+#  AC_REQUIRE([AC_HEADER_STAT])
+#])
+
+File: ./m4/isfinite.m4
+Hash: c19d2f133ca402c36f7c2d02bb1793b8722b49205ea44e74e40e92cef27db4fc
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## isfinite.m4 serial 5
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ISFINITE],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare isfinite.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_DECLS([isfinite], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_isfinite" = yes; then
+#    gl_CHECK_MATH_LIB([ISFINITE_LIBM], [x = isfinite (x);])
+#    if test "$ISFINITE_LIBM" != missing; then
+
+File: ./m4/isinf.m4
+Hash: fe9d10fd7eb4cd6bcb9b2cb63a4d24340313246a2d39faa8a63a5ca82998ff9a
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## isinf.m4 serial 2
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ISINF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare isinf.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_DECLS([isinf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_isinf" = yes; then
+#    gl_CHECK_MATH_LIB([ISINF_LIBM], [x = isinf (x);])
+#    if test "$ISINF_LIBM" != missing; then
+
+File: ./m4/isnan.m4
+Hash: e7b33f83d3ce859e8f1395ea66d91f251c145404b1b04abc907a4966f213aa24
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## isnan.m4 serial 2
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_ISNAN],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_ISNANF])
+#  AC_REQUIRE([gl_FUNC_ISNAND])
+#  AC_REQUIRE([gl_FUNC_ISNANL])
+#
+#  # If we replaced any of the underlying isnan* functions, replace
+#  # the isnan macro; it undoubtedly suffers from the same flaws.
+
+File: ./m4/isnand.m4
+Hash: 51e8e66a3b57025d5bc688689425eb32e6c8e064ede078c4d6e080b56d3aab04
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## isnand.m4 serial 6
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Check how to get or define isnand().
+#
+#AC_DEFUN([gl_FUNC_ISNAND],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  ISNAND_LIBM=
+#  gl_HAVE_ISNAND_NO_LIBM
+#  if test $gl_cv_func_isnand_no_libm = no; then
+#    gl_HAVE_ISNAND_IN_LIBM
+
+File: ./m4/isnanf.m4
+Hash: 595cb32bba81892f6ea7ddb98c352f5796a0535a6fa78a172cfb89437609af6b
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## isnanf.m4 serial 10
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Check how to get or define isnanf().
+#
+#AC_DEFUN([gl_FUNC_ISNANF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  ISNANF_LIBM=
+#  gl_HAVE_ISNANF_NO_LIBM
+#  if test $gl_cv_func_isnanf_no_libm = no; then
+#    gl_HAVE_ISNANF_IN_LIBM
+
+File: ./m4/isnanl.m4
+Hash: f803ad5cf4c44855de734207bee9190902ea849cbb2b13dc2e61ae9733015193
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## isnanl.m4 serial 12
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ISNANL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  ISNANL_LIBM=
+#  gl_HAVE_ISNANL_NO_LIBM
+#  if test $gl_cv_func_isnanl_no_libm = no; then
+#    gl_HAVE_ISNANL_IN_LIBM
+#    if test $gl_cv_func_isnanl_in_libm = yes; then
+#      ISNANL_LIBM=-lm
+
+File: ./m4/javacomp.m4
+Hash: 14e19c009a90dde63c919635e6c67c76ca1ea166444f296ba5e1841d14e51aba
+License: 
+Copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## javacomp.m4 serial 11
+#dnl Copyright (C) 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Prerequisites of javacomp.sh.
+## gt_JAVACOMP([source-version], [target-version])
+## Sets HAVE_JAVACOMP to nonempty if javacomp.sh will allow Java source code
+## according to source-version to be compiled to Java bytecode classes in the
+## target-version format.
+##
+## source-version can be:    support for
+##           1.3             inner classes
+##           1.4             assert keyword
+
+File: ./m4/javaexec.m4
+Hash: 4918c3e11f2ea4072f3311b390e4ae81540c6a5adf57fb986a3fcf7dab7e771d
+License: 
+Copyright: 2001-2003, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## javaexec.m4 serial 5
+#dnl Copyright (C) 2001-2003, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Prerequisites of javaexec.sh.
+## gt_JAVAEXEC or gt_JAVAEXEC(testclass, its-directory)
+## Sets HAVE_JAVAEXEC to nonempty if javaexec.sh will work.
+#
+#AC_DEFUN([gt_JAVAEXEC],
+#[
+#  AC_MSG_CHECKING([for Java virtual machine])
+#  AC_EGREP_CPP([yes], [
+##if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__
+
+File: ./m4/jm-winsz1.m4
+Hash: 301531f58811d581f72b13a77914c5ce9116ba7ee471486ae31a75aedd85f502
+License: 
+Copyright: 1996, 1999, 2001-2002, 2004, 2006, 2009
+Licence-Text: 
+#Header: 
+## serial 11
+#
+## Copyright (C) 1996, 1999, 2001-2002, 2004, 2006, 2009
+## Free Software Foundation, Inc.
+## 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.
+#
+#dnl From Jim Meyering and Paul Eggert.
+#AC_DEFUN([gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H],
+#[AC_REQUIRE([AC_SYS_POSIX_TERMIOS])
+# AC_CACHE_CHECK([whether use of TIOCGWINSZ requires termios.h],
+#              gl_cv_sys_tiocgwinsz_needs_termios_h,
+#  [gl_cv_sys_tiocgwinsz_needs_termios_h=no
+
+File: ./m4/jm-winsz2.m4
+Hash: 060d85fec2c0b5c74229e5cb538ab49a2731fdcf7d9af9cd2fa2e23e3f57357e
+License: 
+Copyright: 1996, 1999, 2001, 2004, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 7
+#
+## Copyright (C) 1996, 1999, 2001, 2004, 2009 Free Software Foundation, Inc.
+## 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.
+#
+#AC_DEFUN([gl_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL],
+#[AC_REQUIRE([gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H])
+# AC_CACHE_CHECK([whether use of TIOCGWINSZ requires sys/ioctl.h],
+#              gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h,
+#  [gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h=no
+#
+#  if test $gl_cv_sys_tiocgwinsz_needs_termios_h = no; then
+#    AC_EGREP_CPP([yes],
+
+File: ./m4/lchmod.m4
+Hash: f8d332af32afc5284f1da28186423c4b1f8df943fec36a1415936007a868b4e4
+License: 
+Copyright: 2005, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 3
+#
+#dnl Copyright (C) 2005, 2006, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Paul Eggert.
+#dnl Provide a replacement for lchmod on hosts that lack it.
+#
+#AC_DEFUN([gl_FUNC_LCHMOD],
+#[
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#
+#  dnl Persuade glibc <sys/stat.h> to declare lchmod().
+
+File: ./m4/lchown.m4
+Hash: 114159d41d1474abd908058b69f4373686342a1796d9f9f65bbbb9267cbc9d69
+License: 
+Copyright: 1998, 2001, 2003-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 13
+## Determine whether we need the lchown wrapper.
+#
+#dnl Copyright (C) 1998, 2001, 2003-2007, 2009 Free Software Foundation, Inc.
+#
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Jim Meyering.
+#dnl Provide lchown on systems that lack it.
+#
+#AC_DEFUN([gl_FUNC_LCHOWN],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+
+File: ./m4/lcmessage.m4
+Hash: e2cc3d8b92945a9d0baa9a803ba03d5516916bfa463cb50f551414bc550edef9
+License: 
+Copyright: 1995-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## lcmessage.m4 serial 6 (gettext-0.18)
+#dnl Copyright (C) 1995-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+
+File: ./m4/ld-output-def.m4
+Hash: e5ffc015c39b58438c1616034da6eecc2ac346360cd22575e51c5f72c4aa9ff7
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ld-output-def.m4 serial 2
+#dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Simon Josefsson
+#
+## gl_LD_OUTPUT_DEF()
+## -------------
+## Check if linker supports -Wl,--output-def and define automake
+## conditional HAVE_LD_OUTPUT_DEF if it is.
+#AC_DEFUN([gl_LD_OUTPUT_DEF],
+#[
+#  AC_CACHE_CHECK([if gcc/ld supports -Wl,--output-def],
+
+File: ./m4/ld-version-script.m4
+Hash: efaad515a17443f74a72ceef2bbbbb094f1e5a36515b84a35a66266ce54995ca
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ld-version-script.m4 serial 1
+#dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Simon Josefsson
+#
+## FIXME: The test below returns a false positive for mingw
+## cross-compiles, 'local:' statements does not reduce number of
+## exported symbols in a DLL.  Use --disable-ld-version-script to work
+## around the problem.
+#
+## gl_LD_VERSION_SCRIPT
+## --------------------
+
+File: ./m4/ldd.m4
+Hash: 343928a20ff84e1b66ee2da65a5b896efdce4f69135b19e5df4de074a5f007b2
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ldd.m4 serial 1
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Sets LDDPROG to a command and LDDPOSTPROC to a filter command, such that
+##   $LDDPROG program $LDDPOSTPROC
+## outputs a whitespace-separated list of the dynamically linked dependencies
+## of the program, as library names (no full pathnames), or nothing if the
+## program is statically linked or if the service is not supported on the given
+## system.
+#
+#dnl From Bruno Haible.
+
+File: ./m4/ldexpl.m4
+Hash: 7e93193fa9d20667368d04017e56f0514bc859b102b064aa96d292d53fc0b3ce
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ldexpl.m4 serial 4
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_LDEXPL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  LDEXPL_LIBM=
+#  AC_CACHE_CHECK([whether ldexpl() can be used without linking with libm],
+#    [gl_cv_func_ldexpl_no_libm],
+#    [
+#      AC_TRY_LINK([#include <math.h>
+#                   long double x;],
+
+File: ./m4/lib-ignore.m4
+Hash: 16d25c2943c615eb393319fda49b7d52096e1b32ff542bb57aea0ffe1a566f1f
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## If possible, ignore libraries that are not depended on.
+#
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Paul Eggert.
+#
+#AC_DEFUN([gl_IGNORE_UNUSED_LIBRARIES],
+#[
+#  AC_CACHE_CHECK([for flag to ignore unused libraries],
+#    [gl_cv_ignore_unused_libraries],
+#    [gl_cv_ignore_unused_libraries=none
+#     gl_saved_ldflags=$LDFLAGS
+
+File: ./m4/lib-ld.m4
+Hash: 5c208fa42b078f46f3d6aff909c14418be3e034817c1a91a5d6677bb6d143ac1
+License: 
+Copyright: 1996-2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## lib-ld.m4 serial 4 (gettext-0.18)
+#dnl Copyright (C) 1996-2003, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Subroutines of libtool.m4,
+#dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision
+#dnl with libtool.m4.
+#
+#dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no.
+#AC_DEFUN([AC_LIB_PROG_LD_GNU],
+#[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld],
+#[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
+#case `$LD -v 2>&1 </dev/null` in
+
+File: ./m4/lib-link.m4
+Hash: ddf8673d6148d43b50fa4e60fe33f19cfbf4fee56b6d017c9ff5f180b45b2247
+License: 
+Copyright: 2001-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## lib-link.m4 serial 20 (gettext-0.18)
+#dnl Copyright (C) 2001-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#AC_PREREQ([2.54])
+#
+#dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and
+#dnl the libraries corresponding to explicit and implicit dependencies.
+#dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and
+#dnl augments the CPPFLAGS variable.
+#dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname
+
+File: ./m4/lib-prefix.m4
+Hash: 670991582b722e16a12293d7f817562b4f6c9d6a8d034573c7d1b049a3f618e7
+License: 
+Copyright: 2001-2005, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## lib-prefix.m4 serial 7 (gettext-0.18)
+#dnl Copyright (C) 2001-2005, 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and
+#dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't
+#dnl require excessive bracketing.
+#ifdef([AC_HELP_STRING],
+#[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])],
+#[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])])
+
+File: ./m4/libsigsegv.m4
+Hash: 417798efd6f0af14a61894f4f838a3188a159231210a7ac3cfb80dbcdd38bb04
+License: 
+Copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## libsigsegv.m4 serial 4
+#dnl Copyright (C) 2002-2003, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible, Sam Steingold.
+#
+#AC_DEFUN([gl_LIBSIGSEGV],
+#[
+#  AC_LIB_HAVE_LINKFLAGS([sigsegv], [],
+#    [#include <sigsegv.h>], [sigsegv_deinstall_handler();],
+#    [no, consider installing GNU libsigsegv])
+#  dnl Some other autoconf macros and clisp's configure use this variable.
+#  gl_cv_lib_sigsegv="$ac_cv_libsigsegv"
+
+File: ./m4/libunistring.m4
+Hash: 30e764db0ea63d7c4b4a6d5886a6417f11b355c04a873f4c97609a0975144b63
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## libunistring.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl gl_LIBUNISTRING
+#dnl Searches for an installed libunistring.
+#dnl If found, it sets and AC_SUBSTs HAVE_LIBUNISTRING=yes and the LIBUNISTRING
+#dnl and LTLIBUNISTRING variables and augments the CPPFLAGS variable, and
+#dnl #defines HAVE_LIBUNISTRING to 1. Otherwise, it sets and AC_SUBSTs
+#dnl HAVE_LIBUNISTRING=no and LIBUNINSTRING and LTLIBUNISTRING to empty.
+#
+#AC_DEFUN([gl_LIBUNISTRING],
+#[
+
+File: ./m4/link-follow.m4
+Hash: bfcaf0beba8f8e7b4b5b35b52c14f4f2074cfd8d85c0ad824c32f6a189b31dc9
+License: 
+Copyright: 1999-2001, 2004-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 14
+#dnl Run a program to determine whether link(2) follows symlinks.
+#dnl Set LINK_FOLLOWS_SYMLINKS accordingly.
+#
+## Copyright (C) 1999-2001, 2004-2006, 2009 Free Software Foundation, Inc.
+## 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.
+#
+#dnl This macro can be used to emulate POSIX linkat.  If
+#dnl LINK_FOLLOWS_SYMLINKS is 0, link matches linkat(,0), and
+#dnl linkat(,AT_SYMLINK_FOLLOW) requires a readlink. If it is 1,
+#dnl link matches linkat(,AT_SYMLINK_FOLLOW), and there is no way
+#dnl to do linkat(,0) on symlinks (on all other file types,
+#dnl link() is sufficient).  If it is -1, use a runtime test.
+
+File: ./m4/link.m4
+Hash: 0cdff13ae7180563eed4c0316a5c6f515ae921b3805f4cf6e8b642cc1c206498
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## link.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_LINK],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([link])
+#  if test $ac_cv_func_link = no; then
+#    HAVE_LINK=0
+#    AC_LIBOBJ([link])
+#    gl_PREREQ_LINK
+#  fi
+
+File: ./m4/localcharset.m4
+Hash: 00e8162fc6c53b329b35513aace655880fbf6e8c3f684923cff2b97e11eed3a3
+License: 
+Copyright: 2002, 2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## localcharset.m4 serial 6
+#dnl Copyright (C) 2002, 2004, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_LOCALCHARSET],
+#[
+#  dnl Prerequisites of lib/localcharset.c.
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CHECK_DECLS_ONCE([getc_unlocked])
+#
+#  dnl Prerequisites of the lib/Makefile.am snippet.
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([gl_GLIBC21])
+
+File: ./m4/locale-fr.m4
+Hash: f37c0c563b84177f67f66c1c84aa0f80fae71061d5dd4f49cd60b7a0f12ad7e2
+License: 
+Copyright: 2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## locale-fr.m4 serial 11
+#dnl Copyright (C) 2003, 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl Determine the name of a french locale with traditional encoding.
+#AC_DEFUN([gt_LOCALE_FR],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CACHE_CHECK([for a traditional french locale], [gt_cv_locale_fr], [
+#    AC_LANG_CONFTEST([AC_LANG_SOURCE([
+
+File: ./m4/locale-ja.m4
+Hash: 46355008a2c63f595d7c452c1f36c5f9e9b11bd8b469d5a16a2f4960b545d1e7
+License: 
+Copyright: 2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## locale-ja.m4 serial 7
+#dnl Copyright (C) 2003, 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl Determine the name of a japanese locale with EUC-JP encoding.
+#AC_DEFUN([gt_LOCALE_JA],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CACHE_CHECK([for a traditional japanese locale], [gt_cv_locale_ja], [
+#    AC_LANG_CONFTEST([AC_LANG_SOURCE([
+
+File: ./m4/locale-tr.m4
+Hash: 8f7943111b5706039847295a518091bf667a3ddd04727fee2858357e3659a0ee
+License: 
+Copyright: 2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## locale-tr.m4 serial 6
+#dnl Copyright (C) 2003, 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl Determine the name of a turkish locale with UTF-8 encoding.
+#AC_DEFUN([gt_LOCALE_TR_UTF8],
+#[
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CACHE_CHECK([for a turkish Unicode locale], [gt_cv_locale_tr_utf8], [
+#    AC_LANG_CONFTEST([AC_LANG_SOURCE([
+#changequote(,)dnl
+
+File: ./m4/locale-zh.m4
+Hash: af44fa1110a57fb71f22d7f43efce6bb0b4d1ad67d39bb8a01e10b65ec282a7c
+License: 
+Copyright: 2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## locale-zh.m4 serial 6
+#dnl Copyright (C) 2003, 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl Determine the name of a chinese locale with GB18030 encoding.
+#AC_DEFUN([gt_LOCALE_ZH_CN],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_REQUIRE([AM_LANGINFO_CODESET])
+#  AC_CACHE_CHECK([for a transitional chinese locale], [gt_cv_locale_zh_CN], [
+#    AC_LANG_CONFTEST([AC_LANG_SOURCE([
+
+File: ./m4/locale_h.m4
+Hash: df7aaa065eb91a465c6b5dec83ca26b2b8cb4e790cf0abc5c387326fbacd066c
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## locale_h.m4 serial 3
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_LOCALE_H],
+#[
+#  AC_CACHE_CHECK([whether locale.h conforms to POSIX],
+#    [gl_cv_header_working_locale_h],
+#    [AC_TRY_COMPILE([#include <locale.h>
+#int x = LC_MESSAGES;], [],
+#       [gl_cv_header_working_locale_h=yes],
+#       [gl_cv_header_working_locale_h=no])])
+
+File: ./m4/localename.m4
+Hash: 3fa8b3a4ca986ad17a8dc24d01300ad487fc51243c3d584d651327f08a15561f
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## localename.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_LOCALENAME],
+#[
+#  AC_REQUIRE([gt_LC_MESSAGES])
+#  AC_REQUIRE([gt_INTL_MACOSX])
+#  AC_CHECK_FUNCS([setlocale])
+#])
+
+File: ./m4/lock.m4
+Hash: 591f64f47b0546c5ab1769dc5f6a995ac3c2c0846e4f37c456601638e8353127
+License: 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## lock.m4 serial 10 (gettext-0.18)
+#dnl Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_LOCK],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#  if test "$gl_threads_api" = posix; then
+#    # OSF/1 4.0 and MacOS X 10.1 lack the pthread_rwlock_t type and the
+#    # pthread_rwlock_* functions.
+#    AC_CHECK_TYPE([pthread_rwlock_t],
+
+File: ./m4/long-options.m4
+Hash: 90915cdfe1004a2676f30d1c36306db44f25076401bb5e07ce04d7c2f8e55396
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## long-options.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_LONG_OPTIONS],
+#[
+#  AC_LIBOBJ([long-options])
+#
+#  dnl Prerequisites of lib/long-options.c.
+#])
+
+File: ./m4/longlong.m4
+Hash: 31bf5606914914e2b190d30413b6ee86c190153a1ba10b6b71d66f9853693ad8
+License: 
+Copyright: 1999-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## longlong.m4 serial 14
+#dnl Copyright (C) 1999-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Paul Eggert.
+#
+## Define HAVE_LONG_LONG_INT if 'long long int' works.
+## This fixes a bug in Autoconf 2.61, but can be removed once we
+## assume 2.62 everywhere.
+#
+## Note: If the type 'long long int' exists but is only 32 bits large
+## (as on some very old compilers), HAVE_LONG_LONG_INT will not be
+## defined. In this case you can treat 'long long int' like 'long int'.
+
+File: ./m4/ls-mntd-fs.m4
+Hash: 843fe15f5a9827e6d8388ec64749b6a3fadb7705147e34ecdb189c731ef849da
+License: 
+Copyright: 1998-2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 28
+## How to list mounted file systems.
+#
+## Copyright (C) 1998-2004, 2006, 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl This is not pretty.  I've just taken the autoconf code and wrapped
+#dnl it in an AC_DEFUN and made some other fixes.
+#dnl
+
+File: ./m4/lseek.m4
+Hash: 7f0502309efd6839c977e3419c2aee0f013e5a2541bcb22bdc6e04e4868dfd1c
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## lseek.m4 serial 4
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_LSEEK],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CACHE_CHECK([whether lseek detects pipes], [gl_cv_func_lseek_pipe],
+#    [if test $cross_compiling = no; then
+#       AC_LINK_IFELSE([
+##include <sys/types.h> /* for off_t */
+##include <stdio.h> /* for SEEK_CUR */
+
+File: ./m4/lstat.m4
+Hash: 477d1ff15d11599304c8b73e8e2dbada5a9bf4c7057fdfe47cc5f23a66a66a66
+License: 
+Copyright: 1997-2001, 2003-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 19
+#
+## Copyright (C) 1997-2001, 2003-2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+#dnl From Jim Meyering.
+#
+#AC_DEFUN([gl_FUNC_LSTAT],
+#[
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#  dnl If lstat does not exist, the replacement <sys/stat.h> does
+#  dnl "#define lstat stat", and lstat.c does not need to be compiled.
+
+File: ./m4/malloc.m4
+Hash: 2a8252ecabf5e3af574f01ee6254422f36889314949c50fc9245d94e857c3652
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## malloc.m4 serial 9
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## gl_FUNC_MALLOC_POSIX
+## --------------------
+## Test whether 'malloc' is POSIX compliant (sets errno to ENOMEM when it
+## fails), and replace malloc if it is not.
+#AC_DEFUN([gl_FUNC_MALLOC_POSIX],
+#[
+#  AC_REQUIRE([gl_CHECK_MALLOC_POSIX])
+#  if test $gl_cv_func_malloc_posix = yes; then
+#    HAVE_MALLOC_POSIX=1
+
+File: ./m4/malloca.m4
+Hash: 574f23c6a3908adea4bc9f052f415c65e5b9c444ca4433a34c9120c94870b237
+License: 
+Copyright: 2003-2004, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## malloca.m4 serial 1
+#dnl Copyright (C) 2003-2004, 2006-2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MALLOCA],
+#[
+#  dnl Use the autoconf tests for alloca(), but not the AC_SUBSTed variables
+#  dnl @ALLOCA@ and @LTALLOCA@.
+#  dnl gl_FUNC_ALLOCA   dnl Already brought in by the module dependencies.
+#  AC_REQUIRE([gl_EEMALLOC])
+#  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+#])
+
+File: ./m4/manywarnings.m4
+Hash: d8731a4a9dfaecf297b136b0f85f850c4519fc39a44680674853bba3644ad22c
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## manywarnings.m4 serial 1
+#dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Simon Josefsson
+#
+## gl_MANYWARN_COMPLEMENT(OUTVAR, LISTVAR, REMOVEVAR)
+## --------------------------------------------------
+## Copy LISTVAR to OUTVAR except for the entries in REMOVEVAR.
+## Elements separated by whitespace.  In set logic terms, the function
+## does OUTVAR = LISTVAR \ REMOVEVAR.
+#AC_DEFUN([gl_MANYWARN_COMPLEMENT],
+#[
+
+File: ./m4/math_h.m4
+Hash: 821573f4fcedee707630697c2cf95ed24b271a9152c84dbc6bf920ee554afb56
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## math_h.m4 serial 14
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MATH_H],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([math.h])
+#  AC_CACHE_CHECK([whether NAN macro works], [gl_cv_header_math_nan_works],
+#    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[@%:@include <math.h>]],
+#      [[/* Solaris 10 has a broken definition of NAN.  Other platforms
+#        fail to provide NAN, or provide it only in C99 mode; this
+#        test only needs to fail when NAN is provided but wrong.  */
+
+File: ./m4/mathl.m4
+Hash: 6ce43398f3875ee3f91451cbf904c142813d768bd7a6e9cf330e3fe8dd62a27b
+License: 
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mathl.m4 serial 5
+#dnl Copyright (c) 2003, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_LONG_DOUBLE_MATH], [
+#
+#AC_CHECK_LIB([m], [atan])
+#AC_REPLACE_FUNCS(floorl ceill sqrtl asinl acosl atanl \
+#        logl expl tanl sinl cosl)
+#
+#])
+
+File: ./m4/mbchar.m4
+Hash: b486f2469239c36107f6b2b0b0541b087405ba8fbc85d9256b4cf6454550c144
+License: 
+Copyright: 2005-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbchar.m4 serial 7
+#dnl Copyright (C) 2005-2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl autoconf tests required for use of mbchar.m4
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_MBCHAR],
+#[
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#])
+
+File: ./m4/mbfile.m4
+Hash: e87810bc66d7019634d2b30038f24b16e1a9ef49c6c32e805f6f71360452cbb2
+License: 
+Copyright: 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbfile.m4 serial 4
+#dnl Copyright (C) 2005, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl autoconf tests required for use of mbfile.h
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_MBFILE],
+#[
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  dnl The following line is that so the user can test HAVE_MBRTOWC before
+#  dnl #include "mbfile.h". It can be removed in 2010.
+#  AC_REQUIRE([AC_FUNC_MBRTOWC])
+
+File: ./m4/mbiter.m4
+Hash: a969e27c30aefb7073965ab1cd4bcee97268f6b82bf96522509e713eacc853a2
+License: 
+Copyright: 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbiter.m4 serial 4
+#dnl Copyright (C) 2005, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl autoconf tests required for use of mbiter.h
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_MBITER],
+#[
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  dnl The following line is that so the user can test HAVE_MBRTOWC before
+#  dnl #include "mbiter.h" or "mbuiter.h". It can be removed in 2010.
+#  AC_REQUIRE([AC_FUNC_MBRTOWC])
+
+File: ./m4/mbrlen.m4
+Hash: a606b1ca8b598c52bfd7f233eb4984ca878fb179d80e06220d85b5d9b36d960d
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbrlen.m4 serial 2
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MBRLEN],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  AC_REQUIRE([gl_FUNC_MBRTOWC])
+#  AC_CHECK_FUNCS_ONCE([mbrlen])
+#  if test $ac_cv_func_mbrlen = no; then
+#    HAVE_MBRLEN=0
+
+File: ./m4/mbrtowc.m4
+Hash: d660822110548e8d7d79255d5ac60fe496a9e7f04a9de7397f3a6d5a8dbb54f1
+License: 
+Copyright: 2001-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbrtowc.m4 serial 16
+#dnl Copyright (C) 2001-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MBRTOWC],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_MBRTOWC=1
+#  fi
+
+File: ./m4/mbsinit.m4
+Hash: 8d7472d2b364b4379c7f634f7a4f6800e19078099331fac228780eb697a2cd58
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbsinit.m4 serial 3
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MBSINIT],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_MBSINIT=1
+#  fi
+
+File: ./m4/mbsnrtowcs.m4
+Hash: a7a12a2e7dfec6902d1398d30ee7a15b86c159a0a1265611a5546ab220f7bc4c
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbsnrtowcs.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MBSNRTOWCS],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  dnl Persuade glibc <wchar.h> to declare mbsnrtowcs().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+
+File: ./m4/mbsrtowcs.m4
+Hash: 5425f085251dacc43b461b2b77cdbc1fe485d1c81e33989687f213dfc3a1d389
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbsrtowcs.m4 serial 5
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MBSRTOWCS],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_MBSRTOWCS=1
+#  fi
+
+File: ./m4/mbstate_t.m4
+Hash: 59a390c7f53d4878a2370306835400bd423ea9dfa0b34e8e2a92fa00b0d70255
+License: 
+Copyright: 2000-2002, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbstate_t.m4 serial 12
+#dnl Copyright (C) 2000-2002, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## From Paul Eggert.
+#
+## BeOS 5 has <wchar.h> but does not define mbstate_t,
+## so you can't declare an object of that type.
+## Check for this incompatibility with Standard C.
+#
+## AC_TYPE_MBSTATE_T
+## -----------------
+#AC_DEFUN([AC_TYPE_MBSTATE_T],
+
+File: ./m4/mbswidth.m4
+Hash: 2deb63d9fcc93ac349da112c631d337964c474754e5387a42d368f90157012cd
+License: 
+Copyright: 2000-2002, 2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mbswidth.m4 serial 17
+#dnl Copyright (C) 2000-2002, 2004, 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl autoconf tests required for use of mbswidth.c
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_MBSWIDTH],
+#[
+#  AC_CHECK_HEADERS_ONCE([wchar.h])
+#  AC_CHECK_FUNCS_ONCE([isascii mbsinit])
+#
+#  dnl UnixWare 7.1.1 <wchar.h> has a declaration of a function mbswidth()
+
+File: ./m4/md2.m4
+Hash: 130e33f82decb4d039a56ebd2b85e32c70de213b254873ac543bf5b7e0cb24d5
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## md2.m4 serial 2
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MD2],
+#[
+#  AC_LIBOBJ([md2])
+#])
+
+File: ./m4/md4.m4
+Hash: 7978358bc5de59163559a74cf8c7992190472b1269112e939f5ecf2a4e26f8fc
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## md4.m4 serial 4
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MD4],
+#[
+#  AC_LIBOBJ([md4])
+#
+#  dnl Prerequisites of lib/md4.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+
+File: ./m4/md5.m4
+Hash: aad43f86e0054029b846a78045d88f8d03aec67b5b6ad6f4b59b3a6e2d6d7c7a
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## md5.m4 serial 11
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MD5],
+#[
+#  AC_LIBOBJ([md5])
+#
+#  dnl Prerequisites of lib/md5.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#  :
+#])
+
+File: ./m4/memcasecmp.m4
+Hash: 479e27cf51cc18056b84824cad8a4ba0d97d0fc9116fd12b2e872c409c570ddb
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 5
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MEMCASECMP],
+#[
+#  AC_LIBOBJ([memcasecmp])
+#])
+
+File: ./m4/memchr.m4
+Hash: d3882d0a7e536c7f6eca2a953e8a9a77d1e0486d3ccadb9b5a4a469c4c069bb8
+License: 
+Copyright: 2002, 2003, 2004, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memchr.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2004, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN_ONCE([gl_FUNC_MEMCHR],
+#[
+#  dnl Check for prerequisites for memory fence checks.
+#  gl_FUNC_MMAP_ANON
+#  AC_CHECK_HEADERS_ONCE([sys/mman.h])
+#  AC_CHECK_FUNCS_ONCE([mprotect])
+#
+#  dnl These days, we assume memchr is present.  But just in case...
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+
+File: ./m4/memcmp.m4
+Hash: 449f2f83be3f02edb3e248d1e7ae3d7362782610e06dd191239165716870c19d
+License: 
+Copyright: 2002-2004, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memcmp.m4 serial 14
+#dnl Copyright (C) 2002-2004, 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MEMCMP],
+#[
+#  if test $cross_compiling != no; then
+#    # AC_FUNC_MEMCMP as of 2.62 defaults to 'no' when cross compiling.
+#    # We default to yes if memcmp appears to exist, which works
+#    # better for MinGW.
+#    AC_CACHE_CHECK([whether cross-compiling target has memcmp],
+#                   [ac_cv_func_memcmp_working],
+#                   [AC_LINK_IFELSE([
+
+File: ./m4/memcoll.m4
+Hash: 9395ae323be423646eecb762e010a41756b958911635ef8a1f45bdd9db176663
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memcoll.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MEMCOLL],
+#[
+#  AC_LIBOBJ([memcoll])
+#
+#  dnl Prerequisites of lib/memcoll.c.
+#  AC_FUNC_STRCOLL
+#])
+
+File: ./m4/memcpy.m4
+Hash: 84c3b639c26e2935d10c98c4eca37254a25f95b6a8c2f8f1f3b626eae72595ff
+License: 
+Copyright: 2002, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memcpy.m4 serial 3
+#dnl Copyright (C) 2002, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MEMCPY],
+#[
+#  AC_REPLACE_FUNCS([memcpy])
+#  if test $ac_cv_func_memcpy = no; then
+#    gl_PREREQ_MEMCPY
+#  fi
+#])
+#
+## Prerequisites of lib/memcpy.c.
+
+File: ./m4/memmem.m4
+Hash: aee6e80d6f3a27178e82414b2705d8b5824e26f352bcdbd457d309de9bd526c2
+License: 
+Copyright: 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memmem.m4 serial 14
+#dnl Copyright (C) 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Check that memmem is present.
+#AC_DEFUN([gl_FUNC_MEMMEM_SIMPLE],
+#[
+#  dnl Persuade glibc <string.h> to declare memmem().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([memmem])
+#  AC_CHECK_DECLS_ONCE([memmem])
+
+File: ./m4/memmove.m4
+Hash: 197891df3f9fd08854095f4665cc9dc917fe595d189a4f613d1575a3c9b43adc
+License: 
+Copyright: 2002, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memmove.m4 serial 3
+#dnl Copyright (C) 2002, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MEMMOVE],
+#[
+#  AC_REPLACE_FUNCS([memmove])
+#  if test $ac_cv_func_memmove = no; then
+#    gl_PREREQ_MEMMOVE
+#  fi
+#])
+#
+## Prerequisites of lib/memmove.c.
+
+File: ./m4/mempcpy.m4
+Hash: 348c790aab8f85294c57e021f04e15befa7530aabb531a4f21fc10ddabb271b0
+License: 
+Copyright: 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mempcpy.m4 serial 10
+#dnl Copyright (C) 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MEMPCPY],
+#[
+#  dnl Persuade glibc <string.h> to declare mempcpy().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  dnl The mempcpy() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+
+File: ./m4/memrchr.m4
+Hash: e1b3e57cb26a5122045e5a65c1e06f24e2ce5a75cf6ce12f8992208e34b7e74d
+License: 
+Copyright: 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memrchr.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MEMRCHR],
+#[
+#  dnl Persuade glibc <string.h> to declare memrchr().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_CHECK_DECLS_ONCE([memrchr])
+#  if test $ac_cv_have_decl_memrchr = no; then
+#    HAVE_DECL_MEMRCHR=0
+
+File: ./m4/memset.m4
+Hash: e7937ae3941db76c84b41bc3aab29231fc5a0e57018a6fad797cd527f0578eaf
+License: 
+Copyright: 2002, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memset.m4 serial 3
+#dnl Copyright (C) 2002, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MEMSET],
+#[
+#  AC_REPLACE_FUNCS([memset])
+#  if test $ac_cv_func_memset = no; then
+#    gl_PREREQ_MEMSET
+#  fi
+#])
+#
+## Prerequisites of lib/memset.c.
+
+File: ./m4/memxor.m4
+Hash: bef5cfa0b422bb86f6c6713336c527d14407c55ee8a792d0780bbab8a1233d98
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## memxor.m4 serial 3
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MEMXOR],
+#[
+#  AC_LIBOBJ([memxor])
+#  AC_REQUIRE([AC_C_RESTRICT])
+#])
+
+File: ./m4/minmax.m4
+Hash: 9377265286ad8108a58bb33b19f69b867035ff53bcbea4df3e6b0016347b90f9
+License: 
+Copyright: 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## minmax.m4 serial 3
+#dnl Copyright (C) 2005, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_PREREQ([2.52])
+#
+#AC_DEFUN([gl_MINMAX],
+#[
+#  AC_REQUIRE([gl_PREREQ_MINMAX])
+#])
+#
+## Prerequisites of lib/minmax.h.
+#AC_DEFUN([gl_PREREQ_MINMAX],
+
+File: ./m4/mkancesdirs.m4
+Hash: 5636abd1471767ac9a49a328344cf3e04afc98405063b73cca8c95049d237a8e
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Make a file's ancestor directories.
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MKANCESDIRS],
+#[
+#  AC_LIBOBJ([mkancesdirs])
+#])
+
+File: ./m4/mkdir-p.m4
+Hash: ac650e70d9346b2fb4df3ba6740e9aa14e1d5df373d1de3e080555faaf3aea47
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mkdir-p.m4 serial 13
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MKDIR_PARENTS],
+#[
+#  AC_LIBOBJ([dirchownmod])
+#  AC_LIBOBJ([mkdir-p])
+#
+#  dnl Prerequisites of lib/dirchownmod.c.
+#  AC_REQUIRE([gl_FUNC_LCHMOD])
+#  AC_REQUIRE([gl_FUNC_LCHOWN])
+#  AC_CHECK_FUNCS_ONCE([fchmod])
+
+File: ./m4/mkdir-slash.m4
+Hash: e49b5a74f72ac1bf48beee660429e250ce6c84debef307189bdde551178a40e6
+License: 
+Copyright: 2001, 2003-2004, 2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 8
+#
+## Copyright (C) 2001, 2003-2004, 2006, 2008-2009 Free Software Foundation, Inc.
+## 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.
+#
+## On some systems, mkdir ("foo/", 0700) fails because of the trailing slash.
+## On such systems, arrange to use a wrapper function that removes any
+## trailing slashes.
+#AC_DEFUN([gl_FUNC_MKDIR_TRAILING_SLASH],
+#[dnl
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#  AC_CHECK_HEADERS_ONCE([unistd.h])
+#  AC_CACHE_CHECK([whether mkdir fails due to a trailing slash],
+
+File: ./m4/mkdtemp.m4
+Hash: e9d10a2443d799828ab3560664f80a1b3eeab2c1c44ff3a03343a8a6d559d246
+License: 
+Copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mkdtemp.m4 serial 6
+#dnl Copyright (C) 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gt_FUNC_MKDTEMP],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([mkdtemp])
+#  if test $ac_cv_func_mkdtemp = no; then
+#    HAVE_MKDTEMP=0
+#    gl_PREREQ_MKDTEMP
+#  fi
+#])
+
+File: ./m4/mkostemp.m4
+Hash: de670586ec4849c79719a5083d4615315bc12f021062c3f712dd943602f919c8
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mkostemp.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_MKOSTEMP],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#
+#  dnl Persuade glibc <stdlib.h> to declare mkostemp().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([mkostemp])
+#  if test $ac_cv_func_mkostemp != yes; then
+
+File: ./m4/mkstemp.m4
+Hash: 68e1a719526a1664819987fb68462270a281870e6343e8f7ad24a6d0ecbbda1c
+License: 
+Copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 17
+#
+## Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+## 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.
+#
+## On some hosts (e.g., HP-UX 10.20, SunOS 4.1.4, Solaris 2.5.1), mkstemp has a
+## silly limit that it can create no more than 26 files from a given template.
+## Other systems lack mkstemp altogether.
+## On OSF1/Tru64 V4.0F, the system-provided mkstemp function can create
+## only 32 files per process.
+## On systems like the above, arrange to use the replacement function.
+#AC_DEFUN([gl_FUNC_MKSTEMP],
+#[
+
+File: ./m4/mktime.m4
+Hash: a694524fe822949b46a4e4bc24861958d73ebb75afdf8c2b30a008b5e254c067
+License: 
+Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 15
+#dnl Copyright (C) 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Jim Meyering.
+#
+## Redefine AC_FUNC_MKTIME, to fix a bug in Autoconf 2.61a and earlier.
+## This redefinition can be removed once a new version of Autoconf is assumed.
+## The redefinition is taken from
+## <http://cvs.sv.gnu.org/viewcvs/*checkout*/autoconf/autoconf/lib/autoconf/functions.m4?rev=1.119>.
+## AC_FUNC_MKTIME
+## --------------
+#AC_DEFUN([AC_FUNC_MKTIME],
+
+File: ./m4/mmap-anon.m4
+Hash: fc74a563ed0275f38790da335f29a098d015f5246ea7765f0b7769ebe7b120d1
+License: 
+Copyright: 2005, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mmap-anon.m4 serial 8
+#dnl Copyright (C) 2005, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Detect how mmap can be used to create anonymous (not file-backed) memory
+## mappings.
+## - On Linux, AIX, OSF/1, Solaris, Cygwin, Interix, Haiku, both MAP_ANONYMOUS
+##   and MAP_ANON exist and have the same value.
+## - On HP-UX, only MAP_ANONYMOUS exists.
+## - On MacOS X, FreeBSD, NetBSD, OpenBSD, only MAP_ANON exists.
+## - On IRIX, neither exists, and a file descriptor opened to /dev/zero must be
+##   used.
+
+File: ./m4/mode_t.m4
+Hash: edba1bc2a5883adbb22efb7d249f1d36eb813483301ecc40cde9c2a6571f5837
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## mode_t.m4 serial 2
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## For using mode_t, it's sufficient to use AC_TYPE_MODE_T and
+## include <sys/types.h>.
+#
+## Define PROMOTED_MODE_T to the type that is the result of "default argument
+## promotion" (ISO C 6.5.2.2.(6)) of the type mode_t.
+#AC_DEFUN([gl_PROMOTED_TYPE_MODE_T],
+#[
+#  AC_REQUIRE([AC_TYPE_MODE_T])
+#  AC_CACHE_CHECK([for promoted mode_t type], [gl_cv_promoted_mode_t], [
+
+File: ./m4/modechange.m4
+Hash: ce44dcfc3a8e8574a4ef4d768d020e9829048e7f077112a3a6e8428e3e7b56d6
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## modechange.m4 serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MODECHANGE],
+#[
+#  AC_LIBOBJ([modechange])
+#])
+
+File: ./m4/mountlist.m4
+Hash: d152d842444b1deff2d4b4fd74538c7f5b1e00dff162d9ffdf6f933996d8e05b
+License: 
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 10
+#dnl Copyright (C) 2002-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_MOUNTLIST],
+#[
+#  gl_LIST_MOUNTED_FILE_SYSTEMS([gl_cv_list_mounted_fs=yes],
+#                             [gl_cv_list_mounted_fs=no])
+#  if test $gl_cv_list_mounted_fs = yes; then
+#    AC_LIBOBJ([mountlist])
+#    gl_PREREQ_MOUNTLIST_EXTRA
+#  fi
+#])
+
+File: ./m4/mpsort.m4
+Hash: 809791f443252bbfc151a010255ce7ec04024f6eb00f35995ab8faf19fd664fd
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Sort a vector of pointers to data.
+#
+## Copyright (C) 2007 Free Software Foundation, Inc.
+#
+## 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.
+#
+#AC_DEFUN([gl_MPSORT],
+#[
+#  AC_REQUIRE([AC_C_RESTRICT])
+#  AC_LIBOBJ([mpsort])
+#])
+
+File: ./m4/multiarch.m4
+Hash: b653258f3ce7cd64c7398d9233856eb610cb9f25c8220388ac8f8d69522e0093
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## multiarch.m4 serial 5
+#dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Determine whether the compiler is or may be producing universal binaries.
+##
+## On MacOS X 10.5 and later systems, the user can create libraries and
+## executables that work on multiple system types--known as "fat" or
+## "universal" binaries--by specifying multiple '-arch' options to the
+## compiler but only a single '-arch' option to the preprocessor.  Like
+## this:
+##
+##     ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
+
+File: ./m4/nanosleep.m4
+Hash: 674b956f064d364a077586afb415cb25d57fc568f9fba0489cba169168844500
+License: 
+Copyright: 1999-2001, 2003-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 27
+#
+#dnl From Jim Meyering.
+#dnl Check for the nanosleep function.
+#dnl If not found, use the supplied replacement.
+#dnl
+#
+## Copyright (C) 1999-2001, 2003-2009 Free Software Foundation, Inc.
+#
+## 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.
+#
+#AC_DEFUN([gl_FUNC_NANOSLEEP],
+#[
+
+File: ./m4/netdb_h.m4
+Hash: d08ed8e4f180214d652b09a8eaafd373f90309951733c48e677e83037b6ed4f2
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## netdb_h.m4 serial 5
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_HEADER_NETDB],
+#[
+#  AC_REQUIRE([gl_NETDB_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([netdb.h])
+#  if test $ac_cv_header_netdb_h = yes; then
+#    AC_COMPILE_IFELSE(
+#      [AC_LANG_PROGRAM([[
+#         #include <netdb.h>
+#         struct addrinfo a;
+
+File: ./m4/netinet_in_h.m4
+Hash: a85cc8fd45199ab9ef11d6ac7d13daa751abfde221865a0a73fe7cfe21c2f2f0
+License: 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## netinet_in_h.m4 serial 4
+#dnl Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_HEADER_NETINET_IN],
+#[
+#  AC_CACHE_CHECK([whether <netinet/in.h> is self-contained],
+#    [gl_cv_header_netinet_in_h_selfcontained],
+#    [
+#      AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <netinet/in.h>]], [[]])],
+#        [gl_cv_header_netinet_in_h_selfcontained=yes],
+#        [gl_cv_header_netinet_in_h_selfcontained=no])
+#    ])
+
+File: ./m4/nls.m4
+Hash: e7e360a53812d679422ef6f4d1e35bb7646879dfcaf785927d7ac9095f8b7ec7
+License: 
+Copyright: 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## nls.m4 serial 5 (gettext-0.18)
+#dnl Copyright (C) 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+
+File: ./m4/no-c++.m4
+Hash: 0b0031352efd05fda906a5128060bd0ae56b31d85f23def26558caef30481782
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## no-c++.m4 serial 1
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Support for C source files that cannot be compiled by a C++ compiler.
+## Set NO_CXX to the C++ compiler flags needed to request C mode instead of
+## C++ mode.
+## So far only g++ is supported.
+#
+#AC_DEFUN([gt_NO_CXX],
+#[
+#  NO_CXX=
+#  AC_EGREP_CPP([Is g++], [
+
+File: ./m4/nocrash.m4
+Hash: 6adf83dadf8d1dcb76ced51fc0508c5debc83ec4ceed2c5f870a9fc82912bd39
+License: 
+Copyright: 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## nocrash.m4 serial 2
+#dnl Copyright (C) 2005, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Based on libsigsegv, from Bruno Haible and Paolo Bonzini.
+#
+#AC_PREREQ([2.13])
+#
+#dnl Expands to some code for use in .c programs that will cause the configure
+#dnl test to exit instead of crashing. This is useful to avoid triggering
+#dnl action from a background debugger and to avoid core dumps.
+#dnl Usage:   ...
+#dnl          ]GL_NOCRASH[
+
+File: ./m4/obstack-printf-posix.m4
+Hash: 7ba595af510c3e8cd2d9f3680cabbe5987b67bee7a5c830deea8a29b90e93e52
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## obstack-printf-posix.m4 serial 3
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_OBSTACK_PRINTF_POSIX],
+#[
+#  dnl Persuade glibc <stdio.h> to declare obstack_printf(), obstack_vprintf().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+
+File: ./m4/obstack-printf.m4
+Hash: 6368c454be42588d8224ccee3a953a7b53f7ad95c71f7ee3740973a41f824199
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## obstack-printf.m4 serial 2
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Eric Blake.
+#dnl Test whether obstack_printf() exists.  For now, we assume that
+#dnl obstack_vprintf behaves identically, so we only test for one.
+#
+#AC_DEFUN([gl_FUNC_OBSTACK_PRINTF],
+#[
+#  dnl Persuade glibc <stdio.h> to declare obstack_printf(), obstack_vprintf().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+
+File: ./m4/onceonly.m4
+Hash: 7ae946e07bc12c2ed2eb7a4a8c826cf7debadef975bffbf2cb04c5d8f27c6f38
+License: GENERATED FILE
+Copyright: 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## onceonly.m4 serial 6
+#dnl Copyright (C) 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc.
+#dnl This file is free software, distributed under the terms of the GNU
+#dnl General Public License.  As a special exception to the GNU General
+#dnl Public License, this file may be distributed as part of a program
+#dnl that contains a configuration script generated by Autoconf, under
+#dnl the same distribution terms as the rest of that program.
+#
+#dnl This file defines some "once only" variants of standard autoconf macros.
+#dnl   AC_CHECK_HEADERS_ONCE          like  AC_CHECK_HEADERS
+#dnl   AC_CHECK_FUNCS_ONCE            like  AC_CHECK_FUNCS
+#dnl   AC_CHECK_DECLS_ONCE            like  AC_CHECK_DECLS
+#dnl   AC_REQUIRE([AC_FUNC_STRCOLL])  like  AC_FUNC_STRCOLL
+#dnl The advantage is that the check for each of the headers/functions/decls
+#dnl will be put only once into the 'configure' file. It keeps the size of
+
+File: ./m4/open.m4
+Hash: 48fe6d09b376e833462ed32fe6065929561bff664179f71223340c481e677893
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## open.m4 serial 7
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_OPEN],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  case "$host_os" in
+#    mingw* | pw*)
+#      gl_REPLACE_OPEN
+#      ;;
+#    *)
+#      dnl open("foo/") should not create a file when the file name has a
+
+File: ./m4/openat.m4
+Hash: 1267346fb934ac50ef7887759e67e0545b095eb3e6566be665648aff87044f82
+License: 
+Copyright: 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 21
+## See if we need to use our replacement for Solaris' openat et al functions.
+#
+#dnl Copyright (C) 2004-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Written by Jim Meyering.
+#
+#AC_DEFUN([gl_FUNC_OPENAT],
+#[
+#  AC_REQUIRE([gl_FCNTL_H_DEFAULTS])
+#  GNULIB_OPENAT=1
+
+File: ./m4/openmp.m4
+Hash: a545c428a801683ce74ede4d47c7cbeb6744eec734c6b68eec57751db85caf3b
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## openmp.m4 serial 7
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl This file can be removed once we assume autoconf >= 2.62.
+#
+#dnl Expand to nothing in autoconf >= 2.62. m4_copy has a different
+#dnl semantic in autoconf > 2.63.
+#m4_ifdef([AC_OPENMP], [], [
+#
+## _AC_LANG_OPENMP
+## ---------------
+## Expands to some language dependent source code for testing the presence of
+
+File: ./m4/pagealign_alloc.m4
+Hash: 3f2dd3a771fa6b3fa816d2a6ef721ac63b3cd5a057cac1163026788956369502
+License: 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 5
+#dnl Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_PAGEALIGN_ALLOC],
+#[
+#  dnl Persuade glibc <sys/mman.h> to define MAP_ANONYMOUS.
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_LIBOBJ([pagealign_alloc])
+#  gl_PREREQ_PAGEALIGN_ALLOC
+#])
+
+File: ./m4/pathmax.m4
+Hash: 4a5873ef823f40afa9b33adebbe5392c0fc1d30d76eba4b657430e5f02ec0ece
+License: 
+Copyright: 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## pathmax.m4 serial 8
+#dnl Copyright (C) 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_PATHMAX],
+#[
+#  dnl Prerequisites of lib/pathmax.h.
+#  AC_CHECK_FUNCS_ONCE([pathconf])
+#  AC_CHECK_HEADERS_ONCE([sys/param.h])
+#])
+
+File: ./m4/perl.m4
+Hash: eaec6e8145dda32d044eb5468e58bf0e13df68f863a2acc0cd81caf4731d3231
+License: 
+Copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 9
+#
+#dnl From Jim Meyering.
+#dnl Find a new-enough version of Perl.
+#
+## Copyright (C) 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+#AC_DEFUN([gl_PERL],
+#[
+#  dnl FIXME: don't hard-code 5.005
+#  AC_MSG_CHECKING([for perl5.005 or newer])
+
+File: ./m4/perror.m4
+Hash: 6171e44ca4ed0431a2f8f57591ef3a383767b93b66f002363bd6a9099673b0b9
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## perror.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_PERROR],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_REQUIRE([gl_HEADER_ERRNO_H])
+#  if test -n "$ERRNO_H"; then
+#    dnl The system's perror() cannot know about the new errno values we add
+#    dnl to <errno.h>. Replace it.
+#    REPLACE_PERROR=1
+#    AC_LIBOBJ([perror])
+
+File: ./m4/physmem.m4
+Hash: bb350fe56d68536870397663b7824edd4b945d8ca3696c879c0c4ba53dc95bdf
+License: 
+Copyright: 2002-2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## physmem.m4 serial 9
+#dnl Copyright (C) 2002-2003, 2005-2006, 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Check for the external symbol, _system_configuration,
+## a struct with member `physmem'.
+#AC_DEFUN([gl_SYS__SYSTEM_CONFIGURATION],
+#  [AC_CACHE_CHECK([for external symbol _system_configuration],
+#                gl_cv_var__system_configuration,
+#    [AC_LINK_IFELSE([AC_LANG_PROGRAM(
+#                    [[#include <sys/systemcfg.h>
+#                    ]],
+#                    [[double x = _system_configuration.physmem;
+
+File: ./m4/pipe.m4
+Hash: 7ec8856c90f4355e601693e33d8b18a4a41691fa9c4fa43d39f81766ccac21a4
+License: 
+Copyright: 2004, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## pipe.m4 serial 4
+#dnl Copyright (C) 2004, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_PIPE],
+#[
+#  dnl Prerequisites of lib/pipe.c.
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_REQUIRE([AC_TYPE_MODE_T])
+#])
+
+File: ./m4/pipe2.m4
+Hash: f3be301c98df31830acfab4197dbc2dc8f6e0cb418d9d733192622f22c101c08
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## pipe2.m4 serial 2
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_PIPE2],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  dnl Persuade glibc <unistd.h> to declare pipe2().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS_ONCE([pipe2])
+#  if test $ac_cv_func_pipe2 != yes; then
+
+File: ./m4/pmccabe2html.m4
+Hash: d45dc024d6753f4004ddaf9f6d235159c452d9b7d7c57432207d03d0d9c5e93e
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## pmccabe2html.m4 serial 2
+#dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Simon Josefsson
+#
+## Usage: gl_PMCCABE2HTML([]).
+#AC_DEFUN([gl_PMCCABE2HTML],
+#[
+#  AC_REQUIRE([AC_PROG_AWK])
+#  AC_PATH_PROG([PMCCABE], [pmccabe], [false])
+#])
+
+File: ./m4/po.m4
+Hash: ca8c03e98db7b6d5561401741d13196032accefca210b2a7526f814ec686348e
+License: 
+Copyright: 1995-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## po.m4 serial 17 (gettext-0.18)
+#dnl Copyright (C) 1995-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+
+File: ./m4/poll.m4
+Hash: 629b8155ef9034734706a637ca9b60025a6c7444057a99b02f7635b34b886f14
+License: 
+Copyright: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## poll.m4 serial 8
+#dnl Copyright (c) 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_POLL],
+#[
+#  AC_CHECK_HEADERS([poll.h])
+#  if test "$ac_cv_header_poll_h" = no; then
+#    gl_cv_func_poll=no
+#  else
+#    AC_CHECK_FUNC([poll],
+#      [# Check whether poll() works on special files (like /dev/null) and
+#       # and ttys (like /dev/tty). On MacOS X 10.4.0 and AIX 5.3, it doesn't.
+
+File: ./m4/popen.m4
+Hash: b8ce7c048df6b2fc3a6f11ed7eabff8c2dd0bf8009bb134de915c68c330baa80
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## popen.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_POPEN],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_CACHE_CHECK([whether popen works with closed stdin],
+#    [gl_cv_func_popen_works],
+#    [
+#      AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>
+#]], [FILE *child;
+#     fclose (stdin);
+
+File: ./m4/posix-shell.m4
+Hash: cce92ab970bd18d6bc66e86dc66f01a7bc16b77a2c1543222fee39cbe9f902ae
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Find a POSIX-conforming shell.
+#
+## Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+## 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.
+#
+## Written by Paul Eggert.
+#
+## If a POSIX-conforming shell can be found, set POSIX_SHELL and
+## PREFERABLY_POSIX_SHELL to it.  If not, set POSIX_SHELL to the
+## empty string and PREFERABLY_POSIX_SHELL to '/bin/sh'.
+#
+#AC_DEFUN([gl_POSIX_SHELL],
+
+File: ./m4/posix_spawn.m4
+Hash: 4ccf3aca29a25f057325f00cb8cab9ffb7f4a3503475529bf10ad4391d8673a2
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## posix_spawn.m4 serial 4
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Tests whether the entire posix_spawn facility is available.
+#AC_DEFUN([gl_POSIX_SPAWN],
+#[
+#  AC_REQUIRE([gl_POSIX_SPAWN_BODY])
+#])
+#
+#AC_DEFUN([gl_POSIX_SPAWN_BODY],
+#[
+#  AC_REQUIRE([gl_SPAWN_H_DEFAULTS])
+
+File: ./m4/posixtm.m4
+Hash: 1b08ede3cabafa63d4dbcfce84463f53cb28d1fbf6d0b644a548ef4b6a60c1f5
+License: 
+Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## posixtm.m4 serial 7
+#dnl Copyright (C) 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_POSIXTM],
+#[
+#  AC_LIBOBJ([posixtm])
+#
+#  dnl No prerequisites of lib/posixtm.c.
+#])
+
+File: ./m4/posixver.m4
+Hash: 27aa6d893cf20144880953b6b445f87561cdb0e31bc9b60cb030a6ec5accd3e5
+License: 
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## posixver.m4 serial 10
+#dnl Copyright (C) 2002-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_POSIXVER],
+#[
+#  AC_LIBOBJ([posixver])
+#
+#  AC_REQUIRE([gl_DEFAULT_POSIX2_VERSION])
+#])
+#
+## Set the default level of POSIX conformance at configure-time.
+## Build with `./configure DEFAULT_POSIX2_VERSION=199209 ...' to
+
+File: ./m4/printf-frexp.m4
+Hash: c738950347dfbc774896c9b0ef0160a9d16a50ec5b9e4b29c7afe19b8c70b609
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## printf-frexp.m4 serial 3
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Check how to define printf_frexp() without linking with libm.
+#
+#AC_DEFUN([gl_FUNC_PRINTF_FREXP],
+#[
+#  AC_CACHE_CHECK([whether frexp can be used without linking with libm],
+#    [gl_cv_func_frexp_no_libm],
+#    [
+#      AC_TRY_LINK([#include <math.h>
+#                   double x;
+
+File: ./m4/printf-frexpl.m4
+Hash: a493cf44285f516390a2b9eb2ad1cc36c11f71093eb74e7c3e8d5ca2dd14fcd2
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## printf-frexpl.m4 serial 6
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Check how to define printf_frexpl() without linking with libm.
+#
+#AC_DEFUN([gl_FUNC_PRINTF_FREXPL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Subset of gl_FUNC_FREXPL_NO_LIBM.
+#  AC_CACHE_CHECK([whether frexpl can be used without linking with libm],
+#    [gl_cv_func_frexpl_no_libm],
+#    [
+
+File: ./m4/printf-posix-rpl.m4
+Hash: f4213c12c22486c51e995cbc0a9f55e9dd1c733fac30cb191d33ae57ab1d2ace
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## printf-posix-rpl.m4 serial 3
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_PRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_FUNC_VFPRINTF_POSIX])
+#  if test $gl_cv_func_vfprintf_posix = no; then
+#    gl_REPLACE_PRINTF
+#  fi
+#])
+#
+#AC_DEFUN([gl_REPLACE_PRINTF],
+
+File: ./m4/printf-posix.m4
+Hash: 4eb5f8f07750e884b5f4220c2b95cda187b6cd81bde447aeb413d684c514d5b2
+License: 
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## printf-posix.m4 serial 5 (gettext-0.18)
+#dnl Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#dnl Test whether the printf() function supports POSIX/XSI format strings with
+#dnl positions.
+#
+#AC_DEFUN([gt_PRINTF_POSIX],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings],
+#    gt_cv_func_printf_posix,
+
+File: ./m4/printf.m4
+Hash: 4fca85cb7811468dc8f84a7799c133cda593ab144a2c0889378f3795a95ddbb0
+License: 
+Copyright: 2003, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## printf.m4 serial 33
+#dnl Copyright (C) 2003, 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Test whether the *printf family of functions supports the 'j', 'z', 't',
+#dnl 'L' size specifiers. (ISO C99, POSIX:2001)
+#dnl Result is gl_cv_func_printf_sizes_c99.
+#
+#AC_DEFUN([gl_PRINTF_SIZES_C99],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_REQUIRE([gl_AC_HEADER_STDINT_H])
+#  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
+
+File: ./m4/priv-set.m4
+Hash: 9a5807b3867d86d02784078b14f20e8ecec79dc64ad187bab11bca20e19faf9d
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 6
+#
+## Copyright (C) 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+## Written by David Bartley.
+#
+#AC_DEFUN([gl_PRIV_SET],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_CHECK_FUNCS([getppriv])
+#])
+
+File: ./m4/progtest.m4
+Hash: 09334de09d3e23a27f655f7a3100e19ef96683339bad9621defeef669cf53b22
+License: 
+Copyright: 1996-2003, 2005, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## progtest.m4 serial 6 (gettext-0.18)
+#dnl Copyright (C) 1996-2003, 2005, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#dnl
+#dnl This file can can be used in projects which are not available under
+#dnl the GNU General Public License or the GNU Library General Public
+#dnl License but which still want to provide support for the GNU gettext
+#dnl functionality.
+#dnl Please note that the actual code of the GNU gettext library is covered
+#dnl by the GNU Library General Public License, and the rest of the GNU
+#dnl gettext package package is covered by the GNU General Public License.
+#dnl They are *not* in the public domain.
+
+File: ./m4/pthread.m4
+Hash: 265b8582edae0ecc5f191cf2467aa5ed8c46e146649c4d56574377f70eeaf78e
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## pthread.m4
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_PTHREAD_CHECK],
+#  [AC_CHECK_HEADERS_ONCE([pthread.h])
+#
+#   LIB_PTHREAD=
+#   PTHREAD_H=
+#   if test "$ac_cv_header_pthread_h" = yes; then
+#     gl_saved_libs=$LIBS
+#     AC_SEARCH_LIBS([pthread_create], [pthread],
+#       [if test "$ac_cv_search_pthread_create" != "none required"; then
+
+File: ./m4/putenv.m4
+Hash: cfd04c6acec3664269e09cc4df394fe9867d342ab357dc89253e1d39a1e68dde
+License: 
+Copyright: 2002-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## putenv.m4 serial 16
+#dnl Copyright (C) 2002-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl Check whether putenv ("FOO") removes FOO from the environment.
+#dnl The putenv in libc on at least SunOS 4.1.4 does *not* do that.
+#
+#AC_DEFUN([gl_FUNC_PUTENV],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_CACHE_CHECK([for putenv compatible with GNU and SVID],
+
+File: ./m4/quote.m4
+Hash: 7ffb907d173b896d2a36a8e52aa4b8ecf251434ab83fc96696dbbae5e504f319
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## quote.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_QUOTE],
+#[
+#  AC_LIBOBJ([quote])
+#
+#  dnl Prerequisites of lib/quote.c.
+#  dnl (none)
+#])
+
+File: ./m4/quotearg.m4
+Hash: 854a2ee3e971d89ce829e16d546d384896d9e30e0d56dc00566b5258a417c5e9
+License: 
+Copyright: 2002, 2004-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## quotearg.m4 serial 8
+#dnl Copyright (C) 2002, 2004-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_QUOTEARG],
+#[
+#  AC_LIBOBJ([quotearg])
+#])
+
+File: ./m4/random_r.m4
+Hash: 939838424d3346e2501950202577efffce7afa68ddebb50685b2e4fed9cd5248
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_RANDOM_R],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_CHECK_FUNCS([random_r])
+#  if test $ac_cv_func_random_r = no; then
+#    HAVE_RANDOM_R=0
+#    AC_LIBOBJ([random_r])
+#    gl_PREREQ_RANDOM_R
+#  fi
+
+File: ./m4/rawmemchr.m4
+Hash: 7024edb1193d19e0b7cd589e12a26d7f04496a74c0fd6af161959ff04393e450
+License: 
+Copyright: 2003, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## rawmemchr.m4 serial 1
+#dnl Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_RAWMEMCHR],
+#[
+#  dnl Persuade glibc <string.h> to declare rawmemchr().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([rawmemchr])
+#  if test $ac_cv_func_rawmemchr = no; then
+#    HAVE_RAWMEMCHR=0
+
+File: ./m4/read-file.m4
+Hash: 701de727d98bbec795fb137cbd0dda7bce40c10b48b4b639b9b3234236cc1c2a
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## read-file.m4 serial 2
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_READ_FILE],
+#[
+#  AC_LIBOBJ([read-file])
+#  gl_PREREQ_READ_FILE
+#])
+#
+## Prerequisites of lib/read-file.c.
+#AC_DEFUN([gl_PREREQ_READ_FILE], [:])
+
+File: ./m4/readline.m4
+Hash: 306d4bdcf575f32b920d548041595f6a25fb4dccda136654ae1fed59747c3f13
+License: 
+Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## readline.m4 serial 6
+#dnl Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Simon Josefsson, with help from Bruno Haible and Oskar
+#dnl Liljeblad.
+#
+#AC_DEFUN([gl_FUNC_READLINE],
+#[
+#  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
+#  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
+#  AC_REQUIRE([AC_LIB_RPATH])
+
+File: ./m4/readlink.m4
+Hash: 79b1927a8bcf23b28a5cc28478dc3d6f950a99d190e08d2905f9a6f75f685c02
+License: 
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## readlink.m4 serial 5
+#dnl Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_READLINK],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([readlink])
+#  if test $ac_cv_func_readlink = no; then
+#    HAVE_READLINK=0
+#    AC_LIBOBJ([readlink])
+#    gl_PREREQ_READLINK
+#  fi
+
+File: ./m4/readtokens.m4
+Hash: 6acb946573cfb59d9fd9e5abe494f8fbe2e82d0ee8aa14241255eeb9e695bbf6
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## readtokens.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_READTOKENS],
+#[
+#  AC_LIBOBJ([readtokens])
+#
+#  dnl Prerequisites of lib/readtokens.c.
+#  :
+#])
+
+File: ./m4/readutmp.m4
+Hash: 13e39ae48466c9d6aa29e3b518add10485fdb50c74bedfc98ae48e463dd6c0ae
+License: 
+Copyright: 2002-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## readutmp.m4 serial 16
+#dnl Copyright (C) 2002-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_READUTMP],
+#[
+#  dnl Persuade utmpx.h to declare utmpxname
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_HEADERS_ONCE([utmp.h utmpx.h])
+#  if test $ac_cv_header_utmp_h = yes || test $ac_cv_header_utmpx_h = yes; then
+#    AC_LIBOBJ([readutmp])
+
+File: ./m4/realloc.m4
+Hash: 3203f9e4584c814b1a0aba0d18d5bb7d602ddbc2180758ca81a03dcdcf06b8df
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## realloc.m4 serial 9
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## gl_FUNC_REALLOC_POSIX
+## ---------------------
+## Test whether 'realloc' is POSIX compliant (sets errno to ENOMEM when it
+## fails), and replace realloc if it is not.
+#AC_DEFUN([gl_FUNC_REALLOC_POSIX],
+#[
+#  AC_REQUIRE([gl_CHECK_MALLOC_POSIX])
+#  if test $gl_cv_func_malloc_posix = yes; then
+#    HAVE_REALLOC_POSIX=1
+
+File: ./m4/regex.m4
+Hash: 50d725ee6bfae6e6879133200a319aa551c76ee42b59bb3e5250356750508c4f
+License: 
+Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+## serial 54
+#
+## Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+## 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+#dnl Initially derived from code in GNU grep.
+#dnl Mostly written by Jim Meyering.
+#
+#AC_PREREQ([2.50])
+#
+#AC_DEFUN([gl_REGEX],
+
+File: ./m4/relocatable-lib.m4
+Hash: 6c4a390de69c7b321b900f2958baa712e3add7837b874bebf5bcd13345311e3b
+License: 
+Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## relocatable-lib.m4 serial 4
+#dnl Copyright (C) 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl Support for relocatable libraries.
+#AC_DEFUN([gl_RELOCATABLE_LIBRARY],
+#[
+#  AC_REQUIRE([gl_RELOCATABLE_LIBRARY_BODY])
+#  if test $RELOCATABLE = yes; then
+#    AC_LIBOBJ([relocatable])
+#  fi
+
+File: ./m4/relocatable.m4
+Hash: 7904ef75bd84bfbb557af2cf86deab67f2dcbf7ea08c90ab00c96baf2df2d70c
+License: 
+Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## relocatable.m4 serial 14
+#dnl Copyright (C) 2003, 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl gl_RELOCATABLE([RELOCWRAPPER-DIR])
+#dnl ----------------------------------------------------------
+#dnl Support for relocatable programs.
+#dnl Supply RELOCWRAPPER-DIR as the directory where relocwrapper.c may be found.
+#AC_DEFUN([gl_RELOCATABLE],
+#[
+#  AC_REQUIRE([gl_RELOCATABLE_BODY])
+
+File: ./m4/rename-dest-slash.m4
+Hash: 1030b715fefa3094ee7fcbf64ce0706064a84983eed1b4b60ee7ed860552d258
+License: 
+Copyright: 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 4
+#
+## Copyright (C) 2006, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Derived from rename.m4.
+#
+## A rename wrapper to make tools like mv -- that would normally
+## rely on the underlying rename syscall -- work more consistently.
+#
+#AC_DEFUN([gl_FUNC_RENAME_TRAILING_DEST_SLASH],
+#[
+# AC_CACHE_CHECK([whether rename is broken with respect to destination slashes],
+
+File: ./m4/rename.m4
+Hash: 3727e61e57c8da8fe778f71d8a8f9b0695955b2bd98f13525e02cafbfe02b528
+License: 
+Copyright: 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 15
+#
+## Copyright (C) 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc.
+## 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.
+#
+#dnl From Volker Borchert.
+#dnl Determine whether rename works for source file names with a trailing slash.
+#dnl The rename from SunOS 4.1.1_U1 doesn't.
+#dnl
+#dnl If it doesn't, then define RENAME_TRAILING_SLASH_BUG and arrange
+#dnl to compile the wrapper function.
+#dnl
+
+File: ./m4/rijndael.m4
+Hash: d469a617f466ee153eb791bc1baf7332f9496bc003ddfbf9588ec685c45cf79f
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## rijndael.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_RIJNDAEL],
+#[
+#  AC_LIBOBJ([rijndael-alg-fst])
+#  AC_LIBOBJ([rijndael-api-fst])
+#])
+
+File: ./m4/rmdir-errno.m4
+Hash: 82f75f1f04ed076254ed8791efc6e3913cb2ffb9bda1cdd17db04758b5ad50b9
+License: 
+Copyright: 2000, 2001, 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 10
+#
+## Copyright (C) 2000, 2001, 2005, 2006, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## When rmdir fails because the specified directory is not empty, it sets
+## errno to some value, usually ENOTEMPTY.  However, on some AIX systems,
+## ENOTEMPTY is mistakenly defined to be EEXIST.  To work around this, and
+## in general, to avoid depending on the use of any particular symbol, this
+## test runs a test to determine the actual numeric value.
+#AC_DEFUN([gl_FUNC_RMDIR_NOTEMPTY],
+#[dnl
+#  AC_CHECK_HEADERS_ONCE([unistd.h])
+
+File: ./m4/rmdir.m4
+Hash: 9f146503d645bcd65330d3382d22de8a0a4087be948ff0708262576c170266eb
+License: 
+Copyright: 2002, 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## rmdir.m4 serial 4
+#dnl Copyright (C) 2002, 2005, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_RMDIR],
+#[
+#  AC_REPLACE_FUNCS([rmdir])
+#])
+
+File: ./m4/round.m4
+Hash: 9ed0939cc0bc62c08c7caaeb3ba6a8ae4966dec6012a7e5c1f8456f7bd7f284f
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## round.m4 serial 5
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ROUND],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare round().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_DECLS([round], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_round" = yes; then
+#    gl_CHECK_MATH_LIB([ROUND_LIBM], [x = round (x);])
+#  fi
+
+File: ./m4/roundf.m4
+Hash: 728510381d8789794d1603525bf92e099b51221002637804fe176d177d5cb5ad
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## roundf.m4 serial 6
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ROUNDF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare roundf().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_DECLS([roundf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_roundf" = yes; then
+#    gl_CHECK_MATH_LIB([ROUNDF_LIBM], [x = roundf (x);])
+#  fi
+
+File: ./m4/roundl.m4
+Hash: b7f0e4329463736e5220c0e399eab82daa9435fd83c530b0d2f6b136d11e0869
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## roundl.m4 serial 5
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_ROUNDL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare roundl().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  AC_CHECK_DECLS([roundl], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_roundl" = yes; then
+#    gl_CHECK_MATH_LIB([ROUNDL_LIBM], [x = roundl (x);])
+#  fi
+
+File: ./m4/rpmatch.m4
+Hash: bdab7870b8c20ab0ea4e40b85ddc77ab1647f1f137f9c7fc0a7647cd5e46ffda
+License: 
+Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## rpmatch.m4 serial 9
+#dnl Copyright (C) 2002-2003, 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_RPMATCH],
+#[
+#  dnl Persuade glibc <stdlib.h> to declare rpmatch().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([rpmatch])
+#  if test $ac_cv_func_rpmatch = no; then
+#    HAVE_RPMATCH=0
+
+File: ./m4/safe-alloc.m4
+Hash: 413010db9362f28824c713f0f47b27ef75e4753f03a76613e49d8202ddd53a86
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## safe-alloc.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#AC_DEFUN([gl_SAFE_ALLOC],
+#[
+#  AC_LIBOBJ([safe-alloc])
+#])
+
+File: ./m4/safe-read.m4
+Hash: 476dd0e86a34ed7381cdbbea6186a965785622ace99ab7703e9be61e4019ecb1
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## safe-read.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SAFE_READ],
+#[
+#  AC_LIBOBJ([safe-read])
+#
+#  gl_PREREQ_SAFE_READ
+#])
+#
+## Prerequisites of lib/safe-read.c.
+#AC_DEFUN([gl_PREREQ_SAFE_READ],
+
+File: ./m4/safe-write.m4
+Hash: 28152483a0fa11421395beab43c19554eab15267add044139559fcd463b47d34
+License: 
+Copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## safe-write.m4 serial 3
+#dnl Copyright (C) 2002, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SAFE_WRITE],
+#[
+#  AC_LIBOBJ([safe-write])
+#
+#  gl_PREREQ_SAFE_WRITE
+#])
+#
+## Prerequisites of lib/safe-write.c.
+#AC_DEFUN([gl_PREREQ_SAFE_WRITE],
+
+File: ./m4/same.m4
+Hash: fe78499501b2c0deee1cef23c7a6de78dea2f97c7c006c4a82cfe34634febdec
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 8
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SAME],
+#[
+#  AC_LIBOBJ([same])
+#
+#  dnl Prerequisites of lib/same.c.
+#  AC_REQUIRE([AC_SYS_LONG_FILE_NAMES])
+#  AC_CHECK_FUNCS_ONCE([pathconf])
+#])
+
+File: ./m4/save-cwd.m4
+Hash: 2b070560df3e3154c5dbad3693e1c3b16f9b87cd0d77bcf1a76496e6dcd396f7
+License: 
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 9
+#dnl Copyright (C) 2002-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SAVE_CWD],
+#[
+#  AC_LIBOBJ([save-cwd])
+#  dnl Prerequisites for lib/save-cwd.c.
+#  AC_CHECK_FUNCS_ONCE([fchdir])
+#])
+
+File: ./m4/savedir.m4
+Hash: 35d4b396e58ef3251d4ca921edb871afd2bbd4da5385903c2a08804ebdfe27a5
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## savedir.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SAVEDIR],
+#[
+#  AC_LIBOBJ([savedir])
+#])
+
+File: ./m4/savewd.m4
+Hash: a7f3517138f4540f6fd6729e867b9b3aea6e5816996ecd19235dc669b62dcb10
+License: 
+Copyright: 2004 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Save and restore the working directory, possibly using a child process.
+#
+#dnl Copyright (C) 2004 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SAVEWD],
+#  [AC_REQUIRE([AC_C_INLINE])])
+
+File: ./m4/scandir.m4
+Hash: f62dae469db2be2c5aa610e2882be87dbfdcc84cadace38211e7bc734819bad1
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## scandir.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_SCANDIR],
+#[
+#  AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
+#
+#  dnl Persuade glibc and Solaris <dirent.h> to declare scandir().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_CHECK_FUNCS([scandir])
+#  if test $ac_cv_func_scandir = no; then
+
+File: ./m4/sched_h.m4
+Hash: 5626e514b7b5c64bd9f1bdf4fa1c37bcbff1286524c62153db60ae3ecd91d7ec
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sched_h.m4 serial 2
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Bruno Haible.
+#
+#AC_DEFUN([gl_SCHED_H],
+#[
+#  AC_COMPILE_IFELSE(
+#    [AC_LANG_PROGRAM([[
+#       #include <sched.h>
+#       struct sched_param a;
+#       int b[] = { SCHED_FIFO, SCHED_RR, SCHED_OTHER };
+
+File: ./m4/search_h.m4
+Hash: d6cd8150036593b84d4c4d12581f7f39c8a6978ba7cc8116c5d691c6ff7fc60e
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## search_h.m4 serial 3
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SEARCH_H],
+#[
+#  AC_REQUIRE([gl_SEARCH_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([search.h])
+#  if test $ac_cv_header_search_h = yes; then
+#    HAVE_SEARCH_H=1
+#  else
+#    HAVE_SEARCH_H=0
+#  fi
+
+File: ./m4/select.m4
+Hash: c0772bb6d91794c1312ebd0f3fb6f90dff9bcae093320dc8c253f548913bf2ce
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## select.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_SELECT],
+#[
+#  AC_REQUIRE([gl_HEADER_SYS_SELECT])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#  if test "$ac_cv_header_winsock2_h" = yes; then
+#    AC_LIBOBJ([select])
+#  else
+#    dnl On Interix 3.5, select(0, NULL, NULL, NULL, timeout) fails with error
+#    dnl EFAULT.
+
+File: ./m4/selinux-context-h.m4
+Hash: f022e113eadd22af7edced97b3f1b6289856b6ba35c8da13736665221910d34f
+License: 
+Copyright: 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 1   -*- Autoconf -*-
+## Copyright (C) 2006, 2007 Free Software Foundation, Inc.
+## 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.
+#
+## From Jim Meyering
+## Provide <selinux/context.h>, if necessary.
+#
+#AC_DEFUN([gl_HEADERS_SELINUX_CONTEXT_H],
+#[
+#  AC_CHECK_HEADERS([selinux/context.h],
+#                 [SELINUX_CONTEXT_H=],
+#                 [SELINUX_CONTEXT_H=selinux/context.h])
+#  AC_SUBST([SELINUX_CONTEXT_H])
+
+File: ./m4/selinux-selinux-h.m4
+Hash: 63a4551cf14a0eea214ecbf472ef61294bad8e3c23d81decf5b981df46db633a
+License: 
+Copyright: 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 3   -*- Autoconf -*-
+## Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## From Jim Meyering
+## Provide <selinux/selinux.h>, if necessary.
+#
+#AC_DEFUN([gl_HEADERS_SELINUX_SELINUX_H],
+#[
+#  AC_REQUIRE([gl_LIBSELINUX])
+#  AC_CHECK_HEADERS([selinux/selinux.h],
+#                 [SELINUX_SELINUX_H=],
+#                 [SELINUX_SELINUX_H=selinux/selinux.h])
+
+File: ./m4/servent.m4
+Hash: d8abbdc489bcd9264fcadfb8b7dee9be3dc239d512e7796a83ddd48f85286b5b
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## servent.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SERVENT],
+#[
+#  dnl Where are getservent(), setservent(), endservent(), getservbyname(),
+#  dnl getservbyport() defined?
+#  dnl Where are getprotoent(), setprotoent(), endprotoent(), getprotobyname(),
+#  dnl getprotobynumber() defined?
+#  dnl - On Solaris, they are in libsocket. Ignore libxnet.
+#  dnl - On Haiku, they are in libnetwork.
+#  dnl - On BeOS, they are in libnet.
+
+File: ./m4/setenv.m4
+Hash: 4b641ccd52cc1b86e45020d008a003b15aef914961b26426cf25f5c5ba714ad2
+License: 
+Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## setenv.m4 serial 11
+#dnl Copyright (C) 2001-2004, 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_SETENV],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([setenv])
+#  if test $ac_cv_func_setenv = no; then
+#    HAVE_SETENV=0
+#    AC_LIBOBJ([setenv])
+#    gl_PREREQ_SETENV
+#  fi
+
+File: ./m4/settime.m4
+Hash: 363d17c5d1dcf71322d552fde8d642ac641613cf211019c5b6d5df8bf176c37e
+License: 
+Copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## settime.m4 serial 6
+#dnl Copyright (C) 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SETTIME],
+#[
+#  AC_LIBOBJ([settime])
+#
+#  dnl Prerequisites of lib/settime.c.
+#  AC_REQUIRE([gl_CLOCK_TIME])
+#  AC_REQUIRE([gl_TIMESPEC])
+#  AC_CHECK_FUNCS_ONCE([settimeofday stime])
+#])
+
+File: ./m4/sha1.m4
+Hash: b0b8e653e77e441a1327e5cc5eedc4d33e13ce74887bfb2299a070224b9d2310
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sha1.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SHA1],
+#[
+#  AC_LIBOBJ([sha1])
+#
+#  dnl Prerequisites of lib/sha1.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#  :
+#])
+
+File: ./m4/sha256.m4
+Hash: adc2fe832d2a4759e55c651b42169d33f24c32053f7515748e255052dd2d3b90
+License: 
+Copyright: 2005, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sha256.m4 serial 4
+#dnl Copyright (C) 2005, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SHA256],
+#[
+#  AC_LIBOBJ([sha256])
+#
+#  dnl Prerequisites of lib/sha256.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+
+File: ./m4/sha512.m4
+Hash: 6a041f1d10fb35ab195140e844574a07dd5d6053918f4fd60ab8be21f949f069
+License: 
+Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sha512.m4 serial 5
+#dnl Copyright (C) 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SHA512],
+#[
+#  AC_LIBOBJ([sha512])
+#
+#  dnl Prerequisites of lib/sha512.c.
+#  AC_REQUIRE([gl_BIGENDIAN])
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+
+File: ./m4/sig2str.m4
+Hash: bdb3da52f346182e43b31c11fd3c962c84680a5371a57343ce224811e860387e
+License: 
+Copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 6
+#dnl Copyright (C) 2002, 2005, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_SIG2STR],
+#[
+#
+#  AC_REPLACE_FUNCS([sig2str])
+#  if test $ac_cv_func_sig2str = no; then
+#    gl_PREREQ_SIG2STR
+#  fi
+#])
+
+File: ./m4/sig_atomic_t.m4
+Hash: 8740a92b3f85af3d8178fdeffb26883a7a2e43709a560f117045327cee0005ad
+License: 
+Copyright: 2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sig_atomic_t.m4 serial 2
+#dnl Copyright (C) 2003, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gt_TYPE_SIG_ATOMIC_T],
+#[
+#  AC_CHECK_TYPES([sig_atomic_t], ,
+#    [AC_DEFINE([sig_atomic_t], [int],
+#       [Define as an integer type suitable for memory locations that can be
+#        accessed atomically even in the presence of asynchnonous signals.])],
+#    [#include <signal.h>])
+#])
+
+File: ./m4/sigaction.m4
+Hash: 942bae0f7e59cbdbd839bdd114df80a180753adfe2265673852caba753983e67
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sigaction.m4 serial 5
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Determine if sigaction interface is present.
+#AC_DEFUN([gl_SIGACTION],
+#[
+#  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([sigaction])
+#  if test $ac_cv_func_sigaction = yes; then
+#    AC_CHECK_MEMBERS([struct sigaction.sa_sigaction], , ,
+#                     [[#include <signal.h>]])
+#    if test $ac_cv_member_struct_sigaction_sa_sigaction = no; then
+
+File: ./m4/signal_h.m4
+Hash: f195a17f93179f7442308dc8f19fca18a62277f9951cff0b47bf9d6282685a15
+License: 
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## signal_h.m4 serial 7
+#dnl Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SIGNAL_H],
+#[
+#  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([signal.h])
+## AIX declares sig_atomic_t to already include volatile, and C89 compilers
+## then choke on 'volatile sig_atomic_t'.  C99 requires that it compile.
+#  AC_CHECK_TYPE([volatile sig_atomic_t], [],
+#    [HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=0], [[
+##include <signal.h>
+
+File: ./m4/signalblocking.m4
+Hash: 9675e385710eb500da44e7dc0b7dfeba96ca339daaea8e8a75be21e8b1ca1940
+License: 
+Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## signalblocking.m4 serial 10
+#dnl Copyright (C) 2001-2002, 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Determine available signal blocking primitives. Three different APIs exist:
+## 1) POSIX: sigemptyset, sigaddset, sigprocmask
+## 2) SYSV: sighold, sigrelse
+## 3) BSD: sigblock, sigsetmask
+## For simplicity, here we check only for the POSIX signal blocking.
+#AC_DEFUN([gl_SIGNALBLOCKING],
+#[
+#  AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
+#  signals_not_posix=
+
+File: ./m4/signbit.m4
+Hash: 090599e0809b686c818f8870e466ddf1b1e8f85e13da7c88c4ad47433ed45479
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## signbit.m4 serial 6
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SIGNBIT],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  AC_CACHE_CHECK([for signbit macro], [gl_cv_func_signbit],
+#    [
+#      AC_TRY_RUN([
+##include <math.h>
+#/* If signbit is defined as a function, don't use it, since calling it for
+#   'float' or 'long double' arguments would involve conversions.
+
+File: ./m4/sigpipe.m4
+Hash: 6589a9faf1c563d75e6001b20a2376598e62467f80ac99df43696aabd386d4d0
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sigpipe.m4 serial 2
+#dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Tests whether SIGPIPE is provided by <signal.h>.
+#dnl Sets gl_cv_header_signal_h_SIGPIPE.
+#AC_DEFUN([gl_SIGNAL_SIGPIPE],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_SIGNAL_SIGPIPE_BODY])
+#])
+
+File: ./m4/size_max.m4
+Hash: 274e63ac0e607476b00e8fd52ecec9926865a0706eb1c15307249c8beb224094
+License: 
+Copyright: 2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## size_max.m4 serial 9
+#dnl Copyright (C) 2003, 2005-2006, 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_SIZE_MAX],
+#[
+#  AC_CHECK_HEADERS([stdint.h])
+#  dnl First test whether the system already has SIZE_MAX.
+#  AC_CACHE_CHECK([for SIZE_MAX], [gl_cv_size_max], [
+#    gl_cv_size_max=
+#    AC_EGREP_CPP([Found it], [
+
+File: ./m4/sleep.m4
+Hash: 9ae4e28f795cced506809b2931038bf12f5d14f730ac5db4b564251d78d15ff1
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sleep.m4 serial 2
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_SLEEP],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  dnl We expect to see the declaration of sleep() in a header file.
+#  dnl Older versions of mingw have a sleep() function that is an alias to
+#  dnl _sleep() in MSVCRT. It has a different signature than POSIX sleep():
+#  dnl it takes the number of milliseconds as argument and returns void.
+#  dnl mingw does not declare this function.
+#  AC_CHECK_DECLS([sleep], , , [#include <unistd.h>])
+
+File: ./m4/snprintf-posix.m4
+Hash: e547253a212edd6b4044615bbc22655e0a4818d8f937f962adfc5e439e1d5301
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## snprintf-posix.m4 serial 14
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_SNPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/snprintf.m4
+Hash: 5f7fbeef790dad54ac03ec944e2a45fda19bfb17da369aa9c2e8f4f4d40d4f0f
+License: 
+Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## snprintf.m4 serial 5
+#dnl Copyright (C) 2002-2004, 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_SNPRINTF],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  gl_cv_func_snprintf_usable=no
+#  AC_CHECK_FUNCS([snprintf])
+#  if test $ac_cv_func_snprintf = yes; then
+#    gl_SNPRINTF_SIZE1
+#    case "$gl_cv_func_snprintf_size1" in
+#      *yes)
+
+File: ./m4/sockets.m4
+Hash: d50a2dfb51a1c8b126cef59648b59553940f8192635e1f111fdd3babb93d74ff
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sockets.m4 serial 5
+#dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SOCKETS],
+#[
+#  AC_REQUIRE([AC_C_INLINE])
+#
+#  gl_PREREQ_SYS_H_WINSOCK2 dnl for HAVE_WINSOCK2_H
+#  LIBSOCKET=
+#  if test $HAVE_WINSOCK2_H = 1; then
+#    dnl Native Windows API (not Cygwin).
+#    AC_CACHE_CHECK([if we need to call WSAStartup in winsock2.h and -lws2_32],
+
+File: ./m4/socklen.m4
+Hash: 85dbe7f87a9332ee77a25565add42e2c12aac7e29cdc58cde00ab978b11a42a2
+License: 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## socklen.m4 serial 6
+#dnl Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Albert Chin, Windows fixes from Simon Josefsson.
+#
+#dnl Check for socklen_t: historically on BSD it is an int, and in
+#dnl POSIX 1g it is a type of its own, but some platforms use different
+#dnl types for the argument to getsockopt, getpeername, etc.  So we
+#dnl have to test to find something that will work.
+#
+#dnl On mingw32, socklen_t is in ws2tcpip.h ('int'), so we try to find
+#dnl it there first.  That file is included by gnulib's sys_socket.in.h, which
+
+File: ./m4/sockpfaf.m4
+Hash: 1b8177a55958f8bf0898f45528ba4c08eddc3deac75871ca1a9a70fd98ce16fc
+License: 
+Copyright: 2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sockpfaf.m4 serial 6
+#dnl Copyright (C) 2004, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Test for some common socket protocol families (PF_INET, PF_INET6, ...)
+#dnl and some common address families (AF_INET, AF_INET6, ...).
+#dnl This test assumes that a system supports an address family if and only if
+#dnl it supports the corresponding protocol family.
+#
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_SOCKET_FAMILIES],
+#[
+
+File: ./m4/spawn_h.m4
+Hash: 9b595c5f8fccef298fabfb159fe9b0cd7c2965a2388f8738ecc8dae8c87bb194
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## spawn_h.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Bruno Haible.
+#
+#AC_DEFUN([gl_SPAWN_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_SPAWN_H_DEFAULTS])
+#
+#  gl_CHECK_NEXT_HEADERS([spawn.h])
+
+File: ./m4/sprintf-posix.m4
+Hash: 965f8b08288f9f0122559dd27581c39a9cd3182f9976f0b0fa1a7639e6c07c60
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sprintf-posix.m4 serial 12
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_SPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/ssize_t.m4
+Hash: 83b000495759790b16631fd82c8cc8126e7cbabbb484fa2a324fce5abf7030a0
+License: 
+Copyright: 2001-2003, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ssize_t.m4 serial 4 (gettext-0.15)
+#dnl Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#dnl Test whether ssize_t is defined.
+#
+#AC_DEFUN([gt_TYPE_SSIZE_T],
+#[
+#  AC_CACHE_CHECK([for ssize_t], [gt_cv_ssize_t],
+#    [AC_TRY_COMPILE([#include <sys/types.h>],
+#       [int x = sizeof (ssize_t *) + sizeof (ssize_t);
+#        return !x;],
+
+File: ./m4/st_dm_mode.m4
+Hash: e4230d99ce739fdfea2b6f9e534426e32367b91d82adb42e215c9ab63582ccb8
+License: 
+Copyright: 1998, 1999, 2001, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 6
+#
+## Copyright (C) 1998, 1999, 2001, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Define HAVE_ST_DM_MODE if struct stat has an st_dm_mode member.
+#
+#AC_DEFUN([AC_STRUCT_ST_DM_MODE],
+# [AC_CACHE_CHECK([for st_dm_mode in struct stat], [ac_cv_struct_st_dm_mode],
+#   [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+##include <sys/types.h>
+##include <sys/stat.h>]], [[struct stat s; s.st_dm_mode;]])],
+#     [ac_cv_struct_st_dm_mode=yes],
+
+File: ./m4/stat-macros.m4
+Hash: 0e0d077f14daca1a98a036b872304dfa730067f1906786f8a64eed1b275c8edf
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 3
+#
+## Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+##
+## 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.
+#
+#AC_DEFUN([gl_STAT_MACROS],
+#[
+#  AC_REQUIRE([AC_HEADER_STAT])
+#])
+
+File: ./m4/stat-time.m4
+Hash: 6e44781ea55874bf9fd31759924207238aa4a99a01fc2d2cbf09e345c2fede85
+License: 
+Copyright: 1998-1999, 2001, 2003, 2005-2007, 2009 Free Software
+Licence-Text: 
+#Header: 
+## Checks for stat-related time functions.
+#
+## Copyright (C) 1998-1999, 2001, 2003, 2005-2007, 2009 Free Software
+## Foundation, Inc.
+#
+## 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.
+#
+#dnl From Paul Eggert.
+#
+## st_atim.tv_nsec - Linux, Solaris, Cygwin
+## st_atimespec.tv_nsec - FreeBSD, NetBSD, if ! defined _POSIX_SOURCE
+## st_atimensec - FreeBSD, NetBSD, if defined _POSIX_SOURCE
+## st_atim.st__tim.tv_nsec - UnixWare (at least 2.1.2 through 7.1)
+
+File: ./m4/stdarg.m4
+Hash: e69d47aadd54239ff949f8ec2bd0cb0436b737ba6663b3c72e2266a01d2a42cf
+License: 
+Copyright: 2006, 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## stdarg.m4 serial 3
+#dnl Copyright (C) 2006, 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#dnl Provide a working va_copy in combination with <stdarg.h>.
+#
+#AC_DEFUN([gl_STDARG_H],
+#[
+#  STDARG_H='';                AC_SUBST([STDARG_H])
+#  NEXT_STDARG_H='<stdarg.h>'; AC_SUBST([NEXT_STDARG_H])
+#  AC_MSG_CHECKING([for va_copy])
+#  AC_CACHE_VAL([gl_cv_func_va_copy], [
+
+File: ./m4/stdbool.m4
+Hash: 43abf0fdf4a37444e2d4e8fd6ec486c9eebe8e90a6e7ae1845d2e499d0a29df1
+License: 
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Check for stdbool.h that conforms to C99.
+#
+#dnl Copyright (C) 2002-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Prepare for substituting <stdbool.h> if it is not supported.
+#
+#AC_DEFUN([AM_STDBOOL_H],
+#[
+#  AC_REQUIRE([AC_HEADER_STDBOOL])
+#
+#  # Define two additional variables used in the Makefile substitution.
+
+File: ./m4/stddef_h.m4
+Hash: c70f43db810289c46455f5b2b2b3ecbcb171fa0171d09e73ad2240e1d5bdac60
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#dnl A placeholder for POSIX 2008 <stddef.h>, for platforms that have issues.
+## stddef_h.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_STDDEF_H],
+#[
+#  AC_REQUIRE([gl_STDDEF_H_DEFAULTS])
+#  AC_REQUIRE([gt_TYPE_WCHAR_T])
+#  if test $gt_cv_c_wchar_t = no; then
+#    HAVE_WCHAR_T=0
+#    STDDEF_H=stddef.h
+#  fi
+
+File: ./m4/stdint.m4
+Hash: e9bb030f38c5c54c68cbdc8403016d05da6f6328ff69e4272d77e10820e438b7
+License: 
+Copyright: 2001-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## stdint.m4 serial 34
+#dnl Copyright (C) 2001-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Paul Eggert and Bruno Haible.
+#dnl Test whether <stdint.h> is supported or must be substituted.
+#
+#AC_DEFUN([gl_STDINT_H],
+#[
+#  AC_PREREQ([2.59])dnl
+#
+#  dnl Check for long long int and unsigned long long int.
+#  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+
+File: ./m4/stdint_h.m4
+Hash: d60bbf3881f6e22ed2fb6dfee322f368978721175058446282e77eb42f543ccc
+License: 
+Copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## stdint_h.m4 serial 8
+#dnl Copyright (C) 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Paul Eggert.
+#
+## Define HAVE_STDINT_H_WITH_UINTMAX if <stdint.h> exists,
+## doesn't clash with <sys/types.h>, and declares uintmax_t.
+#
+#AC_DEFUN([gl_AC_HEADER_STDINT_H],
+#[
+#  AC_CACHE_CHECK([for stdint.h], [gl_cv_header_stdint_h],
+#  [AC_TRY_COMPILE(
+
+File: ./m4/stdio-safer.m4
+Hash: ce00d79eaa9ab3c24483dbf666fdf1af476557c24f8fac41ccd6f1b39980db4d
+License: 
+Copyright: 2002, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 11
+#dnl Copyright (C) 2002, 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FOPEN_SAFER],
+#[
+#  AC_LIBOBJ([fopen-safer])
+#])
+#
+#AC_DEFUN([gl_POPEN_SAFER],
+#[
+#  AC_LIBOBJ([popen-safer])
+#])
+
+File: ./m4/stdio_h.m4
+Hash: 5279f85ff4aea689d0c384bbb577d873e5214e2b351a7f4aeeae85e8ebb960fe
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## stdio_h.m4 serial 18
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_STDIO_H],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([stdio.h])
+#  dnl No need to create extra modules for these functions. Everyone who uses
+#  dnl <stdio.h> likely needs them.
+#  GNULIB_FPRINTF=1
+#  GNULIB_PRINTF=1
+#  GNULIB_VFPRINTF=1
+
+File: ./m4/stdlib-safer.m4
+Hash: 9a8abafa8a805182498c9212e370537b3d0964d913d3b7550e7ee8dc02b977d2
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## stdlib-safer.m4 serial 2
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_STDLIB_SAFER],
+#[
+#  AC_LIBOBJ([mkstemp-safer])
+#])
+
+File: ./m4/stdlib_h.m4
+Hash: 97c8e01551bb911dd737aa6d57f937fbecc41dacaa9a6bb8086d8292fead4c36
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## stdlib_h.m4 serial 16
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_STDLIB_H],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  gl_CHECK_NEXT_HEADERS([stdlib.h])
+#  AC_CHECK_HEADERS([random.h], [], [], [AC_INCLUDES_DEFAULT])
+#  if test $ac_cv_header_random_h = yes; then
+#    HAVE_RANDOM_H=1
+#  else
+#    HAVE_RANDOM_H=0
+
+File: ./m4/stpcpy.m4
+Hash: 6183753fe8a97fa0b9fdf0b1dbdce611077c78894a88b08aa016a358b26785e8
+License: 
+Copyright: 2002, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## stpcpy.m4 serial 7
+#dnl Copyright (C) 2002, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STPCPY],
+#[
+#  dnl Persuade glibc <string.h> to declare stpcpy().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  dnl The stpcpy() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+
+File: ./m4/stpncpy.m4
+Hash: aa4c3046b85c5bc93ed41603a5a58dbcbb3281c604047231e2bd9df2deac2fee
+License: 
+Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## stpncpy.m4 serial 10
+#dnl Copyright (C) 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STPNCPY],
+#[
+#  dnl Persuade glibc <string.h> to declare stpncpy().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  dnl The stpncpy() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+
+File: ./m4/strcase.m4
+Hash: fe5c1d6b65e6380dc44d958082105a90e9e4bdda2acd0874069ae5d440ce9b18
+License: 
+Copyright: 2002, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strcase.m4 serial 10
+#dnl Copyright (C) 2002, 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_STRCASE],
+#[
+#  gl_FUNC_STRCASECMP
+#  gl_FUNC_STRNCASECMP
+#])
+#
+#AC_DEFUN([gl_FUNC_STRCASECMP],
+#[
+#  AC_REQUIRE([gl_HEADER_STRINGS_H_DEFAULTS])
+
+File: ./m4/strcasestr.m4
+Hash: e8fde0ec0800c5eafbe974aec107608e45a0455e252b6989480d50ddd9fecf05
+License: 
+Copyright: 2005, 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strcasestr.m4 serial 13
+#dnl Copyright (C) 2005, 2007, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Check that strcasestr is present and works.
+#AC_DEFUN([gl_FUNC_STRCASESTR_SIMPLE],
+#[
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#
+#  dnl Persuade glibc <string.h> to declare strcasestr().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_FUNC_MEMCHR])
+
+File: ./m4/strchrnul.m4
+Hash: b20cc5ae07de6b6cb4f6cce803e713349ec527e29256225c91e80c2f5445cda2
+License: 
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strchrnul.m4 serial 7
+#dnl Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRCHRNUL],
+#[
+#  dnl Persuade glibc <string.h> to declare strchrnul().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([strchrnul])
+#  if test $ac_cv_func_strchrnul = no; then
+#    HAVE_STRCHRNUL=0
+
+File: ./m4/strcspn.m4
+Hash: 69120ab7a86a050f7433f63fd1bfa6349dd8b7f10929f902bb3628e90ad587ca
+License: 
+Copyright: 2002-2003, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strcspn.m4 serial 3
+#dnl Copyright (C) 2002-2003, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRCSPN],
+#[
+#  AC_REPLACE_FUNCS([strcspn])
+#  if test $ac_cv_func_strcspn = no; then
+#    gl_PREREQ_STRCSPN
+#  fi
+#])
+#
+## Prerequisites of lib/strcspn.c.
+
+File: ./m4/strdup.m4
+Hash: fe737b962549dcee9d8390ff44f480c277ccf76b0e643fdfd2e04d06cd4b335e
+License: 
+Copyright: 2002-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strdup.m4 serial 11
+#
+#dnl Copyright (C) 2002-2009 Free Software Foundation, Inc.
+#
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRDUP],
+#[
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([strdup])
+#  AC_CHECK_DECLS_ONCE([strdup])
+#  if test $ac_cv_have_decl_strdup = no; then
+#    HAVE_DECL_STRDUP=0
+
+File: ./m4/strerror.m4
+Hash: 43b8156f92eab0feb512dc43c24fdb2ae1b05f0c0aad8317af6384b9317ae1f8
+License: 
+Copyright: 2002, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strerror.m4 serial 9
+#dnl Copyright (C) 2002, 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRERROR],
+#[
+#  AC_REQUIRE([gl_FUNC_STRERROR_SEPARATE])
+#  if test $REPLACE_STRERROR = 1; then
+#    AC_LIBOBJ([strerror])
+#    AC_DEFINE_UNQUOTED([REPLACE_STRERROR], [$REPLACE_STRERROR],
+#      [Define this to 1 if strerror is broken.])
+#  fi
+#])
+
+File: ./m4/strftime.m4
+Hash: efe49b1ba70db0a0b5b2067df6731e51e24c7b4c899928f18b8b9dc0a3b348e2
+License: 
+Copyright: 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+## serial 32
+#
+## Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+## 2006, 2007, 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+## Written by Jim Meyering and Paul Eggert.
+#
+#AC_DEFUN([gl_FUNC_GNU_STRFTIME],
+#[
+#  gl_FUNC_STRFTIME
+#])
+
+File: ./m4/string_h.m4
+Hash: e6a759b26fd667fc80f888975ad5360aacae9aa17704b9771e43634cef8b706d
+License: 
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Configure a GNU-like replacement for <string.h>.
+#
+## Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## serial 8
+#
+## Written by Paul Eggert.
+#
+#AC_DEFUN([gl_HEADER_STRING_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+
+File: ./m4/strings_h.m4
+Hash: 9092e61439d73d058d4db2c78b740947b3de19e407de536cc8abb3b33dcbd658
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Configure a replacement for <string.h>.
+#
+## Copyright (C) 2007 Free Software Foundation, Inc.
+## 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.
+#
+#AC_DEFUN([gl_HEADER_STRINGS_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_HEADER_STRINGS_H_BODY])
+#])
+#
+#AC_DEFUN([gl_HEADER_STRINGS_H_BODY],
+
+File: ./m4/strndup.m4
+Hash: de520713683d189d757c29f5cfdf12e2f063ec1a16abd534c9253233d845c1ea
+License: 
+Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strndup.m4 serial 16
+#dnl Copyright (C) 2002-2003, 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRNDUP],
+#[
+#  dnl Persuade glibc <string.h> to declare strndup().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_CHECK_DECLS_ONCE([strndup])
+#  if test $ac_cv_have_decl_strndup = no; then
+#    HAVE_DECL_STRNDUP=0
+
+File: ./m4/strnlen.m4
+Hash: 17c0880897960356780a1d18125984a4de5acffa88fa8f578c732f6a4deb2283
+License: 
+Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strnlen.m4 serial 10
+#dnl Copyright (C) 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRNLEN],
+#[
+#  dnl Persuade glibc <string.h> to declare strnlen().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_CHECK_DECLS_ONCE([strnlen])
+#  if test $ac_cv_have_decl_strnlen = no; then
+#    HAVE_DECL_STRNLEN=0
+
+File: ./m4/strpbrk.m4
+Hash: 3a3a46c86df5272af728492b47a253d0bc90d6c1304a9e6298c370a516ff5c7b
+License: 
+Copyright: 2002-2003, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strpbrk.m4 serial 5
+#dnl Copyright (C) 2002-2003, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRPBRK],
+#[
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([strpbrk])
+#  if test $ac_cv_func_strpbrk = no; then
+#    HAVE_STRPBRK=0
+#    gl_PREREQ_STRPBRK
+#  fi
+#])
+
+File: ./m4/strptime.m4
+Hash: 36d8ffad63cd866a25244dc178c60c7c2eae106c2b22a5d088209d708e8ba17c
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strptime.m4 serial 5
+#dnl Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRPTIME],
+#[
+#  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
+#  AC_REQUIRE([AC_C_RESTRICT])
+#  AC_REPLACE_FUNCS([strptime])
+#  AC_REQUIRE([gl_TM_GMTOFF])
+#  if test $ac_cv_func_strptime = yes; then
+#    REPLACE_STRPTIME=0
+#  else
+
+File: ./m4/strsep.m4
+Hash: 12432bf70d8e7ddcd99132d6a90c074106038ae824dbed54f3e9f276d2a1abf7
+License: 
+Copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strsep.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRSEP],
+#[
+#  dnl Persuade glibc <string.h> to declare strsep().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  dnl The strsep() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+
+File: ./m4/strsignal.m4
+Hash: b5bde205dfc38b3591ce316cfaa34ccbf70c14b043d4caa380a528317efbcabf
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strsignal.m4 serial 3
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRSIGNAL],
+#[
+#  dnl Persuade glibc <string.h> to declare strsignal().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#
+#  AC_CHECK_DECLS_ONCE([strsignal])
+
+File: ./m4/strstr.m4
+Hash: c2991f687e1ccb40073d14aaf5c7b457490924ae87ddd7b93ad6df00bf1cd5c9
+License: 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strstr.m4 serial 7
+#dnl Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Check that strstr works.
+#AC_DEFUN([gl_FUNC_STRSTR_SIMPLE],
+#[
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_MEMCHR])
+#  if test "$gl_cv_func_memchr_works" != yes; then
+#    REPLACE_STRSTR=1
+#    AC_LIBOBJ([strstr])
+#  fi
+
+File: ./m4/strtod.m4
+Hash: 803101b479ba543a87394c1ff647e72af6a1d42a70ad945e12d60d2fcc154cf6
+License: 
+Copyright: 2002-2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strtod.m4 serial 12
+#dnl Copyright (C) 2002-2003, 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRTOD],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  AC_FUNC_STRTOD
+#  dnl Note: AC_FUNC_STRTOD does AC_LIBOBJ([strtod]).
+#  if test $ac_cv_func_strtod = no; then
+#    HAVE_STRTOD=0
+#    REPLACE_STRTOD=1
+#    gl_PREREQ_STRTOD
+
+File: ./m4/strtoimax.m4
+Hash: 040b0f333be709208b820f7cf49bf3a6512b2d99d922e802976249b50b5f694f
+License: 
+Copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strtoimax.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRTOIMAX],
+#[
+#  dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
+#  AC_REQUIRE([AC_PROG_CPP])
+#  AC_REQUIRE([AC_PROG_EGREP])
+#
+#  AC_CACHE_CHECK([whether <inttypes.h> defines strtoimax as a macro],
+#    gl_cv_func_strtoimax_macro,
+#    [AC_EGREP_CPP([inttypes_h_defines_strtoimax], [#include <inttypes.h>
+
+File: ./m4/strtok_r.m4
+Hash: 2d55470147f9526bfa3957ea4a72c1bf623ea9380b89265fa31a24746dbe54f5
+License: 
+Copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strtok_r.m4 serial 9
+#dnl Copyright (C) 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRTOK_R],
+#[
+#  dnl The strtok_r() declaration in lib/string.in.h uses 'restrict'.
+#  AC_REQUIRE([AC_C_RESTRICT])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#  AC_CHECK_FUNCS([strtok_r])
+#  if test $ac_cv_func_strtok_r = yes; then
+
+File: ./m4/strtol.m4
+Hash: 1f93c8aa4afa52a6f1c91e6a6ff17106a2e6139db4658524516c8ee31793bf23
+License: 
+Copyright: 2002, 2003, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strtol.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRTOL],
+#[
+#  AC_REPLACE_FUNCS([strtol])
+#])
+
+File: ./m4/strtoll.m4
+Hash: d0f856b5cd35656c32054ab66a5084a34e12ca0c10ccd48b50ff50928c6690f9
+License: 
+Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strtoll.m4 serial 6
+#dnl Copyright (C) 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRTOLL],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  dnl We don't need (and can't compile) the replacement strtoll
+#  dnl unless the type 'long long int' exists.
+#  AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+#  if test "$ac_cv_type_long_long_int" = yes; then
+#    AC_REPLACE_FUNCS([strtoll])
+#    if test $ac_cv_func_strtoll = no; then
+
+File: ./m4/strtoul.m4
+Hash: fdf22d9455a3e2577c95316ab584023ae0c534bb7fb53cb935a0bfa05044d5fa
+License: 
+Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strtoul.m4 serial 4
+#dnl Copyright (C) 2002, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRTOUL],
+#[
+#  AC_REPLACE_FUNCS([strtoul])
+#])
+
+File: ./m4/strtoull.m4
+Hash: 39cb14122cb4c6ad802ffe8d4af7ff5bf3ddd2789ae6cd2220d2f74adc772b5c
+License: 
+Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strtoull.m4 serial 6
+#dnl Copyright (C) 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRTOULL],
+#[
+#  AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
+#  dnl We don't need (and can't compile) the replacement strtoull
+#  dnl unless the type 'unsigned long long int' exists.
+#  AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
+#  if test "$ac_cv_type_unsigned_long_long_int" = yes; then
+#    AC_REPLACE_FUNCS([strtoull])
+#    if test $ac_cv_func_strtoull = no; then
+
+File: ./m4/strtoumax.m4
+Hash: 5caaba51dce181aa188137ad40280074d7e3ef1070bdc5a0fbed47f94e5650a6
+License: 
+Copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strtoumax.m4 serial 7
+#dnl Copyright (C) 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRTOUMAX],
+#[
+#  dnl Work around a bug of AC_EGREP_CPP in autoconf-2.57.
+#  AC_REQUIRE([AC_PROG_CPP])
+#  AC_REQUIRE([AC_PROG_EGREP])
+#
+#  AC_CACHE_CHECK([whether <inttypes.h> defines strtoumax as a macro],
+#    gl_cv_func_strtoumax_macro,
+#    [AC_EGREP_CPP([inttypes_h_defines_strtoumax], [#include <inttypes.h>
+
+File: ./m4/strverscmp.m4
+Hash: 95826714352d22b394477acec68e36e8c32470733556f372ccd56f7ce71375bc
+License: 
+Copyright: 2002, 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## strverscmp.m4 serial 7
+#dnl Copyright (C) 2002, 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_STRVERSCMP],
+#[
+#  dnl Persuade glibc <string.h> to declare strverscmp().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([strverscmp])
+#  if test $ac_cv_func_strverscmp = no; then
+#    gl_PREREQ_STRVERSCMP
+
+File: ./m4/symlinkat.m4
+Hash: 90930f5c7ee0ce10502b307af1282f0c1bafcd6f976b6c951960b431fe7952ea
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 2
+## See if we need to provide symlinkat/readlinkat replacement.
+#
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Written by Eric Blake.
+#
+#AC_DEFUN([gl_FUNC_SYMLINKAT],
+#[
+#  AC_REQUIRE([gl_FUNC_OPENAT])
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+
+File: ./m4/sys_file_h.m4
+Hash: 69f49396e6a189edfc61c2bd435d53a891dc6abce8dac43f78387906ab67b383
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Configure a replacement for <sys/file.h>.
+#
+## Copyright (C) 2008 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Richard W.M. Jones.
+#
+#AC_DEFUN([gl_HEADER_SYS_FILE_H],
+#[
+#  AC_REQUIRE([gl_HEADER_SYS_FILE_H_DEFAULTS])
+#
+#  dnl Only flock is defined in a working <sys/file.h>.  If that
+#  dnl function is already there, we don't want to do any substitution.
+
+File: ./m4/sys_ioctl_h.m4
+Hash: f6a18a51ddc67c6c47b712c8f847e443beb6a918724a8234bac0d8132d08ebf6
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sys_ioctl_h.m4 serial 3
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Bruno Haible.
+#
+#AC_DEFUN([gl_SYS_IOCTL_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_SYS_IOCTL_H_DEFAULTS])
+#
+#  AC_CHECK_HEADERS_ONCE([sys/ioctl.h])
+
+File: ./m4/sys_select_h.m4
+Hash: 38fdb36f5c8f4a2ade525a2c92c5b92a56afd18f75d14a63fbfcaa0aea9c2bc1
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sys_select_h.m4 serial 8
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_HEADER_SYS_SELECT],
+#[
+#  AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#  AC_REQUIRE([gl_SYS_SELECT_H_DEFAULTS])
+#  AC_CACHE_CHECK([whether <sys/select.h> is self-contained],
+#    [gl_cv_header_sys_select_h_selfcontained],
+#    [
+#      dnl Test against two bugs:
+#      dnl 1. On many platforms, <sys/select.h> assumes prior inclusion of
+
+File: ./m4/sys_socket_h.m4
+Hash: 9e3fe619e71cd2142906cf6e71e9c7a811a7666b66bfd7b8d819f3bd0b440ee7
+License: 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sys_socket_h.m4 serial 13
+#dnl Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Simon Josefsson.
+#
+#AC_DEFUN([gl_HEADER_SYS_SOCKET],
+#[
+#  AC_REQUIRE([gl_SYS_SOCKET_H_DEFAULTS])
+#  AC_REQUIRE([AC_C_INLINE])
+#
+#  AC_CACHE_CHECK([whether <sys/socket.h> is self-contained],
+#    [gl_cv_header_sys_socket_h_selfcontained],
+
+File: ./m4/sys_stat_h.m4
+Hash: e14f36fc61a996000fc53de8648fe9a8614162802f0d0767f0935aa5e38381df
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sys_stat_h.m4 serial 13   -*- Autoconf -*-
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Eric Blake.
+#dnl Test whether <sys/stat.h> contains lstat and mkdir or must be substituted.
+#
+#AC_DEFUN([gl_HEADER_SYS_STAT_H],
+#[
+#  AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS])
+#
+#  dnl Check for lstat.  Systems that lack it (mingw) also lack symlinks, so
+#  dnl stat is a good replacement.
+
+File: ./m4/sys_time_h.m4
+Hash: f4fa044be9686af6cc3dca73c362217c35b7df004df156448d42e93f50005c21
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Configure a replacement for <sys/time.h>.
+#
+## Copyright (C) 2007 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Paul Eggert and Martin Lambers.
+#
+#AC_DEFUN([gl_HEADER_SYS_TIME_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the REPLACE_GETTIMEOFDAY=0 statement
+#  dnl below is expanded once only, before all REPLACE_GETTIMEOFDAY=1
+#  dnl statements that occur in other macros.
+#  AC_REQUIRE([gl_HEADER_SYS_TIME_H_BODY])
+
+File: ./m4/sys_times_h.m4
+Hash: 65330cd4e4102a96c194270ad63a84f51e0c2434500f54a1d994c4e4ef67d43e
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Configure a replacement for <sys/times.h>.
+#
+## Copyright (C) 2008 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Simon Josefsson.
+#
+#AC_DEFUN([gl_SYS_TIMES_H],
+#[
+#  AC_REQUIRE([gl_SYS_TIMES_H_DEFAULTS])
+#
+#  AC_CHECK_HEADERS_ONCE([sys/times.h])
+#  if test $ac_cv_header_sys_times_h = yes; then
+
+File: ./m4/sys_utsname_h.m4
+Hash: 6297d018e2ce6557cfb1b69a8ad181b4b150a4b66d7da9988fc8b4b9e11141c4
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sys_utsname_h.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Bruno Haible.
+#
+#AC_DEFUN([gl_SYS_UTSNAME_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_SYS_UTSNAME_H_DEFAULTS])
+#
+#  AC_CHECK_HEADERS_ONCE([sys/utsname.h])
+
+File: ./m4/sys_wait_h.m4
+Hash: 15694649678e6ed145b9468ef2af89fe024f914aa32d5e23f58210af6531261e
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sys_wait_h.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SYS_WAIT_H],
+#[
+#  AC_REQUIRE([gl_SYS_WAIT_H_DEFAULTS])
+#
+#  gl_CHECK_NEXT_HEADERS([sys/wait.h])
+#  SYS_WAIT_H='sys/wait.h'
+#  AC_SUBST([SYS_WAIT_H])
+#])
+
+File: ./m4/sysexits.m4
+Hash: bffb1617076a6e661ddf76f19df8cd972e0227ffcd9875916f5f7a7cc4fcb59f
+License: 
+Copyright: 2003, 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## sysexits.m4 serial 4
+#dnl Copyright (C) 2003, 2005, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_SYSEXITS],
+#[
+#  AC_CHECK_HEADERS_ONCE([sysexits.h])
+#  if test $ac_cv_header_sysexits_h = yes; then
+#    HAVE_SYSEXITS_H=1
+#    gl_CHECK_NEXT_HEADERS([sysexits.h])
+#    AC_TRY_COMPILE([#include <sysexits.h>],
+#      [switch (0)
+#       {
+
+File: ./m4/tempname.m4
+Hash: a3bf3fdb7afc9ed7e1115ebd5f6c297f474cd2ac9b47043fa5921526007b166e
+License: 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 3
+#
+## Copyright (C) 2006-2007 Free Software Foundation, Inc.
+## 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.
+#
+## glibc provides __gen_tempname as a wrapper for mk[ds]temp.  Expose
+## it as a public API, and provide it on systems that are lacking.
+#AC_DEFUN([gl_FUNC_GEN_TEMPNAME],
+#[
+#  AC_REQUIRE([AC_SYS_LARGEFILE])
+#
+#  AC_LIBOBJ([tempname])
+#  gl_PREREQ_TEMPNAME
+
+File: ./m4/thread.m4
+Hash: 966cea206c2dde9b0822e88fb5c7eb071d1e2a8b498b5f7584177992654e3b76
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## thread.m4 serial 2
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_THREAD],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#  AC_REQUIRE([AC_C_INLINE])
+#
+#  if test $gl_threads_api = posix; then
+#    gl_save_LIBS="$LIBS"
+#    LIBS="$LIBS $LIBMULTITHREAD"
+#    AC_CHECK_FUNCS([pthread_atfork])
+
+File: ./m4/threadlib.m4
+Hash: 0a3a72d652c01b057b2ec383380c48fb020f82e564e60ed9bd766a0d32066b2e
+License: 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## threadlib.m4 serial 4 (gettext-0.18)
+#dnl Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl gl_THREADLIB
+#dnl ------------
+#dnl Tests for a multithreading library to be used.
+#dnl Defines at most one of the macros USE_POSIX_THREADS, USE_SOLARIS_THREADS,
+#dnl USE_PTH_THREADS, USE_WIN32_THREADS
+#dnl Sets the variables LIBTHREAD and LTLIBTHREAD to the linker options for use
+#dnl in a Makefile (LIBTHREAD for use without libtool, LTLIBTHREAD for use with
+
+File: ./m4/time_h.m4
+Hash: 09adfda92c4df94c5a482b3ec5b39361004444a90836892de7f938ea85e27569
+License: 
+Copyright: 2000-2001, 2003-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Configure a more-standard replacement for <time.h>.
+#
+## Copyright (C) 2000-2001, 2003-2007, 2009 Free Software Foundation, Inc.
+#
+## 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.
+#
+## Written by Paul Eggert and Jim Meyering.
+#
+#AC_DEFUN([gl_HEADER_TIME_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_HEADER_TIME_H_BODY])
+
+File: ./m4/time_r.m4
+Hash: 770d2efad291ac35edb3d39f8630a4709ef63528414495c9895426209a914244
+License: 
+Copyright: 2003, 2006, 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#dnl Reentrant time functions like localtime_r.
+#
+#dnl Copyright (C) 2003, 2006, 2007, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Paul Eggert.
+#
+#AC_DEFUN([gl_TIME_R],
+#[
+# dnl Persuade glibc and Solaris <time.h> to declare localtime_r.
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
+
+File: ./m4/timegm.m4
+Hash: 4596ca9d5a3d693c17a973d67f0516d289147d1ee01c7b528cc2f782dd26c491
+License: 
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## timegm.m4 serial 6
+#dnl Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_TIMEGM],
+#[
+#  AC_REQUIRE([gl_HEADER_TIME_H_DEFAULTS])
+#  AC_REQUIRE([gl_FUNC_MKTIME])
+#  if test $ac_cv_func_working_mktime = no; then
+#    # Assume that timegm is buggy if mktime is.
+#    AC_LIBOBJ([timegm])
+#    ac_cv_func_timegm=no
+#  else
+
+File: ./m4/timespec.m4
+Hash: a25be56d364ef5d14f369d901d2c05e5cbd2f43c14bc1268746e18e6f001c0a9
+License: 
+Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software
+Licence-Text: 
+#Header: 
+##serial 14
+#
+## Copyright (C) 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software
+## Foundation, Inc.
+#
+## 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.
+#
+#dnl From Jim Meyering
+#
+#AC_DEFUN([gl_TIMESPEC],
+#[
+#  dnl Prerequisites of lib/timespec.h.
+#  AC_REQUIRE([AC_C_INLINE])
+
+File: ./m4/tls.m4
+Hash: 697de033bdbad89c040faa77a813d232afeefae98bb7c79cd3211e305ae79e07
+License: 
+Copyright: 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## tls.m4 serial 2 (gettext-0.18)
+#dnl Copyright (C) 2005, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#AC_DEFUN([gl_TLS],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#])
+
+File: ./m4/tm_gmtoff.m4
+Hash: 758ee2b8a8b4488ded650d22c745fbee1c698b5bbbbadab892035a0bbd133958
+License: 
+Copyright: 2002, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## tm_gmtoff.m4 serial 3
+#dnl Copyright (C) 2002, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_TM_GMTOFF],
+#[
+# AC_CHECK_MEMBER([struct tm.tm_gmtoff],
+#                 [AC_DEFINE([HAVE_TM_GMTOFF], [1],
+#                            [Define if struct tm has the tm_gmtoff member.])],
+#                 ,
+#                 [#include <time.h>])
+#])
+
+File: ./m4/tmpdir.m4
+Hash: 098577de87caf3dad7141f279bbfb44cd8b4a79600904bc59b19733b612ca9d3
+License: 
+Copyright: 2001-2002, 2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## tmpdir.m4 serial 3
+#dnl Copyright (C) 2001-2002, 2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Prerequisites for lib/tmpdir.c
+#
+#AC_DEFUN([gt_TMPDIR],
+#[
+#  AC_CHECK_FUNCS([__secure_getenv])
+#])
+
+File: ./m4/tmpfile.m4
+Hash: a9f8b1f5f20e4f91f6a5a5c5ed38df62512f8d57a66bfc25276d50c2f40318ea
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Check whether to use a replacement tmpfile() function.
+#
+## Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## Written by Ben Pfaff.
+#
+## The native Windows tmpfile function always tries to put the temporary
+## file in the root directory.  (This behaviour is even documented in
+## Microsoft's documentation!)  This often fails for ordinary users who
+## don't have the permissions to write in the root directory.
+##
+## We can't test for tmpfile even at runtime, since our test program
+
+File: ./m4/trunc.m4
+Hash: 360b254b79427391f8b53e897c7f92fb3ace5d5ad105180f038e50671ea0f446
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## trunc.m4 serial 2
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_TRUNC],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare trunc().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether trunc() is declared.
+#  AC_CHECK_DECLS([trunc], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_trunc" = yes; then
+#    dnl Test whether trunc() can be used without libm.
+
+File: ./m4/truncf.m4
+Hash: c451a8be61a16dd51de9f147f9eea7b656aec20696e999962b9b2170aa973cd6
+License: 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## truncf.m4 serial 1
+#dnl Copyright (C) 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_TRUNCF],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  dnl Persuade glibc <math.h> to declare truncf().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether truncf() is declared.
+#  AC_CHECK_DECLS([truncf], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_truncf" = yes; then
+#    dnl Test whether truncf() can be used without libm.
+
+File: ./m4/truncl.m4
+Hash: 95d7249df03f9c1cbe96efe80cffba1e26271fab4a090c16e990b8f1375026af
+License: 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## truncl.m4 serial 2
+#dnl Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_TRUNCL],
+#[
+#  AC_REQUIRE([gl_MATH_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#  dnl Persuade glibc <math.h> to declare truncl().
+#  AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#  dnl Test whether truncl() is declared.
+#  AC_CHECK_DECLS([truncl], , , [#include <math.h>])
+#  if test "$ac_cv_have_decl_truncl" = yes; then
+
+File: ./m4/tsearch.m4
+Hash: 1fdebc81816c7417d4f8f53047196acb683d0e3178f9bf7a4200af674a5a179d
+License: 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## tsearch.m4 serial 3
+#dnl Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_TSEARCH],
+#[
+#  AC_REQUIRE([gl_SEARCH_H_DEFAULTS])
+#  AC_CHECK_FUNCS([tsearch])
+#  if test $ac_cv_func_tsearch = yes; then
+#    dnl On OpenBSD 4.0, the return value of tdelete() is incorrect.
+#    AC_REQUIRE([AC_PROG_CC])
+#    AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#    AC_CACHE_CHECK([whether tdelete works], [gl_cv_func_tdelete_works],
+
+File: ./m4/tzset.m4
+Hash: 25f9ec1e09c194a7e31b97f55483b93552e2448766dd5c96e62359f399656763
+License: 
+Copyright: 2003, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 4
+#
+## Copyright (C) 2003, 2007, 2009 Free Software Foundation, Inc.
+## 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.
+#
+## See if we have a working tzset function.
+## If so, arrange to compile the wrapper function.
+## For at least Solaris 2.5.1 and 2.6, this is necessary
+## because tzset can clobber the contents of the buffer
+## used by localtime.
+#
+## Written by Paul Eggert and Jim Meyering.
+
+File: ./m4/uintmax_t.m4
+Hash: 5569fad1774ab8b961af00e03c545e378179e3d4ca1e5c23b3579e3ef6e61670
+License: 
+Copyright: 1997-2004, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## uintmax_t.m4 serial 12
+#dnl Copyright (C) 1997-2004, 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Paul Eggert.
+#
+#AC_PREREQ([2.13])
+#
+## Define uintmax_t to 'unsigned long' or 'unsigned long long'
+## if it is not already defined in <stdint.h> or <inttypes.h>.
+#
+#AC_DEFUN([gl_AC_TYPE_UINTMAX_T],
+#[
+
+File: ./m4/ulonglong.m4
+Hash: 5de3995e758929606b49effa12a5e72f32bdadb3ffa4a434c39a5fdbfcc42f33
+License: 
+Copyright: 1999-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ulonglong.m4 serial 10
+#dnl Copyright (C) 1999-2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+
+File: ./m4/uname.m4
+Hash: 3c6482e00f6593d203a89f71ae22c02497f43ccfa98128c01c410a65baf0d9f1
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## uname.m4 serial 10
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_UNAME],
+#[
+#  AC_REQUIRE([gl_SYS_UTSNAME_H_DEFAULTS])
+#  AC_REPLACE_FUNCS([uname])
+#  if test $ac_cv_func_uname = no; then
+#    HAVE_UNAME=0
+#    gl_PREREQ_UNAME
+#  fi
+#])
+
+File: ./m4/ungetc.m4
+Hash: 6d05898405c1b3e3c46040a9c38a59043c89a45cd3d411f28a20111f2483d280
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## ungetc.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN_ONCE([gl_FUNC_UNGETC_WORKS],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#
+#  AC_CACHE_CHECK([whether ungetc works on arbitrary bytes],
+#    [gl_cv_func_ungetc_works],
+#    [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
+##include <stdio.h>
+#      ]], [FILE *f; long l;
+
+File: ./m4/unicodeio.m4
+Hash: 767bdadf5b3faabd031a93d59ca9ead2934926368aba57932cba97b9aa74fef0
+License: 
+Copyright: 2002-2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## unicodeio.m4 serial 2
+#dnl Copyright (C) 2002-2003 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_UNICODEIO],
+#[
+#  dnl No prerequisites of lib/unicodeio.c.
+#  :
+#])
+
+File: ./m4/unistd-safer.m4
+Hash: d917dcd19ae1fe7e0e446c7cf29c1db1361a3abc2b5fda15c5da446442ce7a72
+License: 
+Copyright: 2002, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 8
+#dnl Copyright (C) 2002, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_UNISTD_SAFER],
+#[
+#  AC_CHECK_FUNCS_ONCE([pipe])
+#  AC_LIBOBJ([dup-safer])
+#  AC_LIBOBJ([fd-safer])
+#  AC_LIBOBJ([pipe-safer])
+#])
+
+File: ./m4/unistd_h.m4
+Hash: 390f7c7544789ef3626c1d1de31a7c38de0b022276ea3bc19dd159fda1869c65
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## unistd_h.m4 serial 24
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Simon Josefsson, Bruno Haible.
+#
+#AC_DEFUN([gl_UNISTD_H],
+#[
+#  dnl Use AC_REQUIRE here, so that the default behavior below is expanded
+#  dnl once only, before all statements that occur in other macros.
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#
+#  gl_CHECK_NEXT_HEADERS([unistd.h])
+
+File: ./m4/unlink-busy.m4
+Hash: ad70c286d0983ec8db389ea4785ef1730a651918d5fe5ffedda1c2810ef7d434
+License: 
+Copyright: 2000, 2001, 2004, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 11
+#
+#dnl From J. David Anglin.
+#
+#dnl HPUX and other systems can't unlink shared text that is being executed.
+#
+## Copyright (C) 2000, 2001, 2004, 2007 Free Software Foundation, Inc.
+## 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.
+#
+#AC_DEFUN([gl_FUNC_UNLINK_BUSY_TEXT],
+#[dnl
+#  AC_CACHE_CHECK([whether a running program can be unlinked],
+#    gl_cv_func_unlink_busy_text,
+
+File: ./m4/unlinkdir.m4
+Hash: de6356bceeff6f0516f22ebe8454b552888b3aa9c126c43968c65dc5d20824a8
+License: 
+Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 6
+#
+## Copyright (C) 2005, 2006, 2007, 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+## Written by Paul Eggert.
+#
+#AC_DEFUN([gl_UNLINKDIR],
+#[
+#  AC_REQUIRE([AC_CANONICAL_HOST])
+#  AC_CHECK_HEADERS_ONCE([priv.h])
+
+File: ./m4/unlocked-io.m4
+Hash: 7d036d1f045f2eecb342938a5e665fa8b4ab671900c00c44ea74f853e5cfca03
+License: 
+Copyright: 1998-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## unlocked-io.m4 serial 15
+#
+## Copyright (C) 1998-2006, 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+#dnl From Jim Meyering.
+#dnl
+#dnl See if the glibc *_unlocked I/O macros or functions are available.
+#dnl Use only those *_unlocked macros or functions that are declared
+#dnl (because some of them were declared in Solaris 2.5.1 but were removed
+#dnl in Solaris 2.6, whereas we want binaries built on Solaris 2.5.1 to run
+#dnl on Solaris 2.6).
+
+File: ./m4/uptime.m4
+Hash: a21b4be251dfc64d08f51f7f7c731e3c1b7316b82a9352318f3ac0248b8202e9
+License: 
+Copyright: 1996, 1999-2001, 2004, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 8
+#
+## Copyright (C) 1996, 1999-2001, 2004, 2009 Free Software Foundation, Inc.
+## 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.
+#
+#AC_PREREQ([2.13])
+#
+#AC_DEFUN([gl_SYS_PROC_UPTIME],
+#[ dnl Require AC_PROG_CC to see if we're cross compiling.
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CACHE_CHECK([for /proc/uptime], [gl_cv_have_proc_uptime],
+#  [gl_cv_have_proc_uptime=no
+#    test -f /proc/uptime \
+
+File: ./m4/userspec.m4
+Hash: 767025ad4c6d4041ef5a4fa50a0f59f305bf899b4e88261b263a58a11eecaa26
+License: 
+Copyright: 2002-2006, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 10
+#dnl Copyright (C) 2002-2006, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_USERSPEC],
+#[
+#  AC_LIBOBJ([userspec])
+#
+#  dnl Prerequisites of lib/userspec.c.
+#  AC_CHECK_HEADERS_ONCE([sys/param.h])
+#])
+
+File: ./m4/utimbuf.m4
+Hash: 1cc7dfc2a7f30b77bc720ee587638964a5d095ca07f291a9157245265121a10d
+License: 
+Copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software
+Licence-Text: 
+#Header: 
+## serial 9
+#
+## Copyright (C) 1998-2001, 2003-2004, 2007, 2009 Free Software
+## Foundation, Inc.
+##
+## 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.
+#
+#dnl From Jim Meyering
+#
+#dnl Define HAVE_STRUCT_UTIMBUF if `struct utimbuf' is declared --
+#dnl usually in <utime.h>.
+#dnl Some systems have utime.h but don't declare the struct anywhere.
+
+File: ./m4/utime.m4
+Hash: daf708dbb1e4e20331f886285ee9bebbcba63a486ac5bd4d13d92c27f53b5d22
+License: 
+Copyright: 1998, 2000-2001, 2003-2004, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## serial 9
+#
+#dnl From Jim Meyering
+#dnl Replace the utime function on systems that need it.
+#
+## Copyright (C) 1998, 2000-2001, 2003-2004, 2009 Free Software Foundation, Inc.
+## 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.
+#
+#dnl FIXME
+#
+#AC_DEFUN([gl_FUNC_UTIME],
+#[
+#  AC_REQUIRE([AC_FUNC_UTIME_NULL])
+
+File: ./m4/utimecmp.m4
+Hash: a8b3ec86a04cb02154cbad4b5fdeecc06dd7b93dc54d96458f9d210949e68241
+License: 
+Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 3
+#dnl Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_UTIMECMP],
+#[
+#  AC_LIBOBJ([utimecmp])
+#
+#  dnl Prerequisites of lib/utimecmp.c.
+#  AC_REQUIRE([gl_FUNC_UTIMES])
+#  :
+#])
+
+File: ./m4/utimens.m4
+Hash: 68d63c14fa0327cf0e4c214194e62b6bbe553f441f81bd1d17d8c5597fe6fb88
+License: 
+Copyright: 2003, 2004, 2005, 2006, 2007, 2008 Free Software
+Licence-Text: 
+#Header: 
+#dnl Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Free Software
+#dnl Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl serial 2
+#
+#AC_DEFUN([gl_UTIMENS],
+#[
+#  AC_LIBOBJ([utimens])
+#
+#  dnl Prerequisites of lib/utimens.c.
+#  AC_REQUIRE([gl_FUNC_UTIMES])
+#  AC_REQUIRE([gl_CHECK_TYPE_STRUCT_TIMESPEC])
+
+File: ./m4/utimes-null.m4
+Hash: 3d1576bcb95cbe1177f919d74755dc2272345e607205d917139059158a3724d3
+License: 
+Copyright: 1998-1999, 2001, 2003-2004, 2006, 2009 Free Software
+Licence-Text: 
+#Header: 
+## serial 9
+#
+## Copyright (C) 1998-1999, 2001, 2003-2004, 2006, 2009 Free Software
+## Foundation, Inc.
+#
+## 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.
+#
+#dnl Shamelessly cloned from acspecific.m4's AC_FUNC_UTIME_NULL,
+#dnl then do case-insensitive s/utime/utimes/.
+#
+#AC_DEFUN([gl_FUNC_UTIMES_NULL],
+#[AC_CACHE_CHECK([whether utimes accepts a null argument], [ac_cv_func_utimes_null],
+#[rm -f conftest.data; > conftest.data
+
+File: ./m4/utimes.m4
+Hash: f0ce682e7fb31e73a0c02c54b4ea24a84f141f32e54af7498deef1f9dee7c4f6
+License: 
+Copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Detect some bugs in glibc's implementation of utimes.
+#
+#dnl Copyright (C) 2003, 2004, 2005, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## See if we need to work around bugs in glibc's implementation of
+## utimes from 2003-07-12 to 2003-09-17.
+## First, there was a bug that would make utimes set mtime
+## and atime to zero (1970-01-01) unconditionally.
+## Then, there was code to round rather than truncate.
+## Then, there was an implementation (sparc64, Linux-2.4.28, glibc-2.3.3)
+## that didn't honor the NULL-means-set-to-current-time semantics.
+## Finally, there was also a version of utimes that failed on read-only
+
+File: ./m4/vararrays.m4
+Hash: ccc97184c7bd4de12a6168086eff30eb1c15e473193a91d5a5e5d6a8824a9d40
+License: 
+Copyright: 2001, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Check for variable-length arrays.
+#
+## serial 3
+#
+## From Paul Eggert
+#
+## Copyright (C) 2001, 2009 Free Software Foundation, Inc.
+## 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.
+#
+#AC_DEFUN([AC_C_VARARRAYS],
+#[
+#  AC_CACHE_CHECK([for variable-length arrays],
+#    ac_cv_c_vararrays,
+
+File: ./m4/vasnprintf-posix.m4
+Hash: b48e0fece07a089a5f87d23a14cb5091c44b473d532c563041616c9dafcdc15a
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vasnprintf-posix.m4 serial 13
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VASNPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/vasnprintf.m4
+Hash: 1cd0c36a78c6078d18cdb67a1554a4ac9f773b68dac016c0cbfa06ca03453024
+License: 
+Copyright: 2002-2004, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vasnprintf.m4 serial 29
+#dnl Copyright (C) 2002-2004, 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VASNPRINTF],
+#[
+#  AC_CHECK_FUNCS_ONCE([vasnprintf])
+#  if test $ac_cv_func_vasnprintf = no; then
+#    gl_REPLACE_VASNPRINTF
+#  fi
+#])
+#
+#AC_DEFUN([gl_REPLACE_VASNPRINTF],
+
+File: ./m4/vasprintf-posix.m4
+Hash: db9712da8b53f1bb3ae158ba8595f902cebc0533a5511d997ebbe7eff79aae9c
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vasprintf-posix.m4 serial 13
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VASPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/vasprintf.m4
+Hash: 15f05ac172c3ea6b1b2e8fdc74cd60991f82c845dcf820fcb5b868b38acbb0b5
+License: 
+Copyright: 2002-2003, 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vasprintf.m4 serial 6
+#dnl Copyright (C) 2002-2003, 2006-2007 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VASPRINTF],
+#[
+#  AC_CHECK_FUNCS([vasprintf])
+#  if test $ac_cv_func_vasprintf = no; then
+#    gl_REPLACE_VASPRINTF
+#  fi
+#])
+#
+#AC_DEFUN([gl_REPLACE_VASPRINTF],
+
+File: ./m4/vdprintf-posix.m4
+Hash: 8f5973dc5616cf37e7aec5dd9f4b90181762fdecd6864ebe71ba10e48fe33230
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vdprintf-posix.m4 serial 2
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VDPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/vdprintf.m4
+Hash: e1d6b72d4330fcfa0af92094cc075e09ba7fb9115bf9154641687e8310e4e1d8
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vdprintf.m4 serial 1
+#dnl Copyright (C) 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VDPRINTF],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  AC_CHECK_FUNCS_ONCE([vdprintf])
+#  if test $ac_cv_func_vdprintf = no; then
+#    HAVE_VDPRINTF=0
+#    gl_REPLACE_VDPRINTF
+#  fi
+#])
+
+File: ./m4/version-etc.m4
+Hash: 14c2c6c298a204c97e8b5e47a299065d37b7c38ce4dc56125c443fb09a2cbdc1
+License: 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## version-etc.m4 serial 1
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## 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.
+#
+#dnl $1 - configure flag and define name
+#dnl $2 - human readable description
+#m4_define([gl_VERSION_ETC_FLAG],
+#[dnl
+#  AC_ARG_WITH([$1], [AS_HELP_STRING([--with-$1], [$2])],
+#    [dnl
+#      case $withval in
+#      yes|no) ;;
+#      *) AC_DEFINE_UNQUOTED(AS_TR_CPP([PACKAGE_$1]), ["$withval"], [$2]) ;;
+
+File: ./m4/vfprintf-posix.m4
+Hash: d1777edd2bd37a587f11a3a9aaff20710d8a239f5e4f42f49fb36342f5ec3619
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vfprintf-posix.m4 serial 14
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VFPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/visibility.m4
+Hash: d8e75ab55dddf6b27703fb08e77f2e0e05d58c0e53aff9968eaf8f6a78def9cd
+License: 
+Copyright: 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## visibility.m4 serial 2 (gettext-0.18)
+#dnl Copyright (C) 2005, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#
+#dnl Tests whether the compiler supports the command-line option
+#dnl -fvisibility=hidden and the function and variable attributes
+#dnl __attribute__((__visibility__("hidden"))) and
+#dnl __attribute__((__visibility__("default"))).
+#dnl Does *not* test for __visibility__("protected") - which has tricky
+#dnl semantics (see the 'vismain' test in glibc) and does not exist e.g. on
+#dnl MacOS X.
+
+File: ./m4/vprintf-posix.m4
+Hash: 37a9b2f2e103f8396564a88abd0c5379afb40a6b46056d5afc1adce54162cbea
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vprintf-posix.m4 serial 3
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_FUNC_VFPRINTF_POSIX])
+#  if test $gl_cv_func_vfprintf_posix = no; then
+#    gl_REPLACE_VPRINTF
+#  fi
+#])
+#
+#AC_DEFUN([gl_REPLACE_VPRINTF],
+
+File: ./m4/vsnprintf-posix.m4
+Hash: 411f99e3689d9c66c871e864c31df109b6fe645f6bef287b09871e54ff163299
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vsnprintf-posix.m4 serial 14
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VSNPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/vsnprintf.m4
+Hash: 78bc63b8400f070466502f7f592939004f0204329bf1936e08db566f9efb4a63
+License: 
+Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vsnprintf.m4 serial 5
+#dnl Copyright (C) 2002-2004, 2007-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VSNPRINTF],
+#[
+#  AC_REQUIRE([gl_STDIO_H_DEFAULTS])
+#  gl_cv_func_vsnprintf_usable=no
+#  AC_CHECK_FUNCS([vsnprintf])
+#  if test $ac_cv_func_vsnprintf = yes; then
+#    gl_SNPRINTF_SIZE1
+#    case "$gl_cv_func_snprintf_size1" in
+#      *yes)
+
+File: ./m4/vsprintf-posix.m4
+Hash: 5de43c845cf229240686251cffa6ebc95a7ff8c99776f41b84e9ab73fd5d27dd
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## vsprintf-posix.m4 serial 12
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_VSPRINTF_POSIX],
+#[
+#  AC_REQUIRE([gl_PRINTF_SIZES_C99])
+#  AC_REQUIRE([gl_PRINTF_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE])
+#  AC_REQUIRE([gl_PRINTF_INFINITE_LONG_DOUBLE])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_A])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_F])
+#  AC_REQUIRE([gl_PRINTF_DIRECTIVE_N])
+
+File: ./m4/wait-process.m4
+Hash: e95987f7301300836022c3c272ea0fd0f42750837bde9c7077eea97dd7c54f4e
+License: 
+Copyright: 2003, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wait-process.m4 serial 4
+#dnl Copyright (C) 2003, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_WAIT_PROCESS],
+#[
+#  dnl Prerequisites of lib/wait-process.c.
+#  AC_REQUIRE([gt_TYPE_SIG_ATOMIC_T])
+#  AC_CHECK_FUNCS([waitid])
+#])
+
+File: ./m4/warnings.m4
+Hash: 2ea3219129fd3e764decacbe54defb2ac59c220191cb3dc2e751955671739c87
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## warnings.m4 serial 2
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Simon Josefsson
+#
+## gl_AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH])
+## ----------------------------------------------------
+## Provide the functionality of AS_VAR_IF if Autoconf does not have it.
+#m4_ifdef([AS_VAR_IF],
+#[m4_copy([AS_VAR_IF], [gl_AS_VAR_IF])],
+#[m4_define([gl_AS_VAR_IF],
+#[AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])])
+
+File: ./m4/wchar.m4
+Hash: 82235dd92cbc686f19c162e681a3e2d2cd8712415ceb63502f96525e68b68801
+License: 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#dnl A placeholder for ISO C99 <wchar.h>, for platforms that have issues.
+#
+#dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Eric Blake.
+#
+## wchar.m4 serial 25
+#
+#AC_DEFUN([gl_WCHAR_H],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#  AC_CACHE_CHECK([whether <wchar.h> is standalone],
+
+File: ./m4/wchar_t.m4
+Hash: e144a04745a6906677eeb9b8f3c9fb793754a3c55452125a6e24a9668ceb77bc
+License: 
+Copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wchar_t.m4 serial 3 (gettext-0.18)
+#dnl Copyright (C) 2002-2003, 2008, 2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#dnl Test whether <stddef.h> has the 'wchar_t' type.
+#dnl Prerequisite: AC_PROG_CC
+#
+#AC_DEFUN([gt_TYPE_WCHAR_T],
+#[
+#  AC_CACHE_CHECK([for wchar_t], [gt_cv_c_wchar_t],
+#    [AC_TRY_COMPILE([#include <stddef.h>
+#       wchar_t foo = (wchar_t)'\0';], ,
+
+File: ./m4/wcrtomb.m4
+Hash: 950cca49712f3c35b6801b3d14be1d94ecdfddaf783aa898b4c0a215c21d1a22
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wcrtomb.m4 serial 4
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_WCRTOMB],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_WCRTOMB=1
+#  fi
+
+File: ./m4/wcsnrtombs.m4
+Hash: f1714d805e97204ef9c59bd5306dfb11726dd669488be35000b946750fd6f03d
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wcsnrtombs.m4 serial 2
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_WCSNRTOMBS],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_WCSNRTOMBS=1
+#  fi
+
+File: ./m4/wcsrtombs.m4
+Hash: c97f36290b6a78023cc47f8d507dcd18ceec4a4d68fbf704e743231b8d2eb7f1
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wcsrtombs.m4 serial 4
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_WCSRTOMBS],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_REQUIRE([AC_TYPE_MBSTATE_T])
+#  gl_MBSTATE_T_BROKEN
+#  if test $REPLACE_MBSTATE_T = 1; then
+#    REPLACE_WCSRTOMBS=1
+#  fi
+
+File: ./m4/wctob.m4
+Hash: d9b6ab0f44f04f22bde90b90ed5287b8f3503b07803bd2469f5e37e32682c1db
+License: 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wctob.m4 serial 4
+#dnl Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_WCTOB],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#
+#  AC_CHECK_FUNCS_ONCE([wctob])
+#  if test $ac_cv_func_wctob = no; then
+#    HAVE_DECL_WCTOB=0
+#    gl_REPLACE_WCHAR_H
+#    AC_LIBOBJ([wctob])
+
+File: ./m4/wctype.m4
+Hash: b223622a4d75488360819355855d86340ef0e7f18d4a3fd37bd74f65b7ef14a8
+License: 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wctype.m4 serial 2
+#
+#dnl A placeholder for ISO C99 <wctype.h>, for platforms that lack it.
+#
+#dnl Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Paul Eggert.
+#
+#AC_DEFUN([gl_WCTYPE_H],
+#[
+#  AC_REQUIRE([AC_PROG_CC])
+#  AC_CHECK_FUNCS_ONCE([iswcntrl])
+
+File: ./m4/wcwidth.m4
+Hash: 454b784cd3681ceda96891b7832bf461581311bed5d7e6f8c98cbe7371e8da76
+License: 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wcwidth.m4 serial 15
+#dnl Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_WCWIDTH],
+#[
+#  AC_REQUIRE([gl_WCHAR_H_DEFAULTS])
+#  AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
+#
+#  dnl Persuade glibc <wchar.h> to declare wcwidth().
+#  AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
+#
+#  AC_REQUIRE([gt_TYPE_WCHAR_T])
+
+File: ./m4/wint_t.m4
+Hash: 542edc258897a8065d2ea6d285047c9e3ff04da8728e2fc4c3ce004076b1bf5d
+License: 
+Copyright: 2003, 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## wint_t.m4 serial 4 (gettext-0.18)
+#dnl Copyright (C) 2003, 2007-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl From Bruno Haible.
+#dnl Test whether <wchar.h> has the 'wint_t' type.
+#dnl Prerequisite: AC_PROG_CC
+#
+#AC_DEFUN([gt_TYPE_WINT_T],
+#[
+#  AC_CACHE_CHECK([for wint_t], [gt_cv_c_wint_t],
+#    [AC_TRY_COMPILE([
+#/* Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
+
+File: ./m4/write-any-file.m4
+Hash: c5ed5eaed6e0fe94e459ff78fb113b0ff81091be83ecaaeef17f0dfe0ea6b5c4
+License: 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Determine whether we can write any file.
+#
+## Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+##
+## 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.
+#
+## Written by Paul Eggert.
+#
+#AC_DEFUN([gl_WRITE_ANY_FILE],
+#[
+#  AC_CHECK_HEADERS_ONCE([priv.h])
+#  AC_LIBOBJ([write-any-file])
+#])
+
+File: ./m4/write.m4
+Hash: c5c3bc26fbe2cb6fa61e259bcc8f1b0fdef708a454a07deb6712cb376c2d0b91
+License: 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## write.m4 serial 1
+#dnl Copyright (C) 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_FUNC_WRITE],
+#[
+#  AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
+#  dnl This ifdef is just an optimization, to avoid performing a configure
+#  dnl check whose result is not used. It does not make the test of
+#  dnl GNULIB_UNISTD_H_SIGPIPE or GNULIB_SIGPIPE redundant.
+#  m4_ifdef([gl_SIGNAL_SIGPIPE], [
+#    gl_SIGNAL_SIGPIPE
+#    if test $gl_cv_header_signal_h_SIGPIPE != yes; then
+
+File: ./m4/xalloc.m4
+Hash: 5008bbce8cfeaf98f9413e19e47b1267a7d0d7d21ba9d97bc1bf984f234a4773
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## xalloc.m4 serial 16
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_XALLOC],
+#[
+#  AC_LIBOBJ([xmalloc])
+#
+#  gl_PREREQ_XALLOC
+#  gl_PREREQ_XMALLOC
+#])
+#
+## Prerequisites of lib/xalloc.h.
+
+File: ./m4/xgetcwd.m4
+Hash: 3b5d09234ad0a99b1fce1a5067ecc3c715989640845dd5c38e94d491e4e94090
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 6
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_XGETCWD],
+#[
+#  AC_LIBOBJ([xgetcwd])
+#
+#  AC_REQUIRE([gl_FUNC_GETCWD])
+#])
+
+File: ./m4/xnanosleep.m4
+Hash: d11f4adf891d6c7746216e56ef22de12b2f4cdd9765e0f9d3630e52b02fae5f0
+License: 
+Copyright: 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 4
+#dnl Copyright (C) 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#dnl Written by Paul Eggert.
+#
+#AC_DEFUN([gl_XNANOSLEEP],
+#[
+#  AC_LIBOBJ([xnanosleep])
+#])
+
+File: ./m4/xsize.m4
+Hash: 9d30e3c52072d3833efaf4d46c531c2b3f801281eb8aead4b3ae7ae011e2cff4
+License: 
+Copyright: 2003-2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## xsize.m4 serial 4
+#dnl Copyright (C) 2003-2004, 2008 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_XSIZE],
+#[
+#  dnl Prerequisites of lib/xsize.h.
+#  AC_REQUIRE([gl_SIZE_MAX])
+#  AC_REQUIRE([AC_C_INLINE])
+#  AC_CHECK_HEADERS([stdint.h])
+#])
+
+File: ./m4/xstrndup.m4
+Hash: 117f55c31df0fe5f1e79240d94a592eed4a47276060894633b84e8816a1d5056
+License: 
+Copyright: 2003 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## xstrndup.m4 serial 2
+#dnl Copyright (C) 2003 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_XSTRNDUP],
+#[
+#  gl_PREREQ_XSTRNDUP
+#])
+#
+## Prerequisites of lib/xstrndup.c.
+#AC_DEFUN([gl_PREREQ_XSTRNDUP], [
+#  :
+#])
+
+File: ./m4/xstrtod.m4
+Hash: 1ec2cd8d2c6b3de92b55a976bf17831b0daf8d2171c62cfad283954af9f4309f
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##serial 6
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+## Prerequisites of lib/xstrtod.c.
+#AC_DEFUN([gl_XSTRTOD],
+#[
+#  AC_LIBOBJ([xstrtod])
+#])
+#
+## Prerequisites of lib/xstrtold.c.
+#AC_DEFUN([gl_XSTRTOLD],
+#[
+
+File: ./m4/xstrtol.m4
+Hash: ef06de197a5a3ac2001bb343095937dc6980e544003adc0f77f3d9f2be17fb82
+License: 
+Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+Licence-Text: 
+#Header: 
+##serial 10
+#dnl Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software
+#dnl Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_XSTRTOL],
+#[
+#  AC_LIBOBJ([xstrtol])
+#  AC_LIBOBJ([xstrtoul])
+#  AC_LIBOBJ([xstrtol-error])
+#])
+
+File: ./m4/xvasprintf.m4
+Hash: dae7786d5d9ab5954cee5d5c0847bed861d04af2a98ba67c5945d8085c9c85d0
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## xvasprintf.m4 serial 1
+#dnl Copyright (C) 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_XVASPRINTF],
+#[
+#  dnl Prerequisites of lib/xvasprintf.c.
+#  AC_REQUIRE([AC_C_INLINE])
+#])
+
+File: ./m4/yesno.m4
+Hash: b0dfeda80afab2a3259bde0be3a8994252fd438782e68ef024dfee9eae084ae9
+License: 
+Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## yesno.m4 serial 5
+#dnl Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_YESNO],
+#[
+#  AC_LIBOBJ([yesno])
+#
+#  dnl No prerequisites of lib/yesno.c.
+#  :
+#])
+
+File: ./m4/yield.m4
+Hash: 55ae2c6e8e758bd817c625c92a268f6d9e9eded98c0334cd4951f7f16c833c48
+License: 
+Copyright: 2005-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## yield.m4 serial 2
+#dnl Copyright (C) 2005-2009 Free Software Foundation, Inc.
+#dnl This file is free software; the Free Software Foundation
+#dnl gives unlimited permission to copy and/or distribute it,
+#dnl with or without modifications, as long as this notice is preserved.
+#
+#AC_DEFUN([gl_YIELD],
+#[
+#  AC_REQUIRE([gl_THREADLIB])
+#  dnl On some systems, sched_yield is in librt, rather than in libpthread.
+#  YIELD_LIB=
+#  if test $gl_threads_api = posix; then
+#    dnl Solaris has sched_yield in librt, not in libpthread or libc.
+#    AC_CHECK_LIB([rt], [sched_yield], [YIELD_LIB=-lrt],
+#      [dnl Solaris 2.5.1, 2.6 has sched_yield in libposix4, not librt.
+
+File: ./modules/COPYING
+Hash: ea01ff3d1fe531cedd25e6454d6019a4c68df3539aa51b594745c21a87d532dd
+License: 
+Copyright: 2006 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#The files in this directory describe the gnulib modules.
+#The following copyright notice applies to each of these
+#description files.
+#
+#Copyright (C) 2006 Free Software Foundation, Inc.
+#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.
+
+File: ./modules/README
+Hash: 8d356052608716fc7be4d7331d5fa7674281528a1f2a37a5d0a79cabd3601b60
+License: 
+Copyright: 2002-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#This directory contains metainformation about the gnulib modules, one or two
+#files per module. These files are used by gnulib-tool.
+#
+#For every module,
+#  - the file <module> is the metainformation about the library code of the
+#    module,
+#  - the file <module>-tests is the metainformation about the unit test of
+#    the module (optional but recommended).
+#
+#All the files in this directory are distributed under the following copyright:
+#
+#  Copyright (C) 2002-2007 Free Software Foundation, Inc.
+#  Copying and distribution of this file, with or without modification,
+#  in any medium, are permitted without royalty provided the copyright
+#  notice and this notice are preserved.
+
+File: ./modules/TEMPLATE
+Hash: f8a70af5ef07c20669714dd78293acb87f3aa86ad5f570a56ba9780db185eeb1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#
+#Files:
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+#GPL
+
+File: ./modules/TEMPLATE-EXTENDED
+Hash: 6ebc6ce1adc16257f3b0631103f13c19f94ae53b31a1a237b4f9dfcd7fdccfe5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#
+#Status:
+#
+#Notice:
+#
+#Files:
+#
+#Depends-on:
+#
+#configure.ac-early:
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/TEMPLATE-TESTS
+Hash: 269fa96cfbc6b04248686ca277bdfca748958597dd5371663d070ebd1f845bd8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/absolute-header
+Hash: b91551dc6e292f96fc1f1dbfd58f368a201cd9145d147662e42298b74f277fc3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Allows wrapping a broken system header in a gnulib replacement.
+#
+#Files:
+#m4/absolute-header.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+## Use this preprocessor expression to decide whether #include_next works.
+## Do not rely on a 'configure'-time test for this, since the expression
+## might appear in an installed header, which is used by some other compiler.
+#HAVE_INCLUDE_NEXT = (__GNUC__ || 60000000 <= __DECC_VER)
+
+File: ./modules/accept
+Hash: 880f693a12f72986c4004d5916367f6fcabdc2c90b0f92704a8683b8b5093ecc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#accept() function: accept a connection to a server socket.
+#
+#Files:
+#lib/accept.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+#  AC_LIBOBJ([accept])
+
+File: ./modules/accept4
+Hash: eff8a2f46aeddff17326dc7202dcc1c126940a12b6a08ccf328dcdfdb75385a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#accept4() function: accept a connection on a socket, with specific opening
+#flags.
+#
+#Files:
+#lib/accept4.c
+#m4/accept4.m4
+#
+#Depends-on:
+#sys_socket
+#accept
+#fcntl
+#binary-io
+#
+#configure.ac:
+
+File: ./modules/acl
+Hash: f0f81a20f9ec6387ebdf385b5860ec35651d02adf72ac4d0f25939e3875380bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Access control lists of files.  (Unportable.)
+#
+#Files:
+#lib/acl.h
+#lib/acl-internal.h
+#lib/acl_entries.c
+#lib/set-mode-acl.c
+#lib/copy-acl.c
+#lib/file-has-acl.c
+#m4/acl.m4
+#
+#Depends-on:
+#error
+#gettext
+
+File: ./modules/acl-tests
+Hash: 5c900b78c378193efff1f23f0611a11691f688f3e6f98d65ba91415259989ff9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-file-has-acl.sh
+#tests/test-set-mode-acl.sh
+#tests/test-copy-acl.sh
+#tests/test-file-has-acl.c
+#tests/test-set-mode-acl.c
+#tests/test-copy-acl.c
+#tests/test-sameacls.c
+#
+#Depends-on:
+#progname
+#read-file
+#unistd
+#xalloc
+
+File: ./modules/agpl-3.0
+Hash: ee51411f6921d7c5d74e0fe333dac39cbaa523c4fd9070898e12bb57004d7044
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Provide the GNU Affero General Public License version 3.0 in Texinfo format.
+#
+#Files:
+#doc/agpl-3.0.texi
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/alignof
+Hash: 9378a232bbe5b9737af69836746b7ded8b6e07e003b231d49fe32a6df198f28e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine alignment of types.
+#
+#Files:
+#lib/alignof.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"alignof.h"
+
+File: ./modules/alignof-tests
+Hash: 0cbc5d48e08e4633e9914b99427cb2958931f0fca6463ec6b5fbba801dcb0fc0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-alignof.c
+#
+#Depends-on:
+#verify
+#stdint
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-alignof
+#check_PROGRAMS += test-alignof
+
+File: ./modules/alloca
+Hash: 1a2b5c5a85209bb72ababfbc0e6dd9acb75565228f02f35483d6be1b9fc37a74
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Memory allocation on the stack.
+#
+#Files:
+#lib/alloca.c
+#
+#Depends-on:
+#alloca-opt
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+##include <alloca.h>
+
+File: ./modules/alloca-opt
+Hash: 3cbd6527fea57bf3040afab2047ca30268526f52ae7826d6b870216c8a96e66a
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Memory allocation on the stack, as an optional optimization.
+#It allows using the alloca() macro if and only if the autoconf tests define
+#HAVE_ALLOCA.
+#
+#Files:
+#lib/alloca.in.h
+#m4/alloca.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_ALLOCA
+#
+#Makefile.am:
+
+File: ./modules/alloca-opt-tests
+Hash: 43f65f86a2cacab71ca748cc004b72015963286ae5871a9872c3fd891d3f378f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-alloca-opt.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-alloca-opt
+#check_PROGRAMS += test-alloca-opt
+
+File: ./modules/alphasort
+Hash: a449b677555d768b144bc08809c5edf4590b1cc0263ecd44b1864a6693811cce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#alphasort() function: compare entries of a directory alphabetically
+#
+#Files:
+#lib/alphasort.c
+#m4/alphasort.m4
+#
+#Depends-on:
+#dirent
+#extensions
+#
+#configure.ac:
+#gl_FUNC_ALPHASORT
+#gl_DIRENT_MODULE_INDICATOR([alphasort])
+
+File: ./modules/announce-gen
+Hash: 424137e7ed97358f8190d5b4c513195c537964100200cca084a6bfeeb5b7cf6c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generate a release announcement message.
+#
+#Files:
+#build-aux/announce-gen
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/areadlink
+Hash: a7ba93d0ca6f4fd028715cc62b74f27ed5d41e4c7fc4123e6b4cd077834bfb07
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Reading symbolic links without size limitation.
+#
+#Files:
+#lib/areadlink.h
+#lib/areadlink.c
+#
+#Depends-on:
+#readlink
+#ssize_t
+#unistd
+#malloc-posix
+#
+#configure.ac:
+
+File: ./modules/areadlink-with-size
+Hash: a4a44db468900aab3c1b60d8aef9c202fc4d6af1eb546127f18ce4597b276ca7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return the contents of a symbolic link, without size limitations.
+#
+#Files:
+#lib/areadlink.h
+#lib/areadlink-with-size.c
+#
+#Depends-on:
+#readlink
+#ssize_t
+#unistd
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/argmatch
+Hash: 3b907f3995ad2c5c25ce862c92db89bdf2e978b01e154933a5ac76a686ab61d1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for an exact or abbreviated match of a string in an array of strings.
+#
+#Files:
+#lib/argmatch.h
+#lib/argmatch.c
+#m4/argmatch.m4
+#
+#Depends-on:
+#gettext-h
+#error
+#quotearg
+#quote
+#exit
+#exitfail
+
+File: ./modules/argmatch-tests
+Hash: 1ee2045e91753f5727461047c125be83dbbf3cefdd96c9ba33fe70ad2b079ad0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-argmatch.c
+#
+#Depends-on:
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-argmatch
+#check_PROGRAMS += test-argmatch
+#test_argmatch_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/argp
+Hash: ce02af3afd4ce18da524b2b765e4abdf63ff3ebf43802c32d7b3663a479b0b40
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Hierarchical processing of command line arguments.
+#
+#Notice:
+#If you are using GNU gettext version 0.16.1 or older, add the following options
+#to XGETTEXT_OPTIONS in your po/Makevars:
+#  --flag=argp_error:2:c-format --flag=argp_failure:4:c-format
+#
+#Files:
+#lib/argp.h
+#lib/argp-ba.c
+#lib/argp-eexst.c
+#lib/argp-fmtstream.c
+#lib/argp-fmtstream.h
+#lib/argp-fs-xinl.c
+
+File: ./modules/argp-tests
+Hash: 5ea825a9f24afb77c59e4f5fd1e6afb1db75028b4a11b86886c4291474058340
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-argp.c
+#tests/test-argp-2.sh
+#
+#Depends-on:
+#progname
+#
+#Makefile.am:
+#TESTS += test-argp test-argp-2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-argp
+#test_argp_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/argp-version-etc
+Hash: da3723297aa47f347ecc2fdcb6acf53bae88fc70ac953b8f200e41db957cfd22
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Version-etc hook for Argp.
+#
+#Files:
+#lib/argp-version-etc.c
+#lib/argp-version-etc.h
+#
+#Depends-on:
+#argp
+#version-etc
+#
+#Makefile.am:
+#lib_SOURCES += argp-version-etc.h argp-version-etc.c
+#
+#Include:
+
+File: ./modules/argp-version-etc-tests
+Hash: b70ef3bd1137f9fc9ee84d3e171e0d9cf77ba060db760228cc778fc11c1c5c05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-argp-version-etc.c
+#tests/test-argp-version-etc-1.sh
+#
+#Depends-on:
+#argp
+#progname
+#version-etc-fsf
+#
+#Makefile.am:
+#TESTS += test-argp-version-etc test-argp-version-etc-1.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-argp-version-etc
+#test_argp_version_etc_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/argv-iter
+Hash: fdef6db4c9570ecc974daa07d7a17764047b2fbb0ca565d8ce246bf9d7646fd0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#iterate through argv or a --files0-from=-specified file
+#
+#Files:
+#lib/argv-iter.c
+#lib/argv-iter.h
+#
+#Depends-on:
+#getdelim
+#stdbool
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += argv-iter.c argv-iter.h
+
+File: ./modules/argv-iter-tests
+Hash: 7b434843257ef66143e5a306f573ec2f4b435294506f3d2026725ee192514fc7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-argv-iter.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-argv-iter
+#check_PROGRAMS += test-argv-iter
+
+File: ./modules/argz
+Hash: b08870e168fbe181cd9b36b1a2a6ecc2bd18763c390bca98a5c6f64ecfd66b92
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Argv style string arrays in a single null delimited char*.
+#
+#Files:
+#lib/argz.in.h
+#lib/argz.c
+#m4/argz.m4
+#
+#Depends-on:
+#memmove
+#mempcpy
+#stpcpy
+#strndup
+#strnlen
+#strstr
+
+File: ./modules/arpa_inet
+Hash: f7f0aea422448523fe348fa3aab768d588584e6b82671bd9a986b73b096f4a08
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <arpa/inet.h>.
+#
+#Files:
+#lib/arpa_inet.in.h
+#m4/arpa_inet_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#sys_socket
+#
+#configure.ac:
+#gl_HEADER_ARPA_INET
+#AC_PROG_MKDIR_P
+
+File: ./modules/arpa_inet-tests
+Hash: 0612cb2590ee3e2f7a2a9d8a09965adaa37107664e7f6aa53fb5bf8b96a3dc0e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-arpa_inet.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-arpa_inet
+#check_PROGRAMS += test-arpa_inet
+#
+#License:
+#LGPL
+
+File: ./modules/array-list
+Hash: 13010a14be6fcdbb05d1488022da1e81541145572644497f4a8c4bf63aaf062a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type implemented by an array.
+#
+#Files:
+#lib/gl_array_list.h
+#lib/gl_array_list.c
+#
+#Depends-on:
+#list
+#xalloc
+#xsize
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/array-list-tests
+Hash: 53baa85faeb05acb1a5ac31eddc9644f74534d95b378c648e0e15c3c48fb3a39
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-array_list.c
+#
+#Depends-on:
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-array_list
+#check_PROGRAMS += test-array_list
+#test_array_list_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/array-mergesort
+Hash: d585324f2a3ec55082b40d8105956bef2d3acca525a28c3fb788716b0c8aefc7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Merge-sort algorithm on arrays.
+#
+#Files:
+#lib/array-mergesort.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"array-mergesort.h"
+
+File: ./modules/array-mergesort-tests
+Hash: 0381eae0b69a43296fb82510390ea62a845191dacf3b433aaad9116b638c4d56
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-array-mergesort.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-array-mergesort
+#check_PROGRAMS += test-array-mergesort
+
+File: ./modules/array-oset
+Hash: f36d4a0da577eed849de014669d57e2f2084cfd1f72b5611a526829c81250b40
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Ordered set data type implemented by an array.
+#
+#Files:
+#lib/gl_array_oset.h
+#lib/gl_array_oset.c
+#
+#Depends-on:
+#oset
+#xalloc
+#xsize
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/array-oset-tests
+Hash: ec9ac466b696b5a94cd17a8ba47724fb6d95350af33941164b48273b68b74bf3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-array_oset.c
+#
+#Depends-on:
+#array-list
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-array_oset
+#check_PROGRAMS += test-array_oset
+#test_array_oset_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/assert
+Hash: 84144692e39c0ce77559b0f2d4a5d22114f5cec2e0195dfd88cbe772ed85f07c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Allow the installer to disable assertions through "configure --disable-assert".
+#
+#Files:
+#m4/assert.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_ASSERT
+#
+#Makefile.am:
+#
+#Include:
+#<assert.h>
+
+File: ./modules/atexit
+Hash: 956fe5e5cc0e05eb5c5652bee988a55b05d2c27e4d0d4fa2fd65a54fbfcbf105
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#atexit() function: register a function to be called at program termination.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/atexit.c
+#m4/atexit.m4
+#
+#Depends-on:
+
+File: ./modules/atexit-tests
+Hash: b5af4099d9ac6036921029273e26e8da033ff0bac3de1b5a2b3dd1ad69ba03d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-atexit.sh
+#tests/test-atexit.c
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-atexit.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-atexit
+
+File: ./modules/atoll
+Hash: 081eda59aa89c73d2d4f59240a8a9c0ee267bee9a1b5266c5691af9998acf69e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#atoll() function: convert decimal string string to 'long long'.
+#
+#Files:
+#lib/atoll.c
+#m4/atoll.m4
+#m4/longlong.m4
+#
+#Depends-on:
+#strtoll
+#
+#configure.ac:
+#gl_FUNC_ATOLL
+#gl_STDLIB_MODULE_INDICATOR([atoll])
+
+File: ./modules/autobuild
+Hash: 1df0ddee990f9718235a005080c93d7c0f926c4e5552e8f32a7521e9a9a7a696
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Macros to print information about the build, useful for the autobuild parser.
+#
+#Files:
+#m4/autobuild.m4
+#
+#Depends-on:
+#
+#configure.ac-early:
+#AB_INIT
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/avltree-list
+Hash: 8352576b25c70bf6f2e533c52cbd8503e92c97193bc5fa9cc07804286be3ad08
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type implemented by a binary tree.
+#
+#Files:
+#lib/gl_avltree_list.h
+#lib/gl_avltree_list.c
+#lib/gl_anyavltree_list1.h
+#lib/gl_anyavltree_list2.h
+#lib/gl_anytree_list1.h
+#lib/gl_anytree_list2.h
+#
+#Depends-on:
+#list
+#xalloc
+
+File: ./modules/avltree-list-tests
+Hash: a123480eb40475062e2604a99669dd8026d387d002ce72832d31c474d3fc01ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-avltree_list.c
+#
+#Depends-on:
+#array-list
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-avltree_list
+#check_PROGRAMS += test-avltree_list
+#test_avltree_list_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/avltree-oset
+Hash: 9201a58ecb36cd0aec6dc85046baa6ed2593d50675aebfb25f5f8e0c2fe1b5c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Ordered set data type implemented by a binary tree.
+#
+#Files:
+#lib/gl_avltree_oset.h
+#lib/gl_avltree_oset.c
+#lib/gl_anytree_oset.h
+#
+#Depends-on:
+#oset
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/avltree-oset-tests
+Hash: 2bbc34e6fbe51d0642d29db9147155c20bc3707e0083dc001823a0fe2b39401c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-avltree_oset.c
+#
+#Depends-on:
+#array-oset
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-avltree_oset
+#check_PROGRAMS += test-avltree_oset
+#test_avltree_oset_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/avltreehash-list
+Hash: 8379c549323aa2f753b6d5c5c14c04582f9d3d81cbf0e7097b87118a01d3d074
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type implemented by a hash table with a binary tree.
+#
+#Files:
+#lib/gl_avltreehash_list.h
+#lib/gl_avltreehash_list.c
+#lib/gl_anyhash_list1.h
+#lib/gl_anyhash_list2.h
+#lib/gl_anyavltree_list1.h
+#lib/gl_anyavltree_list2.h
+#lib/gl_anytree_list1.h
+#lib/gl_anytree_list2.h
+#lib/gl_anytreehash_list1.h
+#lib/gl_anytreehash_list2.h
+
+File: ./modules/avltreehash-list-tests
+Hash: 222fec9e5662ce5934197e646123d204f9c5e35576d0fdf96b09ebe8065f21bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-avltreehash_list.c
+#
+#Depends-on:
+#array-list
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-avltreehash_list
+#check_PROGRAMS += test-avltreehash_list
+#test_avltreehash_list_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/backupfile
+Hash: 4fef23dcdfce02b82549e59718ac3bad55465aeb9fab63e33764c6f897745193
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determination of the filename of a backup file, according to user environment
+#variables.
+#
+#Files:
+#lib/backupfile.h
+#lib/backupfile.c
+#m4/dos.m4
+#m4/backupfile.m4
+#
+#Depends-on:
+#argmatch
+#d-ino
+#dirent-safer
+#dirname
+
+File: ./modules/base64
+Hash: d850c109bddde729e5924c6d94d5e036d2eb1fb6ad06c18ea4bb8250bebfd01b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Encode binary data using printable characters (base64).
+#
+#Files:
+#lib/base64.h
+#lib/base64.c
+#m4/base64.m4
+#
+#Depends-on:
+#stdbool
+#memchr
+#
+#configure.ac:
+#gl_FUNC_BASE64
+
+File: ./modules/base64-tests
+Hash: b3ba7757f81171d4256c2280ed235946dccecba97f61a71beb7a18e58086ec8c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-base64.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-base64
+#check_PROGRAMS += test-base64
+
+File: ./modules/bcopy
+Hash: 3c949f3dd2f81574a222739c81dfb3ecd3b8f3ba8991e8d5daa793988f1066b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Old BSD bcopy() function: copy memory area.
+#
+#Files:
+#lib/bcopy.c
+#
+#Depends-on:
+#strings
+#
+#configure.ac:
+#AC_REPLACE_FUNCS(bcopy)
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/binary-io
+Hash: 30e391bd7c76cdd6365ec2a6b56d87cd34e02ca680ea7e236e5395b18ede66b5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Binary mode I/O.
+#
+#Files:
+#lib/binary-io.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += binary-io.h
+#
+#Include:
+#"binary-io.h"
+
+File: ./modules/binary-io-tests
+Hash: a261d4e10b800d29c23e0c653efffb19a3149f33e7ee43e0076a08419bb6df40
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-binary-io.sh
+#tests/test-binary-io.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-binary-io.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-binary-io
+
+File: ./modules/bind
+Hash: 23a535bf498832382cbce326f849072720c70046c996a20effdee4c9bb89b7ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#bind() function: bind a server socket to a port.
+#
+#Files:
+#lib/bind.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+#  AC_LIBOBJ([bind])
+
+File: ./modules/bison-i18n
+Hash: 19037cfd342380ef9bc7024e56064ca9003979f131f1dea1dc92f1d7ba677ba4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Support for internationalization of bison-generated parsers.
+#
+#Files:
+#m4/bison-i18n.m4
+#
+#Depends-on:
+#gettext
+#
+#configure.ac:
+#BISON_I18N
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/bitrotate
+Hash: faaa06c6841e198470db642537c7dbbc9293c856bdba9233d3fa78fde732d556
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Rotate bits in unsigned 8, 16, and 32 bit integers.
+#
+#Files:
+#lib/bitrotate.h
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#AC_REQUIRE([AC_C_INLINE])
+#
+#Makefile.am:
+#lib_SOURCES += bitrotate.h
+
+File: ./modules/bitrotate-tests
+Hash: 6876c90c81000a7ba76c7159cdcfa520d74edbbc0e650b504d6c6bc650298eac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-bitrotate.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-bitrotate
+#check_PROGRAMS += test-bitrotate
+
+File: ./modules/btowc
+Hash: 09d7103954397af08b8d14f2a19074db593e030a78939b476595669a822df2f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#btowc() function: convert unibyte character to wide character.
+#
+#Files:
+#lib/btowc.c
+#m4/btowc.m4
+#
+#Depends-on:
+#wchar
+#
+#configure.ac:
+#gl_FUNC_BTOWC
+#gl_WCHAR_MODULE_INDICATOR([btowc])
+#
+#Makefile.am:
+
+File: ./modules/btowc-tests
+Hash: 6678d1b57cf42f696e33a3f3c000bfdc548a517f89b7753c081d4bc2daedb0c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-btowc1.sh
+#tests/test-btowc2.sh
+#tests/test-btowc.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR
+#gt_LOCALE_FR_UTF8
+#
+#Makefile.am:
+#TESTS += test-btowc1.sh test-btowc2.sh
+
+File: ./modules/byteswap
+Hash: 02ae020bda6922b8e3e33b99cefc9c092d9c11f407a30a8c0144f2ea79d61d2b
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Swap bytes of 16, 32 and 64 bit values.
+#
+#Files:
+#lib/byteswap.in.h
+#m4/byteswap.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_BYTESWAP
+#
+#Makefile.am:
+#BUILT_SOURCES += $(BYTESWAP_H)
+
+File: ./modules/byteswap-tests
+Hash: d5dcac55272d375d33032dadc4b83cf82b2c4b49f1e576718afc88774e06e820
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-byteswap.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-byteswap
+#check_PROGRAMS += test-byteswap
+#
+#License:
+#LGPL
+
+File: ./modules/c-ctype
+Hash: 1aaf6009165743a42132a3a5f350954787e1fb6d00652d4a7054d640678a2852
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character handling in C locale.
+#
+#Files:
+#lib/c-ctype.h
+#lib/c-ctype.c
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += c-ctype.h c-ctype.c
+
+File: ./modules/c-ctype-tests
+Hash: 541b89b740089bbb53771bc68a6b4dde677cf62c45e31859803168e920a2b4cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-c-ctype.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-c-ctype
+#check_PROGRAMS += test-c-ctype
+
+File: ./modules/c-stack
+Hash: 9e073958b6341900d6ff379d5088639539a9c9420b43295900545fe8f7f98f05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Stack overflow handling, causing program exit.
+#
+#Files:
+#lib/c-stack.h
+#lib/c-stack.c
+#m4/c-stack.m4
+#
+#Depends-on:
+#gettext-h
+#errno
+#exitfail
+#unistd
+#raise
+#sigaction
+
+File: ./modules/c-stack-tests
+Hash: af2bec5076635bdcb7aed623f58e8024ca0e31a7cbfa600e6f16e4885332995a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-c-stack.c
+#tests/test-c-stack.sh
+#tests/test-c-stack2.sh
+#
+#Depends-on:
+#exitfail
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-c-stack.sh test-c-stack2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LIBSIGSEGV='@LIBSIGSEGV@'
+#check_PROGRAMS += test-c-stack
+#test_c_stack_LDADD = $(LDADD) $(LIBCSTACK) @LIBINTL@
+
+File: ./modules/c-strcase
+Hash: a37a455befa8dea1afeff6efe9a52ca456d347c9640b6533de088e6ed066ab0a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-insensitive string comparison functions in C locale.
+#
+#Files:
+#lib/c-strcase.h
+#lib/c-strcasecmp.c
+#lib/c-strncasecmp.c
+#
+#Depends-on:
+#c-ctype
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += c-strcase.h c-strcasecmp.c c-strncasecmp.c
+
+File: ./modules/c-strcase-tests
+Hash: b9ebfef040c2c75e386017fccce5ec0551e2925375d7139c44c210676cce33eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-c-strcase.sh
+#tests/test-c-strcasecmp.c
+#tests/test-c-strncasecmp.c
+#m4/locale-fr.m4
+#m4/locale-tr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR
+#gt_LOCALE_TR_UTF8
+#
+#Makefile.am:
+
+File: ./modules/c-strcaseeq
+Hash: f752ec255a570106fc293400dc68d349d63b8eadf4c6ac894b6fab309f3a9d20
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Optimized case-insensitive string comparison in C locale.
+#
+#Files:
+#lib/c-strcaseeq.h
+#
+#Depends-on:
+#c-strcase
+#c-ctype
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/c-strcasestr
+Hash: ea69b0761c479bdeed87f867068c33d48a03c35e3936828e09f87aba683a7330
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Efficient case-insensitive searching in a string in C locale.
+#
+#Files:
+#lib/c-strcasestr.h
+#lib/c-strcasestr.c
+#lib/str-two-way.h
+#
+#Depends-on:
+#c-ctype
+#c-strcase
+#stdbool
+#memchr
+#memcmp
+
+File: ./modules/c-strcasestr-tests
+Hash: 8c6ed641b71bd7d361ff43ea2bf201db01873a92e78d96f7e5eb817770baf2ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-c-strcasestr.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-c-strcasestr
+#check_PROGRAMS += test-c-strcasestr
+
+File: ./modules/c-strstr
+Hash: 9e209ab3ebf91f8ef637589f7d39703fa22f55af9d697603cb169766695e5385
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for a substring in a string in C locale.
+#
+#Files:
+#lib/c-strstr.h
+#lib/c-strstr.c
+#
+#Depends-on:
+#strstr
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += c-strstr.h c-strstr.c
+
+File: ./modules/c-strstr-tests
+Hash: f9d5b888a3c3e54e1f2630b76a956ca27fd75f8e72a4254075594e29bbcb5858
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-c-strstr.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-c-strstr
+#check_PROGRAMS += test-c-strstr
+
+File: ./modules/c-strtod
+Hash: 612121560adbf21427320c02041c112b48ea6fd6297b7be91c6291af7375cbcc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert string to double in C locale.
+#
+#Files:
+#lib/c-strtod.c
+#lib/c-strtod.h
+#m4/c-strtod.m4
+#
+#Depends-on:
+#extensions
+#strdup-posix
+#
+#configure.ac:
+#gl_C_STRTOD
+
+File: ./modules/c-strtold
+Hash: 3544bbe9e95749a41f982bde06d71495ebdd9a5e5b0b07041a741ed009c733e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert string to long double in C locale.
+#
+#Files:
+#lib/c-strtod.h
+#lib/c-strtod.c
+#lib/c-strtold.c
+#m4/c-strtod.m4
+#
+#Depends-on:
+#extensions
+#strdup-posix
+#
+#configure.ac:
+#gl_C_STRTOLD
+
+File: ./modules/calloc
+Hash: d7466a0b924d6645b1c5cbad94c4a37f8c5c5da513c1304b58890ac53d930e30
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#calloc() function that is glibc compatible.
+#
+#Files:
+#lib/calloc.c
+#m4/calloc.m4
+#
+#Depends-on:
+#calloc-posix
+#
+#configure.ac:
+#AC_FUNC_CALLOC
+#
+#Makefile.am:
+
+File: ./modules/calloc-posix
+Hash: 3b1406a7c742bf6dd0d730f653c5785f86801bd8f7223201bd6aaa2d050dfcd9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#calloc() function: allocate memory with indefinite extent.
+#
+#Files:
+#lib/calloc.c
+#m4/calloc.m4
+#m4/malloc.m4
+#
+#Depends-on:
+#stdlib
+#
+#configure.ac:
+#gl_FUNC_CALLOC_POSIX
+#gl_STDLIB_MODULE_INDICATOR([calloc-posix])
+
+File: ./modules/canon-host
+Hash: b81f60bfbc64572f5c7a8beaa41866bae17cd2d40aebebb151e7ee1b1266b83c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Canonicalize a host name: return a name other hosts can understand, i.e.
+#usually the host name including FQDN.
+#
+#Files:
+#lib/canon-host.c
+#lib/canon-host.h
+#m4/canon-host.m4
+#
+#Depends-on:
+#getaddrinfo
+#strdup
+#
+#configure.ac:
+#gl_CANON_HOST
+
+File: ./modules/canonicalize
+Hash: f24ee9ec34ae94bb205cb71bd8d533a004202ef33739606bebd774941a00b75c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return the canonical absolute name of a given file.
+#
+#Files:
+#lib/canonicalize.h
+#lib/canonicalize.c
+#lib/pathmax.h
+#m4/canonicalize.m4
+#
+#Depends-on:
+#areadlink-with-size
+#errno
+#file-set
+#filenamecat
+#hash-triple
+
+File: ./modules/canonicalize-lgpl
+Hash: 4c13afd9743357e076cee04877e63b77afa6cd8ff0926e3879043fb4360ba78a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Canonical absolute file name (LGPLed version).
+#
+#Files:
+#lib/canonicalize.h
+#lib/canonicalize-lgpl.c
+#m4/canonicalize-lgpl.m4
+#
+#Depends-on:
+#alloca-opt
+#malloca
+#memmove
+#pathmax
+#readlink
+
+File: ./modules/canonicalize-lgpl-tests
+Hash: 5115abba1182913b6fe9173dabcf860a194d017b1f89ad56fc009c15a5bc723f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-canonicalize-lgpl.sh
+#tests/test-canonicalize-lgpl.c
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_CHECK_FUNCS_ONCE([symlink])
+#HAVE_SYMLINK=$ac_cv_func_symlink
+#AC_SUBST([HAVE_SYMLINK])
+#
+#Makefile.am:
+#TESTS += test-canonicalize-lgpl.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' HAVE_SYMLINK='$(HAVE_SYMLINK)'
+#check_PROGRAMS += test-canonicalize-lgpl
+
+File: ./modules/canonicalize-tests
+Hash: a0d9e99e99856f2b41a69a2031475234178cddb4399c4c50ee6bb09f55009c07
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-canonicalize.sh
+#tests/test-canonicalize.c
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_CHECK_FUNCS_ONCE([symlink])
+#HAVE_SYMLINK=$ac_cv_func_symlink
+#AC_SUBST([HAVE_SYMLINK])
+#
+#Makefile.am:
+#TESTS += test-canonicalize.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' HAVE_SYMLINK='$(HAVE_SYMLINK)'
+#check_PROGRAMS += test-canonicalize
+
+File: ./modules/carray-list
+Hash: e550c35afc8d217d0fcec2b961f4b7aa62e205f37223a98963561adf65e01d56
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type implemented by a circular array.
+#
+#Files:
+#lib/gl_carray_list.h
+#lib/gl_carray_list.c
+#
+#Depends-on:
+#list
+#xalloc
+#xsize
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/carray-list-tests
+Hash: 9cc5e8c71ff614ff0d7df3a565b59dd8db14a616242f77e97c6b1a2a8105bd81
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-carray_list.c
+#
+#Depends-on:
+#array-list
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-carray_list
+#check_PROGRAMS += test-carray_list
+#test_carray_list_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/ceil
+Hash: b73da31e7eb3600040bd1ea4c6a8b2f1e0e90ba7ffce37b668421fd8bda25605
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ceil() function: round towards positive infinity.
+#
+#Files:
+#m4/ceil.m4
+#
+#Depends-on:
+#math
+#
+#configure.ac:
+#gl_FUNC_CEIL
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/ceilf
+Hash: 60cf4bef6762da1964acc30e8cf5540ee4be612f716cbace67aca6f54a1f2ff3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ceilf() function: round towards positive infinity.
+#
+#Files:
+#lib/ceilf.c
+#lib/ceil.c
+#m4/ceilf.m4
+#
+#Depends-on:
+#math
+#extensions
+#float
+#
+#configure.ac:
+#gl_FUNC_CEILF
+
+File: ./modules/ceilf-tests
+Hash: 2ecc4fec292d712661525b22d5344cb9ca77a3fd9f62e015f960c0b1b3179dac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-ceilf1.c
+#tests/test-ceilf2.c
+#tests/nan.h
+#
+#Depends-on:
+#float
+#isnanf-nolibm
+#stdbool
+#stdint
+#fprintf-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/ceill
+Hash: 7405c30e654f64ad80e99bc91d7a3fc3155af2fe45dc87915803f0059b11a627
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ceill() function: round towards positive infinity.
+#
+#Files:
+#lib/ceill.c
+#lib/ceil.c
+#m4/ceill.m4
+#
+#Depends-on:
+#math
+#extensions
+#float
+#
+#configure.ac:
+#gl_FUNC_CEILL
+
+File: ./modules/ceill-tests
+Hash: 02e342a8a90a0d94eead61705e1f03a4180d1d2255f97ac1084951c7ac1f172c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-ceill.c
+#tests/nan.h
+#
+#Depends-on:
+#fpucw
+#isnanl-nolibm
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ceill
+#check_PROGRAMS += test-ceill
+#test_ceill_LDADD = $(LDADD) @CEILL_LIBM@
+
+File: ./modules/chdir-long
+Hash: 37e8e598f3011eefce4641dfbeebe2a22a36b5c02209da129a74d943c4c2ed14
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#chdir-like function that tries not to fail due to ENAMETOOLONG
+#
+#Files:
+#lib/chdir-long.h
+#lib/chdir-long.c
+#m4/chdir-long.m4
+#
+#Depends-on:
+#atexit
+#fchdir
+#fcntl-h
+#openat-safer
+#memchr
+#mempcpy
+
+File: ./modules/chdir-safer
+Hash: f023c1a589c1d09e4f14c6ff16e462523dbb61feca57327ec3db77ecd7e4fed7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#like chdir, but safer
+#
+#Files:
+#lib/chdir-safer.h
+#lib/chdir-safer.c
+#m4/chdir-safer.m4
+#
+#Depends-on:
+#errno
+#fchdir
+#fcntl-h
+#open
+#same-inode
+#stdbool
+
+File: ./modules/check-version
+Hash: c8ab694209f70435e648a111762230f5f4a9d25fa96c20955642a0d6a9b78ecb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Check version string compatibility.
+#
+#Files:
+#m4/check-version.m4
+#lib/check-version.h
+#lib/check-version.c
+#
+#Depends-on:
+#strverscmp
+#
+#configure.ac:
+#gl_CHECK_VERSION
+#
+#Makefile.am:
+
+File: ./modules/chown
+Hash: 27f2690dd303af10bb6ffc0c70b9b67bf7d9c475c30b379099b25799b48450f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#chown() function: change ownership of a file, following symlinks.
+#
+#Files:
+#lib/chown.c
+#lib/fchown-stub.c
+#m4/chown.m4
+#
+#Depends-on:
+#open
+#unistd
+#sys_stat
+#
+#configure.ac:
+#gl_FUNC_CHOWN
+
+File: ./modules/classpath
+Hash: 826a02656c133f31a7120fe677a9e8fbece69bca8f49b30954fe4bf51c4a847e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Java CLASSPATH handling.
+#
+#Files:
+#lib/classpath.h
+#lib/classpath.c
+#
+#Depends-on:
+#stdbool
+#xsetenv
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/clean-temp
+Hash: 0167d0f7a980c65c18288e1d04cff18da933c9dcb7531606c0e9ebee382dac61
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Temporary directories and temporary files with automatic cleanup.
+#
+#Files:
+#lib/clean-temp.h
+#lib/clean-temp.c
+#
+#Depends-on:
+#stdbool
+#unistd
+#error
+#fatal-signal
+#open
+#pathmax
+#tmpdir
+
+File: ./modules/clock-time
+Hash: a0a588f85ac8e63fa9f8f9361381a81ebea08d20abd2c1be04d2640560c28c41
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Check for clock_gettime and clock_settime.
+#
+#Files:
+#m4/clock_time.m4
+#
+#Depends-on:
+#extensions
+#
+#configure.ac:
+#gl_CLOCK_TIME
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/cloexec
+Hash: ce7a0dcfafef2342f95a1c8d8b303d6336f2e2ce9931c19696d3e98cdd24a582
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Set or clear the close-on-exec descriptor flag.
+#
+#Files:
+#lib/cloexec.c
+#lib/cloexec.h
+#m4/cloexec.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gl_CLOEXEC
+#
+#Makefile.am:
+
+File: ./modules/close
+Hash: 8bd8212ece9bee25d93a40810444163e096b3ac7cc5bf19388451f13a1ea4059
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#close() function: close a file or socket.
+#
+#Files:
+#lib/close.c
+#m4/close.m4
+#
+#Depends-on:
+#unistd
+#close-hook
+#fclose
+#
+#configure.ac:
+#gl_FUNC_CLOSE
+#gl_UNISTD_MODULE_INDICATOR([close])
+
+File: ./modules/close-hook
+Hash: 05b21d50199be350706d697bab38376c91867056a1b28de62514511ac4054e1b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Hook for making close() extensible.
+#
+#Files:
+#lib/close-hook.h
+#lib/close-hook.c
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += close-hook.c
+
+File: ./modules/close-stream
+Hash: 3f3c94f0eb2dd9487e9fce9fca2ce7cba021c47c507466f448e837d21bffa9e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Close a stream, with nicer error checking than fclose's.
+#
+#Files:
+#lib/close-stream.h
+#lib/close-stream.c
+#m4/close-stream.m4
+#
+#Depends-on:
+#fpending
+#stdbool
+#
+#configure.ac:
+#gl_CLOSE_STREAM
+#gl_MODULE_INDICATOR([close-stream])
+
+File: ./modules/closein
+Hash: ac54f1e1c2872ff17faed1667304d92f0d702bc9368a88e3b84823ab901e94eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Close all standard streams, resetting seekable stdin if needed, and exiting with a diagnostic on error.
+#
+#Files:
+#lib/closein.h
+#lib/closein.c
+#m4/closein.m4
+#
+#Depends-on:
+#closeout
+#freadahead
+#fflush
+#stdbool
+#
+#configure.ac:
+
+File: ./modules/closein-tests
+Hash: 805c1e0f0a4b354915ff7f5a7422d6d16cdce97d6df46dde141ebdc3826b48ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-closein.sh
+#tests/test-closein.c
+#
+#Depends-on:
+#binary-io
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-closein.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-closein
+#test_closein_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/closeout
+Hash: 051da050b037e9c81b7d6782ac45594f01e0ef7cbff2374cff1fa6f27d57bcbe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Close standard output and standard error, exiting with a diagnostic on error.
+#
+#Files:
+#lib/closeout.h
+#lib/closeout.c
+#m4/closeout.m4
+#
+#Depends-on:
+#close-stream
+#gettext-h
+#error
+#quotearg
+#exitfail
+#stdbool
+
+File: ./modules/concat-filename
+Hash: 8a73319669b27457ae9c38a8051293d9a4f8ea4ec07c9b3caeeba3025aa34db9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Construct a full filename by concatenating a directory name, a relative
+#filename, and a suffix.
+#
+#Files:
+#lib/concat-filename.h
+#lib/concat-filename.c
+#
+#Depends-on:
+#filename
+#malloc-posix
+#stpcpy
+#
+#configure.ac:
+
+File: ./modules/cond
+Hash: d1e1fdf80f75b22e3b5e375755f93920bd05d490cd892df12e5a02387cd32715
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Condition variables for multithreading.
+#
+#Files:
+#lib/glthread/cond.h
+#lib/glthread/cond.c
+#m4/cond.m4
+#
+#Depends-on:
+#threadlib
+#lock
+#errno
+#stdbool
+#time
+#gettimeofday
+
+File: ./modules/cond-tests
+Hash: 2b1de8d3eeccd314891c3d26b8acd001891fd51583fd6ef61b619af9370673bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-cond.c
+#
+#Depends-on:
+#lock
+#thread
+#yield
+#gettimeofday
+#sleep
+#
+#Makefile.am:
+#TESTS += test-cond
+#check_PROGRAMS += test-cond
+#test_cond_LDADD = $(LDADD) @LIBMULTITHREAD@ @YIELD_LIB@
+
+File: ./modules/config-h
+Hash: 91e035167a02a8b36f0d9e54ebbb976100ac64d04869f8f0d863e983bbc54903
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Assume config.h exists, to avoid -DHAVE_CONFIG_H clutter in 'make' output.
+#
+#Files:
+#m4/config-h.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_CONFIG_H
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/configmake
+Hash: e2e385cbb63e95e40039eec46348d71a6b017c2504404eb4651d9b267c975386
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Variables set by "configure" or "make".
+#
+#Files:
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+## Retrieve values of the variables through 'configure' followed by
+## 'make', not directly through 'configure', so that a user who
+## sets some of these variables consistently on the 'make' command
+## line gets correct results.
+##
+
+File: ./modules/connect
+Hash: eb39e48e80088efe48404e5d5be9b3ef518ea35e2ea5c39dd1fc5e1fbada497e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#connect() function: connect a client socket.
+#
+#Files:
+#lib/connect.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+#  AC_LIBOBJ([connect])
+
+File: ./modules/copy-file
+Hash: 70ec3ceab633438e6f8854a1378d56435c8c968587fe6ca8be8c1ef3bccc830c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copying of files.
+#
+#Files:
+#lib/copy-file.h
+#lib/copy-file.c
+#m4/copy-file.m4
+#
+#Depends-on:
+#acl
+#binary-io
+#error
+#exit
+#full-write
+#gettext-h
+
+File: ./modules/copy-file-tests
+Hash: 06069a61c64b73f74356dfcdc050364dbaf37018d778b9715c2df576b3b58129
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-copy-file.sh
+#tests/test-copy-file.c
+#
+#Depends-on:
+#acl
+#acl-tests
+#progname
+#read-file
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-copy-file.sh
+
+File: ./modules/count-one-bits
+Hash: 15c0054778b12fcbea0ad721994a124837da8a21621a6fc423e9df2412129954
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Counts the number of 1-bits in a word.
+#
+#Files:
+#lib/count-one-bits.h
+#m4/count-one-bits.m4
+#
+#Depends-on:
+#inline
+#verify
+#
+#configure.ac:
+#gl_COUNT_ONE_BITS
+#
+#Makefile.am:
+
+File: ./modules/count-one-bits-tests
+Hash: 969693e3cd2dbad97f45c36545782a08594c11c7792b305344ad8d7ef56f3ec2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-count-one-bits.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-count-one-bits
+#check_PROGRAMS += test-count-one-bits
+
+File: ./modules/crc
+Hash: 6e215352fbcbda061d26760d0bedd4ca18904097058e9b89357c45433e342308
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute cyclic redundancy codes.
+#
+#Files:
+#lib/crc.h
+#lib/crc.c
+#m4/crc.m4
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#gl_CRC
+#
+#Makefile.am:
+
+File: ./modules/crc-tests
+Hash: 53be4aa9d8567f7ffc69736b1f7f8d87727bdac69d7f8f6a7954eea7251d980b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-crc.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-crc
+#check_PROGRAMS += test-crc
+
+File: ./modules/crypto/arcfour
+Hash: 8d3330e5db17886bf6f3779d415aa5153f864fc51e292401c0c305e4d561053f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ARCFOUR stream cipher implementation
+#
+#Files:
+#lib/arcfour.h
+#lib/arcfour.c
+#m4/arcfour.m4
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#gl_ARCFOUR
+#
+#Makefile.am:
+
+File: ./modules/crypto/arcfour-tests
+Hash: 3630759cc927ebcd0be39504cf3bea594de25cfc04a922d3bdc56c8c0f0d8af4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-arcfour.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-arcfour
+#check_PROGRAMS += test-arcfour
+
+File: ./modules/crypto/arctwo
+Hash: 5469694717f29035793668209aa697611e9c80d3cefd3429445d55a81507a79f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ARCTWO block cipher implementation
+#
+#Files:
+#lib/arctwo.h
+#lib/arctwo.c
+#m4/arctwo.m4
+#
+#Depends-on:
+#stdint
+#bitrotate
+#
+#configure.ac:
+#gl_ARCTWO
+
+File: ./modules/crypto/arctwo-tests
+Hash: c811c82078187c8a8ed3d4b866e6c485d7408508782e0a351175c3488415a16d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-arctwo.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-arctwo
+#check_PROGRAMS += test-arctwo
+
+File: ./modules/crypto/des
+Hash: 06db0a8fd379ada1a5aff08c9ab10b9819ccf63b2961736326633cd10aaa6d50
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#DES block cipher.
+#
+#Files:
+#lib/des.c
+#lib/des.h
+#m4/des.m4
+#
+#Depends-on:
+#stdint
+#stdbool
+#memcmp
+#
+#configure.ac:
+#gl_DES
+
+File: ./modules/crypto/des-tests
+Hash: cbc028ccae8a0469a4d48a2eab9b34ebb63d6f8eb9b67f1bf991f68e757e0052
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-des.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-des
+#check_PROGRAMS += test-des
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc
+Hash: a37067ce105b5c26b65edc4746d337d2071c7b088f830ee2e9ac168cccaea42f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Core files for generic crypto package
+#
+#Files:
+#lib/gc.h
+#lib/gc-libgcrypt.c
+#lib/gc-gnulib.c
+#m4/gc.m4
+#
+#Depends-on:
+#havelib
+#
+#configure.ac:
+#gl_GC
+#if test $gl_cond_libtool = false; then
+
+File: ./modules/crypto/gc-arcfour
+Hash: d679779877f609d5d127d5a90882ef40bf0fc99f2dbbabe80887c9d515a0d275
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for ARCFOUR stream cipher.
+#
+#Files:
+#m4/gc-arcfour.m4
+#lib/arcfour.h
+#lib/arcfour.c
+#m4/arcfour.m4
+#
+#Depends-on:
+#stdint
+#crypto/gc
+#
+#configure.ac:
+#gl_GC_ARCFOUR
+
+File: ./modules/crypto/gc-arcfour-tests
+Hash: 62c1593e37d5d7c1134e9ab32a23f55f0f191736dea6b1bffd23b4b19ead2d16
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-arcfour.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-arcfour
+#check_PROGRAMS += test-gc-arcfour
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-arctwo
+Hash: b992ec6a005b7812bd2288aa943bd754ec7bbe6d13d38635511d69839ab97cd3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for ARCTWO block cipher.
+#
+#Files:
+#m4/gc-arctwo.m4
+#lib/arctwo.h
+#lib/arctwo.c
+#m4/arctwo.m4
+#
+#Depends-on:
+#stdint
+#crypto/gc
+#bitrotate
+#
+#configure.ac:
+
+File: ./modules/crypto/gc-arctwo-tests
+Hash: 200aab87e9e96d895c177468df8b331f595b1f98e49b109a15f9d6ef8a144b9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-arctwo.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-arctwo
+#check_PROGRAMS += test-gc-arctwo
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-camellia
+Hash: 6efd71985d9ac0bfb970aee78a503053c56e6c209934f17d286bfbe6c6c949c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for Camellia block cipher.
+#
+#Files:
+#m4/gc-camellia.m4
+#
+#Depends-on:
+#crypto/gc
+#
+#configure.ac:
+#gl_GC_CAMELLIA
+#gl_MODULE_INDICATOR([gc-camellia])
+#
+#Makefile.am:
+
+File: ./modules/crypto/gc-des
+Hash: 9152a88c7c783ec440504fb433c322a230f707f50d957df0b45e8c0886785680
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for DES block cipher.
+#
+#Files:
+#m4/gc-des.m4
+#lib/des.h
+#lib/des.c
+#m4/des.m4
+#
+#Depends-on:
+#stdint
+#stdbool
+#crypto/gc
+#
+#configure.ac:
+
+File: ./modules/crypto/gc-des-tests
+Hash: 6c35974a1252d0f23670a8806e798eec78a8788ca9fdd0ddb94370513d097d03
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-des.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-des
+#check_PROGRAMS += test-gc-des
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-hmac-md5
+Hash: 5d2b3bbeae841ab7330e7699bff61e4cd8050938a229c85f932c9eb018074e55
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for HMAC-MD5 functions.
+#
+#Files:
+#m4/gc-hmac-md5.m4
+#lib/md5.h
+#lib/md5.c
+#m4/md5.m4
+#lib/hmac.h
+#lib/hmac-md5.c
+#m4/hmac-md5.m4
+#lib/memxor.h
+#lib/memxor.c
+#m4/memxor.m4
+
+File: ./modules/crypto/gc-hmac-md5-tests
+Hash: 5ca026dab867927b6168a5e403facf038d7d0e1556528d1171b727335b5fcf83
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-hmac-md5.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-hmac-md5
+#check_PROGRAMS += test-gc-hmac-md5
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-hmac-sha1
+Hash: bdfd1be06fdb64511009c39267dde2b93e94c2109f9d15c9fe928038cbcf1f8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for HMAC-SHA1 functions.
+#
+#Files:
+#m4/gc-hmac-sha1.m4
+#lib/sha1.h
+#lib/sha1.c
+#m4/sha1.m4
+#lib/hmac.h
+#lib/hmac-sha1.c
+#m4/hmac-sha1.m4
+#lib/memxor.h
+#lib/memxor.c
+#m4/memxor.m4
+
+File: ./modules/crypto/gc-hmac-sha1-tests
+Hash: 2aae9e8d5d39f859cefb2b1f1848af6876b0fc5d28fdd5c49c67fa7887938cd7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-hmac-sha1.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-hmac-sha1
+#check_PROGRAMS += test-gc-hmac-sha1
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-md2
+Hash: 13b8d9a7fc54087c059b8a671a63fec91931cd56867bdf3f62a52cd5738eb815
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for MD2 functions.
+#
+#Files:
+#m4/gc-md2.m4
+#
+#Depends-on:
+#stdint
+#minmax
+#crypto/gc
+#crypto/md2
+#
+#configure.ac:
+#gl_GC_MD2
+#gl_MODULE_INDICATOR([gc-md2])
+
+File: ./modules/crypto/gc-md2-tests
+Hash: 4a3a9ae40cf894aa4a91da171c06446cdce46a367fe54af13bd285cc359a388f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-md2.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-md2
+#check_PROGRAMS += test-gc-md2
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-md4
+Hash: 7aa9174d56c7f1a0f4f5373e3331aae1fb2f700c9003ceca20326cdae4140a15
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for MD4 functions.
+#
+#Files:
+#m4/gc-md4.m4
+#lib/md4.h
+#lib/md4.c
+#m4/md4.m4
+#
+#Depends-on:
+#stdint
+#crypto/gc
+#
+#configure.ac:
+#gl_GC_MD4
+
+File: ./modules/crypto/gc-md4-tests
+Hash: e268963672978e792a325d3764efa0a5a9d680372ea0c2022b64145599982d23
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-md4.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-md4
+#check_PROGRAMS += test-gc-md4
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-md5
+Hash: 67dfbe237cae5b7b4b84ab819f18dfe5d37ef049ae6797f3dee72a91cbafe244
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for MD5 functions.
+#
+#Files:
+#m4/gc-md5.m4
+#lib/md5.h
+#lib/md5.c
+#m4/md5.m4
+#
+#Depends-on:
+#stdint
+#crypto/gc
+#
+#configure.ac:
+#gl_GC_MD5
+
+File: ./modules/crypto/gc-md5-tests
+Hash: c048f579e8a717bd9afe2adc1f47f82cb21534eae77b8d1070d3420b5228572f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-md5.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-md5
+#check_PROGRAMS += test-gc-md5
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-pbkdf2-sha1
+Hash: b3b5bd79957e0763875e03f1a558d6077746eefdc7fde6ea095f0331192b6551
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Password-Based Key Derivation Function according to PKCS#5/RFC2898
+#
+#Files:
+#lib/gc-pbkdf2-sha1.c
+#m4/gc-pbkdf2-sha1.m4
+#
+#Depends-on:
+#crypto/gc
+#crypto/gc-hmac-sha1
+#
+#configure.ac:
+#gl_GC_PBKDF2_SHA1
+#
+#Makefile.am:
+
+File: ./modules/crypto/gc-pbkdf2-sha1-tests
+Hash: a3182b57a694077f06706f41afe2e80f9ca286a3a7521a456b74405b793f816f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-pbkdf2-sha1.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-pbkdf2-sha1
+#check_PROGRAMS += test-gc-pbkdf2-sha1
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-random
+Hash: 8ecf0f62f4bb9a0e05a1bf45a2aeb552c045f1f7e0cb562ad7036123629e535b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto random number functions.
+#
+#Files:
+#m4/gc-random.m4
+#
+#Depends-on:
+#crypto/gc
+#
+#configure.ac:
+#gl_GC_RANDOM
+#gl_MODULE_INDICATOR([gc-random])
+#
+#Makefile.am:
+
+File: ./modules/crypto/gc-rijndael
+Hash: fdbadf39acda6737d3e798e4b883e4f2369b28a10c04ca3c398a1f94af7d458a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for rijndael block cipher.
+#
+#Files:
+#m4/gc-rijndael.m4
+#lib/rijndael-alg-fst.c
+#lib/rijndael-alg-fst.h
+#lib/rijndael-api-fst.c
+#lib/rijndael-api-fst.h
+#m4/rijndael.m4
+#
+#Depends-on:
+#stdint
+#crypto/gc
+
+File: ./modules/crypto/gc-rijndael-tests
+Hash: af1ef324aa3f6651595b4aa8cc89115cc4ce259a86a57f6fd051fa0843e631a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-rijndael.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-rijndael
+#check_PROGRAMS += test-gc-rijndael
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-sha1
+Hash: d0a58c382167aa666d7fd260afb270c56d8397843830055724d2c8c79b19e380
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generic crypto wrappers for SHA-1 functions.
+#
+#Files:
+#m4/gc-sha1.m4
+#lib/sha1.h
+#lib/sha1.c
+#m4/sha1.m4
+#
+#Depends-on:
+#stdint
+#crypto/gc
+#
+#configure.ac:
+#gl_GC_SHA1
+
+File: ./modules/crypto/gc-sha1-tests
+Hash: 4c4a5c9313d4f0177afb6159d8ed38aed51f2ecb4a3ef5d289a440129483d37c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc-sha1.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc-sha1
+#check_PROGRAMS += test-gc-sha1
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/gc-tests
+Hash: 144ea2d95cd81e0a8471529c2decbc1bd181790e9b6f8d128ba4f64906cdccbf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gc.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gc
+#check_PROGRAMS += test-gc
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/hmac-md5
+Hash: 595271e6f31d3444e0e50e659e38e3001d3038fa787516aa52b8a3f614aac47a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute hashed message authentication codes with MD5.
+#
+#Files:
+#lib/hmac.h
+#lib/hmac-md5.c
+#m4/hmac-md5.m4
+#
+#Depends-on:
+#memxor
+#crypto/md5
+#
+#configure.ac:
+#gl_HMAC_MD5
+
+File: ./modules/crypto/hmac-md5-tests
+Hash: 988d239d21bf3f5fd1fcfcbda7d40c69bebeb32d9cd843dd450095e1c16904c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-hmac-md5.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-hmac-md5
+#check_PROGRAMS += test-hmac-md5
+
+File: ./modules/crypto/hmac-sha1
+Hash: 444d3cfb9eff2bf6d5dc80facac95589f25821de74edf7d5a5fbc38224cf7e50
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute hashed message authentication codes with SHA1.
+#
+#Files:
+#lib/hmac.h
+#lib/hmac-sha1.c
+#m4/hmac-sha1.m4
+#
+#Depends-on:
+#memxor
+#crypto/sha1
+#
+#configure.ac:
+#gl_HMAC_SHA1
+
+File: ./modules/crypto/hmac-sha1-tests
+Hash: 399e8fc017513a7f5d032eb7f9db622f86f1ec372d4d62071be2ef5093bf22c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-hmac-sha1.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-hmac-sha1
+#check_PROGRAMS += test-hmac-sha1
+
+File: ./modules/crypto/md2
+Hash: 7a6574dd72be6053162e082ee5e07232f7318a53a8de966a0d045188ba9dd955
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute MD2 checksum.
+#
+#Files:
+#lib/md2.h
+#lib/md2.c
+#m4/md2.m4
+#
+#Depends-on:
+#minmax
+#
+#configure.ac:
+#gl_MD2
+#
+#Makefile.am:
+
+File: ./modules/crypto/md2-tests
+Hash: 9c76b233ede1e25772f6935717c5d5f3a219e92d9349049b4e66ebb9fdd229ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-md2.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-md2
+#check_PROGRAMS += test-md2
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/md4
+Hash: bd74a69b055714488287883e8f724eb98f43599b6255e2d7313f86368f1bae62
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute MD4 checksum.
+#
+#Files:
+#lib/md4.h
+#lib/md4.c
+#m4/md4.m4
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#gl_MD4
+#
+#Makefile.am:
+
+File: ./modules/crypto/md4-tests
+Hash: 4eef5de6a0aa60cf29e9e4191650d9f9bc9c124cf5ef89771bc1237ffcc3fe9b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-md4.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-md4
+#check_PROGRAMS += test-md4
+#
+#License:
+#LGPLv2+
+
+File: ./modules/crypto/md5
+Hash: 1ad408aaec77111bb7efd40eed25ac37900d0caa4270950ba95a830ade1092eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute MD5 checksum.
+#
+#Files:
+#lib/md5.h
+#lib/md5.c
+#m4/md5.m4
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#gl_MD5
+#
+#Makefile.am:
+
+File: ./modules/crypto/md5-tests
+Hash: cac6273fd539cb07720eb45050ef064ce4c4f3d4c45b7066754a788d9dd1c0eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-md5.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-md5
+#check_PROGRAMS += test-md5
+
+File: ./modules/crypto/rijndael
+Hash: 6a500faa9b78a580ec9d8fc772a6df9e1081c67ce64224ced59981d4e0bbd4b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Rijndael block cipher.
+#
+#Files:
+#lib/rijndael-alg-fst.c
+#lib/rijndael-alg-fst.h
+#lib/rijndael-api-fst.c
+#lib/rijndael-api-fst.h
+#m4/rijndael.m4
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#gl_RIJNDAEL
+
+File: ./modules/crypto/rijndael-tests
+Hash: e5dcd3808ffe9e602133e07c69fe375707d35074686baf15646787c608671fa2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-rijndael.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-rijndael
+#check_PROGRAMS += test-rijndael
+
+File: ./modules/crypto/sha1
+Hash: 1e19f668b7ca41a4d49d9c9b3f865d1e66708a3c5c9bc55d82ce8ff109b884d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute SHA1 checksum.
+#
+#Files:
+#lib/sha1.h
+#lib/sha1.c
+#m4/sha1.m4
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#gl_SHA1
+#
+#Makefile.am:
+
+File: ./modules/crypto/sha1-tests
+Hash: c42d3c37932b83bea31b95e3ce5b26e9dd928723dbfaf6d626b51c7fd3985536
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sha1.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sha1
+#check_PROGRAMS += test-sha1
+
+File: ./modules/crypto/sha256
+Hash: 557c56301b0f36c5b86a7dfbab1f20046c2d890805029004b658771806df49df
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute SHA224 and SHA256 checksums.
+#
+#Files:
+#lib/sha256.h
+#lib/sha256.c
+#m4/sha256.m4
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#gl_SHA256
+#
+#Makefile.am:
+
+File: ./modules/crypto/sha512
+Hash: 8bcd2185a1b214c2ae0c659aa629dd872c098fc5bfa80120eb71305a191043e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute SHA384 and SHA512 checksums.
+#
+#Files:
+#lib/sha512.h
+#lib/sha512.c
+#m4/sha512.m4
+#
+#Depends-on:
+#stdint
+#u64
+#
+#configure.ac:
+#gl_SHA512
+
+File: ./modules/csharpcomp
+Hash: 7e6fa71cf3bf56738998c868ef882d3c97de87ecfb6cd25394b5eb424b77b4b7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compile a C# program.
+#
+#Files:
+#lib/csharpcomp.h
+#lib/csharpcomp.c
+#
+#Depends-on:
+#stdbool
+#xmalloca
+#execute
+#pipe
+#wait-process
+#getline
+#sh-quote
+
+File: ./modules/csharpcomp-script
+Hash: 71047fa1bb16d9032a37f67f14d70b137a43940137e082ae9619a24309df89ba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Script to compile a C# program.
+#
+#Files:
+#build-aux/csharpcomp.sh.in
+#m4/csharpcomp.m4
+#m4/csharp.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_REQUIRE([gt_CSHARPCOMP])
+#AC_CONFIG_FILES([csharpcomp.sh:build-aux/csharpcomp.sh.in])
+#
+#Makefile.am:
+
+File: ./modules/csharpexec
+Hash: e6b2318976ab61784ae6ddb467935dbe9b837ab9a2ec58728a743934db8f1bef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Execute a C# program.
+#
+#Files:
+#lib/csharpexec.h
+#lib/csharpexec.c
+#lib/classpath.h
+#lib/classpath.c
+#
+#Depends-on:
+#stdbool
+#execute
+#xsetenv
+#sh-quote
+#xalloc
+
+File: ./modules/csharpexec-script
+Hash: 78a66dbe260f67ae324d71323133bf91a19ca64152a838b0022b5f8272afd0f6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Script to execute a C# program.
+#
+#Files:
+#build-aux/csharpexec.sh.in
+#m4/csharpexec.m4
+#m4/csharp.m4
+#
+#Depends-on:
+#
+#configure.ac:
+## You need to invoke gt_CSHARPEXEC yourself, possibly with arguments.
+#AC_CONFIG_FILES([csharpexec.sh:build-aux/csharpexec.sh.in])
+#
+#Makefile.am:
+
+File: ./modules/cycle-check
+Hash: 3d00024fc25f5fd2a625a9f137306fbef1078e206f57f46f5f12d485889c0f00
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#help detect directory cycles efficiently
+#
+#Files:
+#lib/cycle-check.c
+#lib/cycle-check.h
+#m4/cycle-check.m4
+#
+#Depends-on:
+#dev-ino
+#same-inode
+#stdbool
+#stdint
+#
+#configure.ac:
+
+File: ./modules/d-ino
+Hash: 3eed0c9278033ea666932b94aab0e9df4dad98ea7892e926e35f2f1df9546b05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Check whether struct dirent has a member named d_ino.
+#
+#Files:
+#m4/d-ino.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_CHECK_TYPE_STRUCT_DIRENT_D_INO
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/d-type
+Hash: 2053db6f7f00ffd6c740c3dbc565bddb41c8c90976e257ebe336015c2e01149c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Check whether struct dirent has a member named d_type.
+#
+#Files:
+#m4/d-type.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/dev-ino
+Hash: 93d43fe09c3ef97fd7290f0008ddaaa5947efaefb1b19d93f176ad6f43434bcb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#declare a simple (device, inode) struct
+#
+#Files:
+#lib/dev-ino.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"dev-ino.h"
+
+File: ./modules/diacrit
+Hash: 8eb2c774ce439371d213db0240b5893eb3a44abbfb193047a78617492190928d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Decomposition of composed ISO-8859-1 characters.
+#
+#Files:
+#lib/diacrit.h
+#lib/diacrit.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += diacrit.h diacrit.c
+#
+#Include:
+
+File: ./modules/diffseq
+Hash: 1fb1c1f2ca6c4ac54e710082b6724c8b3fe45ad6f23ea206197dbd416674bbe8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute the difference between two sequences.
+#
+#Files:
+#lib/diffseq.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += diffseq.h
+#
+#Include:
+#"diffseq.h"
+
+File: ./modules/dirent
+Hash: 05d75f6c4ce7f52db3d63209155dab34f9b6242e3427b36a5148aea1fe711830
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <dirent.h>.
+#
+#Files:
+#lib/dirent.in.h
+#m4/dirent_h.m4
+#m4/unistd_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#
+#configure.ac:
+#gl_DIRENT_H
+
+File: ./modules/dirent-safer
+Hash: b8cb12f2325cec94272dbbbde2d31125d02b609dd8902dc709a0e73a021dde61
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Directory functions that avoid clobbering STD{IN,OUT,ERR}_FILENO.
+#
+#Files:
+#lib/dirent--.h
+#lib/dirent-safer.h
+#lib/opendir-safer.c
+#m4/dirent-safer.m4
+#
+#Depends-on:
+#dirent
+#dirfd
+#unistd-safer
+#
+#configure.ac:
+
+File: ./modules/dirent-safer-tests
+Hash: e37f3f6296305a9eb975d0f8e2a3ffb0f98fa3a9cecded0b47bc05b169e0a401
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-dirent-safer.c
+#
+#Depends-on:
+#dup2
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-dirent-safer
+#check_PROGRAMS += test-dirent-safer
+
+File: ./modules/dirfd
+Hash: c26ab98336ca5e6d0a647ef1ee1a25f2df553234e51efb824097c7a73bd6d345
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Retrieving the file descriptor of an open directory stream.  (Unportable.)
+#
+#Files:
+#lib/dirfd.c
+#m4/dirfd.m4
+#
+#Depends-on:
+#dirent
+#errno
+#extensions
+#
+#configure.ac:
+#gl_FUNC_DIRFD
+#gl_DIRENT_MODULE_INDICATOR([dirfd])
+
+File: ./modules/dirname
+Hash: 2de69ef4b25f9b0db1b2598591b5efa3312fb79ac6aea41735ee091ddcddbf2b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Extract specific portions of filenames.
+#
+#Files:
+#lib/dirname.h
+#lib/dirname.c
+#lib/basename.c
+#lib/stripslash.c
+#m4/dirname.m4
+#m4/dos.m4
+#
+#Depends-on:
+#double-slash-root
+#stdbool
+#xalloc
+
+File: ./modules/dirname-tests
+Hash: 815c8ff67c3f529ae878f7a26b523438fe832f56e7bbd69dc8f2429e75f9f384
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-dirname.c
+#
+#Depends-on:
+#strdup
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-dirname
+#check_PROGRAMS += test-dirname
+#test_dirname_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/double-slash-root
+Hash: 899ac52e251e2421ddeb82d4de9a425eaf7412c957f9927c31cc39fe7f148963
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Check whether // is distinct from /.
+#
+#Files:
+#m4/double-slash-root.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_DOUBLE_SLASH_ROOT
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/dprintf
+Hash: 0c7255737575d60259979623471bad2c8da641cd523b977b8704333c0fce29db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#dprintf() function: print formatted output to a file descriptor
+#
+#Files:
+#lib/dprintf.c
+#m4/dprintf.m4
+#
+#Depends-on:
+#stdio
+#vasnprintf
+#full-write
+#errno
+#
+#configure.ac:
+#gl_FUNC_DPRINTF
+
+File: ./modules/dprintf-posix
+Hash: 9e4bd7fddc560e97cb0743a5c690a875122f4dbe135f25b76d0beaae8d0db6d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible dprintf() function: print formatted output to a file
+#descriptor
+#
+#Files:
+#m4/dprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#dprintf
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+#frexpl-nolibm
+
+File: ./modules/dprintf-posix-tests
+Hash: 516a22b8ce686f568cf033207db60bf332fd484d0b92921cf3fd1a4c4fb86d24
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-dprintf-posix.sh
+#tests/test-dprintf-posix.c
+#tests/test-printf-posix.output
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-dprintf-posix.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-dprintf-posix
+
+File: ./modules/dummy
+Hash: 854d662d1c7394227e82d7870cfaffde43c9513d8734120012e984f7ba5fd39d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A dummy file, to make sure the library is non-empty.
+#
+#Files:
+#lib/dummy.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += dummy.c
+#
+#Include:
+
+File: ./modules/dup2
+Hash: 9e1c5691c3713e492a4f51d5608a4d199d17ced5babcec490ddc2509f8de2231
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#dup2() function: duplicate an open file descriptor.
+#
+#Files:
+#lib/dup2.c
+#m4/dup2.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_DUP2
+#gl_UNISTD_MODULE_INDICATOR([dup2])
+#
+#Makefile.am:
+
+File: ./modules/dup2-tests
+Hash: 01cb97ae8c492fc1564a3c4976dab781809ef8aa08741f5b14ca96f08fcef840
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-dup2.c
+#
+#Depends-on:
+#open
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-dup2
+#check_PROGRAMS += test-dup2
+
+File: ./modules/dup3
+Hash: 69fdc3c3a124fd2c88d8386d1837ce8d2c82196a008d64bb8eba8127c0ee771b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#dup3() function: copy a file descriptor, applying specific flags.
+#
+#Files:
+#lib/dup3.c
+#m4/dup3.m4
+#
+#Depends-on:
+#unistd
+#fcntl
+#binary-io
+#getdtablesize
+#
+#configure.ac:
+#gl_FUNC_DUP3
+
+File: ./modules/dup3-tests
+Hash: be78bf1d63fd9d08ffe02606639d273d5978684399ff4782b3397b475e14a5ee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-dup3.c
+#
+#Depends-on:
+#open
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-dup3
+#check_PROGRAMS += test-dup3
+
+File: ./modules/eealloc
+Hash: e2124275b5589e827043e1bb59ec89182059cd0994a308c5ee17fb95eca6522f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Memory allocation with expensive empty allocations (glibc compatible).
+#
+#Files:
+#lib/eealloc.h
+#m4/eealloc.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_EEALLOC
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/elisp-comp
+Hash: 0b7233ecf09add728c7f7266e9ed8f9c42bc3f471d53b648293c5c70f5379d17
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compile Emacs Lisp files.
+#
+#Files:
+#build-aux/elisp-comp
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/environ
+Hash: 1ccce16dccd630d05124710f0a7e4832aec3f07e23fba03399e3855fe21b565f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#environ variable: storage of environment variables.
+#
+#Files:
+#m4/environ.m4
+#
+#Depends-on:
+#unistd
+#extensions
+#
+#configure.ac:
+#gl_ENVIRON
+#gl_UNISTD_MODULE_INDICATOR([environ])
+#
+#Makefile.am:
+
+File: ./modules/environ-tests
+Hash: f8edb03479da1a4c85755325a181d77fc778974097b8f2900a1a005d6e27f5e3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-environ.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-environ
+#check_PROGRAMS += test-environ
+
+File: ./modules/errno
+Hash: 1a350cc71bd2dcb0e1cc4d35eeebbc15da79d2dd532248a36a5cf198d44d5293
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A POSIX-like <errno.h>.
+#
+#Files:
+#lib/errno.in.h
+#m4/errno_h.m4
+#
+#Depends-on:
+#include_next
+#
+#configure.ac:
+#gl_HEADER_ERRNO_H
+#
+#Makefile.am:
+#BUILT_SOURCES += $(ERRNO_H)
+
+File: ./modules/errno-tests
+Hash: 140223d34c164d0e4377ea2e0d78659c013feb62881bd2a4966a478369c398cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-errno.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-errno
+#check_PROGRAMS += test-errno
+
+File: ./modules/error
+Hash: 6e0d5c513ead811b7a4449172ecd0253617aac365941fc0c0c4bef58f36528ff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#error and error_at_line functions: Error reporting.
+#
+#Notice:
+#If you are using GNU gettext version 0.16.1 or older, add the following options
+#to XGETTEXT_OPTIONS in your po/Makevars:
+#  --flag=error:3:c-format --flag=error_at_line:5:c-format
+#
+#Files:
+#lib/error.h
+#lib/error.c
+#m4/error.m4
+#
+#Depends-on:
+#strerror
+
+File: ./modules/euidaccess
+Hash: bcbfd513d69bb6b68998eacafc86914e98acb9fa5b0015bc19c13c38bf5c695c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#euidaccess() function: check effective user's permissions for a file.
+#
+#Files:
+#lib/euidaccess.c
+#m4/euidaccess.m4
+#
+#Depends-on:
+#unistd
+#extensions
+#group-member
+#sys_stat
+#
+#configure.ac:
+#gl_FUNC_EUIDACCESS
+
+File: ./modules/exclude
+Hash: d1a7809613d0860c9a2b248aa53cf31da18b65a27afd84649489f86e0585027d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Manage list of filenames or wildcard patterns for --exclude option processing.
+#
+#Files:
+#lib/exclude.h
+#lib/exclude.c
+#m4/exclude.m4
+#
+#Depends-on:
+#fnmatch
+#hash
+#mbscasecmp
+#mbuiter
+#stdbool
+#verify
+
+File: ./modules/exclude-tests
+Hash: 313e390c1042153f04f3d54dc76b4555a15b6d43c0c895957d8c2d95133160bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-exclude.c
+#tests/test-exclude1.sh
+#tests/test-exclude2.sh
+#tests/test-exclude3.sh
+#tests/test-exclude4.sh
+#tests/test-exclude5.sh
+#tests/test-exclude6.sh
+#tests/test-exclude7.sh
+#
+#Depends-on:
+#progname
+#error
+#argmatch
+
+File: ./modules/execute
+Hash: 2ff2c5ddb5a20cc9471fa47595e00e1e2f91319fcab2a237ed79ba9dc66f255c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Creation of autonomous subprocesses.
+#
+#Files:
+#lib/execute.h
+#lib/execute.c
+#lib/w32spawn.h
+#m4/execute.m4
+#
+#Depends-on:
+#dup2
+#error
+#exit
+#fatal-signal
+#wait-process
+
+File: ./modules/exit
+Hash: 97ef461ebd37690d9acd7227822e73a0742c3eddcca463f8578bb916d9d406c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#exit() function: program termination.
+#
+#Files:
+#
+#Depends-on:
+#stdlib
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#<stdlib.h>
+
+File: ./modules/exitfail
+Hash: 71bf5ee9e44fb5ac95bbfffc6cdea1d50b539482cd5e3cd2468411e93e3e2cff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Set exit status for fatal signal.
+#
+#Files:
+#lib/exitfail.h
+#lib/exitfail.c
+#m4/exitfail.m4
+#
+#Depends-on:
+#exit
+#
+#configure.ac:
+#gl_EXITFAIL
+#
+#Makefile.am:
+
+File: ./modules/extensions
+Hash: c8560170a702ed9b6f24f677c3ee0a32abb9a6381e983c1c5db53a08d4cbf300
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Enable extensions in standard headers
+#
+#Files:
+#m4/extensions.m4
+#
+#Depends-on:
+#
+#configure.ac-early:
+#AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/faccessat
+Hash: 178c21c4b625555d359cb418d9feb5a994ae890419a4ec0e97a67e84e1897210
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#faccessat() function: check user's permissions for a file.
+#
+#Files:
+#lib/faccessat.c
+#m4/faccessat.m4
+#
+#Depends-on:
+#euidaccess
+#extensions
+#fcntl-h
+#openat
+#unistd
+#
+#configure.ac:
+
+File: ./modules/fatal-signal
+Hash: d6326aa3aefe52b95ee7eb0ebc3a68fff79a71488ec77bad0803fdadfcabf22c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Emergency actions in case of a fatal signal.
+#
+#Files:
+#lib/fatal-signal.h
+#lib/fatal-signal.c
+#m4/fatal-signal.m4
+#m4/sig_atomic_t.m4
+#
+#Depends-on:
+#xalloc
+#stdbool
+#unistd
+#sigaction
+#sigprocmask
+
+File: ./modules/fbufmode
+Hash: 73f27bfb851dcb675c670945680ac3d2f3d9ef358ebd537e924a041af617df55
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fbufmode() function: Determine the buffering mode of a FILE stream.
+#
+#Files:
+#lib/fbufmode.h
+#lib/fbufmode.c
+#lib/stdio-impl.h
+#m4/fbufmode.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_FBUFMODE
+#
+#Makefile.am:
+
+File: ./modules/fbufmode-tests
+Hash: 71fe5ce9c53cb34271eb8d52b313df538a124a637342017c3aadb391493145df
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fbufmode.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fbufmode
+#check_PROGRAMS += test-fbufmode
+#MOSTLYCLEANFILES += t-fbufmode.tmp
+
+File: ./modules/fchdir
+Hash: 644b0fc8c342462f0685df822c5424fce6c66ecc84dcd67513ccf047a3ab7dd3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fchdir() function: change current directory, given an open file descriptor.
+#
+#Files:
+#lib/fchdir.c
+#m4/fchdir.m4
+#
+#Depends-on:
+#canonicalize-lgpl
+#close
+#dirent
+#dirfd
+#dup2
+#fcntl-h
+#include_next
+
+File: ./modules/fchdir-tests
+Hash: 787a3d5b3bc71dd81c896ec6cb8cf270b44d635227d7de69404709a40774ddac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fchdir.c
+#
+#Depends-on:
+#getcwd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fchdir
+#check_PROGRAMS += test-fchdir
+
+File: ./modules/fclose
+Hash: cf3f476e6ac54b29381acc2be25b3080b60e1c224cf2c70733848805e42c10ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fclose() function: close a stream.
+#
+#Files:
+#lib/fclose.c
+#m4/fclose.m4
+#
+#Depends-on:
+#stdio
+#close
+#
+#configure.ac:
+#gl_FUNC_FCLOSE
+#gl_STDIO_MODULE_INDICATOR([fclose])
+
+File: ./modules/fcntl
+Hash: 3ed2504e15f67cc9a6c99a5da3d83833e88117d5f752742ab939317e33954f3f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Placeholder for eventual fcntl() replacement.
+#
+#Files:
+#
+#Depends-on:
+#fcntl-h
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+##include <fcntl.h>
+
+File: ./modules/fcntl-h
+Hash: 7fd3e763589848f291c1f516bde747c0dd95fe564ac008a1c5e73daa0b1b8384
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Like <fcntl.h>, but with non-working flags defined to 0.
+#
+#Files:
+#lib/fcntl.in.h
+#m4/fcntl_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#unistd
+#extensions
+#
+#configure.ac:
+#gl_FCNTL_H
+
+File: ./modules/fcntl-h-tests
+Hash: 21b1ab56df8b65825fe64da68487d62116cd8774ce073c1f8ee25ea6e589fd87
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fcntl-h.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fcntl-h
+#check_PROGRAMS += test-fcntl-h
+#
+#License:
+#LGPL
+
+File: ./modules/fcntl-safer
+Hash: 4ebf6bbd64762641d00a4ae162c3411b45f8d9ed4b4581ed65c023a5e7ca4649
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#File descriptor functions that avoid clobbering STD{IN,OUT,ERR}_FILENO.
+#
+#Files:
+#lib/fcntl--.h
+#lib/creat-safer.c
+#lib/fcntl-safer.h
+#lib/open-safer.c
+#m4/fcntl-safer.m4
+#m4/mode_t.m4
+#
+#Depends-on:
+#fcntl-h
+#open
+#unistd-safer
+
+File: ./modules/fcntl-safer-tests
+Hash: be7ef9f639404a67e06811e0b0e18326bc85573fd18511dcfcbc34f7067081eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-open.h
+#tests/test-fcntl-safer.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fcntl-safer
+#check_PROGRAMS += test-fcntl-safer
+
+File: ./modules/fdl
+Hash: a7088c30386fb8c1874a6ec818d726c8c2cd24ebad39eebc536cecd327672f2d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Provide the GNU Free Documentation License in Texinfo format.
+#
+#Files:
+#doc/fdl.texi
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/fdl-1.3
+Hash: bca96e2238e75399e1fe51f3e68c173dcc273f0a7772aecd7cc8ef73fda177e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Provide the GNU Free Documentation License version 1.3 in Texinfo format.
+#
+#Files:
+#doc/fdl-1.3.texi
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/fdopendir
+Hash: 1e7fe9081b79836f9246012e3c6ad46347e858c2b4b62a7d4d561a33cfd6ecab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Open a directory stream from a file descriptor.
+#
+#Files:
+#lib/fdopendir.c
+#lib/openat-priv.h
+#lib/openat-proc.c
+#m4/fdopendir.m4
+#
+#Depends-on:
+#dirent
+#errno
+#extensions
+#fchdir
+#openat-die
+
+File: ./modules/fdopendir-tests
+Hash: 62f6d9c40e5c905c756f1c88fe8c5f6739e6d2dcf54187dc1d8a964b59c9e03e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fdopendir.c
+#
+#Depends-on:
+#open
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fdopendir
+#check_PROGRAMS += test-fdopendir
+#test_fdopendir_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/fflush
+Hash: 18b553e8a7d80dc1c83af3e17063c3faa6659da9d68bcbd65ff3ef6c2e313157
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Discard pending data on both input and output streams.
+#
+#Files:
+#lib/fflush.c
+#lib/stdio-impl.h
+#m4/fflush.m4
+#
+#Depends-on:
+#fpurge
+#ftello
+#freading
+#lseek
+#stdio
+#unistd
+
+File: ./modules/fflush-tests
+Hash: a1fc5c4b6c0ea31bb2d2726467624a0e49e748915ddb5a21a3905b43f0239c61
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fflush.c
+#tests/test-fflush2.sh
+#tests/test-fflush2.c
+#
+#Depends-on:
+#binary-io
+#fseeko
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fflush test-fflush2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-fflush test-fflush2
+
+File: ./modules/file-set
+Hash: 22144a829c85ec1f08143cae120b80a511fb03a953984d493980c7229b3d3afa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Very specialized set-of-files code.
+#
+#Files:
+#lib/file-set.c
+#lib/file-set.h
+#
+#Depends-on:
+#hash
+#hash-triple
+#stdbool
+#xalloc
+#xalloc-die
+#
+#configure.ac:
+
+File: ./modules/file-type
+Hash: c0acff46b857b7c20ad0115b8f163c91df47d5ba58ef0627dd00f5834ca1370f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return a string describing the type of a file.
+#
+#Files:
+#lib/file-type.h
+#lib/file-type.c
+#m4/file-type.m4
+#
+#Depends-on:
+#gettext-h
+#sys_stat
+#
+#configure.ac:
+#gl_FILE_TYPE
+
+File: ./modules/fileblocks
+Hash: c10175badd9b332c6ab2fa2f789ee97e0ce7c82f79e37c5cc8e4e0c0281b6adb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Estimate number of blocks of a file, if 'struct stat' doesn't have st_blocks.
+#
+#Files:
+#lib/fileblocks.c
+#m4/fileblocks.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FILEBLOCKS
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/filemode
+Hash: 1ad12dc2124f345795043446f1d7811ed787098b06475b3454299df3f6be420c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return a string (?rwxrwxrwx format) describing the type and permissions of a
+#file.
+#
+#Files:
+#lib/filemode.h
+#lib/filemode.c
+#m4/filemode.m4
+#m4/st_dm_mode.m4
+#
+#Depends-on:
+#sys_stat
+#
+#configure.ac:
+#gl_FILEMODE
+
+File: ./modules/filename
+Hash: 3cda4fccc1263c4a2b60b75ff698189bd8023001f333926273a7cc24c82b54d4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Basic filename support macros.
+#
+#Files:
+#lib/filename.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"filename.h"
+
+File: ./modules/filenamecat
+Hash: 44f8cadb58fa064a93772154f55bf3235c390360a55ccebf6b617f6d1c8d0189
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Concatenate two arbitrary file names.
+#
+#Files:
+#lib/filenamecat.h
+#lib/filenamecat.c
+#m4/dos.m4
+#m4/filenamecat.m4
+#
+#Depends-on:
+#xalloc
+#dirname
+#
+#configure.ac:
+#gl_FILE_NAME_CONCAT
+
+File: ./modules/filenamecat-tests
+Hash: 1e225a717fa965a853618195261e6d1673eb90c7b0f2f70b5e088591ffca7e88
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-filenamecat.c
+#
+#Depends-on:
+#stdbool
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-filenamecat
+#check_PROGRAMS += test-filenamecat
+#test_filenamecat_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/filevercmp
+Hash: eb487a16443b28ac6b62e8ce5d3036872b98c46df4d738edc257ef4d9c08c9c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#compare version strings and version-containing file names
+#
+#Files:
+#lib/filevercmp.h
+#lib/filevercmp.c
+#
+#Depends-on:
+#c-ctype
+#inline
+#stdbool
+#string
+#
+#configure.ac:
+
+File: ./modules/filevercmp-tests
+Hash: e36a1ad4dd4e4e79a4fa7938897f331f741fd14bc90aa08297352ee0e2cc35e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-filevercmp.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-filevercmp
+#check_PROGRAMS += test-filevercmp
+
+File: ./modules/findprog
+Hash: b702f8ffa7e72e71ba9678efff438feab7fe00600ca64d260b3ffc2ec75eb836
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locating a program in PATH.
+#
+#Files:
+#lib/findprog.h
+#lib/findprog.c
+#m4/findprog.m4
+#m4/eaccess.m4
+#
+#Depends-on:
+#stdbool
+#xalloc
+#xconcat-filename
+#unistd
+#strdup
+
+File: ./modules/findprog-lgpl
+Hash: 113810dee709728ce873b19f1638222e0b4c90ce5f4bf1106c1c0e0177ba0e4c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locating a program in PATH (LGPLed version).
+#
+#Files:
+#lib/findprog.h
+#lib/findprog.c
+#lib/findprog-lgpl.c
+#m4/findprog.m4
+#m4/eaccess.m4
+#
+#Depends-on:
+#stdbool
+#strdup
+#concat-filename
+#unistd
+
+File: ./modules/flexmember
+Hash: 1aa8dca40ae523eb2fca526c391f55fffce453b8c30bf84b9513315121950de9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Flexible array member support
+#
+#Files:
+#m4/flexmember.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_C_FLEXIBLE_ARRAY_MEMBER
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/float
+Hash: e6b7c886d27a00d3f2745c4be39f08826d23a406e5b7f7f3537fd3ae7d0d56bb
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A correct <float.h>.
+#
+#Files:
+#lib/float.in.h
+#m4/float_h.m4
+#
+#Depends-on:
+#include_next
+#
+#configure.ac:
+#gl_FLOAT_H
+#
+#Makefile.am:
+#BUILT_SOURCES += $(FLOAT_H)
+
+File: ./modules/flock
+Hash: 0d27d17b43dba498300dc6dd8278483f4662fbc33c1c6020af519f5af93c91a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#flock(2) function: advisory file locks.
+#
+#Files:
+#lib/flock.c
+#m4/flock.m4
+#
+#Depends-on:
+#sys_file
+#
+#configure.ac:
+#gl_FUNC_FLOCK
+#gl_HEADER_SYS_FILE_MODULE_INDICATOR([flock])
+#
+#Makefile.am:
+
+File: ./modules/flock-tests
+Hash: ed015f448128e47356dc5fdf742dffa723cab8d53b9d79df3ef5e18c531281a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-flock.c
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-flock
+#check_PROGRAMS += test-flock
+
+File: ./modules/floor
+Hash: b853be43fd43415988aa18bfe4322cb154a7be2a5212336bc5fe265b30a5a13d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#floor() function: round towards negative infinity.
+#
+#Files:
+#m4/floor.m4
+#
+#Depends-on:
+#math
+#
+#configure.ac:
+#gl_FUNC_FLOOR
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/floorf
+Hash: 128117d8c1e90cec8daf8a295d485c44356eb71bba40ed6764977488106cfb7f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#floorf() function: round towards negative infinity.
+#
+#Files:
+#lib/floorf.c
+#lib/floor.c
+#m4/floorf.m4
+#
+#Depends-on:
+#math
+#extensions
+#float
+#
+#configure.ac:
+#gl_FUNC_FLOORF
+
+File: ./modules/floorf-tests
+Hash: e03884697f7432a893aa1e5b9f21e11762b3bfe15c273d1c3149bb0d88b909d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-floorf1.c
+#tests/test-floorf2.c
+#tests/nan.h
+#
+#Depends-on:
+#float
+#isnanf-nolibm
+#stdbool
+#stdint
+#fprintf-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/floorl
+Hash: 2cdd8c1038f91a6a39039062b48da7e76488d368c31babe3880b2b6b5c941a4b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#floorl() function: round towards negative infinity.
+#
+#Files:
+#lib/floorl.c
+#lib/floor.c
+#m4/floorl.m4
+#
+#Depends-on:
+#math
+#extensions
+#float
+#
+#configure.ac:
+#gl_FUNC_FLOORL
+
+File: ./modules/floorl-tests
+Hash: 99da97c87837e8e226014794a72ed86d1d6b049e0c7d61dbc3693c59ff004b02
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-floorl.c
+#tests/nan.h
+#
+#Depends-on:
+#fpucw
+#isnanl-nolibm
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-floorl
+#check_PROGRAMS += test-floorl
+#test_floorl_LDADD = $(LDADD) @FLOORL_LIBM@
+
+File: ./modules/fnmatch
+Hash: 9c7345488ebc1f63b46c93d222ce1fea31fa784f44b65ec6b3d4535053819686
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fnmatch() function: wildcard matching.
+#
+#Files:
+#lib/fnmatch.in.h
+#lib/fnmatch.c
+#lib/fnmatch_loop.c
+#m4/mbstate_t.m4
+#m4/fnmatch.m4
+#
+#Depends-on:
+#extensions
+#alloca
+#stdbool
+#wchar
+
+File: ./modules/fnmatch-gnu
+Hash: 33dab8afc481a19055a2fe68afcd2abf7590708cd49c3833df2a33a81148ded2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fnmatch() function: wildcard matching, with GNU extensions.
+#
+#Files:
+#
+#Depends-on:
+#fnmatch
+#
+#configure.ac:
+#gl_FUNC_FNMATCH_GNU
+#
+#Makefile.am:
+#
+#Include:
+#"fnmatch.h"
+
+File: ./modules/fnmatch-posix
+Hash: 26e0377cd98bacb9d54b697f79123a30703b0fc78255334634bece305375d553
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fnmatch() function: wildcard matching.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete. Use the module 'fnmatch' instead.
+#
+#Files:
+#
+#Depends-on:
+#fnmatch
+#
+#configure.ac:
+
+File: ./modules/fnmatch-tests
+Hash: f1f0e3226eac0b3a37dee4d71a07da2ff92626f8624f62c30bc87a8440b89d73
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fnmatch.c
+#
+#Makefile.am:
+#TESTS += test-fnmatch
+#check_PROGRAMS += test-fnmatch
+
+File: ./modules/fopen
+Hash: 8a5299f9f06a0974dcb130118d13d75f799bc88dec305c555f8377830defb508
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fopen() function: open a stream to a file.
+#
+#Files:
+#lib/fopen.c
+#m4/fopen.m4
+#
+#Depends-on:
+#stdio
+#unistd
+#
+#configure.ac:
+#gl_FUNC_FOPEN
+#gl_STDIO_MODULE_INDICATOR([fopen])
+
+File: ./modules/fopen-safer
+Hash: a0147049ddbdeb16bab12139adc0071776f224946d38809be844d58b49d431f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fopen function that avoids clobbering std{in,out,err}.
+#
+#Files:
+#lib/stdio--.h
+#lib/stdio-safer.h
+#lib/fopen-safer.c
+#m4/stdio-safer.m4
+#
+#Depends-on:
+#fopen
+#unistd-safer
+#
+#configure.ac:
+#gl_FOPEN_SAFER
+
+File: ./modules/fopen-safer-tests
+Hash: dc277a83bb5ce146a2e11cbc156dfddc32dbff52cd8b297021cb6a80d4f7a528
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fopen.h
+#tests/test-fopen-safer.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fopen-safer
+#check_PROGRAMS += test-fopen-safer
+
+File: ./modules/fopen-tests
+Hash: b8e701ab03d66d0e520bb0d086762d7630d8d96852f83e0adbd0d45e6e963490
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fopen.h
+#tests/test-fopen.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fopen
+#check_PROGRAMS += test-fopen
+
+File: ./modules/fpending
+Hash: d684f5cdda9195a54b75c10a4f5d148a64746e307331952f462c41d774b8932f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine the number of bytes waiting in the output buffer of a stream.
+#
+#Files:
+#lib/fpending.h
+#lib/fpending.c
+#m4/fpending.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_FPENDING
+#
+#Makefile.am:
+
+File: ./modules/fpending-tests
+Hash: 33e2c211f2e4465e2fdf2f98a4db01e20dd74b660a80efc5b0505c9a7a48cff7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fpending.c
+#tests/test-fpending.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fpending.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-fpending
+#MOSTLYCLEANFILES += test-fpending.t
+
+File: ./modules/fpieee
+Hash: 8cb60f5689b0ec473541a5fd46b6eae888b520b2987229f54bb2bda593354997
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Ensure IEEE compliant floating-point operations (overflow and division by zero).
+#
+#Files:
+#m4/fpieee.m4
+#
+#Depends-on:
+#
+#configure.ac-early:
+#AC_REQUIRE([gl_FP_IEEE])
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/fprintf-posix
+Hash: 0e8edc74b33a75448836b170c653611468d75508e612e6cf1a89be36766a5b0e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible fprintf() function: print formatted output to a stream
+#
+#Files:
+#lib/fprintf.c
+#m4/fprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#stdio
+#fseterr
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+
+File: ./modules/fprintf-posix-tests
+Hash: b7d20d35ae365add01129799f0ea4624dd63088d7f05fff2874d450da7fcc2a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fprintf-posix.sh
+#tests/test-fprintf-posix.c
+#tests/test-fprintf-posix.h
+#tests/test-printf-posix.output
+#tests/test-fprintf-posix2.sh
+#tests/test-fprintf-posix2.c
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#AC_CHECK_FUNCS_ONCE([getrlimit setrlimit])
+#
+#Makefile.am:
+
+File: ./modules/fprintftime
+Hash: ec79647a5a3f351dea08e3b0eb34f75948e667aefc1523978872395013af5ea1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#like nstrftime, but output the formatted date to a FILE* stream
+#
+#Files:
+#lib/fprintftime.h
+#lib/fprintftime.c
+#m4/fprintftime.m4
+#
+#Depends-on:
+#strftime
+#
+#configure.ac:
+#gl_FPRINTFTIME
+#
+#Makefile.am:
+
+File: ./modules/fpucw
+Hash: cb9c36cee25dc22097ff196bf9554e513aa15ad79933fb770df2ea72e1ad8aa6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Set the FPU control word, so as to allow correct 'long double' computations.
+#
+#Files:
+#lib/fpucw.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"fpucw.h"
+
+File: ./modules/fpurge
+Hash: d0aa7c5bb4a86839ad299aae669da70a029004cb1dba6c4c6d5312e76e0d397e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fpurge() function: Flush buffers.
+#
+#Files:
+#lib/fpurge.c
+#lib/stdio-impl.h
+#m4/fpurge.m4
+#
+#Depends-on:
+#stdio
+#
+#configure.ac:
+#gl_FUNC_FPURGE
+#gl_STDIO_MODULE_INDICATOR([fpurge])
+
+File: ./modules/fpurge-tests
+Hash: 506b68bf366951df73dfac741876049410ced6279358421d1070e79502c3bc79
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fpurge.c
+#
+#Depends-on:
+#fflush
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fpurge
+#check_PROGRAMS += test-fpurge
+#MOSTLYCLEANFILES += t-fpurge.tmp
+
+File: ./modules/freadable
+Hash: e7f8b044bbb4a82a5038701cd79dc2e71e550c100b38109a1b6eeeacfa1048a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#freadable() function: Determine whether a FILE stream supports reading.
+#
+#Files:
+#lib/freadable.h
+#lib/freadable.c
+#lib/stdio-impl.h
+#m4/freadable.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gl_FUNC_FREADABLE
+
+File: ./modules/freadable-tests
+Hash: bf8d9e390099bf7cc934d5f46eeb1571d7f5828a67cf5f19d05ef705030b6c04
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-freadable.c
+#
+#Depends-on:
+#fflush
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-freadable
+#check_PROGRAMS += test-freadable
+#MOSTLYCLEANFILES += t-freadable.tmp
+
+File: ./modules/freadahead
+Hash: 8aa80d4e554116460ad9a03f5048e76455a286b92bf84a74b0a463da37743258
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#freadahead() function: Determine the number of bytes waiting in the input
+#buffer of a stream.
+#
+#Files:
+#lib/freadahead.h
+#lib/freadahead.c
+#lib/stdio-impl.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += freadahead.c
+
+File: ./modules/freadahead-tests
+Hash: 6e6907b55b4bbac8ef6d5e361f9584b477f9e5ca9a78fc46f9f8c5020c7ad769
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-freadahead.c
+#tests/test-freadahead.sh
+#
+#Depends-on:
+#lseek
+#unistd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-freadahead.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-freadahead
+
+File: ./modules/freading
+Hash: af1797dd1126b7de25554bfaade8b9757bbc8a89575e3ce7c2a9d3daec6aadab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#freading() function: Determine whether a FILE stream is currently doing reading.
+#
+#Files:
+#lib/freading.h
+#lib/freading.c
+#lib/stdio-impl.h
+#m4/freading.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gl_FUNC_FREADING
+
+File: ./modules/freading-tests
+Hash: 2d0223fbf2144e3ca3be8cdd0e9fe40edf5f4a4018b6b8d8d6759298dfc6695c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-freading.c
+#
+#Depends-on:
+#fflush
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-freading
+#check_PROGRAMS += test-freading
+#MOSTLYCLEANFILES += t-freading.tmp
+
+File: ./modules/freadptr
+Hash: a213f41b527e384ad81689daca5e48d04663773f4581806e66a95c05118310ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#freadptr() function: Pointer to the input buffer of a stream.
+#
+#Files:
+#lib/freadptr.h
+#lib/freadptr.c
+#lib/stdio-impl.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += freadptr.c
+
+File: ./modules/freadptr-tests
+Hash: c00e4f93c709db743f7509de0edaa02490d4b7eb110a4f5e094c40dca746beae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-freadptr.c
+#tests/test-freadptr.sh
+#tests/test-freadptr2.c
+#tests/test-freadptr2.sh
+#
+#Depends-on:
+#lseek
+#unistd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-freadptr.sh test-freadptr2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+
+File: ./modules/freadseek
+Hash: a7f58f4f4289141733b00a4f19505133af4e243e8c637d95f0086a18f27a4f9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#freadseek() function: Read and discard input from a stream.
+#
+#Files:
+#lib/freadseek.h
+#lib/freadseek.c
+#lib/stdio-impl.h
+#
+#Depends-on:
+#freadahead
+#freadptr
+#lseek
+#
+#configure.ac:
+#AC_REQUIRE([AC_C_INLINE])
+
+File: ./modules/freadseek-tests
+Hash: 0406ba96417e643999dd3b996caabee2f8d3d64c89b2b866528d8edd64de890a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-freadseek.c
+#tests/test-freadseek.sh
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-freadseek.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-freadseek
+
+File: ./modules/free
+Hash: f0cb777264932ef6cf14eb34df90e286a8247d4261f810188ac2fa40c6b4b16f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Work around incompatibility on older systems where free (NULL) fails.
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/free.c
+#m4/free.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_FREE
+
+File: ./modules/freopen
+Hash: 5b7f5fe7bcca335731c30f8e3c0a17a0caafd988974830b061807dec1162c6e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#freopen() function: open a stream to a file.
+#
+#Files:
+#lib/freopen.c
+#m4/freopen.m4
+#
+#Depends-on:
+#stdio
+#
+#configure.ac:
+#gl_FUNC_FREOPEN
+#gl_STDIO_MODULE_INDICATOR([freopen])
+#
+#Makefile.am:
+
+File: ./modules/freopen-tests
+Hash: a070ef14de1186b601222d2463e37f9faf0d056e0a2ba119ddc77f515207d5d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-freopen.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-freopen
+#check_PROGRAMS += test-freopen
+
+File: ./modules/frexp
+Hash: 39e7a2719cf39a87639e8e8996e669c9973876aae2f069bddf10cac94052ef1b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#frexp() function: split a double into its constituents.
+#
+#Files:
+#lib/frexp.c
+#m4/frexp.m4
+#
+#Depends-on:
+#math
+#isnand-nolibm
+#
+#configure.ac:
+#gl_FUNC_FREXP
+#gl_MATH_MODULE_INDICATOR([frexp])
+
+File: ./modules/frexp-nolibm
+Hash: ab341135186432cc1e01c1a8487fc4ae2aef417065508ebacdf61a7d81af056b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#frexp() function: split a double into its constituents, without requiring libm.
+#
+#Files:
+#lib/frexp.c
+#m4/frexp.m4
+#
+#Depends-on:
+#math
+#isnand-nolibm
+#
+#configure.ac:
+#gl_FUNC_FREXP_NO_LIBM
+#gl_MATH_MODULE_INDICATOR([frexp])
+
+File: ./modules/frexp-nolibm-tests
+Hash: 16b4652d228cccc301478697cb79b81816ad63d0682431d4434d9c14f4356d29
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-frexp.c
+#
+#Depends-on:
+#isnand-nolibm
+#signbit
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-frexp-nolibm
+#check_PROGRAMS += test-frexp-nolibm
+#test_frexp_nolibm_SOURCES = test-frexp.c
+#
+#License:
+
+File: ./modules/frexp-tests
+Hash: 23879974e1833ea7bcb89162930bae7d15499b746006459c0717ddd5a4e0c381
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-frexp.c
+#tests/nan.h
+#
+#Depends-on:
+#isnand-nolibm
+#signbit
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-frexp
+#check_PROGRAMS += test-frexp
+#test_frexp_LDADD = $(LDADD) @FREXP_LIBM@
+
+File: ./modules/frexpl
+Hash: 2845a6ad936b8833acb450dbb27e3ba6f3fa445f2b139d5bf88cab9fb6364182
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#frexpl() function: split a 'long double' into its constituents.
+#
+#Files:
+#lib/frexpl.c
+#lib/frexp.c
+#m4/frexpl.m4
+#
+#Depends-on:
+#math
+#isnanl-nolibm
+#fpucw
+#
+#configure.ac:
+#gl_FUNC_FREXPL
+
+File: ./modules/frexpl-nolibm
+Hash: eab06e92e844865aff4b464b52efaeb735647ff6404caa0db72e0f6693b1a445
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#frexpl() function: split a 'long double' into its constituents, without
+#requiring libm.
+#
+#Files:
+#lib/frexpl.c
+#lib/frexp.c
+#m4/frexpl.m4
+#
+#Depends-on:
+#math
+#isnanl-nolibm
+#fpucw
+#
+#configure.ac:
+
+File: ./modules/frexpl-nolibm-tests
+Hash: 035cde6dd59316cb3c9c4a8d069695a15f3ee7e224a2aa88bf0b9e6f40da93f4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-frexpl.c
+#
+#Depends-on:
+#fpucw
+#isnanl-nolibm
+#signbit
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-frexpl-nolibm
+#check_PROGRAMS += test-frexpl-nolibm
+#test_frexpl_nolibm_SOURCES = test-frexpl.c
+
+File: ./modules/frexpl-tests
+Hash: 22cb526fadb54dc44cf9d9dd78e4ca78c74a281f009e188b193fa7579f0b80c5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-frexpl.c
+#tests/nan.h
+#
+#Depends-on:
+#fpucw
+#isnanl-nolibm
+#signbit
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-frexpl
+#check_PROGRAMS += test-frexpl
+
+File: ./modules/fseek
+Hash: 14ff99707be2f34af43810eafa3050ea310e16c16d00c52022305887d69f7786
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fseek() function: Reposition a FILE stream.
+#
+#Files:
+#lib/fseek.c
+#m4/fseek.m4
+#
+#Depends-on:
+#fseeko
+#stdio
+#
+#configure.ac:
+#gl_FUNC_FSEEK
+#gl_STDIO_MODULE_INDICATOR([fseek])
+
+File: ./modules/fseek-tests
+Hash: da1dcb42243b0bebc27602fdd4eb16053478ce4b981f2cec59f7a06041889463
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fseek.c
+#tests/test-fseek.sh
+#tests/test-fseek2.sh
+#m4/ungetc.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_UNGETC_WORKS
+#
+#Makefile.am:
+#TESTS += test-fseek.sh test-fseek2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-fseek
+
+File: ./modules/fseeko
+Hash: 20374741366de2b1711be7e65cf38b3f4a86dc4ddf4df301b936466e8e105405
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fseeko() function: Reposition a FILE stream.
+#
+#Files:
+#lib/fseeko.c
+#lib/stdio-impl.h
+#m4/fseeko.m4
+#
+#Depends-on:
+#extensions
+#lseek
+#stdio
+#
+#configure.ac-early:
+#AC_REQUIRE([AC_FUNC_FSEEKO])
+
+File: ./modules/fseeko-tests
+Hash: 80a8724c7f91a71f9453737e6946ece0035315bd3cb84a96ab62034e4c0c1343
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fseeko.c
+#tests/test-fseeko.sh
+#tests/test-fseeko2.sh
+#m4/ungetc.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_UNGETC_WORKS
+#
+#Makefile.am:
+#TESTS += test-fseeko.sh test-fseeko2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-fseeko
+
+File: ./modules/fseterr
+Hash: fcb748b08901da7a446b79a9f86254068595fcf8826dc7b25ddf390c1e27400a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Set the error indicator of a stream.
+#
+#Files:
+#lib/fseterr.h
+#lib/fseterr.c
+#lib/stdio-impl.h
+#
+#Depends-on:
+#dup2
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += fseterr.c
+
+File: ./modules/fseterr-tests
+Hash: 20be8da4cb22195a9d6da9320c05f98480505033c51a680682ea6e45453e340e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fseterr.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fseterr
+#check_PROGRAMS += test-fseterr
+
+File: ./modules/fstrcmp
+Hash: 31dfc3181181df974915d1d808dd218d2a3452fd2ae9dd91dc3b0e9b7e3a7ea0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Fuzzy string comparison.
+#
+#Files:
+#lib/fstrcmp.h
+#lib/fstrcmp.c
+#
+#Depends-on:
+#diffseq
+#lock
+#tls
+#minmax
+#xalloc
+#
+#configure.ac:
+
+File: ./modules/fstrcmp-tests
+Hash: 6ed80e811b2798e5cd6d103d56d5cc66a4c692c73844f918a788ebd85909c2ba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fstrcmp.c
+#
+#Depends-on:
+#stdbool
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fstrcmp
+#check_PROGRAMS += test-fstrcmp
+#test_fstrcmp_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)
+
+File: ./modules/fsusage
+Hash: 7fc0e483c1faf66a76e31ec3bac916d7eca518112248f20b59d58c760fc4b800
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return file system space usage info.
+#
+#Files:
+#lib/fsusage.h
+#lib/fsusage.c
+#m4/fsusage.m4
+#
+#Depends-on:
+#full-read
+#stdbool
+#stdint
+#
+#configure.ac:
+#gl_FSUSAGE
+
+File: ./modules/fsync
+Hash: 5f659d0889a35bbdff277c57c588107d1b1f780c6732c6abfc9684ed46572d1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fsync(2) function: synchronize writes to a file.
+#
+#Files:
+#lib/fsync.c
+#m4/fsync.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_FSYNC
+#gl_UNISTD_MODULE_INDICATOR([fsync])
+#
+#Makefile.am:
+
+File: ./modules/fsync-tests
+Hash: acc6aff61b502aa7194c76c069c2facde874e13a1ee40162c6756d7b5df0bf4f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fsync.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fsync
+#check_PROGRAMS += test-fsync
+
+File: ./modules/ftell
+Hash: 0d9601e0d8e45c10ed587bf2cd38cb0c22ec8549a553c3e99d72676a8749c2ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ftell() function: Retrieve the position of a FILE stream.
+#
+#Files:
+#lib/ftell.c
+#m4/ftell.m4
+#
+#Depends-on:
+#ftello
+#stdio
+#errno
+#
+#configure.ac:
+#gl_FUNC_FTELL
+#gl_STDIO_MODULE_INDICATOR([ftell])
+
+File: ./modules/ftell-tests
+Hash: 3dc1b538dda9b534d167566e9239f387556d318700c409b69983b2df8fc3c227
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-ftell.c
+#tests/test-ftell.sh
+#tests/test-ftell2.sh
+#m4/ungetc.m4
+#
+#Depends-on:
+#binary-io
+#
+#configure.ac:
+#gl_FUNC_UNGETC_WORKS
+#
+#Makefile.am:
+#TESTS += test-ftell.sh test-ftell2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+
+File: ./modules/ftello
+Hash: 85527163d56b3f1d597e261ef126c4051a27a3a342c19867ae69d90237a265a9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ftello() function: Retrieve the position of a FILE stream.
+#
+#Files:
+#lib/ftello.c
+#m4/ftello.m4
+#
+#Depends-on:
+#extensions
+#lseek
+#stdio
+#
+#configure.ac-early:
+#AC_REQUIRE([AC_FUNC_FSEEKO])
+
+File: ./modules/ftello-tests
+Hash: 1723b1f88c0b8f28f6e5e26570038416957f4be46fa6a4ccae993148be1f9df4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-ftello.c
+#tests/test-ftello.sh
+#tests/test-ftello2.sh
+#m4/ungetc.m4
+#
+#Depends-on:
+#binary-io
+#
+#configure.ac:
+#gl_FUNC_UNGETC_WORKS
+#
+#Makefile.am:
+#TESTS += test-ftello.sh test-ftello2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+
+File: ./modules/ftruncate
+Hash: 237c6c353494466e82513071857c8ceb5abf40a4b27d1f02a4249449281d1e35
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ftruncate() function: truncate an open file to a specified length.
+#
+#Files:
+#lib/ftruncate.c
+#m4/ftruncate.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_FTRUNCATE
+#gl_UNISTD_MODULE_INDICATOR([ftruncate])
+#
+#Makefile.am:
+
+File: ./modules/fts
+Hash: 2a63dea8cfcb015efabdc5e736c265cd483dc6e0a06c45b64d46827e10e3afab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Traverse a file hierarchy.
+#
+#Files:
+#lib/fts_.h
+#lib/fts.c
+#lib/fts-cycle.c
+#m4/fts.m4
+#
+#Depends-on:
+#cloexec
+#cycle-check
+#d-ino
+#d-type
+#dirent-safer
+
+File: ./modules/fts-lgpl
+Hash: 34e34b30aab7817bb498257e1962cfb69cb8e63baf797fa5f7017d83ea13e3af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Traverse a file hierarchy (LPGL'ed version).
+#
+#Files:
+#lib/fts_.h
+#lib/fts.c
+#m4/fts.m4
+#
+#Depends-on:
+#dirfd
+#fchdir
+#i-ring
+#openat
+#stdbool
+
+File: ./modules/full-read
+Hash: b18377d607dd24412643717b76e432b961f1bfaa31d8223f65403d0b17e88814
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#An interface to the read() function that reads all it is asked to read.
+#
+#Files:
+#lib/full-read.h
+#lib/full-read.c
+#
+#Depends-on:
+#safe-read
+#full-write
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += full-read.h full-read.c
+
+File: ./modules/full-write
+Hash: d50c81b2b7d6f5072d9de40b9d60eb7454373bc460bcf060a786314166c27232
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#An interface to the write() function that writes all it is asked to write.
+#
+#Files:
+#lib/full-write.h
+#lib/full-write.c
+#
+#Depends-on:
+#safe-write
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += full-write.h full-write.c
+
+File: ./modules/func
+Hash: 0a3f4052d449c4e9d867d95028268301afc428468b59cbca04f73cd0c46d2f1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Make sure __func__ is usable even on non-C99 platforms.
+#
+#Files:
+#m4/func.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/func-tests
+Hash: 8ca882d9e5c98090ae6f96672e45a62c781a5ea948b5cd7e2eb6161dd87dfed5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-func.c
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-func
+#check_PROGRAMS += test-func
+
+File: ./modules/fwritable
+Hash: 27290a646107b7a84bf4a85d8256d1db1979da7cb3ef077c0b48b00ba3ee225d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fwritable() function: Determine whether a FILE stream supports writing.
+#
+#Files:
+#lib/fwritable.h
+#lib/fwritable.c
+#lib/stdio-impl.h
+#m4/fwritable.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gl_FUNC_FWRITABLE
+
+File: ./modules/fwritable-tests
+Hash: 673a45339a269456b4be87f1b8531243d5ce213bac9f3c2ea956d55196798f46
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fwritable.c
+#
+#Depends-on:
+#fflush
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fwritable
+#check_PROGRAMS += test-fwritable
+#MOSTLYCLEANFILES += t-fwritable.tmp
+
+File: ./modules/fwriteerror
+Hash: 25101629c8009611da56db17042ee4c3909ee912fe12498caf16794d806a385d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Detect write error on a stream.
+#
+#Files:
+#lib/fwriteerror.h
+#lib/fwriteerror.c
+#
+#Depends-on:
+#errno
+#stdbool
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([fwriteerror])
+#
+#Makefile.am:
+
+File: ./modules/fwriting
+Hash: fd67d8aa1a4205aafdf573a9b314de4f72c8c9653b3e4f20843e85d5ec622318
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#fwriting() function: Determine whether a FILE stream is currently doing writing.
+#
+#Files:
+#lib/fwriting.h
+#lib/fwriting.c
+#lib/stdio-impl.h
+#m4/fwriting.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gl_FUNC_FWRITING
+
+File: ./modules/fwriting-tests
+Hash: 9dee96b81752a45569d40e3756686a51fa1472e87dbc79af43065d207560e91d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-fwriting.c
+#
+#Depends-on:
+#fflush
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-fwriting
+#check_PROGRAMS += test-fwriting
+#MOSTLYCLEANFILES += t-fwriting.tmp
+
+File: ./modules/gcd
+Hash: 89e35483ea23b6fcf6b82e58b2936ee921990cb27991698a912642068c4f6b08
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Greatest common divisor.
+#
+#Files:
+#lib/gcd.h
+#lib/gcd.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += gcd.h gcd.c
+#
+#Include:
+
+File: ./modules/gen-uni-tables
+Hash: 1626529b9493ad2507b443eaaa2e11d9f508ddd32b2644797aba9a2bb3a05e2c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generates the tables in lib/unictype/* and lib/unilbrk/* and lib/uniwbrk/* and
+#lib/unicase/*.
+#
+#Files:
+#lib/gen-uni-tables.c
+#lib/unictype/3level.h
+#lib/unictype/3levelbit.h
+#
+#Depends-on:
+#memcmp
+#strdup
+#strstr-simple
+#
+#configure.ac:
+
+File: ./modules/gendocs
+Hash: 1ae097c885123732a864e6b6aa4c0b718238b0731e9c4cb99d0b7b4f7fdef498
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generate manuals in several formats from Texinfo sources.
+#Can be used for http://www.gnu.org/software/PKG/manual/ directories.
+#
+#Files:
+#build-aux/gendocs.sh
+#doc/gendocs_template
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/getaddrinfo
+Hash: 4ea21d54eba0b7715deb640497d496d33e0b3faac48f48e507a493c8f72584c1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getaddrinfo() function: Get address information.
+#
+#Files:
+#lib/getaddrinfo.c
+#lib/gai_strerror.c
+#m4/getaddrinfo.m4
+#
+#Depends-on:
+#extensions
+#gettext-h
+#inet_ntop
+#snprintf
+#socklen
+#stdbool
+
+File: ./modules/getaddrinfo-tests
+Hash: fbf38dc10bea0805abb458e4fe5eb164f912019c8accd318b0602c748807407d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-getaddrinfo.c
+#
+#Depends-on:
+#inet_ntop
+#strerror
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-getaddrinfo
+#check_PROGRAMS += test-getaddrinfo
+#test_getaddrinfo_LDADD = $(LDADD) @GETADDRINFO_LIB@ @LIBINTL@
+#
+#License:
+
+File: ./modules/getcwd
+Hash: 0cbac895700dae9cb887332e2c1378da64d3f5e28c9e0e7ef14b2d5c518c9b5e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return the current working directory.
+#
+#Files:
+#lib/getcwd.c
+#m4/getcwd-abort-bug.m4
+#m4/getcwd-path-max.m4
+#m4/getcwd.m4
+#
+#Depends-on:
+#mempcpy
+#d-ino
+#dirfd
+#extensions
+#memmove
+
+File: ./modules/getdate
+Hash: 66496eacf4820dd61beaa3d1e2a4d57fff28f6d38e6b705441c557a4fc8cc60d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert a date/time string to linear time.
+#
+#Files:
+#doc/getdate.texi
+#lib/getdate.h
+#lib/getdate.y
+#m4/bison.m4
+#m4/tm_gmtoff.m4
+#m4/getdate.m4
+#
+#Depends-on:
+#c-ctype
+#stdbool
+#gettime
+
+File: ./modules/getdate-tests
+Hash: 15d8cd4ed70f84d94b22ff6639250a7be48496ca2906983c0fb435f8c4373950
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-getdate.c
+#
+#Depends-on:
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-getdate
+#check_PROGRAMS += test-getdate
+#test_getdate_LDADD = $(LDADD) @LIBINTL@ $(LIB_CLOCK_GETTIME)
+
+File: ./modules/getdelim
+Hash: 640a6ff49c32d137d90060c78b7edb504372b25f548950157312afe2bab20c86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read character delimited data from a stream.
+#
+#Files:
+#lib/getdelim.c
+#m4/getdelim.m4
+#
+#Depends-on:
+#extensions
+#stdio
+#stdint
+#realloc-posix
+#errno
+#
+#configure.ac:
+
+File: ./modules/getdelim-tests
+Hash: fb92fd69f5ee7168f5999ba87603a67bf6de4f26c4d6b507733116e2c0955bf5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-getdelim.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-getdelim
+#check_PROGRAMS += test-getdelim
+#MOSTLYCLEANFILES += test-getdelim.txt
+
+File: ./modules/getdomainname
+Hash: 15534654e90cc0a05055499b3f184ea83231869579aadee56cef754fc2e84fa3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getdomainname() function: Return machine's NIS domain name.
+#
+#Files:
+#lib/getdomainname.c
+#m4/getdomainname.m4
+#
+#Depends-on:
+#unistd
+#extensions
+#
+#configure.ac:
+#gl_FUNC_GETDOMAINNAME
+#gl_UNISTD_MODULE_INDICATOR([getdomainname])
+
+File: ./modules/getdtablesize
+Hash: 5bfe587757cde7ec659fe1749bbceb5b633b27c06436652915368bf63e961753
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getdtablesize() function: return maximum number of file descriptors.
+#
+#Files:
+#lib/getdtablesize.c
+#m4/getdtablesize.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_GETDTABLESIZE
+#gl_UNISTD_MODULE_INDICATOR([getdtablesize])
+#
+#Makefile.am:
+
+File: ./modules/getdtablesize-tests
+Hash: d53ad6dc4471cd467019eafff1dbea838798d117d1d76e6255357e81b3225ad7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-getdtablesize.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-getdtablesize
+#check_PROGRAMS += test-getdtablesize
+
+File: ./modules/getgroups
+Hash: f3156029a2fc0d378e3b3cc318b1e2189a75270da7e8b4ee6ad35910f1ea485d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getgroups() function: return the supplementary group IDs of the current process.
+#
+#Files:
+#lib/getgroups.c
+#m4/getgroups.m4
+#
+#Depends-on:
+#xalloc
+#
+#configure.ac:
+#gl_FUNC_GETGROUPS
+#
+#Makefile.am:
+
+File: ./modules/gethostname
+Hash: 543b0ac4337cbfc07bc611d4cb82d2e0f0b920b1c937b3ac3accec87add8e86e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#gethostname() function: Return machine's hostname.
+#
+#Files:
+#lib/gethostname.c
+#m4/gethostname.m4
+#lib/w32sock.h
+#
+#Depends-on:
+#unistd
+#sys_socket
+#errno
+#sockets
+#
+#configure.ac:
+
+File: ./modules/gethostname-tests
+Hash: 87a54a8e6d2660412dd2dc302b1af8f0abe2ae277c0a743d30b0a06a6d0243c0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gethostname.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gethostname
+#check_PROGRAMS += test-gethostname
+#test_gethostname_LDADD = $(LDADD) @GETHOSTNAME_LIB@
+
+File: ./modules/gethrxtime
+Hash: 18f21ea7bee7516934107c1bf3ff2f538b8061161336d749efbb9b9edc71dd11
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Get high resolution real time.
+#
+#Files:
+#lib/xtime.h
+#lib/gethrxtime.c
+#lib/gethrxtime.h
+#m4/gethrxtime.m4
+#m4/longlong.m4
+#
+#Depends-on:
+#clock-time
+#extensions
+#gettime
+#sys_time
+
+File: ./modules/getline
+Hash: 54bc2f289284dc9eb1c9b2084b22a34b488cc1a791918ac6c3e516d279aac1af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read a line from a stream.
+#
+#Files:
+#lib/getline.c
+#m4/getline.m4
+#
+#Depends-on:
+#extensions
+#getdelim
+#stdio
+#
+#configure.ac:
+#gl_FUNC_GETLINE
+#gl_STDIO_MODULE_INDICATOR([getline])
+
+File: ./modules/getline-tests
+Hash: 4fcb95fd42d4d58d8d88a2a3b1eeace1ec0a23bbc3f1d51fbd0498f265907c52
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-getline.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-getline
+#check_PROGRAMS += test-getline
+#MOSTLYCLEANFILES += test-getline.txt
+
+File: ./modules/getloadavg
+Hash: 29a326552ce7dd21e831978b8f5a6a6a60e97d67f0fa53c13ba14e472042aab4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return the current system load averages.
+#
+#Files:
+#lib/getloadavg.c
+#m4/getloadavg.m4
+#
+#Depends-on:
+#stdlib
+#extensions
+#cloexec
+#xalloc
+#c-strtod
+#intprops
+#stdbool
+
+File: ./modules/getlogin_r
+Hash: d6b9543a779b4b7395fdb42613d09962875c10531e9d595979ff6805094bfd66
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getlogin_r() function: Get user name to a buffer allocated by the caller.
+#
+#Files:
+#lib/getlogin_r.c
+#m4/getlogin_r.m4
+#
+#Depends-on:
+#extensions
+#unistd
+#
+#configure.ac:
+#gl_GETLOGIN_R
+#gl_UNISTD_MODULE_INDICATOR([getlogin_r])
+
+File: ./modules/getndelim2
+Hash: 20aebd94a8d4470c01777cf8011c75830bfffcd51bb6e252615a5fe1ed516868
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read a line from a stream, stopping at one of 2 delimiters, with bounded
+#memory allocation.
+#
+#Files:
+#lib/getndelim2.h
+#lib/getndelim2.c
+#m4/getndelim2.m4
+#
+#Depends-on:
+#ssize_t
+#stdbool
+#stdint
+#freadptr
+#freadseek
+
+File: ./modules/getndelim2-tests
+Hash: 5c358342a8b0dd601faad3103e89f3112ae745746fe941fd6e811747b6004d84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-getndelim2.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-getndelim2
+#check_PROGRAMS += test-getndelim2
+#MOSTLYCLEANFILES += test-getndelim2.txt
+
+File: ./modules/getnline
+Hash: 1e2fa5f2d49e70cfb100516d860fa548e5d6d2fbd664ade40f721316e392669d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read a line from a stream, with bounded memory allocation.
+#
+#Files:
+#lib/getnline.h
+#lib/getnline.c
+#m4/getnline.m4
+#
+#Depends-on:
+#getndelim2
+#ssize_t
+#
+#configure.ac:
+#gl_GETNLINE
+
+File: ./modules/getopt
+Hash: 6aa942ee1376a669c17faafaa46854e797d37d5ce008c5cb2bbdb5353ae6c3dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Process command line arguments.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete. Use the module 'getopt-posix' or 'getopt-gnu' instead.
+#
+#Files:
+#
+#Depends-on:
+#getopt-gnu
+#
+#configure.ac:
+
+File: ./modules/getopt-gnu
+Hash: c0a2faa69abd2d01ab9effcb216967e5c6a95e9c1ef3b63af3e33954a427ef3e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#GNU-like getopt() function, getopt_long() function, getopt_long_only() function:
+#process command line arguments.
+#
+#Files:
+#
+#Depends-on:
+#getopt-posix
+#
+#configure.ac:
+#gl_FUNC_GETOPT_GNU
+#gl_MODULE_INDICATOR([getopt-gnu])
+#
+#Makefile.am:
+
+File: ./modules/getopt-posix
+Hash: 94023aa61068c90a835f8d1f5f01d4f063115111e3361f0eee6802469a986327
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getopt() function: process command line arguments.
+#
+#Files:
+#lib/getopt.in.h
+#lib/getopt.c
+#lib/getopt1.c
+#lib/getopt_int.h
+#m4/getopt.m4
+#
+#Depends-on:
+#gettext-h
+#unistd
+#extensions
+
+File: ./modules/getopt-posix-tests
+Hash: 2e1c366e580bb818524a0e2aa2a4336889d8f55d5efac62b93e3b797707b3573
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-getopt.c
+#tests/test-getopt.h
+#tests/test-getopt_long.h
+#
+#Depends-on:
+#unistd
+#unsetenv
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-getopt
+#check_PROGRAMS += test-getopt
+#test_getopt_LDADD = $(LDADD) $(LIBINTL)
+
+File: ./modules/getpagesize
+Hash: 28bd4989723dbfb42bc856a0d722e6f84efd596d196c2394f7e4b552acdfd14a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getpagesize() function: Return memory page size.
+#
+#Files:
+#lib/getpagesize.c
+#m4/getpagesize.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_GETPAGESIZE
+#gl_UNISTD_MODULE_INDICATOR([getpagesize])
+#
+#Makefile.am:
+
+File: ./modules/getpass
+Hash: a137642ab40bae78516bc20e1bc8a9f4607bab8fb3b003eebe021c2185d4ae8a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getpass() function: read a password from /dev/tty.
+#
+#Files:
+#lib/getpass.h
+#lib/getpass.c
+#m4/getpass.m4
+#
+#Depends-on:
+#fseeko
+#getline
+#stdbool
+#strdup-posix
+#
+#configure.ac:
+
+File: ./modules/getpass-gnu
+Hash: 898184539f39b4ae274508a133bfbdd661f07f29a14ae53170b0bca87d4e6a69
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getpass() function: read a password of arbitrary length from /dev/tty.
+#
+#Files:
+#lib/getpass.h
+#lib/getpass.c
+#m4/getpass.m4
+#
+#Depends-on:
+#fseeko
+#getline
+#stdbool
+#
+#configure.ac:
+#gl_FUNC_GETPASS_GNU
+
+File: ./modules/getpeername
+Hash: 4eb79ef9a5dc3f4e01fc808ea788ab8b9e5969dc08afd77028608efe835ee2c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getpeername() function: return information about the remote end of a connected
+#socket.
+#
+#Files:
+#lib/getpeername.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+
+File: ./modules/getsockname
+Hash: 0d541f72e064879de7bd164c2a7a507f9c77946177e0b9ca1231221d52eec6d2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getsockname() function: return information about the local end of a connected
+#socket.
+#
+#Files:
+#lib/getsockname.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+
+File: ./modules/getsockopt
+Hash: 729578766108e66027f2ab148d7a3e857afd416f25b3a55f6817e1144e1a20df
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getsockopt() function: retrieve optional settings on a socket.
+#
+#Files:
+#lib/getsockopt.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#sys_time
+#socklen
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+
+File: ./modules/getsubopt
+Hash: 7707000a7061f9d84f6fca75bd6d1a14e3311454432deb0f7a23aa49e24ff7ba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#getsubopt: Parse comma separated list into words.
+#
+#Files:
+#lib/getsubopt.c
+#m4/getsubopt.m4
+#
+#Depends-on:
+#extensions
+#strchrnul
+#stdlib
+#memchr
+#
+#configure.ac:
+#gl_FUNC_GETSUBOPT
+
+File: ./modules/gettext
+Hash: 47f3c83702b37039afb7e053cd3fb226a906c664ddcd54163d5f2d69008699cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Translate messages to user's native language.
+#
+#Files:
+#m4/codeset.m4
+#m4/gettext.m4
+#m4/glibc2.m4
+#m4/glibc21.m4
+#m4/iconv.m4
+#m4/intdiv0.m4
+#m4/intl.m4
+#m4/intldir.m4
+#m4/intlmacosx.m4
+#m4/intmax.m4
+#m4/inttypes_h.m4
+
+File: ./modules/gettext-h
+Hash: 61b2609fc90e17305b778a6d0772d6c6c678de55b08a136f2142d24b254b2211
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Translate messages to user's native language if the gettext module is also used.
+#
+#Files:
+#lib/gettext.h
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_SUBST([LIBINTL])
+#AC_SUBST([LTLIBINTL])
+#
+#Makefile.am:
+#lib_SOURCES += gettext.h
+
+File: ./modules/gettime
+Hash: 97029b8cd41ef19139e3fa0b0e2f06c85bff0e938fdab92bf14120708d06b5ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return current time, with nanosecond resolution.
+#
+#Files:
+#lib/gettime.c
+#m4/gettime.m4
+#
+#Depends-on:
+#clock-time
+#gettimeofday
+#sys_time
+#timespec
+#extensions
+#
+#configure.ac:
+
+File: ./modules/gettimeofday
+Hash: c96253a3eef177db03721e4219d75b49cfe5fc500875eba69bb58f213768e6bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#gettimeofday() function: return current time.
+#
+#Files:
+#lib/gettimeofday.c
+#m4/gettimeofday.m4
+#
+#Depends-on:
+#sys_time
+#
+#configure.ac:
+#gl_FUNC_GETTIMEOFDAY
+#
+#Makefile.am:
+
+File: ./modules/gettimeofday-tests
+Hash: 01694f0fd480b5922065b6898273f8dc92362de5d40840e7b678b4aab0d1d88c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-gettimeofday.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-gettimeofday
+#check_PROGRAMS += test-gettimeofday
+
+File: ./modules/getugroups
+Hash: ee0e889db47e3653b6b31a320a136819f2640b1cec2ad38bda03493f16b627b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return the group IDs of a user.
+#
+#Files:
+#lib/getugroups.c
+#lib/getugroups.h
+#m4/getugroups.m4
+#
+#Depends-on:
+#errno
+#
+#configure.ac:
+#gl_GETUGROUPS
+#
+#Makefile.am:
+
+File: ./modules/getusershell
+Hash: adb692a9a12f6f1bd33111100461dbe9b8617f1de6af4088ea9f859dc308f5f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return names of valid user shells.
+#
+#Files:
+#lib/getusershell.c
+#m4/getusershell.m4
+#
+#Depends-on:
+#unistd
+#extensions
+#fopen-safer
+#xalloc
+#
+#configure.ac:
+#gl_FUNC_GETUSERSHELL
+
+File: ./modules/git-merge-changelog
+Hash: 70dbf2d3cea053c673d583b8029bb6b4d0fe6b3440168b6dae108dff288653ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#git "merge" driver for GNU style ChangeLog files
+#
+#Files:
+#lib/git-merge-changelog.c
+#
+#Depends-on:
+#getopt-gnu
+#stdbool
+#progname
+#error
+#read-file
+#list
+#array-list
+#linkedhash-list
+
+File: ./modules/git-version-gen
+Hash: 8a867c8b391fa4aa335accd6237237d28f3411883e941fafaab593ae9ba3ba95
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute a version string from a git repository.
+#
+#Files:
+#build-aux/git-version-gen
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/gitlog-to-changelog
+Hash: 40314d9a4353af85f7350b770b6d22f67dd744d731dffc964452e912e34976c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert git log to ChangeLog
+#
+#Files:
+#build-aux/gitlog-to-changelog
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/glob
+Hash: 2d56c6d7c2a3a83baeeeda9b07803cef301fc1446644ada3a5cd3bde2aae3389
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#glob() function: Search for files and directories with paths matching a
+#pattern, with GNU extensions.
+#
+#Files:
+#lib/glob.in.h
+#lib/glob-libc.h
+#lib/glob.c
+#m4/glob.m4
+#
+#Depends-on:
+#alloca
+#d-type
+#dirfd
+#extensions
+
+File: ./modules/glob-tests
+Hash: 03cf87f1618dbf68f3f418df7389c364bb5f9a161903646c1105f37cdc0dd73e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-glob.c
+#
+#Makefile.am:
+#TESTS += test-glob
+#check_PROGRAMS += test-glob
+
+File: ./modules/gnu-make
+Hash: 3dff863165b8f67b1225f41b6069edf968f9ab592ccf7c5a976e5e2d263d93ff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine whether recent-enough GNU Make is being used.
+#
+#Files:
+#m4/gnu-make.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_GNU_MAKE
+#
+#Makefile.am:
+###Sample usage of gnu-make module:
+##if GNU_MAKE
+##     [nicer features that work only with GNU Make]
+
+File: ./modules/gnumakefile
+Hash: 9a8587c6fbb528a86d0d5d078c44d837257a7ba2f6b112640afeb8b0174f1ebb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Add GNU-make specific rules for maintainer use.
+#
+#Files:
+#top/GNUmakefile
+#
+#Depends-on:
+#
+#configure.ac:
+## Autoconf 2.61a.99 and earlier don't support linking a file only
+## in VPATH builds.  But since GNUmakefile is for maintainer use
+## only, it does not matter if we skip the link with older autoconf.
+## Automake 1.10.1 and earlier try to remove GNUmakefile in non-VPATH
+## builds, so use a shell variable to bypass this.
+#GNUmakefile=GNUmakefile
+
+File: ./modules/gnupload
+Hash: 8df2cce6ae5dba597214b339e17c77042936f83cc71b62ff0d031dc35b4881b7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Upload PGP signed files to gnu.org.
+#See http://www.gnu.org/prep/maintain/html_node/Automated-FTP-Uploads.html
+#for more information.
+#
+#Files:
+#build-aux/gnupload
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/gperf
+Hash: e57364714a0eb84488c7de1cff7c1f34f6e4445ab1d92bafb027cce5e01d23e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Provides the GNU gperf build tool.
+#
+#Files:
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#GPERF = gperf
+#
+#Include:
+#
+#License:
+
+File: ./modules/gpl-2.0
+Hash: 45d9ecfdd9adc42b8d1d9e97285aa6a52581209afe1e8cd558ff4d40381b8c39
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Provide the GNU General Public License version 2.0 in Texinfo format.
+#
+#Files:
+#doc/gpl-2.0.texi
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/gpl-3.0
+Hash: 9c69fa69c8530a67e138f906d088373b632397f483ac602d98bc27784b2f1f82
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Provide the GNU General Public License version 3.0 in Texinfo format.
+#
+#Files:
+#doc/gpl-3.0.texi
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/group-member
+Hash: 287c1e70af2c1af183b00ed4c9278b1d6e44f2058e1546594e84d37fcfa90f0b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine whether the current process has the permissions of a given group ID.
+#
+#Files:
+#lib/group-member.h
+#lib/group-member.c
+#m4/group-member.m4
+#
+#Depends-on:
+#extensions
+#xalloc
+#stdbool
+#
+#configure.ac:
+#gl_FUNC_GROUP_MEMBER
+
+File: ./modules/hard-locale
+Hash: 4af0609327db334b7943c3c1ca7f257f1a379b86457b675458b26bc5206c3821
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine whether the current locale is different from the "C" locale.
+#
+#Files:
+#lib/hard-locale.h
+#lib/hard-locale.c
+#m4/hard-locale.m4
+#
+#Depends-on:
+#stdbool
+#strdup
+#
+#configure.ac:
+#gl_HARD_LOCALE
+
+File: ./modules/hash
+Hash: 7c9cf59a3ecec8212435cdc2bf39e8a85262ffc03898f5c0df375bbc2b1284c1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Parametrizable hash table.
+#
+#Files:
+#lib/hash.c
+#lib/hash.h
+#m4/hash.m4
+#
+#Depends-on:
+#bitrotate
+#stdbool
+#stdint
+#xalloc
+#
+#configure.ac:
+
+File: ./modules/hash-pjw
+Hash: b2fc8d2ab52921c2bb7d2fdeb7d7b110701dfc8928cc024b7b24d795f3821609
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compute a hash value for a NUL-terminated string.
+#
+#Files:
+#lib/hash-pjw.h
+#lib/hash-pjw.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += hash-pjw.h hash-pjw.c
+#
+#Include:
+
+File: ./modules/hash-tests
+Hash: 69cca68dc2b29ee3185bc8715e8098b6de1256a1e04cc0cf0ce467e4bf9df5df
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-hash.c
+#
+#Depends-on:
+#hash-pjw
+#inttostr
+#progname
+#stdbool
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-hash
+#check_PROGRAMS += test-hash
+
+File: ./modules/hash-triple
+Hash: 8387198a97ad74f6d110473b7dc339d868521d4d381f04848d764f34fc1a3b76
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Hash functions for file-related triples: name, device, inode.
+#
+#Files:
+#lib/hash-triple.c
+#lib/hash-triple.h
+#
+#Depends-on:
+#hash-pjw
+#same
+#same-inode
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/havelib
+Hash: 6ed2bd7f292a1505559b6970cda7b5cdddfb2eaf9bcf4bdbf3584e31a3792a58
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Macros to search for libraries.
+#
+#Files:
+#m4/lib-ld.m4
+#m4/lib-link.m4
+#m4/lib-prefix.m4
+#build-aux/config.rpath
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/host-os
+Hash: 2ca8eee1360f44a0ca2e082deda103768cfd5de28df764734fa877e8831081fd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Define HOST_OPERATING_SYSTEM to a name for the host operating system.
+#
+#Files:
+#m4/host-os.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_HOST_OS
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/hostent
+Hash: 3605cf4dd9db40c930bb2be7254eb94f4d040781caad218ee4cef1db8d023735
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Library containing gethostent(), sethostent(), endhostent(), gethostbyname(),
+#gethostbyaddr().
+#
+#Files:
+#m4/hostent.m4
+#
+#Depends-on:
+#sys_socket
+#
+#configure.ac:
+#gl_HOSTENT
+#
+#Makefile.am:
+
+File: ./modules/human
+Hash: 12a714241c94ed4db935ade4136e5d6abaccc1cc7a76d5837593b92a0b481ac1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert a number (usually a file size) to a human readable string, possibly
+#with K/M/G suffix.
+#
+#Files:
+#lib/human.h
+#lib/human.c
+#m4/human.m4
+#
+#Depends-on:
+#argmatch
+#error
+#intprops
+#memmove
+#xstrtoumax
+
+File: ./modules/i-ring
+Hash: a2025a042f43e6369d98f1ef2285c0b3f96145160320eb850fb291194b41fa52
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#a simple ring buffer
+#
+#Files:
+#lib/i-ring.h
+#lib/i-ring.c
+#m4/i-ring.m4
+#
+#Depends-on:
+#stdbool
+#verify
+#
+#configure.ac:
+#gl_I_RING
+
+File: ./modules/i-ring-tests
+Hash: aa8013e4bebb1450557c85fe8642779dbcb66a450baa27b4fc8cb05bea82378f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-i-ring.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-i-ring
+#check_PROGRAMS += test-i-ring
+
+File: ./modules/iconv
+Hash: 5743f28fcc9376b84484b295512adbade131b0e3f3744e010a4c5e4bb968904a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character set conversion.
+#
+#Files:
+#m4/iconv.m4
+#
+#Depends-on:
+#havelib
+#
+#configure.ac:
+#AM_ICONV
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/iconv-tests
+Hash: e3ee6183c8df1e98e44f8119d0bf86f7c670c9c6f69e63f6f6a8dccabe4397d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-iconv.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-iconv
+#check_PROGRAMS += test-iconv
+#test_iconv_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/iconv_open
+Hash: d282649433e90da2efd6101790373d8201a650b04610e73e92494812560dc327
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character set conversion.
+#
+#Files:
+#lib/iconv.in.h
+#lib/iconv_open.c
+#lib/iconv_open-aix.gperf
+#lib/iconv_open-hpux.gperf
+#lib/iconv_open-irix.gperf
+#lib/iconv_open-osf.gperf
+#lib/iconv_open-solaris.gperf
+#m4/iconv_h.m4
+#m4/iconv_open.m4
+#
+#Depends-on:
+
+File: ./modules/iconv_open-utf
+Hash: 3d590e3b012d3ffd95d6d0ba4d019a1d1688cc912ffc3320459f6d40a5eaea71
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character set conversion support for UTF-{16,32}{BE,LE} encodings.
+#
+#Files:
+#lib/iconv.c
+#lib/iconv_close.c
+#m4/iconv_open.m4
+#
+#Depends-on:
+#iconv_open
+#stdint
+#unistr/u8-mbtoucr
+#unistr/u8-uctomb
+#
+#configure.ac:
+
+File: ./modules/iconv_open-utf-tests
+Hash: fd21ad8275735d396a0886255e68ec5bc826a64765d295930d87c8f160fe981a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-iconv-utf.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-iconv-utf
+#check_PROGRAMS += test-iconv-utf
+#test_iconv_utf_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/idcache
+Hash: bf6377780d75244cd590fd16245d7d0e0f2af3024a11a6672e463153aaae8774
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Username <--> uid and groupname <--> gid conversions, with cache for speed.
+#
+#Files:
+#lib/idcache.c
+#lib/idcache.h
+#m4/idcache.m4
+#
+#Depends-on:
+#flexmember
+#xalloc
+#
+#configure.ac:
+#gl_IDCACHE
+
+File: ./modules/idpriv-drop
+Hash: 4fbc061a7277c7ef121e7d555af411b28ee7a644d02aabadb9781c68258a8cbc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Drop uid/gid privileges of the current process.
+#
+#Files:
+#lib/idpriv.h
+#lib/idpriv-drop.c
+#m4/idpriv.m4
+#
+#Depends-on:
+#unistd
+#extensions
+#
+#configure.ac:
+#gl_IDPRIV
+
+File: ./modules/idpriv-drop-tests
+Hash: c1ca26e1f33641398eb6a67728afe9bfff3cd2e536d95ed53389915b437d9616
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Notice:
+#The 'idpriv-drop-tests' module asks the user for the root password.  It is
+#therefore not suitable for all environments. To disable it, pass option
+#'--avoid=idpriv-drop-tests' to gnulib-tool.
+#
+#Files:
+#tests/test-idpriv-drop.sh
+#tests/test-idpriv-drop.su.sh
+#tests/test-idpriv-drop.c
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+
+File: ./modules/idpriv-droptemp
+Hash: 2b386ffd9656c15e6ca299823450f14228d48c50394eabae8178bb8145deff00
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Drop uid/gid privileges of the current process temporarily.
+#
+#Files:
+#lib/idpriv.h
+#lib/idpriv-droptemp.c
+#m4/idpriv.m4
+#
+#Depends-on:
+#unistd
+#extensions
+#
+#configure.ac:
+#gl_IDPRIV
+
+File: ./modules/idpriv-droptemp-tests
+Hash: 856200b1bc5faaca7ddd22a8e9bc12473c9ef21064495d4c2f199a9708dc077b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Notice:
+#The 'idpriv-droptemp-tests' module asks the user for the root password.  It is
+#therefore not suitable for all environments. To disable it, pass option
+#'--avoid=idpriv-drop-tests' to gnulib-tool.
+#
+#Files:
+#tests/test-idpriv-droptemp.sh
+#tests/test-idpriv-droptemp.su.sh
+#tests/test-idpriv-droptemp.c
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+
+File: ./modules/ignore-value
+Hash: 01cb567b7c37a63b751b0db8e39d10e42d43586122c25c4cda1ad039c4c6d651
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ignore a value to quiet a compiler warning
+#
+#Files:
+#lib/ignore-value.h
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_REQUIRE([AC_C_INLINE])
+#
+#Makefile.am:
+#lib_SOURCES += ignore-value.h
+#
+#Include:
+
+File: ./modules/imaxabs
+Hash: 1ef4550ca6ac447f4c3bb0caadccb1be0e5b7c34c154e8af77426782ddccde1e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#imaxabs() function: absolute value of 'intmax_t'.
+#
+#Files:
+#lib/imaxabs.c
+#m4/imaxabs.m4
+#
+#Depends-on:
+#inttypes
+#
+#configure.ac:
+#gl_FUNC_IMAXABS
+#gl_INTTYPES_MODULE_INDICATOR([imaxabs])
+#
+#Makefile.am:
+
+File: ./modules/imaxdiv
+Hash: e3737ab82c6a7de4832911f1f20689d2cf1b8b7bc237ff6f4edad45cd3d6bc5b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#imaxdiv() function: division of 'intmax_t'.
+#
+#Files:
+#lib/imaxdiv.c
+#m4/imaxdiv.m4
+#
+#Depends-on:
+#inttypes
+#
+#configure.ac:
+#gl_FUNC_IMAXDIV
+#gl_INTTYPES_MODULE_INDICATOR([imaxdiv])
+#
+#Makefile.am:
+
+File: ./modules/include_next
+Hash: ef238434e1f1c4b19bd45c36eb834acd1326e8f11228964e90c4185f96edab3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Allows wrapping a broken system header in a gnulib replacement.
+#
+#Files:
+#m4/include_next.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/inet_ntop
+Hash: affaffc307885f4e72b74accff106662b2269fc3bba510bb1994fe96aba2ee0f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert internet address from internal to printable, presentable format.
+#
+#Files:
+#lib/inet_ntop.c
+#m4/inet_ntop.m4
+#
+#Depends-on:
+#socklen
+#sys_socket
+#arpa_inet
+#errno
+#netinet_in
+#extensions
+
+File: ./modules/inet_pton
+Hash: fb889c5fd307ac4731674ae2fbe8491cbaad85cc2c02459c9da1a46b3affd318
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert internet address from presentation to internal, binary, format.
+#
+#Files:
+#lib/inet_pton.c
+#m4/inet_pton.m4
+#
+#Depends-on:
+#c-ctype
+#socklen
+#sys_socket
+#arpa_inet
+#errno
+#netinet_in
+#extensions
+
+File: ./modules/inline
+Hash: e68f0e9aa0992be4b2742b86425384bb19370570a9334cbc5d20af92d0f69867
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test for the 'inline' keyword or equivalent.
+#
+#Files:
+#m4/inline.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_INLINE
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/intprops
+Hash: 4dd52de1e4ccde9d76e17816fd1100fa39b248d621739e83d7269bc51e28b57b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Properties of integer types
+#
+#Files:
+#lib/intprops.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"intprops.h"
+
+File: ./modules/inttostr
+Hash: 3111f9fbb7648553c15238818f0777b92a1773f53750df736f1020e2a26c08ba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert integers to printable strings.
+#
+#Files:
+#lib/imaxtostr.c
+#lib/inttostr.c
+#lib/inttostr.h
+#lib/offtostr.c
+#lib/umaxtostr.c
+#lib/uinttostr.c
+#m4/inttostr.m4
+#
+#Depends-on:
+#intprops
+#stdint
+
+File: ./modules/inttypes
+Hash: c68d6d1a790a0e89bf3525b8e87eb5b7d024b7325bcff1b9e1a14e1b14eecf31
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#An <inttypes.h> that nearly conforms to C99.
+#
+#Files:
+#lib/inttypes.in.h
+#m4/inttypes-pri.m4
+#m4/inttypes.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#multiarch
+#stdint
+#
+#configure.ac:
+
+File: ./modules/inttypes-tests
+Hash: 5024693e8f276834d00e0c1e7ea1ef17f0d4395ff3b99ca3ae861a33b0259e37
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-inttypes.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-inttypes
+#check_PROGRAMS += test-inttypes
+#
+#License:
+#LGPL
+
+File: ./modules/ioctl
+Hash: 58f39f944519c79d384684a2023c24326f00214fc07e0ab0e4ecad190d5e0a74
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ioctl() function: issue device specific requests on files, devices, or sockets.
+#
+#Files:
+#lib/ioctl.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_ioctl
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+
+File: ./modules/isapipe
+Hash: 0b7ef6ed36cd605fb0242207f885781f79bc874d42ede4e7d43af296730a71bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a file descriptor is a pipe.
+#
+#Files:
+#lib/isapipe.c
+#lib/isapipe.h
+#m4/isapipe.m4
+#
+#Depends-on:
+#stdbool
+#sys_stat
+#unistd
+#
+#configure.ac:
+#gl_ISAPIPE
+
+File: ./modules/isdir
+Hash: 157e9ec992049c112ab1081cc76dabf014543daf852c04bb89d138ffbe1068db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine whether a directory exists.
+#
+#Files:
+#lib/isdir.c
+#m4/isdir.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_ISDIR
+#
+#Makefile.am:
+#lib_SOURCES += isdir.c
+
+File: ./modules/isfinite
+Hash: cf51321eab12944c643969aba11bcc75e369c30307cfa076fec84a54a5bc8a27
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isfinite macro: test for finite value (zero, subnormal, or normal, and not infinite or NaN).
+#
+#Files:
+#lib/isfinite.c
+#m4/isfinite.m4
+#m4/check-math-lib.m4
+#
+#Depends-on:
+#isnanf-nolibm
+#isnand-nolibm
+#isnanl-nolibm
+#math
+#extensions
+
+File: ./modules/isfinite-tests
+Hash: 428ffa7db1bb8ef1427e4c71efebfcc002ba8226f9bdeebe6e5983570aafd71c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-isfinite.c
+#
+#Depends-on:
+#float
+#
+#configure.ac:
+#gl_FLOAT_EXPONENT_LOCATION
+#gl_DOUBLE_EXPONENT_LOCATION
+#gl_LONG_DOUBLE_EXPONENT_LOCATION
+#
+#Makefile.am:
+#TESTS += test-isfinite
+#check_PROGRAMS += test-isfinite
+#test_isfinite_LDADD = $(LDADD) @ISFINITE_LIBM@
+
+File: ./modules/isinf
+Hash: 1be481512f8b234cf8d794a766c3554821bcdb25566d074356c6db939c055e4c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isinf macro: test for positive or negative infinity
+#
+#Files:
+#lib/isinf.c
+#m4/isinf.m4
+#m4/check-math-lib.m4
+#
+#Depends-on:
+#float
+#math
+#extensions
+#
+#configure.ac:
+#gl_ISINF
+
+File: ./modules/isinf-tests
+Hash: 43c3d0eede218644738b9102bfa574968508dcf376d8cd878c80f7b0e7c102d2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#m4/exponentf.m4
+#m4/exponentd.m4
+#m4/exponentl.m4
+#tests/test-isinf.c
+#
+#Depends-on:
+#float
+#
+#configure.ac:
+#gl_FLOAT_EXPONENT_LOCATION
+#gl_DOUBLE_EXPONENT_LOCATION
+#gl_LONG_DOUBLE_EXPONENT_LOCATION
+#
+#Makefile.am:
+
+File: ./modules/isnan
+Hash: d96619abe51c34797cfcc4a00d89e66dd2f3723beeb57a02a5a7c0893938c46c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isnan macro: test for NaN value.
+#
+#Files:
+#m4/isnan.m4
+#
+#Depends-on:
+#isnanf
+#isnand
+#isnanl
+#math
+#extensions
+#
+#configure.ac:
+#gl_ISNAN
+
+File: ./modules/isnan-tests
+Hash: 323cc464c9a21025066cb117c8fcbd7bcd6247841219f9002be23284275cd344
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-isnan.c
+#tests/nan.h
+#
+#Depends-on:
+#float
+#
+#configure.ac:
+#gl_FLOAT_EXPONENT_LOCATION
+#gl_DOUBLE_EXPONENT_LOCATION
+#gl_LONG_DOUBLE_EXPONENT_LOCATION
+#
+#Makefile.am:
+#TESTS += test-isnan
+#check_PROGRAMS += test-isnan
+
+File: ./modules/isnand
+Hash: 890d77c9c2ea51fe7e2c36571771971507c53a94eccb394ac84bd0bb5c967493
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isnand() function: test for NaN.
+#
+#Files:
+#lib/isnand.c
+#lib/isnan.c
+#lib/float+.h
+#m4/exponentd.m4
+#m4/isnand.m4
+#
+#Depends-on:
+#math
+#fpieee
+#memcmp
+
+File: ./modules/isnand-nolibm
+Hash: 2f2cd905c0df813b2dad1ab5ec94cd0bf3ac620899161883844620e919dd23ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isnand() function: test for NaN, without requiring libm.
+#
+#Files:
+#lib/isnand-nolibm.h
+#lib/isnand.c
+#lib/isnan.c
+#lib/float+.h
+#m4/exponentd.m4
+#m4/isnand.m4
+#
+#Depends-on:
+#fpieee
+#memcmp
+
+File: ./modules/isnand-nolibm-tests
+Hash: 9d7ab59e02aa291a0beb916911d9030dcf4095d8ee1e8871b8cba14ce028acbc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-isnand-nolibm.c
+#tests/test-isnand.h
+#tests/nan.h
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_DOUBLE_EXPONENT_LOCATION
+#
+#Makefile.am:
+#TESTS += test-isnand-nolibm
+#check_PROGRAMS += test-isnand-nolibm
+
+File: ./modules/isnand-tests
+Hash: e2bbe6cbf7399d4890b3bb3906f0867d6bfd7f3eef57a8a195051eae59d69cfc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-isnand.c
+#tests/test-isnand.h
+#tests/nan.h
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_DOUBLE_EXPONENT_LOCATION
+#
+#Makefile.am:
+#TESTS += test-isnand
+#check_PROGRAMS += test-isnand
+#test_isnand_LDADD = $(LDADD) @ISNAND_LIBM@
+
+File: ./modules/isnanf
+Hash: 85d8cebc9e5c0aa2bd4b68ce6612f8749215483a919a74de686fed1d3586df36
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isnanf() function: test for NaN.
+#
+#Files:
+#lib/isnanf.c
+#lib/isnan.c
+#lib/float+.h
+#m4/exponentf.m4
+#m4/isnanf.m4
+#
+#Depends-on:
+#math
+#fpieee
+#memcmp
+
+File: ./modules/isnanf-nolibm
+Hash: f97947dc0edbd13b8d64a0b5b7a384fcbd2fc2258160d87f3b67589da6e401e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isnanf() function: test for NaN, without requiring libm.
+#
+#Files:
+#lib/isnanf-nolibm.h
+#lib/isnanf.c
+#lib/isnan.c
+#lib/float+.h
+#m4/exponentf.m4
+#m4/isnanf.m4
+#
+#Depends-on:
+#fpieee
+#memcmp
+
+File: ./modules/isnanf-nolibm-tests
+Hash: 21a8932e3abc2149b5fffebf3051a0f125e57ebc47b10d4acbdca78994c93d4b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-isnanf-nolibm.c
+#tests/test-isnanf.h
+#tests/nan.h
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FLOAT_EXPONENT_LOCATION
+#
+#Makefile.am:
+#TESTS += test-isnanf-nolibm
+#check_PROGRAMS += test-isnanf-nolibm
+
+File: ./modules/isnanf-tests
+Hash: ae8f63af140ced8d91af05afd8e9069faf676f5dbfdd979cc1fe0cf3abbd975a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-isnanf.c
+#tests/test-isnanf.h
+#tests/nan.h
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FLOAT_EXPONENT_LOCATION
+#
+#Makefile.am:
+#TESTS += test-isnanf
+#check_PROGRAMS += test-isnanf
+#test_isnanf_LDADD = $(LDADD) @ISNANF_LIBM@
+
+File: ./modules/isnanl
+Hash: 70b7c907aee78531a9a20fcd179bd294a57a33e4e9b58ca8da9faf56e330b973
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isnanl() function: test for NaN.
+#
+#Files:
+#lib/isnanl.c
+#lib/isnan.c
+#lib/float+.h
+#m4/exponentl.m4
+#m4/isnanl.m4
+#
+#Depends-on:
+#math
+#float
+#fpieee
+#memcmp
+
+File: ./modules/isnanl-nolibm
+Hash: ff91e53b92af8ddf541f10e179d0c519f9a527a808361f95bdfd8d30de7b8e27
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#isnanl() function: test for NaN, without requiring libm.
+#
+#Files:
+#lib/isnanl-nolibm.h
+#lib/isnanl.c
+#lib/isnan.c
+#lib/float+.h
+#m4/exponentl.m4
+#m4/isnanl.m4
+#
+#Depends-on:
+#float
+#fpieee
+#memcmp
+
+File: ./modules/isnanl-nolibm-tests
+Hash: a711622ef8634e0ea0695340ae1eb040c290a40df106b0a777be962d6c1ac724
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-isnanl-nolibm.c
+#tests/test-isnanl.h
+#tests/nan.h
+#
+#Depends-on:
+#float
+#
+#configure.ac:
+#gl_LONG_DOUBLE_EXPONENT_LOCATION
+#
+#Makefile.am:
+#TESTS += test-isnanl-nolibm
+#check_PROGRAMS += test-isnanl-nolibm
+
+File: ./modules/isnanl-tests
+Hash: 38bbc53b8d20ba40b2b33ba9f5b5c9655dc9cfb9d39a72c9e537462c742253fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-isnanl.c
+#tests/test-isnanl.h
+#tests/nan.h
+#
+#Depends-on:
+#float
+#
+#configure.ac:
+#gl_LONG_DOUBLE_EXPONENT_LOCATION
+#
+#Makefile.am:
+#TESTS += test-isnanl
+#check_PROGRAMS += test-isnanl
+#test_isnanl_LDADD = $(LDADD) @ISNANL_LIBM@
+
+File: ./modules/javacomp
+Hash: f5d2862a42c8dc73c5c6346d7028b13772b1e003a92b0ee53f3d346f3c5ee05d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compile a Java program.
+#
+#Files:
+#lib/javacomp.h
+#lib/javacomp.c
+#
+#Depends-on:
+#stdbool
+#unistd
+#javaversion
+#execute
+#pipe
+#wait-process
+#classpath
+
+File: ./modules/javacomp-script
+Hash: 8f0c47a545c9b5fda1c11fc817ebb2606b6b4889188ceff9ea3ee56b7917c068
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Script to compile a Java program.
+#
+#Files:
+#build-aux/javacomp.sh.in
+#m4/javacomp.m4
+#
+#Depends-on:
+#
+#configure.ac:
+## You need to invoke gt_JAVACOMP yourself, possibly with arguments.
+#AC_CONFIG_FILES([javacomp.sh:build-aux/javacomp.sh.in])
+#
+#Makefile.am:
+
+File: ./modules/javaexec
+Hash: a045d08a3d42fe62932696f986ed8e27cf2f86a37a136f0e99ab17bdca35caf1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Execute a Java program.
+#
+#Files:
+#lib/javaexec.h
+#lib/javaexec.c
+#
+#Depends-on:
+#stdbool
+#execute
+#classpath
+#xsetenv
+#sh-quote
+#xconcat-filename
+#xalloc
+
+File: ./modules/javaexec-script
+Hash: 91380c5aae5cf1ecbdecf6718ae605ce7fdf877bc69cc4ade365d15d87b58fbc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Execute a Java program.
+#
+#Files:
+#build-aux/javaexec.sh.in
+#m4/javaexec.m4
+#
+#Depends-on:
+#
+#configure.ac:
+## You need to invoke gt_JAVAEXEC yourself, possibly with arguments.
+#AC_CONFIG_FILES([javaexec.sh:build-aux/javaexec.sh.in])
+#
+#Makefile.am:
+
+File: ./modules/javaversion
+Hash: 001497a574e6daee08459695891485e8d2b842b95151bf7940609e0cd6406aef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine the Java version supported by javaexec.
+#
+#Files:
+#lib/javaversion.h
+#lib/javaversion.c
+#lib/javaversion.java
+#lib/javaversion.class
+#
+#Depends-on:
+#javaexec
+#stdbool
+#pipe
+#wait-process
+#getline
+
+File: ./modules/lchmod
+Hash: c5ff9a1c59876082ed7a323077f4b0c70f0718e16c9df8a5e516b45a46232957
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#lchmod that is actually chmod (!) on hosts lacking lchmod
+#
+#Files:
+#m4/lchmod.m4
+#
+#Depends-on:
+#sys_stat
+#extensions
+#
+#configure.ac:
+#gl_FUNC_LCHMOD
+#gl_SYS_STAT_MODULE_INDICATOR([lchmod])
+#
+#Makefile.am:
+
+File: ./modules/lchown
+Hash: 73d784fb6f58cd6916eaba7ad37343c2ab0374c1d5c97045996bb25d0ab4b112
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#lchown() function: change ownership of a file, without following symlinks.
+#
+#Files:
+#lib/lchown.c
+#m4/lchown.m4
+#
+#Depends-on:
+#chown
+#errno
+#sys_stat
+#unistd
+#
+#configure.ac:
+#gl_FUNC_LCHOWN
+
+File: ./modules/ldd
+Hash: a95b7d506da9ac5c6c5381302daa766f328bc1e539649b66ef269f834d6144c0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Command to determine the dynamically linked dependencies of a program.
+#
+#Files:
+#build-aux/ldd.sh.in
+#m4/ldd.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_LDD
+#AC_CONFIG_FILES([ldd.sh:build-aux/ldd.sh.in])
+#
+#Makefile.am:
+
+File: ./modules/ldexpl
+Hash: 1eecef8e14bf233071ac5095363e0eb8461cfa6a637ff22947dbf46c8bb2edb1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#ldexpl() function: multiply a 'long double' by a power of 2.
+#
+#Files:
+#lib/ldexpl.c
+#m4/ldexpl.m4
+#
+#Depends-on:
+#math
+#isnanl
+#fpucw
+#
+#configure.ac:
+#gl_FUNC_LDEXPL
+#gl_MATH_MODULE_INDICATOR([ldexpl])
+
+File: ./modules/ldexpl-tests
+Hash: 375f2b202d4dd039a51fcc894830f31e1ad5e73a9c275c866b1b9a9b50c78d21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-ldexpl.c
+#tests/nan.h
+#
+#Depends-on:
+#fpucw
+#isnanl-nolibm
+#signbit
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ldexpl
+#check_PROGRAMS += test-ldexpl
+
+File: ./modules/lgpl-2.1
+Hash: a9edb785a05a6b1ec373a751672098124e43569e0c1d21fe88c96dfee8dee24a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Provide the GNU Lesser General Public License version 2.1 in Texinfo format.
+#
+#Files:
+#doc/lgpl-2.1.texi
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/lib-ignore
+Hash: f0ef812765bcee8aaebbd26983e651cb58635ffe415701154c7717d07cdd1fff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#If possible, ignore libraries that are not depended on.
+#
+#Files:
+#m4/lib-ignore.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_IGNORE_UNUSED_LIBRARIES
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/lib-msvc-compat
+Hash: 78f5b89a071a2a7756ad84e124da6fb544db5927cd67a327546d426c3fe7da42
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Macros to test whether LD support --output-def.
+#
+#Files:
+#m4/ld-output-def.m4
+#
+#configure.ac:
+#gl_LD_OUTPUT_DEF
+#
+#License:
+#unlimited
+#
+#Maintainer:
+#Simon Josefsson
+
+File: ./modules/lib-symbol-versions
+Hash: 3bd963fe132714834fc7b6cd38e87a0c1307f5e55c2a8d793e9aa727bddf00c4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Macros to test whether LD support --linker-script.
+#
+#Files:
+#m4/ld-version-script.m4
+#
+#configure.ac:
+#gl_LD_VERSION_SCRIPT
+#
+#License:
+#unlimited
+#
+#Maintainer:
+#Simon Josefsson
+
+File: ./modules/lib-symbol-visibility
+Hash: 09316bfaa21a902c0c723051b504b9cb539fdf667a4c58a97d5f24b0255988ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Control of symbols exported by shared libraries.
+#
+#Files:
+#m4/visibility.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_VISIBILITY
+#
+#Makefile.am:
+## The value of $(CFLAG_VISIBILITY) needs to be added to the CFLAGS for the
+## compilation of all sources that make up the library. This line here does it
+## only for the gnulib part of it. The developer is responsible for adding
+
+File: ./modules/libsigsegv
+Hash: 69198c8c2967b4b257bb2a7e1fb49dc825a90c620b2af5c556e1ba2eceb813a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Handle page faults in user mode.
+#
+#Files:
+#m4/libsigsegv.m4
+#
+#Depends-on:
+#havelib
+#
+#configure.ac:
+#gl_LIBSIGSEGV
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/libunistring
+Hash: 6d47f24075b006c293890df3354724bb1a1b1e5236f271d928e663274e9a185d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Unicode string functions.
+#
+#Files:
+#m4/libunistring.m4
+#
+#Depends-on:
+#havelib
+#iconv
+#
+#configure.ac:
+#gl_LIBUNISTRING
+#
+#Makefile.am:
+
+File: ./modules/linebuffer
+Hash: af6d4721c553c8a0dce296627dd9dee715308c58ec0e91d885048328638731b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read a line from a stream.
+#
+#Files:
+#lib/linebuffer.h
+#lib/linebuffer.c
+#
+#Depends-on:
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += linebuffer.h linebuffer.c
+
+File: ./modules/link
+Hash: d76ac610c3bb48884f7f7c21365f236d63d4a3f2bb95a5d61dfe26c49d6a5522
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#link() function: create a new link for an existing file
+#
+#Files:
+#lib/link.c
+#m4/link.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_LINK
+#gl_UNISTD_MODULE_INDICATOR([link])
+#
+#Makefile.am:
+
+File: ./modules/link-follow
+Hash: c2b95973ab0851d36d4937aa53eeb78f89cb1f52e3561608754d5760f2d943fb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine whether link("symlink", "foo") follows the symlink.
+#
+#Files:
+#m4/link-follow.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_LINK_FOLLOWS_SYMLINK
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/link-tests
+Hash: 60b43b16315c847cb76698db0d6fedd157a90ecb34c6cd3040e8c7163071273b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-link.sh
+#tests/test-link.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-link.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-link
+
+File: ./modules/link-warning
+Hash: 2d0b021e00c5fcfae3e0e7b87147045e3520cba21361bf6da6f8cebfb06619f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A C macro for emitting link time warnings.
+#
+#Files:
+#build-aux/link-warning.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#LINK_WARNING_H=$(top_srcdir)/build-aux/link-warning.h
+#
+#Include:
+
+File: ./modules/linked-list
+Hash: e73533e72bcfefd003bf35ed67272bf03cec4eaa0eb607d05d4f545f45c42d3a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type implemented by a linked list.
+#
+#Files:
+#lib/gl_linked_list.h
+#lib/gl_linked_list.c
+#lib/gl_anylinked_list1.h
+#lib/gl_anylinked_list2.h
+#
+#Depends-on:
+#list
+#xalloc
+#
+#configure.ac:
+
+File: ./modules/linked-list-tests
+Hash: e3f1ae2882d1cc5a5421d7675fb7d7bc459998a8cb506f17e49d3fdf6fa1ba1e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-linked_list.c
+#
+#Depends-on:
+#array-list
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-linked_list
+#check_PROGRAMS += test-linked_list
+#test_linked_list_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/linkedhash-list
+Hash: d872289c85eb9f6b0928256d67b8aa85051f16f378aa3a05158fcff2f0e98128
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type implemented by a hash table with a linked list.
+#
+#Files:
+#lib/gl_linkedhash_list.h
+#lib/gl_linkedhash_list.c
+#lib/gl_anyhash_list1.h
+#lib/gl_anyhash_list2.h
+#lib/gl_anylinked_list1.h
+#lib/gl_anylinked_list2.h
+#
+#Depends-on:
+#list
+#stdint
+#xalloc
+
+File: ./modules/linkedhash-list-tests
+Hash: 7517e9fce7957429ee92772cb67d2ad4f33a1a88f15069ffa311da6266bc80fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-linkedhash_list.c
+#
+#Depends-on:
+#array-list
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-linkedhash_list
+#check_PROGRAMS += test-linkedhash_list
+#test_linkedhash_list_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/list
+Hash: 8c081d10c9dafc22e2969bb8017117459848426a43b7920631c075cf2187fdb7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Abstract sequential list data type.
+#
+#Files:
+#lib/gl_list.h
+#lib/gl_list.c
+#m4/gl_list.m4
+#
+#Depends-on:
+#inline
+#stdbool
+#
+#configure.ac:
+#gl_LIST
+
+File: ./modules/listen
+Hash: 87d7a460a8afb814291b434acb8c112cbc16135dd458fbe865e80210fd2fab9f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#listen() function: make a server socket ready for accepting connections.
+#
+#Files:
+#lib/listen.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+#  AC_LIBOBJ([listen])
+
+File: ./modules/localcharset
+Hash: 9a7795a7bbc7dc93ee9b150a7e5e11bf1f1b65c6ffe35a782c5a4ef35da5d5b0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return current locale's character encoding.
+#
+#Notice:
+#If your package's tests make use of the locale_charset() function directly or
+#indirectly, you may need to define the CHARSETALIASDIR environment variable,
+#so that "make check" works before "make install". In Makefile.am syntax:
+#TESTS_ENVIRONMENT += @LOCALCHARSET_TESTS_ENVIRONMENT@
+#
+#Files:
+#lib/localcharset.h
+#lib/localcharset.c
+#lib/config.charset
+#lib/ref-add.sin
+#lib/ref-del.sin
+
+File: ./modules/locale
+Hash: 62640c673f040c8d363336c9bb4943a751e0bb6b84307665771edd7148702d82
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <locale.h> that conforms to POSIX.
+#
+#Files:
+#lib/locale.in.h
+#m4/locale_h.m4
+#
+#Depends-on:
+#include_next
+#stddef
+#
+#configure.ac:
+#gl_LOCALE_H
+#
+#Makefile.am:
+
+File: ./modules/locale-tests
+Hash: 8c15ac5661701bb94a2899da41deb74e7b266eaee1f143b8f2b3b00b3dbe10cd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-locale.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-locale
+#check_PROGRAMS += test-locale
+#
+#License:
+#LGPL
+
+File: ./modules/localename
+Hash: 5d708db5de4ea776bc0e5fe18ce3af0f2a882f5d46a2da433aab650a21ea5166
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return current locale's name, according to glibc naming conventions.
+#
+#Files:
+#lib/localename.h
+#lib/localename.c
+#m4/localename.m4
+#m4/intlmacosx.m4
+#m4/lcmessage.m4
+#
+#Depends-on:
+#strdup
+#
+#configure.ac:
+#gl_LOCALENAME
+
+File: ./modules/localename-tests
+Hash: 90c131b8da15729f87254795a59b6a9cd58bba25c26337369e8ade8720c4681d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-localename.c
+#
+#Depends-on:
+#locale
+#setenv
+#unsetenv
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-localename
+#check_PROGRAMS += test-localename
+#test_localename_LDADD = $(LDADD) @INTL_MACOSX_LIBS@
+
+File: ./modules/lock
+Hash: d32728a4a53a05cc2adb5dde77071e3ca8e031217e8f5f498ef6cd08a2df45d2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locking in multithreaded situations.
+#
+#Files:
+#lib/glthread/lock.h
+#lib/glthread/lock.c
+#m4/lock.m4
+#
+#Depends-on:
+#threadlib
+#
+#configure.ac:
+#gl_LOCK
+#
+#Makefile.am:
+
+File: ./modules/lock-tests
+Hash: c53261432275415bd92f0a7f34342121673e632e6c06232fdf77e83416df854b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-lock.c
+#
+#Depends-on:
+#thread
+#yield
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-lock
+#check_PROGRAMS += test-lock
+#test_lock_LDADD = $(LDADD) @LIBMULTITHREAD@ @YIELD_LIB@
+
+File: ./modules/long-options
+Hash: 658d3bb72c97742fea053bf81913c1670b2596b5edfaeda39e36a45365453617
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Handle --help and --version options.
+#
+#Files:
+#lib/long-options.h
+#lib/long-options.c
+#m4/long-options.m4
+#
+#Depends-on:
+#getopt-gnu
+#version-etc
+#
+#configure.ac:
+#gl_LONG_OPTIONS
+
+File: ./modules/longlong
+Hash: 85d50b391ae59405db94f0146e7da8d3626ee7db8665b3924ee41f024cd68b20
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Define HAVE_LONG_LONG_INT if 'long long int' works.
+#
+#Files:
+#m4/longlong.m4
+#
+#configure.ac:
+#AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
+#AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
+#
+#License:
+#GPL
+#
+#Maintainer:
+#Ben Pfaff
+
+File: ./modules/lseek
+Hash: b40cd1f1ad9d544c121fd5aed87bce564f227a9bc319129683186851cf381549
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#lseek() function: Reposition a file descriptor.
+#
+#Files:
+#lib/lseek.c
+#m4/lseek.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_LSEEK
+#gl_UNISTD_MODULE_INDICATOR([lseek])
+#
+#Makefile.am:
+
+File: ./modules/lseek-tests
+Hash: 76cdab40960f704471988f57f8823d4597fc1d641d6f13ad1dfddab6e0ab3060
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-lseek.c
+#tests/test-lseek.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-lseek.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-lseek
+
+File: ./modules/lstat
+Hash: 204ca5f19461cd6e2d1b53f28f85f6f1a64e53a603cb9c38ee18603d6a4c522b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#lstat() function: return information about a file or symbolic link.
+#
+#Files:
+#lib/lstat.c
+#m4/lstat.m4
+#
+#Depends-on:
+#sys_stat
+#
+#configure.ac:
+#gl_FUNC_LSTAT
+#gl_SYS_STAT_MODULE_INDICATOR([lstat])
+#
+#Makefile.am:
+
+File: ./modules/lstat-tests
+Hash: ce99db29f0af89b22f904eb44c8e0e9f398a40307993cabf8613800d2e7fa435
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-lstat.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-lstat
+#check_PROGRAMS += test-lstat
+
+File: ./modules/maintainer-makefile
+Hash: 60705adb407b7f67ba3ebfe3969da4cce7d40eb61c37e1662410706075c15ca7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Helper GNUmakefile with syntax checks, build improvements, etc.
+#
+#Files:
+#top/maint.mk
+#
+#Depends-on:
+#gnumakefile
+#useless-if-before-free
+#vc-list-files
+#
+#License:
+#GPLed build tool
+#
+#Maintainer:
+
+File: ./modules/malloc
+Hash: ade45be34202b5963d4753bc6e04c9ac17f54cbebfdae9ae552c85307937edc4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#malloc() function that is glibc compatible.
+#
+#Files:
+#lib/malloc.c
+#
+#Depends-on:
+#malloc-posix
+#
+#configure.ac:
+#AC_FUNC_MALLOC
+#AC_DEFINE([GNULIB_MALLOC_GNU], 1, [Define to indicate the 'malloc' module.])
+#
+#Makefile.am:
+
+File: ./modules/malloc-posix
+Hash: 0ebfd6b7bcb239f9d43efe86dbe2080ae9ea23b3a1d344f9133e6a47f37be644
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#malloc() function: allocate memory with indefinite extent.
+#
+#Files:
+#lib/malloc.c
+#m4/malloc.m4
+#
+#Depends-on:
+#stdlib
+#
+#configure.ac:
+#gl_FUNC_MALLOC_POSIX
+#gl_STDLIB_MODULE_INDICATOR([malloc-posix])
+#
+#Makefile.am:
+
+File: ./modules/malloca
+Hash: 95d9a7ade8a1341ea736d6554581001df279e83d97ac38aa9310b9e0540ab590
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Safe automatic memory allocation.
+#
+#Files:
+#lib/malloca.h
+#lib/malloca.c
+#lib/malloca.valgrind
+#m4/malloca.m4
+#m4/eealloc.m4
+#m4/longlong.m4
+#
+#Depends-on:
+#alloca-opt
+#
+#configure.ac:
+
+File: ./modules/malloca-tests
+Hash: 7ee05e7d3ccd849878c85347bd1b790c5b3e486bafe6fddd5af01ede76de5618
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-malloca.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-malloca
+#check_PROGRAMS += test-malloca
+
+File: ./modules/manywarnings
+Hash: 304df00b2664848d0ceb677623e4a5bd0d53713f61b7fffda64701b7b7af69a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Helper M4 functions to help work out a set of warning parameters to use.
+#
+#Files:
+#m4/manywarnings.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#License:
+#unlimited
+#
+#Maintainer:
+#Simon Josefsson
+
+File: ./modules/math
+Hash: 8b1b40e4cc6780fb6f1f06dea275392ac8b7c12f6048cbc0a103a91742f42eff
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <math.h>.
+#
+#Files:
+#lib/math.in.h
+#m4/math_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#
+#configure.ac:
+#gl_MATH_H
+#
+#Makefile.am:
+
+File: ./modules/math-tests
+Hash: 2ac6678a1c6562309c662ba89b24eabbbfb6c95872259f43475875770df31822
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-math.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-math
+#check_PROGRAMS += test-math
+#
+#License:
+#LGPL
+
+File: ./modules/mathl
+Hash: 55e37b79ace2edb7f8bff4005f788d346d2d19580dba0a676d5c1ba235a2f7a2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#C99 functions for transcendental functions with long double arguments.
+#
+#Files:
+#lib/acosl.c
+#lib/asinl.c
+#lib/atanl.c
+#lib/cosl.c
+#lib/expl.c
+#lib/logl.c
+#lib/sincosl.c
+#lib/sinl.c
+#lib/sqrtl.c
+#lib/tanl.c
+#lib/trigl.c
+
+File: ./modules/mbchar
+Hash: 8e44c7bc26640724217c9e83cacb0f53e18ba447a7a5b5715699675b80129b89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Multibyte character data type.
+#
+#Files:
+#lib/mbchar.h
+#lib/mbchar.c
+#m4/mbchar.m4
+#
+#Depends-on:
+#extensions
+#stdbool
+#wchar
+#wctype
+#wcwidth
+#memcmp
+
+File: ./modules/mbfile
+Hash: 589ec474965c06bdcf55767d77aff0c1f8929bd6dac28640abf6e3069950d270
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Multibyte character I/O.
+#
+#Files:
+#lib/mbfile.h
+#m4/mbfile.m4
+#m4/mbrtowc.m4
+#
+#Depends-on:
+#mbchar
+#mbrtowc
+#mbsinit
+#wchar
+#stdbool
+
+File: ./modules/mbiter
+Hash: 1bc042309e60126c4f355a2c66e24f82dddf5693e1801ccaf3af73d4e3af54fb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Iterating through multibyte strings.
+#
+#Files:
+#lib/mbiter.h
+#m4/mbiter.m4
+#m4/mbrtowc.m4
+#
+#Depends-on:
+#mbchar
+#mbrtowc
+#mbsinit
+#wchar
+#stdbool
+
+File: ./modules/mbmemcasecmp
+Hash: 274d0d3204c470cc4af97e2d58bd63eba9152774fbc4e5583c95f36beaaa590e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbmemcasecmp() function: case-insensitive memory area comparison.
+#
+#Files:
+#lib/mbmemcasecmp.h
+#lib/mbmemcasecmp.c
+#
+#Depends-on:
+#mbiter
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += mbmemcasecmp.c
+
+File: ./modules/mbmemcasecmp-tests
+Hash: e0955681a6f452ae84df04c93288f73e602601d5f17268d062a2790a580fd148
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbmemcasecmp1.sh
+#tests/test-mbmemcasecmp2.sh
+#tests/test-mbmemcasecmp3.sh
+#tests/test-mbmemcasecmp.c
+#tests/test-mbmemcasecmp.h
+#m4/locale-fr.m4
+#m4/locale-tr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gt_LOCALE_FR
+
+File: ./modules/mbmemcasecoll
+Hash: 9c1c9eb9be6af270534bc8cfa727ae2c6d60851192fff322e4cc09e6a3589897
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbmemcasecoll() function: locale dependent case-insensitive memory area
+#comparison.
+#
+#Files:
+#lib/mbmemcasecoll.h
+#lib/mbmemcasecoll.c
+#
+#Depends-on:
+#stdbool
+#malloca
+#mbrtowc
+#wcrtomb
+#memcmp2
+#memcoll
+
+File: ./modules/mbmemcasecoll-tests
+Hash: 99f2223fb2ddd23bed09476c7d3ff244787c97fb0b2f7e9272d4ac9d7d5fcb6c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbmemcasecoll1.sh
+#tests/test-mbmemcasecoll2.sh
+#tests/test-mbmemcasecoll3.sh
+#tests/test-mbmemcasecoll.c
+#tests/test-mbmemcasecmp.h
+#m4/locale-fr.m4
+#m4/locale-tr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gt_LOCALE_FR
+
+File: ./modules/mbrlen
+Hash: a4fab82598b347aa8dcfe636d8e69bb4ae3dec7c9d6156573e4bf18dd0704733
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbrlen() function: recognize multibyte character.
+#
+#Files:
+#lib/mbrlen.c
+#m4/mbrlen.m4
+#m4/mbstate_t.m4
+#
+#Depends-on:
+#wchar
+#mbrtowc
+#extensions
+#
+#configure.ac:
+#gl_FUNC_MBRLEN
+
+File: ./modules/mbrtowc
+Hash: 9e506818e3eaa2fb67a7bb992ac88548f4c0fe2059f090dac942addb5ee67cbf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbrtowc() function: convert multibyte character to wide character.
+#
+#Files:
+#lib/mbrtowc.c
+#m4/mbrtowc.m4
+#m4/mbstate_t.m4
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#wchar
+#mbsinit
+
+File: ./modules/mbrtowc-tests
+Hash: 67740e495f650326d2e4197eaa74148cf73c74c8bcbe5d10a1a58c95fa0d1711
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbrtowc1.sh
+#tests/test-mbrtowc2.sh
+#tests/test-mbrtowc3.sh
+#tests/test-mbrtowc4.sh
+#tests/test-mbrtowc.c
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#mbsinit
+#wctob
+
+File: ./modules/mbscasecmp
+Hash: 8a6d10dfad56dd17935f68ab1c85639e39fb3108171e80325ca5fdde464385bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbscasecmp() function: case-insensitive string comparison.
+#
+#Files:
+#lib/mbscasecmp.c
+#
+#Depends-on:
+#mbuiter
+#string
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbscasecmp])
+#
+#Makefile.am:
+#lib_SOURCES += mbscasecmp.c
+
+File: ./modules/mbscasecmp-tests
+Hash: a8656b8257b5f07824dd94d4816aae9e1ac35774c23d356c070accfe077bd43f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbscasecmp.sh
+#tests/test-mbscasecmp.c
+#m4/locale-tr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_TR_UTF8
+#
+#Makefile.am:
+#TESTS += test-mbscasecmp.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_TR_UTF8='@LOCALE_TR_UTF8@'
+#check_PROGRAMS += test-mbscasecmp
+
+File: ./modules/mbscasestr
+Hash: 3c0467e82de3159f29fb87f840e6025b766c0b8a3b49a439a11c76d72f13c84e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbscasestr() function: case-insensitive search for a substring in a string.
+#
+#Files:
+#lib/mbscasestr.c
+#lib/str-kmp.h
+#
+#Depends-on:
+#mbuiter
+#stdbool
+#string
+#mbslen
+#malloca
+#strnlen
+
+File: ./modules/mbscasestr-tests
+Hash: 9ab8f2fe62f4f0f100ab7833c40228d531354d181fa7dcc24f1b45f99854efbf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbscasestr1.c
+#tests/test-mbscasestr2.sh
+#tests/test-mbscasestr2.c
+#tests/test-mbscasestr3.sh
+#tests/test-mbscasestr3.c
+#tests/test-mbscasestr4.sh
+#tests/test-mbscasestr4.c
+#m4/locale-fr.m4
+#m4/locale-tr.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+
+File: ./modules/mbschr
+Hash: 91f2c8d1b40a5c710fdefd333ee7f4cb0740e66bd907d64531689e910a8a8a4f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbschr() function: search a string for a character.
+#
+#Files:
+#lib/mbschr.c
+#
+#Depends-on:
+#mbuiter
+#string
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbschr])
+#
+#Makefile.am:
+#lib_SOURCES += mbschr.c
+
+File: ./modules/mbschr-tests
+Hash: b76887bc9b1e8cf5ec85061ed66d3470216d1fccf2b9cc5c4c994c1b84dc5a0a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbschr.sh
+#tests/test-mbschr.c
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_ZH_CN
+#
+#Makefile.am:
+#TESTS += test-mbschr.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_ZH_CN='@LOCALE_ZH_CN@'
+#check_PROGRAMS += test-mbschr
+
+File: ./modules/mbscspn
+Hash: e78fd011a2739814457f94fd0f0d2f7a23668261b0191c9df1ddd805dc92b8d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbscspn() function: search a string for any of a set of characters.
+#
+#Files:
+#lib/mbscspn.c
+#
+#Depends-on:
+#mbuiter
+#string
+#mbschr
+#strcspn
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbscspn])
+
+File: ./modules/mbscspn-tests
+Hash: f121b6d1a37feba93beb5133e217ac6b67d27f313b21c4119af192b69f8f07f9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbscspn.sh
+#tests/test-mbscspn.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR_UTF8
+#
+#Makefile.am:
+#TESTS += test-mbscspn.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
+#check_PROGRAMS += test-mbscspn
+
+File: ./modules/mbsinit
+Hash: 08b00e28182c38b24e4a2889d3ecbec2186c517cb1e395b18713aeae478f6c44
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbsinit() function: test for initial conversion state.
+#
+#Files:
+#lib/mbsinit.c
+#m4/mbsinit.m4
+#m4/mbstate_t.m4
+#
+#Depends-on:
+#wchar
+#mbrtowc
+#verify
+#extensions
+#
+#configure.ac:
+
+File: ./modules/mbsinit-tests
+Hash: e188f172ffdb358f622dce3247ddaf5bb6444765e8badabf275ca0e937b9bc73
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbsinit.sh
+#tests/test-mbsinit.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#mbrtowc
+#
+#configure.ac:
+#gt_LOCALE_FR_UTF8
+#
+#Makefile.am:
+#TESTS += test-mbsinit.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
+
+File: ./modules/mbslen
+Hash: ce07548e22ef15c3699e1d2dee8814adad7e686310d0c9cd971c1b81c36d0bb1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbslen() function: Determine the number of multibyte characters in a string.
+#
+#Files:
+#lib/mbslen.c
+#
+#Depends-on:
+#mbuiter
+#string
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbslen])
+#
+#Makefile.am:
+#lib_SOURCES += mbslen.c
+
+File: ./modules/mbsncasecmp
+Hash: c959211b75e589812f47efa10d008c267a4348f6411809de868643cfcd695be0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbsncasecmp() function: case-insensitive string prefix comparison.
+#
+#Files:
+#lib/mbsncasecmp.c
+#
+#Depends-on:
+#mbuiter
+#string
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbsncasecmp])
+#
+#Makefile.am:
+#lib_SOURCES += mbsncasecmp.c
+
+File: ./modules/mbsncasecmp-tests
+Hash: 4bc053604e77dae389a8419bb6c46d5f4cf647a24be4056db9e97977e242f5a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbsncasecmp.sh
+#tests/test-mbsncasecmp.c
+#m4/locale-tr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_TR_UTF8
+#
+#Makefile.am:
+#TESTS += test-mbsncasecmp.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_TR_UTF8='@LOCALE_TR_UTF8@'
+#check_PROGRAMS += test-mbsncasecmp
+
+File: ./modules/mbsnlen
+Hash: 0faa03256e0848962c160de03ea06abadcf015959e0a65c519719cac4bf0c248
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbsnlen() function: Determine the number of multibyte characters in a string.
+#
+#Files:
+#lib/mbsnlen.c
+#
+#Depends-on:
+#mbiter
+#string
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbsnlen])
+#
+#Makefile.am:
+#lib_SOURCES += mbsnlen.c
+
+File: ./modules/mbsnrtowcs
+Hash: 6757ad3daecd36e029b02f4980714e54cb1a1e1e9e729e287734008d50497f3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbsnrtowcs() function: convert string to wide string.
+#
+#Files:
+#lib/mbsnrtowcs.c
+#lib/mbsrtowcs-state.c
+#m4/mbsnrtowcs.m4
+#m4/mbstate_t.m4
+#
+#Depends-on:
+#extensions
+#wchar
+#mbrtowc
+#minmax
+#strnlen1
+
+File: ./modules/mbsnrtowcs-tests
+Hash: 5f0b2a519e2883b9c0bc611792138db9c55ba5be0ca36511d32a57af47542f27
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbsnrtowcs1.sh
+#tests/test-mbsnrtowcs2.sh
+#tests/test-mbsnrtowcs3.sh
+#tests/test-mbsnrtowcs4.sh
+#tests/test-mbsnrtowcs.c
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#mbrtowc
+#mbsinit
+#wctob
+
+File: ./modules/mbspbrk
+Hash: 1517c4cf7fbb86c8797ebf6b3e8b6bfe3d8d32b3e32797851b3e494de634299d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbspbrk() function: search a string for any of a set of characters.
+#
+#Files:
+#lib/mbspbrk.c
+#
+#Depends-on:
+#mbuiter
+#string
+#mbschr
+#strpbrk
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbspbrk])
+
+File: ./modules/mbspbrk-tests
+Hash: ed3bb7da990ad29ce9448efc3a064056e4c94daf64bdfab8cb1c5ece97e01836
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbspbrk.sh
+#tests/test-mbspbrk.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR_UTF8
+#
+#Makefile.am:
+#TESTS += test-mbspbrk.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
+#check_PROGRAMS += test-mbspbrk
+
+File: ./modules/mbspcasecmp
+Hash: 119cda40d231594af07e07f9c6c3804942883e3338aa30774935e98f91bb0fea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbspcasecmp() function: case-insensitive string prefix comparison.
+#
+#Files:
+#lib/mbspcasecmp.c
+#
+#Depends-on:
+#mbuiter
+#string
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbspcasecmp])
+#
+#Makefile.am:
+#lib_SOURCES += mbspcasecmp.c
+
+File: ./modules/mbspcasecmp-tests
+Hash: acf9e1a6a2b4cb0ecce88f716874128337fcfc3735d850a7ac6cf842e6ac2c23
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbspcasecmp.sh
+#tests/test-mbspcasecmp.c
+#m4/locale-tr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_TR_UTF8
+#
+#Makefile.am:
+#TESTS += test-mbspcasecmp.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_TR_UTF8='@LOCALE_TR_UTF8@'
+#check_PROGRAMS += test-mbspcasecmp
+
+File: ./modules/mbsrchr
+Hash: 2aabb1c1474945811f42cbc76d095c8e20c4fe3d2f52828451f77f9c0cf7fdbe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbsrchr() function: search a string for a character, from the end.
+#
+#Files:
+#lib/mbsrchr.c
+#
+#Depends-on:
+#mbuiter
+#string
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbsrchr])
+#
+#Makefile.am:
+#lib_SOURCES += mbsrchr.c
+
+File: ./modules/mbsrchr-tests
+Hash: 3f40a8b53bb79fc02f4764430d29388fbeb4ec6252c5b7cb327ab5c8ba4955e5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbsrchr.sh
+#tests/test-mbsrchr.c
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_ZH_CN
+#
+#Makefile.am:
+#TESTS += test-mbsrchr.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_ZH_CN='@LOCALE_ZH_CN@'
+#check_PROGRAMS += test-mbsrchr
+
+File: ./modules/mbsrtowcs
+Hash: 6fd1e1c2a88e142140deefbbb735df3221bc8881b6e4817551195824fd01ffab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbsrtowcs() function: convert string to wide string.
+#
+#Files:
+#lib/mbsrtowcs.c
+#lib/mbsrtowcs-state.c
+#m4/mbsrtowcs.m4
+#m4/mbstate_t.m4
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#wchar
+
+File: ./modules/mbsrtowcs-tests
+Hash: d761815c50f990e6fd3900790cbc3426dfb224be4ca415263da9e913d87efabb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbsrtowcs1.sh
+#tests/test-mbsrtowcs2.sh
+#tests/test-mbsrtowcs3.sh
+#tests/test-mbsrtowcs4.sh
+#tests/test-mbsrtowcs.c
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#mbrtowc
+#mbsinit
+#wctob
+
+File: ./modules/mbssep
+Hash: 9d560680605f1f24bd8dfc8716baa14f6b3a361e289d3998108946da2a39b9c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbssep() function: split string into tokens, thread safe.
+#
+#Files:
+#lib/mbssep.c
+#
+#Depends-on:
+#mbuiter
+#string
+#mbspbrk
+#strsep
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbssep])
+
+File: ./modules/mbsspn
+Hash: 1c97df918bff72790a43cef22ccb566ad1dc39e40490b3762bfa430f5d6a725a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbsspn() function: search a string for any outside a set of characters.
+#
+#Files:
+#lib/mbsspn.c
+#
+#Depends-on:
+#mbuiter
+#string
+#mbschr
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbsspn])
+#
+#Makefile.am:
+
+File: ./modules/mbsspn-tests
+Hash: 07e30551048d52edeca8820fb2f7bd871e4d33ab731c9caaad69c4e51edb971d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbsspn.sh
+#tests/test-mbsspn.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR_UTF8
+#
+#Makefile.am:
+#TESTS += test-mbsspn.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_FR_UTF8='@LOCALE_FR_UTF8@'
+#check_PROGRAMS += test-mbsspn
+
+File: ./modules/mbsstr
+Hash: 5e9bda80152814723e1cafb55e44c941a17c80aaefe1d44f834a9c72fb31d476
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbsstr() function: search for a substring in a string.
+#
+#Files:
+#lib/mbsstr.c
+#lib/str-kmp.h
+#
+#Depends-on:
+#mbuiter
+#stdbool
+#string
+#mbslen
+#malloca
+#strnlen
+
+File: ./modules/mbsstr-tests
+Hash: cef5b046db14a89768608c0836e74444436a85e6570a59bbcf59df40c1edfa9d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-mbsstr1.c
+#tests/test-mbsstr2.sh
+#tests/test-mbsstr2.c
+#tests/test-mbsstr3.sh
+#tests/test-mbsstr3.c
+#m4/locale-fr.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR_UTF8
+#gt_LOCALE_ZH_CN
+
+File: ./modules/mbstok_r
+Hash: 2924f5ef00aa7a13739cf251e4ec52c0fd64f3f6b831ad2e3624a4cf902bab15
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mbstok_r() function: split string into tokens, thread safe.
+#
+#Files:
+#lib/mbstok_r.c
+#
+#Depends-on:
+#mbuiter
+#string
+#mbsspn
+#mbspbrk
+#strtok_r
+#
+#configure.ac:
+#gl_STRING_MODULE_INDICATOR([mbstok_r])
+
+File: ./modules/mbswidth
+Hash: e1810f778143c1d5292d861bdc35a3263344f2d6001b19a88698e1001a47e1ae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine the number of screen columns needed for a string.
+#
+#Files:
+#lib/mbswidth.h
+#lib/mbswidth.c
+#m4/mbstate_t.m4
+#m4/mbrtowc.m4
+#m4/mbswidth.m4
+#
+#Depends-on:
+#wchar
+#wctype
+#mbrtowc
+#mbsinit
+
+File: ./modules/mbuiter
+Hash: 6cbc5dfe3a3225936a7dfffcf10221a28eb197fe14ded3080358fa00fb0fcc4a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Iterating through multibyte strings.
+#
+#Files:
+#lib/mbuiter.h
+#m4/mbiter.m4
+#m4/mbrtowc.m4
+#
+#Depends-on:
+#mbchar
+#mbrtowc
+#mbsinit
+#wchar
+#stdbool
+#strnlen1
+
+File: ./modules/memcasecmp
+Hash: 7351221a78a96f127d5a963204471c2dbd55e1cb3f18425117b9476c5fadebbc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-insensitive memory area comparison.
+#
+#Files:
+#lib/memcasecmp.h
+#lib/memcasecmp.c
+#m4/memcasecmp.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_MEMCASECMP
+#
+#Makefile.am:
+
+File: ./modules/memchr
+Hash: be0b241ceb14b9c893f028a1c3a3536857082922284185c2a8c2d76bdece3599
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memchr() function: scan memory for a byte.
+#
+#Files:
+#lib/memchr.c
+#lib/memchr.valgrind
+#m4/memchr.m4
+#m4/mmap-anon.m4
+#
+#Depends-on:
+#extensions
+#getpagesize
+#string
+#
+#configure.ac:
+
+File: ./modules/memchr-tests
+Hash: 018011ff8976e68e44992541371dcc8d825566092ed792f3461ef5d024230984
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-memchr.c
+#tests/zerosize-ptr.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-memchr
+#check_PROGRAMS += test-memchr
+
+File: ./modules/memchr2
+Hash: e34d9b8d2f6bbd86621302dc032e119f50f4e7676cfa04cb884193e2ea2d6d97
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memchr2() function: scan memory for the first of two bytes.
+#
+#Files:
+#lib/memchr2.h
+#lib/memchr2.c
+#lib/memchr2.valgrind
+#
+#Depends-on:
+#stdint
+#memchr
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/memchr2-tests
+Hash: 8cf194f3c8e417c970395e74b4f1be2a93e3ff7022c134ab73a455108165e6b8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-memchr2.c
+#tests/zerosize-ptr.h
+#m4/mmap-anon.m4
+#
+#Depends-on:
+#extensions
+#getpagesize
+#
+#configure.ac:
+#gl_FUNC_MMAP_ANON
+#AC_CHECK_HEADERS_ONCE([sys/mman.h])
+#AC_CHECK_FUNCS_ONCE([mprotect])
+#
+#Makefile.am:
+
+File: ./modules/memcmp
+Hash: 8edce69a077d5fbd7c515a865d3c815c00dbf636b25b2706b488b4aec3132c6f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memcmp() function: compare memory areas.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/memcmp.c
+#m4/memcmp.m4
+#
+#Depends-on:
+#stdint
+
+File: ./modules/memcmp-tests
+Hash: cd6ccf825c316d6dd15cf9cbe1e2bbac89dfd84c4267d00a8b0fc51c8d19f6b0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-memcmp.c
+#tests/zerosize-ptr.h
+#m4/mmap-anon.m4
+#
+#Depends-on:
+#extensions
+#getpagesize
+#
+#configure.ac:
+#gl_FUNC_MMAP_ANON
+#AC_CHECK_HEADERS_ONCE([sys/mman.h])
+#AC_CHECK_FUNCS_ONCE([mprotect])
+#
+#Makefile.am:
+
+File: ./modules/memcmp2
+Hash: 57cd15ac55918ded320e6f1e17997f9d1f0ec3dd3632701f32625e4f45d55fdf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare two memory areas with possibly different lengths.
+#
+#Files:
+#lib/memcmp2.h
+#lib/memcmp2.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += memcmp2.c
+#
+#Include:
+
+File: ./modules/memcoll
+Hash: b760f4a0a26eccec9af47467f1fafbc29d7d119e691bb7294815d040e534143b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent memory area comparison.
+#
+#Files:
+#lib/memcoll.h
+#lib/memcoll.c
+#m4/memcoll.m4
+#
+#Depends-on:
+#memcmp
+#
+#configure.ac:
+#gl_MEMCOLL
+#
+#Makefile.am:
+
+File: ./modules/memcpy
+Hash: e634aa6a76451304de7834fb20c6dd010c8ed636113798434eb126c88f5ce852
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memcpy() function: copy memory area.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/memcpy.c
+#m4/memcpy.m4
+#
+#Depends-on:
+
+File: ./modules/memmem
+Hash: 427bc1498fd9e14d42481652b88271486549e6fb60bf1f7ede1241b495a4ee0f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memmem() function: efficiently locate first substring in a buffer.
+#
+#Files:
+#
+#Depends-on:
+#memmem-simple
+#
+#configure.ac:
+#gl_FUNC_MEMMEM
+#
+#Makefile.am:
+#
+#Include:
+#<string.h>
+
+File: ./modules/memmem-simple
+Hash: d77eea05be7687dfe5838308bdfec478b435a7cb72f306db9412d4e847a5081e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memmem() function: locate first substring in a buffer.
+#
+#Files:
+#lib/str-two-way.h
+#lib/memmem.c
+#m4/memmem.m4
+#
+#Depends-on:
+#extensions
+#string
+#stdint
+#memchr
+#memcmp
+
+File: ./modules/memmem-tests
+Hash: 1e7b452e3954e3beee93b8fd351dc99a5f490aa069de563492090ea4bc1e785e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-memmem.c
+#tests/zerosize-ptr.h
+#m4/mmap-anon.m4
+#
+#Depends-on:
+#extensions
+#getpagesize
+#
+#configure.ac:
+#gl_FUNC_MMAP_ANON
+#AC_CHECK_HEADERS_ONCE([sys/mman.h])
+#AC_CHECK_FUNCS_ONCE([mprotect])
+#AC_CHECK_DECLS_ONCE([alarm])
+
+File: ./modules/memmove
+Hash: 9c5814bf0694309555734b0aad6e4b2a7e5b9900bae9d5dbfb1b46c925758310
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memmove() function: copy memory area.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/memmove.c
+#m4/memmove.m4
+#
+#Depends-on:
+
+File: ./modules/mempcpy
+Hash: 82db064f4ac23db927439f2a499e4ed75d72e012d5e5b7a6a4e058af6c5749ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mempcpy() function: copy memory area, return point after last written byte.
+#
+#Files:
+#lib/mempcpy.c
+#m4/mempcpy.m4
+#
+#Depends-on:
+#extensions
+#string
+#
+#configure.ac:
+#gl_FUNC_MEMPCPY
+#gl_STRING_MODULE_INDICATOR([mempcpy])
+
+File: ./modules/memrchr
+Hash: 7df32406efd1721383bc9ca66ded3361791406c65ed6927b9eb2d9c502fddd37
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memrchr() function: scan memory for a byte, from the right end.
+#
+#Files:
+#lib/memrchr.c
+#m4/memrchr.m4
+#
+#Depends-on:
+#extensions
+#string
+#
+#configure.ac:
+#gl_FUNC_MEMRCHR
+#gl_STRING_MODULE_INDICATOR([memrchr])
+
+File: ./modules/memrchr-tests
+Hash: 236237ff345444a2296eb7c58607760d6875b9b96878baa8ed26a535df13c8f0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-memrchr.c
+#tests/zerosize-ptr.h
+#m4/mmap-anon.m4
+#
+#Depends-on:
+#extensions
+#getpagesize
+#
+#configure.ac:
+#gl_FUNC_MMAP_ANON
+#AC_CHECK_HEADERS_ONCE([sys/mman.h])
+#AC_CHECK_FUNCS_ONCE([mprotect])
+#
+#Makefile.am:
+
+File: ./modules/memset
+Hash: 2189503e0e0600d6195e9f40c3774df4d497419f8c8e7cd84ae006e1c05401ee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memset() function: fill memory with a constant byte.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/memset.c
+#m4/memset.m4
+#
+#Depends-on:
+
+File: ./modules/memxfrm
+Hash: f93cbf3e8c4bbad0d81b946690390cd47b60b77f297645db5c10f8f4d852b2c5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent memory area transformation for comparison.
+#
+#Files:
+#lib/memxfrm.h
+#lib/memxfrm.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += memxfrm.c
+#
+#Include:
+
+File: ./modules/memxor
+Hash: 009ba5161c5986176c2c0e8e2fcb898f0634a8e6c137ff14a2c0c655942114fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#memxor() function: binary exclusive or operation on two memory blocks
+#
+#Files:
+#lib/memxor.h
+#lib/memxor.c
+#m4/memxor.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_MEMXOR
+#
+#Makefile.am:
+
+File: ./modules/minmax
+Hash: 4ca698af559c3b45c9ae6cbc74c2db7f9d8d44e57ca0a55858f67d7f6eb2cef1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#MIN, MAX macros.
+#
+#Files:
+#lib/minmax.h
+#m4/minmax.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_MINMAX
+#
+#Makefile.am:
+#lib_SOURCES += minmax.h
+
+File: ./modules/mkancesdirs
+Hash: 47e3ec8f9d755955102d4687498df34015f27d6968e0e8ffa15ed33ab2029a5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Ensure the existence of the ancestor directories of a file.
+#
+#Files:
+#lib/mkancesdirs.c
+#lib/mkancesdirs.h
+#m4/mkancesdirs.m4
+#
+#Depends-on:
+#dirname
+#fcntl-h
+#savewd
+#stat-macros
+#sys_stat
+
+File: ./modules/mkdir
+Hash: 2e5e1569c83a706b81884e1431f3d6a134f87e69b18d51e41dadb9cf696431f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mkdir() function: create a directory.
+#
+#Files:
+#lib/mkdir.c
+#m4/mkdir-slash.m4
+#
+#Depends-on:
+#sys_stat
+#xalloc
+#dirname
+#
+#configure.ac:
+#gl_FUNC_MKDIR_TRAILING_SLASH
+
+File: ./modules/mkdir-p
+Hash: d04788d851d37a77687867ba935363f888d3c09e7b59200529af8f795804d776
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Ensure that a directory and its parents exist.
+#
+#Files:
+#lib/dirchownmod.c
+#lib/dirchownmod.h
+#lib/mkdir-p.c
+#lib/mkdir-p.h
+#m4/mkdir-p.m4
+#
+#Depends-on:
+#error
+#fcntl-h
+#gettext-h
+#lchmod
+
+File: ./modules/mkdtemp
+Hash: db4c25a79eb27e6ad8267a8afb4d8c961f69970b94ae3243c3acea5f68393b68
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mkdtemp() function: create a private temporary directory.
+#
+#Files:
+#lib/mkdtemp.c
+#m4/mkdtemp.m4
+#
+#Depends-on:
+#stdint
+#stdlib
+#tempname
+#
+#configure.ac:
+#gt_FUNC_MKDTEMP
+#gl_STDLIB_MODULE_INDICATOR([mkdtemp])
+
+File: ./modules/mkostemp
+Hash: 6342108f26fee360da0587740ba7d41166bcb274abff9ce78078399e1346ac89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mkostemp() function: create a private temporary file, with specific opening
+#flags.
+#
+#Files:
+#lib/mkostemp.c
+#m4/mkostemp.m4
+#
+#Depends-on:
+#extensions
+#stdlib
+#tempname
+#
+#configure.ac:
+#gl_FUNC_MKOSTEMP
+
+File: ./modules/mkstemp
+Hash: ecff665cb5b763e16fc7ca70c57d703bcfb97515d88d6149bbcc7697c27c8936
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mkstemp() function: create a private temporary file.
+#
+#Files:
+#lib/mkstemp.c
+#m4/mkstemp.m4
+#
+#Depends-on:
+#extensions
+#stdlib
+#tempname
+#
+#configure.ac:
+#gl_FUNC_MKSTEMP
+#gl_STDLIB_MODULE_INDICATOR([mkstemp])
+
+File: ./modules/mktempd
+Hash: 0da02b80f02ff1e0404f54d62c57905a5f8dce5c1d0cb06875d1b14723c81d78
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Create a temporary directory, much like mktemp -d does.
+#
+#Files:
+#build-aux/mktempd
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/mktime
+Hash: d1f60290e80d3479c415935b398c94f79dd00da53fe9974e8f60f05e00674fbf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#mktime() function: convert broken-down time to linear time.
+#
+#Files:
+#lib/mktime.c
+#m4/mktime.m4
+#
+#Depends-on:
+#multiarch
+#time_r
+#
+#configure.ac:
+#gl_FUNC_MKTIME
+#
+#Makefile.am:
+
+File: ./modules/modechange
+Hash: 8c6b5bf005ca142d0766ff8256c5e6b766a4c8535f263597678d5c7372fb1cfc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Manipulation of mode changes specified by strings (e.g. as first argument of
+#chmod utility).
+#
+#Files:
+#lib/modechange.h
+#lib/modechange.c
+#m4/modechange.m4
+#
+#Depends-on:
+#stat-macros
+#stdbool
+#sys_stat
+#xalloc
+
+File: ./modules/mountlist
+Hash: 19dcd86334c997ee055f46c3b68bdbc79f9e70bdee9d89ea6b194b42950dc578
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return list of mounted file systems.
+#
+#Files:
+#lib/mountlist.h
+#lib/mountlist.c
+#m4/ls-mntd-fs.m4
+#m4/fstypename.m4
+#m4/mountlist.m4
+#
+#Depends-on:
+#stdbool
+#stdint
+#strstr-simple
+#xalloc
+
+File: ./modules/mpsort
+Hash: 20e0dcc849fc123b6d093e8a99ee07c244738c4cdc28f29526fe1a84fc438c52
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sort a vector of pointers to data.
+#
+#Files:
+#lib/mpsort.h
+#lib/mpsort.c
+#m4/mpsort.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_MPSORT
+#
+#Makefile.am:
+
+File: ./modules/multiarch
+Hash: 9dd8713172dffad333cb2303f390af903d0da348b567cbebceec9b93ae3f4121
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Detection of multi-architecture ("universal binary") builds.
+#
+#Files:
+#m4/multiarch.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_MULTIARCH
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/nanosleep
+Hash: c4b414bcb64d661735d355e77ebbebb13539c748a2294b5132a4f2df1b5268dc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#nanosleep() function: pause execution for a specified time.
+#
+#Files:
+#lib/nanosleep.c
+#m4/nanosleep.m4
+#
+#Depends-on:
+#clock-time
+#extensions
+#gettime
+#multiarch
+#select
+#sigaction
+#stdbool
+
+File: ./modules/netdb
+Hash: 2ff3c839a18d0ff254152f3085d64ef784f7feb97175203a37e605b2e7277457
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <netdb.h> for systems lacking it.
+#
+#Files:
+#lib/netdb.in.h
+#m4/netdb_h.m4
+#
+#Depends-on:
+#include_next
+#sys_socket
+#
+#configure.ac:
+#gl_HEADER_NETDB
+#
+#Makefile.am:
+
+File: ./modules/netdb-tests
+Hash: e3e50dec351f92d0cadf5701e6997e9a0d078130438d0368a668e1ff2c8b37c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-netdb.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-netdb
+#check_PROGRAMS += test-netdb
+#
+#License:
+#LGPL
+
+File: ./modules/netinet_in
+Hash: 413654256fb2afe075d11026bfd1310eb7efc9d543fc5388f827553495418222
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <netinet/in.h> for systems lacking it.
+#
+#Files:
+#lib/netinet_in.in.h
+#m4/netinet_in_h.m4
+#
+#Depends-on:
+#include_next
+#sys_socket
+#
+#configure.ac:
+#gl_HEADER_NETINET_IN
+#AC_PROG_MKDIR_P
+
+File: ./modules/netinet_in-tests
+Hash: 1cdce907601b367aaed4ed8bb1b12d0d24f97a566d105e2abfd6ce95058dc966
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-netinet_in.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-netinet_in
+#check_PROGRAMS += test-netinet_in
+#
+#License:
+#LGPL
+
+File: ./modules/no-c++
+Hash: 437c53218d7b70ae9999443459ae088dd47921a99112f1ebc51f4ce2e1861940
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Support for compiling in C mode when CC is set to a C++ compiler.
+#
+#Files:
+#m4/no-c++.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_NO_CXX
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/nocrash
+Hash: 9f91308d373378b9c2d084dd9096c2d6711b243f0e925c8e2fd5be0e3357d693
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Macro that avoids crashes in configure tests.
+#
+#Files:
+#m4/nocrash.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/nproc
+Hash: 1c32614a51741d289504bd7021a7fc7e8b99d678522a0146144f05c9ed10d797
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Detect the number of processors
+#
+#Files:
+#lib/nproc.h
+#lib/nproc.c
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#AC_LIBOBJ([nproc])
+#
+#Makefile.am:
+
+File: ./modules/obstack
+Hash: 90bf53e34be1ef3c73252e30b49196e2810161cb29d1141f98d9b3f7bed5f63a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Memory allocation, optimized for stack-like allocation patterns.
+#
+#Files:
+#lib/obstack.h
+#lib/obstack.c
+#
+#Depends-on:
+#gettext-h
+#exit
+#exitfail
+#stdint
+#
+#configure.ac:
+#AC_FUNC_OBSTACK
+
+File: ./modules/obstack-printf
+Hash: 195c4736975345b67b3eef2b29a3c77ada18de418087a7afbb0ade585fc77859
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted printing into an obstack.
+#
+#Files:
+#m4/obstack-printf.m4
+#lib/obstack_printf.c
+#
+#Depends-on:
+#obstack
+#stdio
+#vasnprintf
+#extensions
+#
+#configure.ac:
+#gl_FUNC_OBSTACK_PRINTF
+
+File: ./modules/obstack-printf-posix
+Hash: 3e6ebfb8b4ae341f632bd162e3d76235aa08f877aa5afff5c433980da140b754
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX formatted printing into an obstack.
+#
+#Files:
+#m4/obstack-printf.m4
+#m4/obstack-printf-posix.m4
+#lib/obstack_printf.c
+#
+#Depends-on:
+#obstack
+#stdio
+#vasnprintf-posix
+#extensions
+#
+#configure.ac:
+
+File: ./modules/obstack-printf-posix-tests
+Hash: 6089d7788117eaa0dbbf1a69a23d0955a423d70c1b0a9429eea3b0f6ea67cadf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#
+#Depends-on:
+#obstack-printf-tests
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/obstack-printf-tests
+Hash: f819c86b540474e47c3e3361e8f0515068635bf7ee7fd0e56c1ee1aed42a3dc5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-obstack-printf.c
+#
+#Depends-on:
+#progname
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-obstack-printf
+#check_PROGRAMS += test-obstack-printf
+#test_obstack_printf_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/open
+Hash: b8fd8ec2302e6cb2a361dbd6d146d4131ebb0d5ec07cf6fb35442b8ce54c23fc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#open() function: open a descriptor to a file.
+#
+#Files:
+#lib/open.c
+#m4/open.m4
+#m4/mode_t.m4
+#
+#Depends-on:
+#fcntl-h
+#
+#configure.ac:
+#gl_FUNC_OPEN
+#gl_MODULE_INDICATOR([open])
+#gl_FCNTL_MODULE_INDICATOR([open])
+
+File: ./modules/open-tests
+Hash: 6fe6f7d664d0da6fa0c6300196a9408454f4d4c5fc1c113ea2f45271cf66251e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-open.h
+#tests/test-open.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-open
+#check_PROGRAMS += test-open
+
+File: ./modules/openat
+Hash: 8440ece2aa3dee89bb195360fde5224a4356b0dcd9cde5091b5e613fca06b38b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Open a file at a directory.
+#
+#Files:
+#lib/at-func.c
+#lib/fchmodat.c
+#lib/fchownat.c
+#lib/fstatat.c
+#lib/mkdirat.c
+#lib/openat.c
+#lib/openat.h
+#lib/openat-priv.h
+#lib/openat-proc.c
+#m4/openat.m4
+#m4/mode_t.m4
+
+File: ./modules/openat-die
+Hash: 902a62455364b94563584a5d761e6e6771649f19c13497cf2e6d67f6eb90f618
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Report a save- or restore-cwd failure in our openat replacement and then exit.
+#
+#Files:
+#lib/openat-die.c
+#
+#Depends-on:
+#openat
+#error
+#gettext-h
+#exitfail
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/openat-safer
+Hash: c15e370962a4ede59dbc1e2d87f16d7e4572d9b5f57c0340a8fed2e35cea31d4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#openat function that avoids clobbering std{in,out,err}.
+#
+#Files:
+#lib/fcntl--.h
+#lib/fcntl-safer.h
+#lib/openat-safer.c
+#m4/fcntl-safer.m4
+#
+#Depends-on:
+#fcntl-safer
+#openat
+#unistd-safer
+#
+#configure.ac:
+
+File: ./modules/openat-safer-tests
+Hash: 4ae2d6e450491648f6d3211d45c3c69ec4155ef44c2b63faa058df2bee458dd9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-openat-safer.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-openat-safer
+#check_PROGRAMS += test-openat-safer
+#test_openat_safer_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/openmp
+Hash: 9954c49e009ade101840ce2525661e2b729f9d835fff0d1c86f347671f5b9c4a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Detection of OpenMP support.
+#
+#Files:
+#m4/openmp.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_OPENMP
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/oset
+Hash: 0a79c4c0544b5c8a2822a5fb70791f25658d48f15710d3a13bfb599cab6f38c0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Abstract ordered set data type.
+#
+#Files:
+#lib/gl_oset.h
+#lib/gl_oset.c
+#m4/gl_list.m4
+#
+#Depends-on:
+#inline
+#stdbool
+#
+#configure.ac:
+#gl_LIST
+
+File: ./modules/pagealign_alloc
+Hash: 4169e992f088b88dc6ca11b1b7caebbf70a8eb483c8b91b5c2877b93987a5e97
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Memory allocation aligned on page boundaries.
+#
+#Files:
+#lib/pagealign_alloc.h
+#lib/pagealign_alloc.c
+#m4/mmap-anon.m4
+#m4/pagealign_alloc.m4
+#
+#Depends-on:
+#error
+#exit
+#extensions
+#getpagesize
+#gettext-h
+
+File: ./modules/parse-duration
+Hash: cbc19947eb52ef499d5f6bf93075b19688bce193a8b394475df553f3c3f65c1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Parse a duration given as string.
+#
+#Files:
+#lib/parse-duration.h
+#lib/parse-duration.c
+#
+#Depends-on:
+#xalloc
+#
+#configure.ac:
+#AC_REQUIRE([AC_C_INLINE])
+#
+#Makefile.am:
+#lib_SOURCES += parse-duration.c
+
+File: ./modules/parse-duration-tests
+Hash: 5e2c1e730ba1cc104efa3adbff8508e013a6a1c04df0ed16505a88467560f607
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-parse-duration.sh
+#tests/test-parse-duration.c
+#
+#Depends-on:
+#strdup
+#strerror
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-parse-duration.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-parse-duration
+
+File: ./modules/pathmax
+Hash: 1a58efccf4821959196abdf9ea16bba1eb01de79fc084911956c9ef723927e7a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return maximum size of reasonable pathnames.  (Unportable: Hurd has no limit.)
+#
+#Files:
+#lib/pathmax.h
+#m4/pathmax.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_PATHMAX
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/perl
+Hash: b97c41a82b65955ab0fd78d1384b1dc22809d04151ce5e63dec6819363b0ab95
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Find a new-enough version of Perl.
+#
+#Files:
+#m4/perl.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_PERL
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/perror
+Hash: dbf41263cfaffcf9dede468e7f0f05cff36d517885ab11e66cff259c1a2214f0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#perror() function: print a message describing error code.
+#
+#Files:
+#lib/perror.c
+#m4/perror.m4
+#
+#Depends-on:
+#stdio
+#errno
+#strerror
+#
+#configure.ac:
+#gl_FUNC_PERROR
+#gl_STRING_MODULE_INDICATOR([perror])
+
+File: ./modules/perror-tests
+Hash: d1eacf01ba2d890277c5a785d61de51c5aaf71f094fb2abe4a0f7eba55c38e49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-perror.c
+#tests/test-perror.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-perror.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-perror
+
+File: ./modules/physmem
+Hash: 2fa658c322934cc5949c5cf8ef6707df51d49bdabcb9d40fd400c6a32b877243
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return amount of total/available physical memory.
+#
+#Files:
+#lib/physmem.h
+#lib/physmem.c
+#m4/physmem.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_PHYSMEM
+#
+#Makefile.am:
+
+File: ./modules/pipe
+Hash: cb2606e87b9da6e57157f3b97744d35a3bdf307fcdfac930af0d2cdebe180aa5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Creation of subprocesses, communicating via pipes.
+#
+#Files:
+#lib/pipe.h
+#lib/pipe.c
+#lib/w32spawn.h
+#m4/pipe.m4
+#
+#Depends-on:
+#dup2
+#environ
+#error
+#exit
+#fatal-signal
+
+File: ./modules/pipe-filter-gi
+Hash: 47a74e5bd2b5d527cc692eda6c871a60bebaed6d6821f1f9ec6c89d42ca2b9dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Filtering of data through a subprocess.
+#
+#Files:
+#lib/pipe-filter.h
+#lib/pipe-filter-gi.c
+#lib/pipe-filter-aux.h
+#
+#Depends-on:
+#pipe
+#wait-process
+#error
+#exit
+#gettext-h
+#stdbool
+
+File: ./modules/pipe-filter-gi-tests
+Hash: 1837f3df67008436e1cc45b72eada1ff6f241f0025cf1c0c9213186b7fe77883
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-pipe-filter-gi1.sh
+#tests/test-pipe-filter-gi1.c
+#tests/test-vasnprintf-posix.c
+#tests/test-pipe-filter-gi2.sh
+#tests/test-pipe-filter-gi2-main.c
+#tests/test-pipe-filter-gi2-child.c
+#
+#Depends-on:
+#binary-io
+#c-ctype
+#read-file
+#full-write
+#sleep
+#progname
+
+File: ./modules/pipe-filter-ii
+Hash: 04a37636437c57c0388cda54e84d16b3457ecf9c0712af63f99afeeb284dc422
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Filtering of data through a subprocess.
+#
+#Files:
+#lib/pipe-filter.h
+#lib/pipe-filter-ii.c
+#lib/pipe-filter-aux.h
+#
+#Depends-on:
+#pipe
+#wait-process
+#error
+#exit
+#gettext-h
+#stdbool
+
+File: ./modules/pipe-filter-ii-tests
+Hash: 704dd95ae9d20a0a30a9ec2ea8091bbf1e9458db01991abc818bb94a7a9c5aed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-pipe-filter-ii1.sh
+#tests/test-pipe-filter-ii1.c
+#tests/test-vasnprintf-posix.c
+#tests/test-pipe-filter-ii2.sh
+#tests/test-pipe-filter-ii2-main.c
+#tests/test-pipe-filter-ii2-child.c
+#
+#Depends-on:
+#binary-io
+#c-ctype
+#read-file
+#full-write
+#progname
+
+File: ./modules/pipe-tests
+Hash: 89b627af4bf4e9e23de42bed31459d717ee360b49f061df4343ea8979e8c8884
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-pipe.sh
+#tests/test-pipe.c
+#
+#Depends-on:
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pipe.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-pipe
+#test_pipe_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/pipe2
+Hash: 88cb0b5a60d37a7c9b1cfc3bb3cce31d46e500584eab276f71f005621fba5f10
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#pipe2() function: create a pipe, with specific opening flags.
+#
+#Files:
+#lib/pipe2.c
+#m4/pipe2.m4
+#
+#Depends-on:
+#unistd
+#fcntl-h
+#binary-io
+#
+#configure.ac:
+#gl_FUNC_PIPE2
+#gl_UNISTD_MODULE_INDICATOR([pipe2])
+
+File: ./modules/pipe2-tests
+Hash: 03a9e82cba64506684f239ac1fee39055a2c0cf7a09e73bccd429fcccf5293f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-pipe2.c
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pipe2
+#check_PROGRAMS += test-pipe2
+
+File: ./modules/pmccabe2html
+Hash: a59db9ed8dfe8c7750d96519f0dac1ef6f9126a272a836cd20d652d654547c21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Produce fancy cyclomatic code complexity charts, using pmccabe.
+#See <http://www.parisc-linux.org/~bame/pmccabe/>.
+#
+#Files:
+#m4/pmccabe2html.m4
+#build-aux/pmccabe2html
+#build-aux/pmccabe.css
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_PMCCABE2HTML
+#
+#Makefile.am:
+
+File: ./modules/poll
+Hash: 055166d6fb80cade79ba4e9fdf79d952614fa65a2f1cbd9a77a4232da23aa356
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#poll() function: wait for some event on a set of file descriptors.
+#
+#Files:
+#lib/poll.c
+#lib/poll.in.h
+#m4/poll.m4
+#
+#Depends-on:
+#alloca
+#select
+#sys_select
+#sys_time
+#errno
+
+File: ./modules/poll-tests
+Hash: b8cef910d624e72cb2e784721e7731a76680df4809a4fbab539f0970dce96940
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-poll.c
+#
+#Depends-on:
+#stdbool
+#sys_socket
+#netinet_in
+#arpa_inet
+#sys_ioctl
+#extensions
+#inet_pton
+#errno
+#perror
+#sockets
+#socket
+
+File: ./modules/popen
+Hash: 75f806b61d12990d7d68890be3d1abee2e31232b3ed129437a90c4d98304eded
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#popen() function: open a stream to a shell command.
+#
+#Files:
+#lib/popen.c
+#m4/popen.m4
+#
+#Depends-on:
+#open
+#stdio
+#
+#configure.ac:
+#gl_FUNC_POPEN
+#gl_STDIO_MODULE_INDICATOR([popen])
+
+File: ./modules/popen-safer
+Hash: 24ee550c199b1e8fd6881ada64c40a0211431f2bd41a919ccc1aa8dd0a3ec1cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#popen function that avoids clobbering std{in,out,err}.
+#
+#Files:
+#lib/stdio--.h
+#lib/stdio-safer.h
+#lib/popen-safer.c
+#m4/stdio-safer.m4
+#
+#Depends-on:
+#cloexec
+#open
+#popen
+#unistd-safer
+
+File: ./modules/popen-safer-tests
+Hash: 932217dbf84834faa73e5bcbed2a51aeab869351e1f9fa18a4795b11408a7278
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-popen.h
+#tests/test-popen-safer.c
+#tests/test-popen-safer2.c
+#
+#Depends-on:
+#dup2
+#sys_wait
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-popen-safer test-popen-safer2
+#check_PROGRAMS += test-popen-safer test-popen-safer2
+
+File: ./modules/popen-tests
+Hash: 600e94e06dd6b58f99378e1f3362d1adb534e54c19898e35831ee4afadc35588
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-popen.h
+#tests/test-popen.c
+#
+#Depends-on:
+#dup2
+#sys_wait
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-popen
+#check_PROGRAMS += test-popen
+
+File: ./modules/posix-shell
+Hash: 7be6f0c5f8fb9ebba4c5e3e9b45576334ea98024516acca3236c7d88ab555bc6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Find a POSIX-conforming shell.
+#
+#Files:
+#m4/posix-shell.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_POSIX_SHELL
+#
+#Makefile.am:
+###Sample usage of posix-shell module:
+##script: script.in
+##     rm -f $@-t $@
+
+File: ./modules/posix_spawn
+Hash: 15413ab313c64ab836982fbc31a9126ec32f09efb7ddb71640829db43260f75f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawn() function: create a child process.
+#
+#Files:
+#lib/spawn.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#posix_spawn-internal
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawn-internal
+Hash: 13261c7474dec61641aea4cc23d5456192409fb4aace21d2245b5e4f57f591f6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawn internals.
+#
+#Files:
+#lib/spawni.c
+#lib/spawn_int.h
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#alloca-opt
+#dup2
+#errno
+#open
+#strchrnul
+
+File: ./modules/posix_spawn-tests
+Hash: a4e53f0bd6036142a9ac5e12baece34a312a5eec0673852e5c4cedd7b4461946
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-posix_spawn3.c
+#
+#Depends-on:
+#posix_spawn_file_actions_init
+#posix_spawn_file_actions_addopen
+#posix_spawn_file_actions_destroy
+#stdbool
+#unistd
+#sys_wait
+#
+#configure.ac:
+#AC_EGREP_CPP([notposix], [[
+##if defined _MSC_VER || defined __MINGW32__
+#  notposix
+
+File: ./modules/posix_spawn_file_actions_addclose
+Hash: 1b0e7672a70119b34a7422f65cc477e582f9be9be42c2b5f58e8a12c500a021b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawn_file_actions_addclose() function: augment a child process actions
+#specification.
+#
+#Files:
+#lib/spawn_faction_addclose.c
+#lib/spawn_int.h
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#getdtablesize
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+
+File: ./modules/posix_spawn_file_actions_adddup2
+Hash: ec32ecbe40954fd4d6a2ab6529c3bb7909152086755d88b2ce843d6164ed081a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawn_file_actions_adddup2() function: augment a child process actions
+#specification.
+#
+#Files:
+#lib/spawn_faction_adddup2.c
+#lib/spawn_int.h
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#getdtablesize
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+
+File: ./modules/posix_spawn_file_actions_addopen
+Hash: cfdb709fc0b05ff18a591ef68dbc89d292cd11c33e5ed630d96c711c66e747eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawn_file_actions_addopen() function: augment a child process actions
+#specification.
+#
+#Files:
+#lib/spawn_faction_addopen.c
+#lib/spawn_int.h
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#getdtablesize
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+
+File: ./modules/posix_spawn_file_actions_destroy
+Hash: fcfee84d342e3e549f08820131ee81c122d7be97875f585474739f1d98b57b4b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawn_file_actions_destroy() function: free a child process actions
+#specification.
+#
+#Files:
+#lib/spawn_faction_destroy.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawn_file_actions_init
+Hash: 8667dd6d659eb6fd59856efe5a10491fb6ae2da3859526f7ff4a2fd7dd75a40f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawn_file_actions_init() function: initialize child process actions
+#specification.
+#
+#Files:
+#lib/spawn_faction_init.c
+#lib/spawn_int.h
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+
+File: ./modules/posix_spawnattr_destroy
+Hash: e6cb2c966163f254aef8e6b688be377b2a094f999a468168fdcbbf5f2c0aaed4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_destroy() function: free a child process attributes
+#specification.
+#
+#Files:
+#lib/spawnattr_destroy.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_getflags
+Hash: cb0fee822d7f86efc02d25161ae058bf90a7eeb70e7d1c7cd823da0e549a2bdb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_getflags() function: get bitmask of attributes specified for
+#child process.
+#
+#Files:
+#lib/spawnattr_getflags.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_getpgroup
+Hash: 4de9f855aaa933daa726e4e38cc52848bed7659acb8976e36c8bd12e29228eb9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_getpgroup() function: get process group specified for child
+#process.
+#
+#Files:
+#lib/spawnattr_getpgroup.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_getschedparam
+Hash: dfb205d868a1f8cf9800b85014a3a95c2b47caf098291e8f849cdd8b1c44f8c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_getschedparam() function: get the scheduling parameters
+#specified for child process.
+#
+#Files:
+#lib/spawnattr_getschedparam.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_getschedpolicy
+Hash: 5ea4e1bd5a50a054a174f9577084b4bad055067cc585cd5b718e51d9aa920483
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_getschedpolicy() function: get the scheduling policy specified
+#for child process.
+#
+#Files:
+#lib/spawnattr_getschedpolicy.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_getsigdefault
+Hash: aebbb28e01907491d87b570e9720044a81c8e76bb06cb040aedd82ef3f32c925
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_getsigdefault() function: get the set of signals with initially
+#the default handler specified for child process.
+#
+#Files:
+#lib/spawnattr_getdefault.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_getsigmask
+Hash: 4e3402f4755f82bf6a4f52f26c99fc27619900baaa9bd83e36b3ea8182919711
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_getsigmask() function: get the set of initially blocked signals
+#specified for child process.
+#
+#Files:
+#lib/spawnattr_getsigmask.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_init
+Hash: d3eb3298cac167c24597cc856a1fc756c5b199bcb603b32fcc3398a9e412eb32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_init() function: initialize child process attributes
+#specification.
+#
+#Files:
+#lib/spawnattr_init.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_setflags
+Hash: d700bcc7b63ea1e363c3a428aef4c53f41a2a2b2bc8a2cf82d424da0e66523c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_setflags() function: specify bitmask of attributes for child
+#process.
+#
+#Files:
+#lib/spawnattr_setflags.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_setpgroup
+Hash: 5f8e7d01caa6f22b70ddd5c1dc2f948b9fd9471493d518a922f5b5bf788515b2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_setpgroup() function: specify process group for child process.
+#
+#Files:
+#lib/spawnattr_setpgroup.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+#  AC_LIBOBJ([spawnattr_setpgroup])
+
+File: ./modules/posix_spawnattr_setschedparam
+Hash: bc3e182453727a5de3f2341ca87ed8c4deb370f1f85114d80fb649530fe7d66e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_setschedparam() function: specify the scheduling parameters for
+#child process.
+#
+#Files:
+#lib/spawnattr_setschedparam.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_setschedpolicy
+Hash: 41b0af0b650ccf6e2bf11e8306c5497d3732aa043cd9fc2988b2ad786d777d83
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_setschedpolicy() function: specify the scheduling policy for
+#child process.
+#
+#Files:
+#lib/spawnattr_setschedpolicy.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_setsigdefault
+Hash: d17b0b584181de19099e9009b0f5dd697a715cc2d36c9f200c68808d0a6f7c8f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_setsigdefault() function:get the specify of signals with
+#initially the default handler for child process.
+#
+#Files:
+#lib/spawnattr_setdefault.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnattr_setsigmask
+Hash: 8d6a238fb9ccf1d39e3d20a23c01ca0f651dbeaa90a49445c622ef6340a13211
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnattr_setsigmask() function: specify the set of initially blocked
+#signals for child process.
+#
+#Files:
+#lib/spawnattr_setsigmask.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnp
+Hash: d5c5ed7f61ad411f906180a9928559ec005317deb824e2f40825b41f68021e67
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#posix_spawnp() function: create a child process.
+#
+#Files:
+#lib/spawnp.c
+#m4/posix_spawn.m4
+#
+#Depends-on:
+#spawn
+#posix_spawn-internal
+#
+#configure.ac:
+#gl_POSIX_SPAWN
+#if test $HAVE_POSIX_SPAWN = 0 || test $REPLACE_POSIX_SPAWN = 1; then
+#  gl_REPLACE_SPAWN_H
+
+File: ./modules/posix_spawnp-tests
+Hash: 6039483c42b32008b11c8acec64c53a42491b0da863357c5eb910e617222fb7f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-posix_spawn1.c
+#tests/test-posix_spawn1.in.sh
+#tests/test-posix_spawn2.c
+#tests/test-posix_spawn2.in.sh
+#
+#Depends-on:
+#posix_spawn_file_actions_init
+#posix_spawn_file_actions_adddup2
+#posix_spawn_file_actions_addclose
+#posix_spawn_file_actions_addopen
+#posix_spawn_file_actions_destroy
+#posix_spawnattr_init
+#posix_spawnattr_setsigmask
+#posix_spawnattr_setflags
+
+File: ./modules/posixtm
+Hash: d33a7f51b60442e5707d6adc4ca78638e790cb693fa9c40d93feabc6ddc8f3bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert a date/time string (POSIX syntax) to linear time or broken-down time.
+#
+#Files:
+#lib/posixtm.h
+#lib/posixtm.c
+#m4/posixtm.m4
+#
+#Depends-on:
+#mktime
+#stdbool
+#
+#configure.ac:
+#gl_POSIXTM
+
+File: ./modules/posixver
+Hash: 31c2be10d2b472a4dd73133e03c64c0c7d2bd38fd65a1af1feac903d792a3aa6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine desired POSIX specification version, according to user's environment
+#variables.
+#
+#Files:
+#lib/posixver.h
+#lib/posixver.c
+#m4/posixver.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_POSIXVER
+#
+#Makefile.am:
+
+File: ./modules/printf-frexp
+Hash: 2ba31ff5404d9a7a3126902242c6c35e4fe0ba56d1a745fa4e743c9c838e9f99
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#printf_frexp() function: split a double into fraction and mantissa, for
+#hexadecimal printf, without requiring libm.
+#
+#Files:
+#lib/printf-frexp.h
+#lib/printf-frexp.c
+#m4/printf-frexp.m4
+#m4/frexp.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_PRINTF_FREXP
+
+File: ./modules/printf-frexp-tests
+Hash: 58b888752922b63323c41b34a3b18aa51f7c29b128f8dcadccc3df546dee1c64
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-printf-frexp.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-printf-frexp
+#check_PROGRAMS += test-printf-frexp
+#
+#License:
+#LGPL
+
+File: ./modules/printf-frexpl
+Hash: c73966598463099719ed26c513d582b0b27df6b8f7278ea98299dd0e42395350
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#printf_frexpl() function: split a long double into fraction and mantissa,
+#for hexadecimal printf, without requiring libm.
+#
+#Files:
+#lib/printf-frexpl.h
+#lib/printf-frexpl.c
+#lib/printf-frexp.c
+#m4/printf-frexpl.m4
+#m4/frexpl.m4
+#m4/ldexpl.m4
+#
+#Depends-on:
+#float
+#math
+
+File: ./modules/printf-frexpl-tests
+Hash: e86d522cbebb135833e09a05e06f97d08d69fa9ecf7e9fa98cf90e6e1f9fc11a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-printf-frexpl.c
+#
+#Depends-on:
+#fpucw
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-printf-frexpl
+#check_PROGRAMS += test-printf-frexpl
+#
+#License:
+#LGPL
+
+File: ./modules/printf-posix
+Hash: 894f8d4bd2974c5bda5bb08a7aed4420264e988980f3188b290f55b1247f68b0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible printf() function: print formatted output to standard output
+#
+#Files:
+#lib/printf.c
+#m4/printf-posix-rpl.m4
+#m4/printf.m4
+#
+#Depends-on:
+#stdio
+#vfprintf-posix
+#printf-safe
+#
+#configure.ac:
+#gl_FUNC_PRINTF_POSIX
+
+File: ./modules/printf-posix-tests
+Hash: b59c246d738fc5d9052590c8a8d00d40265f42144b607f7d29706e97e8c86fd3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-printf-posix.sh
+#tests/test-printf-posix.c
+#tests/test-printf-posix.h
+#tests/test-printf-posix.output
+#tests/test-printf-posix2.sh
+#tests/test-printf-posix2.c
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#AC_CHECK_FUNCS_ONCE([getrlimit setrlimit])
+#
+#Makefile.am:
+
+File: ./modules/printf-safe
+Hash: 5731a2281f5746d885561e1600ed39665f06f4742bf6bbfa4be584e71d9820e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Ensures that the *printf() functions provided by the *printf-posix modules
+#recognize non-IEEE-754 values of 'long double' arguments and display them as
+#NaN (rather than producing undefined behavior).
+#
+#Files:
+#
+#Depends-on:
+#
+#configure.ac:
+#m4_divert_text([INIT_PREPARE], [gl_printf_safe=yes])
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/priv-set
+Hash: c95f4f2a9676e83a6fa7fc9464f10e8cd464661eb209f98239f7acfbc809f4a4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Query, remove or restore a Solaris privilege
+#
+#Files:
+#lib/priv-set.h
+#lib/priv-set.c
+#m4/priv-set.m4
+#
+#Depends-on:
+#errno
+#stdbool
+#
+#configure.ac:
+#gl_PRIV_SET
+
+File: ./modules/priv-set-tests
+Hash: 031636b74d5a26b6e43a3571a14f395f3564a43886333f4e468cc5fc37e1453a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-priv-set.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-priv-set
+#check_PROGRAMS += test-priv-set
+#
+#License:
+#GPL
+
+File: ./modules/progname
+Hash: a8929c40c874a87e1611500b2e26b077ebf85e82c8b2e8a68481aed79bf97260
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Program name management.
+#
+#Files:
+#lib/progname.h
+#lib/progname.c
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_CHECK_DECLS([program_invocation_name], [], [], [#include <errno.h>])
+#
+#Makefile.am:
+#lib_SOURCES += progname.h progname.c
+
+File: ./modules/propername
+Hash: decd28e88c1f60310668b74c5098487889972005c50c4b80b0f1d08e1202c110
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Localization of proper names.
+#
+#Notice:
+#If you are using GNU gettext version 0.16.1 or older, add the following options
+#to XGETTEXT_OPTIONS in your po/Makevars:
+#  --keyword='proper_name:1,"This is a proper name. See the gettext manual, section Names."'
+#  --keyword='proper_name_utf8:1,"This is a proper name. See the gettext manual, section Names."'
+#
+#Files:
+#lib/propername.h
+#lib/propername.c
+#
+#Depends-on:
+#stdbool
+
+File: ./modules/pthread
+Hash: 179a35ad71a67378f76f3ef19829397b02c9b018b00557d4d5b4fee8434a0846
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Implement a trivial subset of the pthreads library.
+#
+#Files:
+#lib/pthread.in.h
+#m4/pthread.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_PTHREAD_CHECK
+#
+#Makefile.am:
+#BUILT_SOURCES += $(PTHREAD_H)
+
+File: ./modules/putenv
+Hash: 541c7b804c9a4701e7bfd83332859956acece70efbefa359dad2647250516ce8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#putenv() function: change or add an environment variable.
+#
+#Files:
+#lib/putenv.c
+#m4/putenv.m4
+#
+#Depends-on:
+#stdlib
+#malloc-posix
+#
+#configure.ac:
+#gl_FUNC_PUTENV
+#gl_STDLIB_MODULE_INDICATOR([putenv])
+
+File: ./modules/quote
+Hash: ca3295c10160f924a83b2fe2105e7437cfcde7bb79d5d3a00145d43e503b3019
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Quote arguments for use in error messages.
+#
+#Files:
+#lib/quote.h
+#lib/quote.c
+#m4/quote.m4
+#
+#Depends-on:
+#quotearg
+#
+#configure.ac:
+#gl_QUOTE
+#
+#Makefile.am:
+
+File: ./modules/quotearg
+Hash: 8b5a9af7872f2e8372dc495970aecc76737417a2d5329d9a887771ffa89b1b18
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Quote arguments for use in error messages.
+#
+#Files:
+#lib/quotearg.h
+#lib/quotearg.c
+#m4/mbstate_t.m4
+#m4/mbrtowc.m4
+#m4/quotearg.m4
+#
+#Depends-on:
+#extensions
+#gettext-h
+#mbrtowc
+#mbsinit
+
+File: ./modules/quotearg-tests
+Hash: bf025f38f2cc4cd441d67679a34cb1cd037b2aed2b5ccd9752ed155dc1fe3bc9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-quotearg.sh
+#tests/test-quotearg.c
+#tests/locale/fr/LC_MESSAGES/test-quotearg.po
+#tests/locale/fr/LC_MESSAGES/test-quotearg.mo
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#gettext
+#progname
+#stdint
+#setenv
+#unsetenv
+
+File: ./modules/raise
+Hash: 72d98fab0295eff8b6c69cc8f4c79b245a2b90f1c986c488f731c8c17e0be2c4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Send a signal to the executing process.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/raise.c
+#
+#Depends-on:
+#
+#configure.ac:
+
+File: ./modules/random_r
+Hash: 793abb0b71b26e916ba70493453d3a8ac0336c57e96ba22abe30a2c27d74232a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#reentrant random number generator
+#
+#Files:
+#lib/random_r.c
+#m4/random_r.m4
+#
+#Depends-on:
+#stdlib
+#stdint
+#
+#configure.ac:
+#gl_FUNC_RANDOM_R
+#gl_STDLIB_MODULE_INDICATOR([random_r])
+
+File: ./modules/random_r-tests
+Hash: b10597e158195a2e9f6be80fbd5c8323d0ab225fad79842bc4c0b68efe9180c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-random_r.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-random_r
+#check_PROGRAMS += test-random_r
+#
+#License:
+#LGPL
+
+File: ./modules/rawmemchr
+Hash: bea7805fd638d721ff6a8c1db17a1b510af5bdd54a19b78ce254b8c536cc47f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#rawmemchr() function: Find the first occurrence of C in S.
+#
+#Files:
+#lib/rawmemchr.c
+#lib/rawmemchr.valgrind
+#m4/rawmemchr.m4
+#
+#Depends-on:
+#extensions
+#string
+#
+#configure.ac:
+#gl_FUNC_RAWMEMCHR
+#gl_STRING_MODULE_INDICATOR([rawmemchr])
+
+File: ./modules/rawmemchr-tests
+Hash: 1ea4b8c90ab9a92f1a865b9f0dd233b989c105cbc709c2c53c7612d0f726258d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-rawmemchr.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-rawmemchr
+#check_PROGRAMS += test-rawmemchr
+
+File: ./modules/rbtree-list
+Hash: 9c61f39fda13fc14ead05dc276b46c1e46119cacd727023c3aad3952fed1741e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type implemented by a binary tree.
+#
+#Files:
+#lib/gl_rbtree_list.h
+#lib/gl_rbtree_list.c
+#lib/gl_anyrbtree_list1.h
+#lib/gl_anyrbtree_list2.h
+#lib/gl_anytree_list1.h
+#lib/gl_anytree_list2.h
+#
+#Depends-on:
+#list
+#xalloc
+
+File: ./modules/rbtree-list-tests
+Hash: 600691ef07f56874f4a0638393d4b7e002fbd620d484a190042d2f8691ec0d16
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-rbtree_list.c
+#
+#Depends-on:
+#array-list
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-rbtree_list
+#check_PROGRAMS += test-rbtree_list
+#test_rbtree_list_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/rbtree-oset
+Hash: a9130036ba8e0984da5b35beedcac0c875a77362fd84798e9c9ba9ca9d158bd9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Ordered set data type implemented by a binary tree.
+#
+#Files:
+#lib/gl_rbtree_oset.h
+#lib/gl_rbtree_oset.c
+#lib/gl_anytree_oset.h
+#
+#Depends-on:
+#oset
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/rbtree-oset-tests
+Hash: f0f3f94fab6019457c9b5744f749637d2947731f1f9c7000aa1d3818875ce22b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-rbtree_oset.c
+#
+#Depends-on:
+#array-oset
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-rbtree_oset
+#check_PROGRAMS += test-rbtree_oset
+#test_rbtree_oset_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/rbtreehash-list
+Hash: 8c0a671295174f7e5677584f8c996f9a29a1b1099bc7c9a56595e4759e856b1e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type implemented by a hash table with a binary tree.
+#
+#Files:
+#lib/gl_rbtreehash_list.h
+#lib/gl_rbtreehash_list.c
+#lib/gl_anyhash_list1.h
+#lib/gl_anyhash_list2.h
+#lib/gl_anyrbtree_list1.h
+#lib/gl_anyrbtree_list2.h
+#lib/gl_anytree_list1.h
+#lib/gl_anytree_list2.h
+#lib/gl_anytreehash_list1.h
+#lib/gl_anytreehash_list2.h
+
+File: ./modules/rbtreehash-list-tests
+Hash: f723af6f1cf424910314b765ffc07e2d771b3a829d826620d89e55cac4334021
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-rbtreehash_list.c
+#
+#Depends-on:
+#array-list
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-rbtreehash_list
+#check_PROGRAMS += test-rbtreehash_list
+#test_rbtreehash_list_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/read-file
+Hash: 7d166c5e40145c9e8ac9da4639d48f99e37f1d84218733eb0bb61e1a186834cb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#read_file() function: read the contents of a file into a string
+#
+#Files:
+#lib/read-file.h
+#lib/read-file.c
+#m4/read-file.m4
+#
+#Depends-on:
+#realloc-posix
+#
+#configure.ac:
+#gl_FUNC_READ_FILE
+#
+#Makefile.am:
+
+File: ./modules/read-file-tests
+Hash: c8c0f329de744e207a9cbf57f7623e85707e165415ba7e91ce37caa4b8a4210c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-read-file.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-read-file
+#check_PROGRAMS += test-read-file
+
+File: ./modules/readline
+Hash: b251d53a560cfec4d415550e53ccd68b951b3e664a56c4b5d9b58cc29b5a936b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Simple implementation of readline.
+#
+#Files:
+#lib/readline.h
+#lib/readline.c
+#m4/readline.m4
+#
+#Depends-on:
+#getline
+#havelib
+#
+#configure.ac:
+#gl_FUNC_READLINE
+
+File: ./modules/readlink
+Hash: 9655c25e079dfabc9788e2aa19ffe3379daaba29066de2a409e25b97f4766e41
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#readlink() function: read the value of a symbolic link.
+#
+#Files:
+#lib/readlink.c
+#m4/readlink.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_READLINK
+#gl_UNISTD_MODULE_INDICATOR([readlink])
+#
+#Makefile.am:
+
+File: ./modules/readtokens
+Hash: 4aad7cd947a0c930667f7b65f368b042e39252d5d600efb9bac9ab94ea814cca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read tokens from a stream.
+#
+#Files:
+#lib/readtokens.h
+#lib/readtokens.c
+#m4/readtokens.m4
+#
+#Depends-on:
+#xalloc
+#stdbool
+#
+#configure.ac:
+#gl_READTOKENS
+
+File: ./modules/readtokens0
+Hash: f9954e72d3b5c2744af172c346a129d4ea7c0e6f38d967218bf79d5f7772c8d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read NUL-separated tokens from a stream.
+#
+#Files:
+#lib/readtokens0.h
+#lib/readtokens0.c
+#
+#Depends-on:
+#obstack
+#stdbool
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += readtokens0.h readtokens0.c
+
+File: ./modules/readutmp
+Hash: 5881d6cb6b46f849760cfb6b139fa197c5c35d009d4bb95c85411eae145f1f99
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read entire utmp file into memory.
+#
+#Files:
+#lib/readutmp.h
+#lib/readutmp.c
+#m4/readutmp.m4
+#
+#Depends-on:
+#extensions
+#xalloc
+#stdbool
+#stdint
+#
+#configure.ac:
+
+File: ./modules/realloc
+Hash: b0fedb4e5d5429d80c6a3eabd39ca9050a4870545e6c746b6350d1901305b577
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#realloc() function that is glibc compatible.
+#
+#Files:
+#lib/realloc.c
+#
+#Depends-on:
+#realloc-posix
+#
+#configure.ac:
+#AC_FUNC_REALLOC
+#AC_DEFINE([GNULIB_REALLOC_GNU], 1, [Define to indicate the 'realloc' module.])
+#
+#Makefile.am:
+
+File: ./modules/realloc-posix
+Hash: a17165c4894738d8d6b7b24846b24d6d673b08760f45c99baa34dd5a4079355f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#realloc() function: allocate memory with indefinite extent.
+#
+#Files:
+#lib/realloc.c
+#m4/realloc.m4
+#m4/malloc.m4
+#
+#Depends-on:
+#stdlib
+#
+#configure.ac:
+#gl_FUNC_REALLOC_POSIX
+#gl_STDLIB_MODULE_INDICATOR([realloc-posix])
+
+File: ./modules/recv
+Hash: 9b256bdcb2769723d9c6c028e6f61b5213d9b61a3344442126a358b5563a4c5c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#recv() function: receive (read) data from a connected socket.
+#
+#Files:
+#lib/recv.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+#  AC_LIBOBJ([recv])
+
+File: ./modules/recvfrom
+Hash: d06a25ef81c55e6b5dc324e44789ccd3ebffc2e0c5f3218feeaf3e3326cedfe0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#recvfrom() function: receive (read) data from a potentially unconnected socket.
+#
+#Files:
+#lib/recvfrom.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#getpeername
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+
+File: ./modules/regex
+Hash: 98dd155090f459101e94e7f24c5de1a99fe8b80a15f03dbceaca2f3de2a091bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Regular expression matching.
+#
+#Files:
+#lib/regex.h
+#lib/regex.c
+#lib/regex_internal.c
+#lib/regex_internal.h
+#lib/regexec.c
+#lib/regcomp.c
+#m4/regex.m4
+#m4/mbstate_t.m4
+#
+#Depends-on:
+#alloca
+
+File: ./modules/regexprops-generic
+Hash: 6b63dc284f9f308de27d3d0f5bb4f0a9f5a3e9f157692ff820f316b0926af20b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Describe the various regular expression flavors.
+#
+#Files:
+#doc/regexprops-generic.texi
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/relocatable-lib
+Hash: 3d56c9aac64a0dfd2256d4572b923208b3917c4a5e8da9d3b3e0175a0b718a85
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Help make libraries relocatable, that is, to allow them to function
+#properly when copied to an arbitrary directory.
+#
+#Files:
+#doc/relocatable.texi
+#lib/relocatable.h
+#lib/relocatable.c
+#m4/relocatable-lib.m4
+#
+#Depends-on:
+#xalloc
+#strdup
+#
+#configure.ac:
+
+File: ./modules/relocatable-lib-lgpl
+Hash: 3c6da87eb0fbd38e7f7ef65fab874bcef37b1163db71cc048a36ed18bd64a57a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Help make libraries relocatable, that is, to allow them to function
+#properly when copied to an arbitrary directory.
+#
+#Files:
+#doc/relocatable.texi
+#lib/relocatable.h
+#lib/relocatable.c
+#m4/relocatable-lib.m4
+#
+#Depends-on:
+#strdup
+#
+#configure.ac:
+#gl_RELOCATABLE_LIBRARY
+
+File: ./modules/relocatable-prog
+Hash: 98f1773e2b8c5432cf469174ef2bce2ab0fa773edbde8c786c1d0816a6916b14
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Help make programs relocatable, that is, to allow them to function
+#properly when copied to an arbitrary directory.
+#
+#Files:
+#build-aux/config.libpath
+#build-aux/reloc-ldflags
+#doc/relocatable.texi
+#lib/relocatable.h
+#lib/relocatable.c
+#lib/progreloc.c
+#m4/relocatable.m4
+#m4/relocatable-lib.m4
+#m4/lib-ld.m4
+
+File: ./modules/relocatable-prog-wrapper
+Hash: e7863ec8c052c6a5456ba74faa1fa04d3804a50b69115a8e7711c4684ed18f4c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Source for the wrapper program that is required for making programs relocatable
+#that depend on shared libraries installed with the same installation prefix.
+#
+#Files:
+#build-aux/install-reloc
+#lib/relocwrapper.c
+#lib/progname.h
+#lib/progname.c
+#lib/progreloc.c
+#lib/areadlink.h
+#lib/areadlink.c
+#lib/readlink.c
+#lib/canonicalize.h
+#lib/canonicalize-lgpl.c
+
+File: ./modules/relocatable-script
+Hash: b52ad6c225203188aa43f5f35bf12426fa49374aa0a41fcb206179f443fdcc0f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Help make shell scripts relocatable, that is, to allow them to
+#function properly when copied to an arbitrary directory.
+#
+#Files:
+#doc/relocatable.texi
+#build-aux/relocatable.sh.in
+#m4/relocatable-lib.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_REQUIRE([gl_RELOCATABLE_NOP])
+#relocatable_sh=$ac_aux_dir/relocatable.sh.in
+#AC_SUBST_FILE([relocatable_sh])
+
+File: ./modules/rename
+Hash: 90b96cd7902bc911745c9c03a0189af5e2e4ce2bb26012b9dcb983b20b104b51
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#rename() function: change the name or location of a file.
+#
+#Files:
+#lib/rename.c
+#m4/rename.m4
+#
+#Depends-on:
+#xalloc
+#dirname
+#stdio
+#
+#configure.ac:
+#gl_FUNC_RENAME
+#gl_STDIO_MODULE_INDICATOR([rename])
+
+File: ./modules/rename-dest-slash
+Hash: d4a9c644f7d7d9e1e63fe4d33711c9f738ad8a5a82695ff21fc014be8096d9d9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#rename() function: change the name or location of a file.
+#
+#Files:
+#lib/rename-dest-slash.c
+#m4/rename-dest-slash.m4
+#
+#Depends-on:
+#xalloc
+#dirname
+#
+#configure.ac:
+#gl_FUNC_RENAME_TRAILING_DEST_SLASH
+#
+#Makefile.am:
+
+File: ./modules/rmdir
+Hash: 80a7e8d54e1e35461557c783c7eed95170a48f036cfc501c707196461ba13cf3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#rmdir() function: delete a directory.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/rmdir.c
+#m4/rmdir.m4
+#
+#Depends-on:
+#sys_stat
+
+File: ./modules/rmdir-errno
+Hash: f1c2f35b12afe45d2291b83db06a26c03d1c82e33626b86e844701f1bad9459b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#rmdir errno for nonempty directories
+#
+#Files:
+#m4/rmdir-errno.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_RMDIR_NOTEMPTY
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/round
+Hash: e5719df369376caf700176102b5ff22715d3fd8c29badc72fdf97b0e2e718feb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#round() function: round toward nearest, breaking ties away from zero.
+#
+#Files:
+#lib/round.c
+#m4/check-math-lib.m4
+#m4/round.m4
+#m4/floor.m4
+#m4/ceil.m4
+#
+#Depends-on:
+#float
+#floor
+#math
+#extensions
+
+File: ./modules/round-tests
+Hash: f168540c9576ab38cc175925470922caffa4edf6610869ce256963363de628a4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-round1.c
+#tests/test-round2.c
+#tests/nan.h
+#
+#Depends-on:
+#isnand-nolibm
+#stdbool
+#stdint
+#fprintf-posix
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/roundf
+Hash: 93cf25dfabca8143cb883aad12c3709ef46d22b28cda679c7bf1aad9c83526d6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#roundf() function: round toward nearest, breaking ties away from zero.
+#
+#Files:
+#lib/round.c
+#lib/roundf.c
+#m4/check-math-lib.m4
+#m4/roundf.m4
+#m4/floorf.m4
+#m4/ceilf.m4
+#
+#Depends-on:
+#float
+#math
+#extensions
+
+File: ./modules/roundf-tests
+Hash: fde1d88ffe29900b4440de49d7979b436c1db18e8ea811289be9b0c8433c8e44
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-roundf1.c
+#tests/test-round2.c
+#tests/test-roundf2.c
+#tests/nan.h
+#
+#Depends-on:
+#ceilf
+#floorf
+#isnanf-nolibm
+#stdbool
+#stdint
+#fprintf-posix
+#verify
+
+File: ./modules/roundl
+Hash: 24d3cd0f8ab1e87b6d92408734644446758892cf4a25811098c919964198ba03
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#roundl() function: round toward nearest, breaking ties away from zero.
+#
+#Files:
+#lib/round.c
+#lib/roundl.c
+#m4/check-math-lib.m4
+#m4/roundl.m4
+#m4/floorl.m4
+#m4/ceill.m4
+#
+#Depends-on:
+#float
+#math
+#extensions
+
+File: ./modules/roundl-tests
+Hash: c334c07780c8ca0159e40af0a5dfa7b1b7d2ceb4c292c926b8acdce6976f6c88
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-roundl.c
+#tests/nan.h
+#
+#Depends-on:
+#fpucw
+#isnanl-nolibm
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-roundl
+#check_PROGRAMS += test-roundl
+#test_roundl_LDADD = $(LDADD) @ROUNDL_LIBM@
+
+File: ./modules/rpmatch
+Hash: 1bd2b41d1e257cec6eef66e0309595ab05afcd0f1728abe139f1cd748a3341ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent classification of a response as matching "yes" or "no".
+#
+#Files:
+#lib/rpmatch.c
+#m4/rpmatch.m4
+#
+#Depends-on:
+#stdlib
+#extensions
+#stdbool
+#gettext-h
+#regex
+#strdup
+
+File: ./modules/safe-alloc
+Hash: 318c12ee32041a475fad60202c38ea078fa0efe8b5c9d24ba4decbb53e261feb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A set of macros to make calls to alloc/calloc/realloc safer.
+#
+#Files:
+#lib/safe-alloc.h
+#lib/safe-alloc.c
+#m4/safe-alloc.m4
+#
+#configure.ac:
+#gl_SAFE_ALLOC
+#
+#Makefile.am:
+#
+#Include:
+#"safe-alloc.h"
+
+File: ./modules/safe-alloc-tests
+Hash: e05b97f7a31cd2abfdf49a65b008d05f56a00a63740a2f46870f3a55ddec999a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-safe-alloc.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-safe-alloc
+#check_PROGRAMS += test-safe-alloc
+
+File: ./modules/safe-read
+Hash: 99f228a7f13e102230dc2eb494bc2aa84267f1661356ac9d2cd209a769dc4bb7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#An interface to the read() function that retries after interrupts.
+#
+#Files:
+#lib/safe-read.h
+#lib/safe-read.c
+#m4/safe-read.m4
+#
+#Depends-on:
+#ssize_t
+#
+#configure.ac:
+#gl_SAFE_READ
+#
+#Makefile.am:
+
+File: ./modules/safe-write
+Hash: c988dd03abe10acd1b1951941c879ccd915f3a92ff6181f0fbbf6960ebb07d5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#An interface to the write() function that retries after interrupts.
+#
+#Files:
+#lib/safe-write.h
+#lib/safe-write.c
+#m4/safe-write.m4
+#
+#Depends-on:
+#safe-read
+#write
+#
+#configure.ac:
+#gl_SAFE_WRITE
+
+File: ./modules/same
+Hash: cb4b09cd25200998cd90937bb369e7903ccaa031359400db38fb62802b7cb606
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine whether two file names refer to the same directory entry of the same
+#directory.
+#
+#Files:
+#lib/same.h
+#lib/same.c
+#m4/same.m4
+#
+#Depends-on:
+#xalloc
+#error
+#dirname
+#same-inode
+#stdbool
+
+File: ./modules/same-inode
+Hash: 2fa81e39adc63c3ba3a626aa5e3b338be49c78b677a3be7b2cc68a6cea944513
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#compare inodes
+#
+#Files:
+#lib/same-inode.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"same-inode.h"
+
+File: ./modules/save-cwd
+Hash: 6590304e452e0b6244441d68042a2184be8eb984f2ef74284ca9cf73d614f0a2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Save and restore the current working directory.
+#
+#Files:
+#lib/save-cwd.h
+#lib/save-cwd.c
+#m4/save-cwd.m4
+#
+#Depends-on:
+#chdir-long
+#fcntl-safer
+#xgetcwd
+#stdbool
+#
+#configure.ac:
+
+File: ./modules/savedir
+Hash: 7bbd630151c841a1d9acc0e722ca5a6d9542cbd0ca2a9bab9cc9696149bc1768
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return the entries of a directory (just the names) as an argz string.
+#
+#Files:
+#lib/savedir.h
+#lib/savedir.c
+#m4/savedir.m4
+#
+#Depends-on:
+#dirent-safer
+#fdopendir
+#xalloc
+#
+#configure.ac:
+#gl_SAVEDIR
+
+File: ./modules/savewd
+Hash: 8c94f5b217bdf73b11515678a65cf4e6b78be0e7e42d6f1a994f3041e0776a1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Save and restore the working directory, possibly using a child process.
+#
+#Files:
+#lib/savewd.h
+#lib/savewd.c
+#m4/savewd.m4
+#
+#Depends-on:
+#dirname
+#errno
+#exit
+#fchdir
+#fcntl-safer
+#fcntl-h
+
+File: ./modules/scandir
+Hash: 831a360ea8af225658a66be193906c1c44d4e696b46ec942bfb7a63102e4f696
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#scandir() function: collect entries of a directory
+#
+#Files:
+#lib/scandir.c
+#m4/scandir.m4
+#
+#Depends-on:
+#dirent
+#extensions
+#
+#configure.ac:
+#gl_FUNC_SCANDIR
+#gl_DIRENT_MODULE_INDICATOR([scandir])
+
+File: ./modules/sched
+Hash: 106454311edb936efad2a93485f8e78285330f7786f1f62b91143fc55750bfc4
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <sched.h> include file.
+#
+#Files:
+#lib/sched.in.h
+#m4/sched_h.m4
+#
+#Depends-on:
+#include_next
+#
+#configure.ac:
+#gl_SCHED_H
+#
+#Makefile.am:
+#BUILT_SOURCES += $(SCHED_H)
+
+File: ./modules/sched-tests
+Hash: 1f9b5d0743aaad4b09f3bb1f009cca552644499472bd163d641a4aab83b8d266
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sched.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sched
+#check_PROGRAMS += test-sched
+
+File: ./modules/search
+Hash: d6d2cf1763349c0c1826423c8c125a05064e9d81cc313437f5ec0003a3c519fd
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <search.h>.
+#
+#Files:
+#lib/search.in.h
+#m4/search_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#
+#configure.ac:
+#gl_SEARCH_H
+#
+#Makefile.am:
+
+File: ./modules/search-tests
+Hash: cb191f24a9131ca5d8374b717e55dd026819b947dc621b9b13d61262af90ca57
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-search.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-search
+#check_PROGRAMS += test-search
+#
+#License:
+#LGPL
+
+File: ./modules/select
+Hash: a7f90fe90645643cea58f80e1d7747324502379942e418fcc85ff47062533f4e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#select() function: synchronous I/O multiplexing.
+#
+#Files:
+#lib/select.c
+#m4/select.m4
+#
+#Depends-on:
+#alloca
+#sys_select
+#
+#configure.ac:
+#gl_FUNC_SELECT
+#gl_SYS_SELECT_MODULE_INDICATOR([select])
+
+File: ./modules/select-tests
+Hash: c49f6a270f00aefa2a1100ba8edfecf90866aff8e0399b61e4b440cb873e1595
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-select.c
+#tests/test-select-fd.c
+#tests/test-select-in.sh
+#tests/test-select-out.sh
+#tests/test-select-stdin.c
+#
+#Depends-on:
+#stdbool
+#netinet_in
+#arpa_inet
+#sys_ioctl
+#extensions
+#inet_pton
+#errno
+
+File: ./modules/selinux-at
+Hash: ae159b34d6796d7c1b901dc16d6e62ee9066587f7dc6e3c129c35af8ffeefadd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#openat-style fd-relative functions for SE Linux
+#
+#Files:
+#lib/selinux-at.c
+#lib/selinux-at.h
+#
+#Depends-on:
+#openat
+#selinux-h
+#
+#configure.ac:
+#AC_CHECK_HEADERS([selinux/flask.h])
+#AC_LIBOBJ([selinux-at])
+
+File: ./modules/selinux-h
+Hash: 3de65edffe430c292a3e38990482507509459e492419a2aa2773df98b4aef7c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#SELinux-related headers for systems that lack them.
+#
+#Files:
+#lib/se-context.in.h
+#lib/se-selinux.in.h
+#m4/selinux-context-h.m4
+#m4/selinux-selinux-h.m4
+#
+#Depends-on:
+#errno
+#
+#configure.ac:
+#gl_HEADERS_SELINUX_SELINUX_H
+#gl_HEADERS_SELINUX_CONTEXT_H
+
+File: ./modules/send
+Hash: 36d12d4c74ef19a1d4903bec29db1623eb6f80b27a8bf9922e44d3e74ad8eaaf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#send() function: send (write) data to a connected socket.
+#
+#Files:
+#lib/send.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+#  AC_LIBOBJ([send])
+
+File: ./modules/sendto
+Hash: 788b48a5a00e4d44ce3074714e4d76faa89c764b67936791ac48afaf1226defa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#sendto() function: send (write) data to a potentially unconnected socket.
+#
+#Files:
+#lib/sendto.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+#  AC_LIBOBJ([sendto])
+
+File: ./modules/servent
+Hash: ec2b7af8c419ee5993c0b3fd23041480a1b2d0d6cbf83a550652f16648ba7c6a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Library containing getservent(), setservent(), endservent(), getservbyname(),
+#getservbyport(), getprotoent(), setprotoent(), endprotoent(), getprotobyname(),
+#getprotobynumber().
+#
+#Files:
+#m4/servent.m4
+#
+#Depends-on:
+#sys_socket
+#
+#configure.ac:
+#gl_SERVENT
+#
+#Makefile.am:
+
+File: ./modules/setenv
+Hash: f8e8cd307689a860b23f8c819cf47abea6f7915c6fc44f8991845b7204653338
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#setenv() function: set an environment variable.
+#
+#Files:
+#lib/setenv.c
+#m4/setenv.m4
+#
+#Depends-on:
+#stdlib
+#malloca
+#alloca-opt
+#unistd
+#environ
+#
+#configure.ac:
+
+File: ./modules/setsockopt
+Hash: c0a50733ce565910129070e1ef521b4818d26f5716ab4dee740cd460083d313a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#setsockopt() function: specify optional settings on a socket.
+#
+#Files:
+#lib/setsockopt.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#sys_time
+#socklen
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+
+File: ./modules/settime
+Hash: c1fbb7f3d5dec1edfdf45b8807007f2d85f7d678470d33540ed42e199d11f7e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Set the current time, with nanosecond resolution.
+#
+#Files:
+#lib/settime.c
+#m4/settime.m4
+#
+#Depends-on:
+#clock-time
+#errno
+#extensions
+#sys_time
+#timespec
+#
+#configure.ac:
+
+File: ./modules/sh-quote
+Hash: d0a882e643a2ac71cd8e03db323054d3914ba334e9594e6e97d6c8f3da4e7bff
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Shell quoting.
+#
+#Files:
+#lib/sh-quote.h
+#lib/sh-quote.c
+#
+#Depends-on:
+#quotearg
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += sh-quote.h sh-quote.c
+
+File: ./modules/shutdown
+Hash: 40f14ce993204072081e535fb8b243b06e01dabf1595f425cc41b65451caa5a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#shutdown() function: initiate a graceful shutdown of a socket.
+#
+#Files:
+#lib/shutdown.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+#  AC_LIBOBJ([shutdown])
+
+File: ./modules/sig2str
+Hash: 965f4df3c6a5e92a819e82c10aaccaf47665d53376a9c93f4ed011dd69c979db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert between signal names and signal numbers.
+#
+#Files:
+#lib/sig2str.h
+#lib/sig2str.c
+#m4/sig2str.m4
+#
+#Depends-on:
+#intprops
+#
+#configure.ac:
+#gl_FUNC_SIG2STR
+#
+#Makefile.am:
+
+File: ./modules/sigaction
+Hash: 07be41ae6b698d9502930f67e77626c331e97d32d53353923977982008132b42
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible signal handlers.
+#
+#Files:
+#lib/sigaction.c
+#lib/sig-handler.h
+#m4/sigaction.m4
+#
+#Depends-on:
+#signal
+#sigprocmask
+#
+#configure.ac:
+#gl_SIGACTION
+#gl_SIGNAL_MODULE_INDICATOR([sigaction])
+
+File: ./modules/sigaction-tests
+Hash: 9f4c4fd68033b8b0de4f979d019a55818e500783ff016ae62391144b3dee1e44
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sigaction.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sigaction
+#check_PROGRAMS += test-sigaction
+
+File: ./modules/signal
+Hash: b581455f675e2137d8819b511c6162fd3158dea57d926957f1867bb2cd7af0b7
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <signal.h>.
+#
+#Files:
+#lib/signal.in.h
+#m4/signal_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#
+#configure.ac:
+#gl_SIGNAL_H
+#
+#Makefile.am:
+
+File: ./modules/signal-tests
+Hash: 0e083125fa83ca73d7eeff33fc2b77c249284a8b8762ff00d837e45d9cdef749
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-signal.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-signal
+#check_PROGRAMS += test-signal
+#
+#License:
+#LGPL
+
+File: ./modules/signbit
+Hash: 7c4ee7f60ecb6a37679a77770d01962fd542ede80e1cf8dfe1d60cf74f0911b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#signbit() macro: Determine the sign bit of a floating-point number.
+#
+#Files:
+#lib/signbitf.c
+#lib/signbitd.c
+#lib/signbitl.c
+#lib/float+.h
+#m4/signbit.m4
+#
+#Depends-on:
+#float
+#math
+#isnanf-nolibm
+#isnand-nolibm
+
+File: ./modules/signbit-tests
+Hash: eef0df7aab3069078ab4eec7d9a25e49d2c6ea6b104cf9df24a76f03554491b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-signbit.c
+#m4/exponentf.m4
+#m4/exponentd.m4
+#m4/exponentl.m4
+#
+#Depends-on:
+#float
+#
+#configure.ac:
+#AC_REQUIRE([gl_FLOAT_EXPONENT_LOCATION])
+#AC_REQUIRE([gl_DOUBLE_EXPONENT_LOCATION])
+#AC_REQUIRE([gl_LONG_DOUBLE_EXPONENT_LOCATION])
+#
+#Makefile.am:
+
+File: ./modules/sigpipe
+Hash: 199477370fc1f54a1b9ed82b3ac2344d45f5122ef791e8596d51b9d4ba6a1122
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Emulation of POSIX compatible SIGPIPE behaviour.
+#
+#Files:
+#m4/sigpipe.m4
+#
+#Depends-on:
+#signal
+#sigprocmask
+#stdio
+#unistd
+#
+#configure.ac:
+#gl_SIGNAL_SIGPIPE
+#dnl Define the C macro GNULIB_SIGPIPE to 1.
+
+File: ./modules/sigpipe-die
+Hash: ed55307393a024dfc8977b00e3bd21769a5e92cb82df4d0432f18b493df597a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Report a SIGPIPE signal and exit.
+#
+#Files:
+#lib/sigpipe-die.h
+#lib/sigpipe-die.c
+#
+#Depends-on:
+#error
+#gettext-h
+#exitfail
+#sigpipe
+#sigprocmask
+#sigaction
+
+File: ./modules/sigpipe-tests
+Hash: 94b56c44ef1df251243b29c8d1d869017825d6d98db2c4222b2a343c24ed4559
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sigpipe.c
+#tests/test-sigpipe.sh
+#
+#Depends-on:
+#write
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sigpipe.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-sigpipe
+
+File: ./modules/sigprocmask
+Hash: c975bf065682dc172ec4dc379ab1ed192aa0d6aad477a6864fbf60c1246c6897
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible signal blocking.
+#
+#Files:
+#lib/sigprocmask.c
+#m4/signalblocking.m4
+#
+#Depends-on:
+#signal
+#stdint
+#raise
+#
+#configure.ac:
+#gl_SIGNALBLOCKING
+#gl_SIGNAL_MODULE_INDICATOR([sigprocmask])
+
+File: ./modules/size_max
+Hash: 73c507c110287a3663aa8c381fbcb055b3c6887198d073f200910fd71aa95555
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Provide SIZE_MAX.
+#
+#Files:
+#m4/size_max.m4
+#lib/size_max.h
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_SIZE_MAX
+#
+#Makefile.am:
+#lib_SOURCES += size_max.h
+
+File: ./modules/sleep
+Hash: fba49bfd14065e4eee5061125ab9934e8a8c7f63c807a7f37814bc589e06615a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#sleep() function: pause execution of the current thread.
+#
+#Files:
+#lib/sleep.c
+#m4/sleep.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+#gl_FUNC_SLEEP
+#gl_UNISTD_MODULE_INDICATOR([sleep])
+#
+#Makefile.am:
+
+File: ./modules/sleep-tests
+Hash: 30fe1f57a847e2754087348d3a09ad74984a26024ebccd898a820de4fdef1f0a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sleep.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sleep
+#check_PROGRAMS += test-sleep
+
+File: ./modules/snprintf
+Hash: 99b7a128476c367292fe170e7388305af688410287af40cabdacf7a85f7bbe91
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#snprintf() function: print formatted output to a fixed length string
+#
+#Files:
+#lib/snprintf.c
+#m4/snprintf.m4
+#m4/printf.m4
+#
+#Depends-on:
+#stdio
+#vasnprintf
+#errno
+#
+#configure.ac:
+#gl_FUNC_SNPRINTF
+
+File: ./modules/snprintf-posix
+Hash: 3e9391c27d056aee33e7da736d22cbafcea9d78737ac24b040194cc85e09244d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible snprintf() function: print formatted output to a fixed length
+#string
+#
+#Files:
+#m4/snprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#snprintf
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+#frexpl-nolibm
+
+File: ./modules/snprintf-posix-tests
+Hash: aa48d1605def6aa15a349ec9b28de3f3cb9a804927df9d21f7ec442108e35f7e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-snprintf-posix.c
+#tests/test-snprintf-posix.h
+#tests/test-snprintf.c
+#tests/nan.h
+#
+#Depends-on:
+#stdint
+#float
+#
+#configure.ac:
+#AC_DEFINE([CHECK_SNPRINTF_POSIX], 1,
+#  [Define to 1 for strict checking in test-snprintf.c.])
+#
+#Makefile.am:
+
+File: ./modules/snprintf-tests
+Hash: 0ff8528c57338b089cf559ab8390b3cf06e82b3aa70a9856b64903a91110e007
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-snprintf.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-snprintf
+#check_PROGRAMS += test-snprintf
+
+File: ./modules/socket
+Hash: 760be8eece098f5cb0859823a95ed98f12e243b07233e51add74b57b5fcf7432
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#socket() function: create a socket.
+#
+#Files:
+#lib/socket.c
+#lib/w32sock.h
+#
+#Depends-on:
+#sys_socket
+#errno
+#sockets
+#
+#configure.ac:
+#AC_REQUIRE([gl_HEADER_SYS_SOCKET])
+#if test "$ac_cv_header_winsock2_h" = yes; then
+
+File: ./modules/sockets
+Hash: 4126e02f36a87f45d964ffda63593a3bbc780a0ff4a782fee581da0cc5a6721d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#General facilities for using sockets
+#
+#Files:
+#lib/sockets.c
+#lib/sockets.h
+#lib/w32sock.h
+#m4/sockets.m4
+#
+#Depends-on:
+#sys_socket
+#close-hook
+#
+#configure.ac:
+#gl_SOCKETS
+
+File: ./modules/sockets-tests
+Hash: 478a2b82993ba28fa4e38f3da513f68ba86c56bc24322e3b367c9059c2f0f46b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sockets.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sockets
+#check_PROGRAMS += test-sockets
+#test_sockets_LDADD = $(LDADD) @LIBSOCKET@
+
+File: ./modules/socklen
+Hash: 5a6f4327fa652ca2de47827244f6f31857349eb6813b8e8dc38ce2f77dec7b02
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Declare socklen_t in config.h if the system doesn't have it.
+#
+#Files:
+#m4/socklen.m4
+#
+#Depends-on:
+#sys_socket
+#
+#configure.ac:
+#gl_TYPE_SOCKLEN_T
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/spawn
+Hash: 98db23dfb5fb8488a0b81126b79432455b524be81dffa5b684957af4d2f65b00
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A POSIX compliant <spawn.h>.
+#
+#Files:
+#lib/spawn.in.h
+#m4/spawn_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#sched
+#
+#configure.ac:
+#gl_SPAWN_H
+
+File: ./modules/sprintf-posix
+Hash: 8ecaa26a2793633affd7dafec62afdee8040029061a42f0048b179f1918f7525
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible sprintf() function: print formatted output to a string
+#
+#Files:
+#lib/sprintf.c
+#m4/sprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#stdio
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+#frexpl-nolibm
+
+File: ./modules/sprintf-posix-tests
+Hash: 524e6eba911ef670a4d2e2af84b7cbb7c5679b78aaa39e685322de151f0fcccc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sprintf-posix.c
+#tests/test-sprintf-posix.h
+#tests/nan.h
+#
+#Depends-on:
+#stdint
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sprintf-posix
+#check_PROGRAMS += test-sprintf-posix
+
+File: ./modules/ssize_t
+Hash: e3040cc98da673a52d6690bf4ec5bf816d5b423ce3f42f942557ca401e89fa87
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Define ssize_t if it does not already exist.
+#
+#Files:
+#m4/ssize_t.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_TYPE_SSIZE_T
+#
+#Makefile.am:
+#
+#Include:
+##include <sys/types.h>
+
+File: ./modules/stat-macros
+Hash: 19a4ff4a01f4f539788495b28a9bc53a84b8d0709bde1556f753c3b6ec965bda
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#stat-related macros
+#
+#Files:
+#lib/stat-macros.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"stat-macros.h"
+
+File: ./modules/stat-time
+Hash: 40e5e8024121f13b956b4b91751e10ae5e290f3443428cfe0013b6de4c74169f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#stat-related time functions
+#
+#Files:
+#lib/stat-time.h
+#m4/stat-time.m4
+#
+#Depends-on:
+#time
+#
+#configure.ac:
+#gl_STAT_TIME
+#gl_STAT_BIRTHTIME
+#
+#Makefile.am:
+
+File: ./modules/stat-time-tests
+Hash: 2ca4e868457774774f30f46bc1498664e95111a24a0fb2f612c89a0be818d38f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-stat-time.c
+#
+#Depends-on:
+#time
+#sleep
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-stat-time
+#check_PROGRAMS += test-stat-time
+
+File: ./modules/stdarg
+Hash: 4396e6d252ffcea369f031414cff4ad5c7cf19346b8c908b8c547d58f204e234
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#An <stdarg.h> that conforms to C99.
+#
+#Files:
+#lib/stdarg.in.h
+#m4/stdarg.m4
+#
+#Depends-on:
+#include_next
+#
+#configure.ac-early:
+#dnl Some compilers (e.g., AIX 5.3 cc) need to be in c99 mode
+#dnl for the builtin va_copy to work.  With Autoconf 2.60 or later,
+#dnl AC_PROG_CC_STDC arranges for this.  With older Autoconf AC_PROG_CC_STDC
+#dnl shouldn't hurt, though installers are on their own to set c99 mode.
+
+File: ./modules/stdbool
+Hash: 3cbd93d722b352c1b2f23b7dd51709813fdd4072b294d41fa3a96caeab9bf967
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#An <stdbool.h> that nearly conforms to C99.
+#(Nearly: casts to bool may not work.)
+#
+#Files:
+#lib/stdbool.in.h
+#m4/stdbool.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#AM_STDBOOL_H
+#
+#Makefile.am:
+#BUILT_SOURCES += $(STDBOOL_H)
+
+File: ./modules/stdbool-tests
+Hash: 7f54c93281898b8aed304625dce03fb5fc1ca32adcbe0e4f2691cdc031c6c753
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-stdbool.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-stdbool
+#check_PROGRAMS += test-stdbool
+#
+#License:
+#LGPL
+
+File: ./modules/stddef
+Hash: 243de985823f8405c63bb77c348f603b543baa2fcdb81c9816ddf490fca00af3
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <stddef.h> that works around platform issues.
+#
+#Files:
+#lib/stddef.in.h
+#m4/stddef_h.m4
+#m4/wchar_t.m4
+#
+#Depends-on:
+#include_next
+#
+#configure.ac:
+#gl_STDDEF_H
+#
+#Makefile.am:
+
+File: ./modules/stddef-tests
+Hash: 4a3846b781424614dd86a5c8beac0b5d2191af4dccbf18ce789b9756c16c745e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-stddef.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-stddef
+#check_PROGRAMS += test-stddef
+#
+#License:
+#LGPL
+
+File: ./modules/stdint
+Hash: 8f0595316fc29b2c9301f9e7125ed21c4ed64b92d17bebdeecc95643c9b5a486
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <stdint.h> that nearly conforms to C99.
+#Assumes typical host with 8-bit bytes, two's complement
+#representation, and no padding or trap representations, with int
+#widths equal to 8, 16, 32, and 64 bits.  {uint,int}_fast{8,16,32,64}_t
+#may not correspond to the fastest types available on the system.
+#Macros are used instead of typedefs.
+#
+#Files:
+#lib/stdint.in.h
+#m4/stdint.m4
+#m4/longlong.m4
+#
+#Depends-on:
+#include_next
+
+File: ./modules/stdint-tests
+Hash: c74042c04291bc048ebf18874d653986027582a7759f90fe6ba2e0492b9b2162
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-stdint.c
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#
+#Depends-on:
+#verify
+#intprops
+#
+#configure.ac:
+#gt_TYPE_WCHAR_T
+#gt_TYPE_WINT_T
+#
+#Makefile.am:
+#TESTS += test-stdint
+
+File: ./modules/stdio
+Hash: 93241faf9fae9089f22f287f7b5168e68002f49102edd33796617692c6493d26
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <stdio.h>.
+#
+#Files:
+#lib/stdio.in.h
+#lib/stdio-write.c
+#m4/stdio_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#raise
+#stddef
+#
+#configure.ac:
+
+File: ./modules/stdio-tests
+Hash: 5491d73216042ef41b34ec2e402bc9f664d7557d25d9b8608b14986ab1f33db9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-stdio.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-stdio
+#check_PROGRAMS += test-stdio
+#
+#License:
+#LGPL
+
+File: ./modules/stdlib
+Hash: 07f3b190af38509a0a785ca981a54cfc4265ede026d74267e5b54a8ac47dc5a2
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <stdlib.h>.
+#
+#Files:
+#lib/stdlib.in.h
+#m4/stdlib_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#unistd
+#stddef
+#stdint
+#
+#configure.ac:
+
+File: ./modules/stdlib-safer
+Hash: 2bd1cb8f5715a347cbdf0f94ab509ef98e28969806eea27ebbe7eafef57eac89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#File stream functions that avoid clobbering std{in,out,err}.
+#
+#Files:
+#lib/stdlib--.h
+#lib/stdlib-safer.h
+#lib/mkstemp-safer.c
+#m4/stdlib-safer.m4
+#
+#Depends-on:
+#mkstemp
+#stdlib
+#unistd-safer
+#
+#configure.ac:
+
+File: ./modules/stdlib-tests
+Hash: 7d7aff5250835c4c6b3222e8168b837338ba00c71386bc51a64e173ba0b60739
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-stdlib.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-stdlib
+#check_PROGRAMS += test-stdlib
+#
+#License:
+#LGPL
+
+File: ./modules/stpcpy
+Hash: 90b790c92b055c904aabe26bd7993256f5472e0a9da16645ee7a59ac37b324b2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#stpcpy() function: copy a string, returning a pointer to its end.
+#
+#Files:
+#lib/stpcpy.c
+#m4/stpcpy.m4
+#
+#Depends-on:
+#extensions
+#string
+#
+#configure.ac:
+#gl_FUNC_STPCPY
+#gl_STRING_MODULE_INDICATOR([stpcpy])
+
+File: ./modules/stpncpy
+Hash: e80ed56ddf49eb3bd85da305c846ed7e96027bd6d712c48d757ff1fc17b646d3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#stpncpy() function: copy a size-bounded string, returning a pointer to its end.
+#
+#Files:
+#lib/stpncpy.c
+#m4/stpncpy.m4
+#
+#Depends-on:
+#extensions
+#string
+#
+#configure.ac:
+#gl_FUNC_STPNCPY
+#gl_STRING_MODULE_INDICATOR([stpncpy])
+
+File: ./modules/strcase
+Hash: 652dd082eaa9ecff9480f67750ab105ee39e3bbf16d2ee71638fa73a737dc20f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-insensitive string comparison functions.
+#
+#Files:
+#lib/strcasecmp.c
+#lib/strncasecmp.c
+#m4/strcase.m4
+#
+#Depends-on:
+#strings
+#
+#configure.ac:
+#gl_STRCASE
+#
+#Makefile.am:
+
+File: ./modules/strcasestr
+Hash: 9551ffc82dca4481309246e5ddd487e77a7d7a11accac093b82220b2875d1f8f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strcasestr() function: efficient case-insensitive search for unibyte substring.
+#
+#Files:
+#
+#Depends-on:
+#strcasestr-simple
+#
+#configure.ac:
+#gl_FUNC_STRCASESTR
+#
+#Makefile.am:
+#
+#Include:
+#<string.h>
+
+File: ./modules/strcasestr-simple
+Hash: 19b95796ee17de816bd73b8fafa15172d3f5384fae26acd816dca81a736ef268
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strcasestr() function: case-insensitive search for unibyte substring.
+#
+#Files:
+#lib/strcasestr.c
+#lib/str-two-way.h
+#m4/strcasestr.m4
+#
+#Depends-on:
+#string
+#stdbool
+#strcase
+#memchr
+#memcmp
+
+File: ./modules/strcasestr-tests
+Hash: 46161f22bad85e1157ba4c099ca8ac45b99c09614c81f9cf3d1238b83745763f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-strcasestr.c
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_CHECK_DECLS_ONCE([alarm])
+#
+#Makefile.am:
+#TESTS += test-strcasestr
+#check_PROGRAMS += test-strcasestr
+
+File: ./modules/strchrnul
+Hash: 3439a52f0c76cacb89c9175647f636101c937e17d039e956c2bc739599fd607a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strchrnul() function: Find the first occurrence of C in S or the final NUL
+#byte.
+#
+#Files:
+#lib/strchrnul.c
+#lib/strchrnul.valgrind
+#m4/strchrnul.m4
+#
+#Depends-on:
+#extensions
+#string
+#rawmemchr
+#
+#configure.ac:
+
+File: ./modules/strchrnul-tests
+Hash: 673dba998f602c4891f267c09d4e33654cf112f4c93597683daba4df9c30dbfe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-strchrnul.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-strchrnul
+#check_PROGRAMS += test-strchrnul
+
+File: ./modules/strcspn
+Hash: 00ba939a293feefdd943d64bee2b6b6e6ee840b02c1bad71770fbf3f19389604
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strcspn() function: search a string for any of a set of characters.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/strcspn.c
+#m4/strcspn.m4
+#
+#Depends-on:
+
+File: ./modules/strdup
+Hash: f94b64eab9875bf12ebe372e2aa004064463874073df477123c7cb3b210ab1f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strdup() function: duplicate a string.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete. But you may want to use the strdup-posix module.
+#
+#Files:
+#lib/strdup.c
+#m4/strdup.m4
+#
+#Depends-on:
+#string
+
+File: ./modules/strdup-posix
+Hash: 3d985ae29a0e13f553a8fc6b7cccbcc778b6239dfdb286f8111e68a2e42d2e49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strdup() function: duplicate a string.
+#
+#Files:
+#lib/strdup.c
+#m4/strdup.m4
+#
+#Depends-on:
+#string
+#malloc-posix
+#
+#configure.ac:
+#gl_FUNC_STRDUP_POSIX
+#gl_STRING_MODULE_INDICATOR([strdup])
+
+File: ./modules/streq
+Hash: 0930ec55962ca56e7f39dff406c7b9ec1530ab93163439b806f748810230060b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Optimized string comparison.
+#
+#Files:
+#lib/streq.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"streq.h"
+
+File: ./modules/strerror
+Hash: d5f23050cc89efc8d2bd7136b02aa4bf5daa9f12d631d66521cfc8e630d8cea6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strerror() function: return string describing error code.
+#
+#Files:
+#lib/strerror.c
+#m4/strerror.m4
+#
+#Depends-on:
+#errno
+#intprops
+#string
+#
+#configure.ac:
+#gl_FUNC_STRERROR
+#gl_STRING_MODULE_INDICATOR([strerror])
+
+File: ./modules/strerror-tests
+Hash: 5352af1cada47d941b871ce9a05537ff50cda589bb84bcbd1f90f1332eba1400
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-strerror.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-strerror
+#check_PROGRAMS += test-strerror
+
+File: ./modules/strftime
+Hash: 248ca652922ec6f0e11f952a294fb9d52c823191e70d85869d163ec32953457f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#nstrftime() function: convert date and time to string, with GNU extensions.
+#
+#Files:
+#lib/strftime.h
+#lib/strftime.c
+#m4/mbstate_t.m4
+#m4/tm_gmtoff.m4
+#m4/strftime.m4
+#
+#Depends-on:
+#extensions
+#mbrlen
+#mbsinit
+#stdbool
+
+File: ./modules/striconv
+Hash: eacfc0c73f54b70f44e72e0a2496fa3a985649478f468355fb25111155547017
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character set conversion of strings made easy, uses iconv.
+#
+#Files:
+#lib/striconv.h
+#lib/striconv.c
+#
+#Depends-on:
+#iconv
+#iconv_open
+#strdup
+#c-strcase
+#
+#configure.ac:
+#if test $gl_cond_libtool = false; then
+
+File: ./modules/striconv-tests
+Hash: 56ef990fdb312ac361392d8ac11bbd2f3120df37b7c39602284ae5f56e84b6ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-striconv.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-striconv
+#check_PROGRAMS += test-striconv
+#test_striconv_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/striconveh
+Hash: 20590c09b1e4c5fde22a0d3328cbc8ce66126e287d86452678423ca690c2bb31
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character set conversion of strings with error handling, uses iconv.
+#
+#Files:
+#lib/striconveh.h
+#lib/striconveh.c
+#lib/iconveh.h
+#
+#Depends-on:
+#stdbool
+#iconv
+#iconv_open
+#unistr/u8-prev
+#unistr/u8-mbtouc-unsafe
+#unistr/u8-mbtouc
+
+File: ./modules/striconveh-tests
+Hash: b43a1cfddff6b6c98ecc9a584cbc851f778b47c8a9c474b2b04fa20ef970c9a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-striconveh.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-striconveh
+#check_PROGRAMS += test-striconveh
+#test_striconveh_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/striconveha
+Hash: 53914d85168151eac2e5cb2f6afe316ec020927e6047c70f6071299410fcd88a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character set conversion of strings with error handling and autodetection,
+#uses iconv.
+#
+#Files:
+#lib/striconveha.h
+#lib/striconveha.c
+#
+#Depends-on:
+#stdbool
+#striconveh
+#malloca
+#strdup
+#c-strcase
+
+File: ./modules/striconveha-tests
+Hash: aef1f694fa6b20064b58d84d3527a3021e6f61171962dd23cb08b9c5b2e32a24
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-striconveha.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-striconveha
+#check_PROGRAMS += test-striconveha
+#test_striconveha_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/string
+Hash: 820cbde2e33c17d5aa13a8b05510e25367ea8cb7deec30d49f8b4dd9f18834a7
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <string.h>.
+#
+#Files:
+#lib/string.in.h
+#m4/string_h.m4
+#
+#Depends-on:
+#extensions
+#include_next
+#link-warning
+#stddef
+#
+#configure.ac:
+#gl_HEADER_STRING_H
+
+File: ./modules/string-tests
+Hash: 1e7c179743032ebfaa51fa19f432a8a82ee399296a1c0b56d5449b92dceb8879
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-string.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-string
+#check_PROGRAMS += test-string
+#
+#License:
+#LGPL
+
+File: ./modules/strings
+Hash: 2ee8e3df07f452f9eda5ec6db18dbe1267d518cba0632ba0d4f6a0f8c82aa657
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A substitute <strings.h>.
+#
+#Files:
+#lib/strings.in.h
+#m4/strings_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#
+#configure.ac:
+#gl_HEADER_STRINGS_H
+#
+#Makefile.am:
+
+File: ./modules/strings-tests
+Hash: 8cad9ecb44b7140eb24b9d6a0513a3c987ee9e856dc469f2429ab4a70ffc3705
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-strings.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-strings
+#check_PROGRAMS += test-strings
+#
+#License:
+#LGPL
+
+File: ./modules/strndup
+Hash: 01fc2b925d4add01ac277ca8fc680673d4a255c6e462a90bdb0436038948244b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strndup() function: duplicate a size-bounded string.
+#
+#Files:
+#lib/strndup.c
+#m4/strndup.m4
+#
+#Depends-on:
+#extensions
+#string
+#strnlen
+#
+#configure.ac:
+#gl_FUNC_STRNDUP
+#gl_STRING_MODULE_INDICATOR([strndup])
+
+File: ./modules/strnlen
+Hash: ab4fc62f8761caf131b4822d455933d31ac73c304dae9fc82c61b8edb35f6a15
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strnlen() function: determine the length of a size-bounded string.
+#
+#Files:
+#lib/strnlen.c
+#m4/strnlen.m4
+#
+#Depends-on:
+#extensions
+#string
+#memchr
+#
+#configure.ac:
+#gl_FUNC_STRNLEN
+#gl_STRING_MODULE_INDICATOR([strnlen])
+
+File: ./modules/strnlen1
+Hash: b40f4a91247dac802a30b188b4d62c0efaae6b48a2bdea15b62a393544d6b755
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Quick string length estimation.
+#
+#Files:
+#lib/strnlen1.h
+#lib/strnlen1.c
+#
+#Depends-on:
+#memchr
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += strnlen1.h strnlen1.c
+
+File: ./modules/strpbrk
+Hash: 6d8864c98aef1b3ab33703c9d43151fedc916569722621f6c7150d837c0946db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strpbrk() function: search a string for any of a set of characters.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete.
+#
+#Files:
+#lib/strpbrk.c
+#m4/strpbrk.m4
+#
+#Depends-on:
+#string
+
+File: ./modules/strptime
+Hash: f2514d0b5ca1e70c75ab184443babe3b1ef75c46b9827809183cc1ab6b586240
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert a string representation of time to a tm structure.
+#
+#Files:
+#lib/strptime.c
+#m4/strptime.m4
+#m4/tm_gmtoff.m4
+#
+#Depends-on:
+#extensions
+#sys_time
+#string
+#strcase
+#stdbool
+#time
+
+File: ./modules/strsep
+Hash: b1eb6fbc25cbb44926116846e373ab34002448c7000e81b9e0497a71d577d580
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strsep() function: extract token from string.
+#
+#Files:
+#lib/strsep.c
+#m4/strsep.m4
+#
+#Depends-on:
+#extensions
+#string
+#strpbrk
+#
+#configure.ac:
+#gl_FUNC_STRSEP
+#gl_STRING_MODULE_INDICATOR([strsep])
+
+File: ./modules/strsignal
+Hash: 86a0aa69d80d95b91aeb22b0e38efff4d690c06c0187997b52aeddcfe8eff2fd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strsignal() function: return string describing signal.
+#
+#Files:
+#lib/strsignal.c
+#lib/siglist.h
+#m4/strsignal.m4
+#
+#Depends-on:
+#string
+#gettext-h
+#lock
+#tls
+#snprintf
+#memset
+
+File: ./modules/strsignal-tests
+Hash: 1cd7a2a2ec27177252af5cc3cd983f024c1e38460c8e37bd0715452f8017f3b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-strsignal.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-strsignal
+#check_PROGRAMS += test-strsignal
+#test_strsignal_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/strstr
+Hash: e5c8780d984fbde04ff226f616085d6819612337b26d6b12328c60a533bee3f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strstr() function: efficiently locate first substring in a buffer.
+#
+#Files:
+#
+#Depends-on:
+#strstr-simple
+#
+#configure.ac:
+#gl_FUNC_STRSTR
+#
+#Makefile.am:
+#
+#Include:
+#<string.h>
+
+File: ./modules/strstr-simple
+Hash: 33985a6d6d2c6195b9a59aca837b554c479813291dcb311600f1326dec7f2f6b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strstr() function: locate first substring in a buffer.
+#
+#Files:
+#lib/str-two-way.h
+#lib/strstr.c
+#m4/strstr.m4
+#
+#Depends-on:
+#string
+#stdbool
+#memchr
+#memcmp
+#
+#configure.ac:
+
+File: ./modules/strstr-tests
+Hash: 2cfcdd33b3abf203be17d8066f8a8b1972f6cea01c7bb0e56db3e70283b1c678
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-strstr.c
+#tests/zerosize-ptr.h
+#m4/mmap-anon.m4
+#
+#Depends-on:
+#extensions
+#getpagesize
+#
+#configure.ac:
+#AC_CHECK_DECLS_ONCE([alarm])
+#gl_FUNC_MMAP_ANON
+#AC_CHECK_HEADERS_ONCE([sys/mman.h])
+#AC_CHECK_FUNCS_ONCE([mprotect])
+
+File: ./modules/strtod
+Hash: e2bd9b168f17f719a2dd226af001e7ef4c20ed217253e9f4a46992bd7743c4ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strtod() function: convert string to 'double'.
+#
+#Files:
+#lib/strtod.c
+#m4/strtod.m4
+#
+#Depends-on:
+#c-ctype
+#stdbool
+#stdlib
+#
+#configure.ac:
+#gl_FUNC_STRTOD
+#gl_STDLIB_MODULE_INDICATOR([strtod])
+
+File: ./modules/strtod-tests
+Hash: f54cf32f92b9c3c6f18020108aa11e8bb7f35310ee4c3319a5e6a96f09e19a6b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-strtod.c
+#
+#Depends-on:
+#float
+#isnand-nolibm
+#signbit
+#
+#configure.ac:
+#
+#Makefile.am:
+#LIBS += $(POW_LIB)
+#TESTS += test-strtod
+#check_PROGRAMS += test-strtod
+
+File: ./modules/strtoimax
+Hash: 97ef74e07fd0883f0cf4df51ddce49b560bb27af0de255b1bcb961374782ae3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strtoimax() function: convert string to 'intmax_t'.
+#
+#Files:
+#lib/strtoimax.c
+#m4/longlong.m4
+#m4/strtoimax.m4
+#
+#Depends-on:
+#strtoll
+#verify
+#inttypes
+#stdint
+#
+#configure.ac:
+
+File: ./modules/strtok_r
+Hash: ccc223e8aa3f496b40cb5d0142c2de246792fd92ec7a5dce39e12a8d4ec2d629
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strtok_r() function: split string into tokens, thread safe.
+#
+#Files:
+#lib/strtok_r.c
+#m4/strtok_r.m4
+#
+#Depends-on:
+#string
+#strpbrk
+#
+#configure.ac:
+#gl_FUNC_STRTOK_R
+#gl_STRING_MODULE_INDICATOR([strtok_r])
+
+File: ./modules/strtol
+Hash: 6944ccdcc645699be922c9058ca8c1f4ca89440bc9e567d0276821e2bf713b7b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strtol() function: convert string to 'long'.
+#
+#Files:
+#lib/strtol.c
+#m4/strtol.m4
+#
+#Depends-on:
+#wchar
+#
+#configure.ac:
+#gl_FUNC_STRTOL
+#
+#Makefile.am:
+
+File: ./modules/strtoll
+Hash: 11d70fb957deed2086c050cd25dceb9d217051279f92726c22162e2e9f23f083
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strtoll() function: convert string to 'long long'.
+#
+#Files:
+#lib/strtoll.c
+#m4/longlong.m4
+#m4/strtoll.m4
+#
+#Depends-on:
+#stdlib
+#strtol
+#
+#configure.ac:
+#gl_FUNC_STRTOLL
+#gl_STDLIB_MODULE_INDICATOR([strtoll])
+
+File: ./modules/strtoul
+Hash: cb32df538cf7dca3e9d8b557e421863aedf64337f881230629eb6f6b4016bd39
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strtoul() function: convert string to 'unsigned long'.
+#
+#Files:
+#lib/strtoul.c
+#m4/strtoul.m4
+#
+#Depends-on:
+#strtol
+#
+#configure.ac:
+#gl_FUNC_STRTOUL
+#
+#Makefile.am:
+
+File: ./modules/strtoull
+Hash: 6fa81618f965be530901644a91327cb8fd9cc538a50a8bec4cbf84615fc06c26
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strtoull() function: convert string to 'unsigned long long'.
+#
+#Files:
+#lib/strtoull.c
+#m4/longlong.m4
+#m4/strtoull.m4
+#
+#Depends-on:
+#stdlib
+#strtoul
+#
+#configure.ac:
+#gl_FUNC_STRTOULL
+#gl_STDLIB_MODULE_INDICATOR([strtoull])
+
+File: ./modules/strtoumax
+Hash: 7dc1621c6caa98228b37c93cd003938d404193f9584246552d24b3730d45b94c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#strtoumax() function: convert string to 'uintmax_t'.
+#
+#Files:
+#lib/strtoumax.c
+#m4/longlong.m4
+#m4/strtoumax.m4
+#
+#Depends-on:
+#strtoimax
+#strtoull
+#inttypes
+#stdint
+#
+#configure.ac:
+
+File: ./modules/strverscmp
+Hash: 7e8a1cce977aff0b59f836370a857149c95f05eb90d093de4c78fbaeea0f8452
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare strings holding version numbers.
+#
+#Files:
+#lib/strverscmp.c
+#m4/strverscmp.m4
+#
+#Depends-on:
+#extensions
+#string
+#
+#configure.ac:
+#gl_FUNC_STRVERSCMP
+#gl_STRING_MODULE_INDICATOR([strverscmp])
+
+File: ./modules/strverscmp-tests
+Hash: 0b0a466cf1d4c4da6cd7f63f6ad9ca565889daa7758939f28812107b6bf9b758
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-strverscmp.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-strverscmp
+#check_PROGRAMS += test-strverscmp
+
+File: ./modules/sublist
+Hash: 49a4dece4964dcb743b03485ded5a63b8358cad671ae2ae778afd60b461de163
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Sequential list data type backed by another list.
+#
+#Files:
+#lib/gl_sublist.h
+#lib/gl_sublist.c
+#
+#Depends-on:
+#list
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += gl_sublist.h gl_sublist.c
+
+File: ./modules/symlinkat
+Hash: e1d40d37a9a43d3df7a55c692c6715e02f5903429e86a42e5b1fc3d74db64a8d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#symlinkat() and readlinkat(): manage symlinks relative to a directory
+#
+#Files:
+#lib/symlinkat.c
+#m4/symlinkat.m4
+#
+#Depends-on:
+#extensions
+#fcntl-h
+#openat
+#readlink
+#unistd
+#
+#configure.ac:
+
+File: ./modules/symlinkat-tests
+Hash: b2c32a25998d397bd8960b354291eb0fa1c269103d78859cddae22f60a476c2d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-symlinkat.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-symlinkat
+#check_PROGRAMS += test-symlinkat
+#test_symlinkat_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/sys_file
+Hash: e66d4edb7387906d3901aeba747a3d80bafe9d5a8694d0a06795b83121bf24ad
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#<sys/file.h> for systems with an incomplete header.
+#
+#Files:
+#lib/sys_file.in.h
+#m4/sys_file_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#
+#configure.ac:
+#gl_HEADER_SYS_FILE_H
+#AC_PROG_MKDIR_P
+
+File: ./modules/sys_ioctl
+Hash: 7b526d0c710b091a546a88d024bc58ebc9b5e41efcadffd8192b99fc7ec00b59
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <sys/ioctl.h> for systems with missing declarations.
+#
+#Files:
+#lib/sys_ioctl.in.h
+#m4/sys_ioctl_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#unistd
+#
+#configure.ac:
+#gl_SYS_IOCTL_H
+#AC_PROG_MKDIR_P
+
+File: ./modules/sys_select
+Hash: 77c4399536d7ef3a70f25a0f889996dbe88bc6a6db0e5dbed45355492e5e91aa
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <sys/select.h> for systems lacking it.
+#
+#Files:
+#lib/sys_select.in.h
+#m4/sys_select_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#sys_socket
+#sys_time
+#
+#configure.ac:
+#gl_HEADER_SYS_SELECT
+
+File: ./modules/sys_select-tests
+Hash: 4fbb77380b490e637abf5fbbdafff6625456a293236836a35ac3de09a59adfb8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sys_select.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sys_select
+#check_PROGRAMS += test-sys_select
+#
+#License:
+#LGPL
+
+File: ./modules/sys_socket
+Hash: 722216ce9396878ba968800c9dda5add975ca83f2e124d20c292dc88e34734ee
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A POSIX-like <sys/socket.h>.
+#
+#Files:
+#lib/sys_socket.in.h
+#m4/sys_socket_h.m4
+#m4/sockpfaf.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#errno
+#alignof
+#
+#configure.ac:
+
+File: ./modules/sys_socket-tests
+Hash: b5b2e0310b662edcc7dad13c365ff1b2bf477fec23a0f77c9dcfec409ffd8faa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sys_socket.c
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_CHECK_FUNCS([shutdown])
+#
+#Makefile.am:
+#TESTS += test-sys_socket
+#check_PROGRAMS += test-sys_socket
+#
+#License:
+#LGPL
+
+File: ./modules/sys_stat
+Hash: a1c80f8c008aa015df87994281680809e8a3e46b8ccf4c289c8004475e9a213d
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <sys/stat.h> for systems with missing declarations.
+#
+#Files:
+#lib/sys_stat.in.h
+#m4/sys_stat_h.m4
+#m4/unistd_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#
+#configure.ac:
+#gl_HEADER_SYS_STAT_H
+#AC_PROG_MKDIR_P
+
+File: ./modules/sys_stat-tests
+Hash: 87b59c12b0443cbb770e910abee503f866deef5609c671d3445b0aae2683e2af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sys_stat.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sys_stat
+#check_PROGRAMS += test-sys_stat
+#
+#License:
+#LGPL
+
+File: ./modules/sys_time
+Hash: c654ff78fb16360b93e7b15ca6de03a42cf406fe2514a7b0e4caa697b1798777
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <sys/time.h> that conforms better to POSIX.
+#
+#Files:
+#lib/sys_time.in.h
+#m4/sys_time_h.m4
+#
+#Depends-on:
+#include_next
+#
+#configure.ac:
+#gl_HEADER_SYS_TIME_H
+#AC_PROG_MKDIR_P
+#
+#Makefile.am:
+
+File: ./modules/sys_time-tests
+Hash: 910f3c2445a8c42a59fa23e117b1cbc7de37bf6177f54b366e347c82cbe5b332
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sys_time.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sys_time
+#check_PROGRAMS += test-sys_time
+#
+#License:
+#LGPL
+
+File: ./modules/sys_times
+Hash: 099f6eb28c2cac30132b67af9af2013712a24cb6e364e0037c9ca6aebe9f3422
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <sys/times.h> for systems lacking it.
+#
+#Files:
+#lib/sys_times.in.h
+#m4/sys_times_h.m4
+#
+#Depends-on:
+#link-warning
+#
+#configure.ac:
+#gl_SYS_TIMES_H
+#AC_PROG_MKDIR_P
+#
+#Makefile.am:
+
+File: ./modules/sys_times-tests
+Hash: fd9753642bc93c34a631756a485f5bd4a436cc75a5a1793f2f18a2ff5a97e37f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sys_times.c
+#
+#Makefile.am:
+#TESTS += test-sys_times
+#check_PROGRAMS += test-sys_times
+
+File: ./modules/sys_utsname
+Hash: 1dfd16eed68f5d83836fce58ec325bb7262da5ca7f395dd5f1db494f908b90ca
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <sys/utsname.h> for systems which lack it.
+#
+#Files:
+#lib/sys_utsname.in.h
+#m4/sys_utsname_h.m4
+#
+#Depends-on:
+#link-warning
+#
+#configure.ac:
+#gl_SYS_UTSNAME_H
+#AC_PROG_MKDIR_P
+#
+#Makefile.am:
+
+File: ./modules/sys_utsname-tests
+Hash: d8e98f95c344d5674a022aa57273429f54e50d9a8c2c5533e319fd165b39b653
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sys_utsname.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sys_utsname
+#check_PROGRAMS += test-sys_utsname
+#
+#License:
+#LGPL
+
+File: ./modules/sys_wait
+Hash: bb9e9a5c86edc0cf02b1b13dfbab113d49f224a4bc4c4ccd7f7a806b3e7e999f
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <sys/wait.h> for systems with missing declarations.
+#
+#Files:
+#lib/sys_wait.in.h
+#m4/sys_wait_h.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#
+#configure.ac:
+#gl_SYS_WAIT_H
+#AC_PROG_MKDIR_P
+
+File: ./modules/sysexits
+Hash: 11f243ba2444ab5eb2f10ee1c25bd64fe7788d121bd26fa7f7c2e430e1d70050
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Exit status codes for some BSD system programs.
+#
+#Files:
+#lib/sysexits.in.h
+#m4/sysexits.m4
+#
+#Depends-on:
+#include_next
+#
+#configure.ac:
+#gl_SYSEXITS
+#
+#Makefile.am:
+#BUILT_SOURCES += $(SYSEXITS_H)
+
+File: ./modules/sysexits-tests
+Hash: 7bfa22994a26c3483db7c4b19cb9bc94ff57ef46038fb43d486833f4aa9e08a4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-sysexits.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sysexits
+#check_PROGRAMS += test-sysexits
+#
+#License:
+#LGPL
+
+File: ./modules/tempname
+Hash: e2e351656be8f723e4747227e52be7ab5fd3b67e1c25b52f4a47d00dc36c2586
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#gen_tempname() function: create a private temporary file or directory.
+#
+#Files:
+#lib/tempname.c
+#lib/tempname.h
+#m4/tempname.m4
+#
+#Depends-on:
+#extensions
+#gettimeofday
+#lstat
+#stdint
+#sys_stat
+#sys_time
+
+File: ./modules/thread
+Hash: 88ec3e8abc03b09d5e308167e0cd610710913cfac06911a82e4eb3f589d2f680
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Creating and controlling threads.
+#
+#Files:
+#lib/glthread/thread.h
+#lib/glthread/thread.c
+#m4/thread.m4
+#
+#Depends-on:
+#threadlib
+#lock
+#
+#configure.ac:
+#gl_THREAD
+
+File: ./modules/threadlib
+Hash: e4e2448bf023982eb670462404aaaa786414a9f9f494eb03fef1d4265cedae25
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Access to multithreading primitives.
+#
+#Files:
+#lib/glthread/threadlib.c
+#m4/threadlib.m4
+#build-aux/config.rpath
+#
+#Depends-on:
+#havelib
+#
+#configure.ac-early:
+#gl_THREADLIB_EARLY
+#
+#configure.ac:
+
+File: ./modules/time
+Hash: 70da94ab70998280b9898a17366ddc5cb2639e7cb97aad4585b73b64c4c5b960
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A more-standard <time.h>.
+#
+#Files:
+#lib/time.in.h
+#m4/time_h.m4
+#
+#Depends-on:
+#extensions
+#include_next
+#stddef
+#
+#configure.ac:
+#gl_HEADER_TIME_H
+
+File: ./modules/time-tests
+Hash: c0ff6e1970e10568f18fc0dd76d7190fad6142bc1d267bcb0970ec212a232080
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-time.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-time
+#check_PROGRAMS += test-time
+#
+#License:
+#LGPL
+
+File: ./modules/time_r
+Hash: 79cb71af4c0f19a08193199204082067a8967f87492f7808d0bb2ddfc3349747
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Reentrant time functions like localtime_r.
+#
+#Files:
+#lib/time_r.c
+#m4/time_r.m4
+#
+#Depends-on:
+#extensions
+#time
+#
+#configure.ac:
+#gl_TIME_R
+#
+#Makefile.am:
+
+File: ./modules/timegm
+Hash: 4e742a3f82007e942d6c8af4d343be35d64521224620fda823e59a1132ba0347
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert calendar time to simple time, inverse of mktime.
+#
+#Files:
+#lib/timegm.c
+#m4/timegm.m4
+#
+#Depends-on:
+#mktime
+#time
+#time_r
+#
+#configure.ac:
+#gl_FUNC_TIMEGM
+
+File: ./modules/times
+Hash: 9ea1fd0058edebf1eff55d06b0b51baa16abf490a76832902559cd17c7101640
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#times() function: get process times
+#
+#Files:
+#lib/times.c
+#
+#Depends-on:
+#sys_times
+#
+#configure.ac:
+#AC_CHECK_FUNCS_ONCE([times])
+#if test $ac_cv_func_times = no; then
+#  AC_LIBOBJ([times])
+#fi
+#gl_SYS_TIMES_MODULE_INDICATOR([times])
+
+File: ./modules/times-tests
+Hash: 496e2fd32b4bcede705f2dd42403463f6db2eb860247a81b2eda4fd8d80d1cf1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-times.c
+#
+#Makefile.am:
+#TESTS += test-times
+#check_PROGRAMS += test-times
+
+File: ./modules/timespec
+Hash: c6c2c7e7ac43dfe978303342c77b8152884ae56978b5212ff60267e23cc0fc63
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#timespec-related declarations
+#
+#Files:
+#lib/timespec.h
+#m4/timespec.m4
+#
+#Depends-on:
+#time
+#
+#configure.ac:
+#gl_TIMESPEC
+#
+#Makefile.am:
+
+File: ./modules/tls
+Hash: d423d1274df32c29f6e674a7640df8d901b2f8190ec8be081bd6712562fb32e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Thread-local storage in multithreaded situations.
+#
+#Files:
+#lib/glthread/tls.h
+#lib/glthread/tls.c
+#m4/tls.m4
+#
+#Depends-on:
+#threadlib
+#
+#configure.ac:
+#gl_TLS
+#
+#Makefile.am:
+
+File: ./modules/tls-tests
+Hash: 2a7325d7ad5c8e34e86d6193d22c3f34efd5bfcdd76152bdf4d7eb27682e3edb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-tls.c
+#
+#Depends-on:
+#thread
+#yield
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-tls
+#check_PROGRAMS += test-tls
+#test_tls_LDADD = $(LDADD) @LIBMULTITHREAD@ @YIELD_LIB@
+
+File: ./modules/tmpdir
+Hash: c68b835358cd9e730d2aa75081f4d3518a2acf0f82a11b01bfb860132f97a31a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine a temporary directory.
+#
+#Files:
+#lib/tmpdir.h
+#lib/tmpdir.c
+#m4/tmpdir.m4
+#
+#Depends-on:
+#stdbool
+#sys_stat
+#
+#configure.ac:
+#gt_TMPDIR
+
+File: ./modules/tmpfile
+Hash: 0020aca412b41a4e89e007655f8e39aa257ae7d89bca8cb5a254887ede281467
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#tmpfile() function: create a temporary file.
+#
+#Files:
+#lib/tmpfile.c
+#m4/tmpfile.m4
+#
+#Depends-on:
+#pathmax
+#tempname
+#tmpdir
+#
+#configure.ac:
+#gl_TMPFILE
+
+File: ./modules/tmpfile-safer
+Hash: e5f395450b8163c0793c26c5d624e42d78afdd4ea7f74714157bd2ab974f955a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#tmpfile function that avoids clobbering std{in,out,err}.
+#
+#Files:
+#lib/stdio--.h
+#lib/stdio-safer.h
+#lib/tmpfile-safer.c
+#m4/stdio-safer.m4
+#
+#Depends-on:
+#binary-io
+#tmpfile
+#unistd-safer
+#
+#configure.ac:
+
+File: ./modules/trim
+Hash: bccc6d068d82b47f71a582f330b1a29a7d18c8d96e73f2bfb528b9fdeaf33777
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#trim() function: remove leading and/or trailing whitespaces
+#
+#Files:
+#lib/trim.h
+#lib/trim.c
+#
+#Depends-on:
+#xalloc
+#mbchar
+#mbiter
+#memmove
+#strdup
+#
+#configure.ac:
+
+File: ./modules/trunc
+Hash: a83249c184d8edc716f0e56e461b4aacf9416c6da39e29b9d4c064df78952283
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#trunc() function: round towards zero.
+#
+#Files:
+#lib/trunc.c
+#m4/trunc.m4
+#
+#Depends-on:
+#math
+#extensions
+#float
+#
+#configure.ac:
+#gl_FUNC_TRUNC
+#gl_MATH_MODULE_INDICATOR([trunc])
+
+File: ./modules/trunc-tests
+Hash: 387bd8fe24b236a480752328a12cae928c3de1db73cf519b9923d847163f100e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-trunc1.c
+#tests/test-trunc2.c
+#tests/nan.h
+#
+#Depends-on:
+#float
+#isnand-nolibm
+#stdbool
+#stdint
+#fprintf-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/truncf
+Hash: fcc4e22b398852d9e6f88914c108d45c739c50f861e45d7206786b4bf5326ad0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#truncf() function: round towards zero.
+#
+#Files:
+#lib/truncf.c
+#lib/trunc.c
+#m4/truncf.m4
+#
+#Depends-on:
+#math
+#extensions
+#float
+#
+#configure.ac:
+#gl_FUNC_TRUNCF
+
+File: ./modules/truncf-tests
+Hash: 1bdf6633eeaec824cd9f3be4a6414d4024627aaafe2e5427bbc0fb4fe8e0d8fd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-truncf1.c
+#tests/test-truncf2.c
+#tests/nan.h
+#
+#Depends-on:
+#float
+#isnanf-nolibm
+#stdbool
+#stdint
+#fprintf-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/truncl
+Hash: 1c2b79534a373322c5e5128315aa9b599cada54298ce521efb56d991b48c8d48
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#truncl() function: round towards zero.
+#
+#Files:
+#lib/truncl.c
+#lib/trunc.c
+#m4/truncl.m4
+#
+#Depends-on:
+#math
+#extensions
+#float
+#
+#configure.ac:
+#gl_FUNC_TRUNCL
+
+File: ./modules/truncl-tests
+Hash: 0edb2b017fbb4411e12a8be2a6221cb7f08ad73bac935efdf8ca3dbf0032bc5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-truncl.c
+#tests/nan.h
+#
+#Depends-on:
+#fpucw
+#isnanl-nolibm
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-truncl
+#check_PROGRAMS += test-truncl
+#test_truncl_LDADD = $(LDADD) @TRUNCL_LIBM@
+
+File: ./modules/tsearch
+Hash: c39ccb5fcfbaeab2bac2d3342c88c8dd146b12d6652e14e9df8f03af4e2cf22f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Binary tree data structure.
+#
+#Files:
+#lib/tsearch.c
+#m4/tsearch.m4
+#
+#Depends-on:
+#search
+#
+#configure.ac:
+#gl_FUNC_TSEARCH
+#gl_SEARCH_MODULE_INDICATOR([tsearch])
+#
+#Makefile.am:
+
+File: ./modules/tsearch-tests
+Hash: 3715a032f02b16304bbcc2953ae8a7fedd5b70346b8af355f90abd112f1ffbe9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-tsearch.sh
+#tests/test-tsearch.c
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#TEST_TSEARCH_LIBM=
+#AC_TRY_LINK([
+#   #ifndef __NO_MATH_INLINES
+#   # define __NO_MATH_INLINES 1 /* for glibc */
+#   #endif
+#   #include <math.h>
+#   double x;],
+
+File: ./modules/tzset
+Hash: c96599c52262409a1b50451d051d8d2fa5e62a9e05af812a6eb239d0a7ca2460
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#tzset - initialize time conversion information
+#
+#Files:
+#m4/tzset.m4
+#
+#Depends-on:
+#gettimeofday
+#
+#configure.ac:
+#gl_FUNC_TZSET_CLOBBER
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/u64
+Hash: d03c4cfa4e836c0b4723355656740e75edfd5c064e35b3999dd42b9329bded4f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#uint64_t-like operations that work even on hosts lacking uint64_t
+#
+#Files:
+#lib/u64.h
+#
+#Depends-on:
+#stdint
+#
+#Include:
+#"u64.h"
+#
+#License:
+#LGPLv2+
+
+File: ./modules/u64-tests
+Hash: dafa78e78d3b857b511a34c4b1e00376d220e96b16309ad9573e15c0778554d6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-u64.c
+#
+#Makefile.am:
+#TESTS += test-u64
+#check_PROGRAMS += test-u64
+
+File: ./modules/ucs4-utf16
+Hash: 145458db67223a8d1ce8fd893048086911f4e13956413a722bdae218937c4be0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion UCS-4 to UTF-16.
+#
+#Files:
+#
+#Depends-on:
+#unistr/u16-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unistr.h"
+
+File: ./modules/ucs4-utf8
+Hash: 8e913f70267449a59a4ae2b22d9f63ba73cd77c5d0c292f9aebb2a3a5ce500d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion UCS-4 to UTF-8.
+#
+#Files:
+#
+#Depends-on:
+#unistr/u8-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unistr.h"
+
+File: ./modules/uname
+Hash: 557b53330b3d484466590b1a48865c67744fa66d98dfba740efacc7436e7ceb6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#uname() function: enquire system information.
+#
+#Files:
+#lib/uname.c
+#m4/uname.m4
+#
+#Depends-on:
+#sys_utsname
+#gethostname
+#
+#configure.ac:
+#gl_FUNC_UNAME
+#gl_SYS_UTSNAME_MODULE_INDICATOR([uname])
+
+File: ./modules/uname-tests
+Hash: b004f58e1b744253f85177dcc1bb091231de14d74a60987ad0a1ee59001c2d30
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-uname.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-uname
+#check_PROGRAMS += test-uname
+#test_uname_LDADD = $(LDADD) @GETHOSTNAME_LIB@
+
+File: ./modules/unicase/base
+Hash: 5e08a9fff9ff0e2354477f2bcc3b24520c8fb84e8b8563e59752dac1e4428080
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for Unicode character case mappings.
+#
+#Files:
+#lib/unicase.h
+#
+#Depends-on:
+#unitypes
+#uninorm/base
+#stdbool
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/cased
+Hash: 4a30fccf8b77307e6e8dfbf776650f45aeb31724ed0840836767944c730e990f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "cased".
+#
+#Files:
+#lib/unicase/caseprop.h
+#lib/unicase/cased.c
+#lib/unicase/cased.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unitypes
+#stdbool
+#inline
+#
+#configure.ac:
+
+File: ./modules/unicase/cased-tests
+Hash: 971ee47da5b9535273b75bce761e57d20f2fb911a6a7c81e67d4144ec79d6dce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-cased.c
+#tests/unicase/test-predicate-part1.h
+#tests/unicase/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-cased
+#check_PROGRAMS += test-cased
+#test_cased_SOURCES = unicase/test-cased.c
+
+File: ./modules/unicase/empty-prefix-context
+Hash: 9815dccf9c38a3ff1d76fcff7ced81b40102c2fde1e0044f83d28a040a2dc442
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-mapping context of empty prefix string.
+#
+#Files:
+#lib/unicase/empty-prefix-context.c
+#
+#Depends-on:
+#unicase/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/empty-prefix-context.c
+#
+#Include:
+
+File: ./modules/unicase/empty-suffix-context
+Hash: 944bb7a0792bd8b4bbd4d863d766024751c37b0de024320e9fe7e7d3cf449e69
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-mapping context of empty suffix string.
+#
+#Files:
+#lib/unicase/empty-suffix-context.c
+#
+#Depends-on:
+#unicase/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/empty-suffix-context.c
+#
+#Include:
+
+File: ./modules/unicase/ignorable
+Hash: c273f624b30079c7223ff88a4331b1f3999249ee95c675fcaf9b9b9b537b53d1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "case-ignorable".
+#
+#Files:
+#lib/unicase/caseprop.h
+#lib/unicase/ignorable.c
+#lib/unicase/ignorable.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unitypes
+#stdbool
+#inline
+#
+#configure.ac:
+
+File: ./modules/unicase/ignorable-tests
+Hash: 630a7da6f903edbef6806bdab38288207b7d5948682e8efd91417bd50ea01fc8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-ignorable.c
+#tests/unicase/test-predicate-part1.h
+#tests/unicase/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ignorable
+#check_PROGRAMS += test-ignorable
+#test_ignorable_SOURCES = unicase/test-ignorable.c
+
+File: ./modules/unicase/locale-language
+Hash: e5eb40a70ce073412eba68b8ee7872b4b2d816120e0d42a8a2e12193793159e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Language code of current locale.
+#
+#Files:
+#lib/unicase/locale-language.c
+#lib/unicase/locale-languages.gperf
+#
+#Depends-on:
+#unicase/base
+#localename
+#gperf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/locale-language-tests
+Hash: 51058741ce6d861967c85067aaf8aeb05ffab881d561a650376ae2d71ef8a828
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-locale-language.sh
+#tests/unicase/test-locale-language.c
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-tr.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR
+#gt_LOCALE_FR_UTF8
+#gt_LOCALE_JA
+
+File: ./modules/unicase/special-casing
+Hash: 1ae745ef7bc98b0bccc8e30dcdffaa2153bcda2f1a2e660aa9ac78cfc453f553
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Special casing table.
+#
+#Files:
+#lib/unicase/special-casing.h
+#lib/unicase/special-casing.c
+#lib/unicase/special-casing-table.gperf
+#
+#Depends-on:
+#gperf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/special-casing.c
+
+File: ./modules/unicase/tocasefold
+Hash: a3d629edd2f6d2f6427e2fc759d9c02842aeab9e9ed4558d9fd26a7d1e6f5327
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Casefolding mapping for Unicode characters (locale and context independent).
+#
+#Files:
+#lib/unicase/casefold.h
+#lib/unicase/tocasefold.c
+#lib/unicase/tocasefold.h
+#lib/unicase/simple-mapping.h
+#
+#Depends-on:
+#unicase/base
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/tolower
+Hash: cb60aefc9118c67e11c0d5ea5313c87bf9043e8023d7ff71557ae6fee5431377
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Lowercase mapping for Unicode characters (locale and context independent).
+#
+#Files:
+#lib/unicase/tolower.c
+#lib/unicase/tolower.h
+#lib/unicase/simple-mapping.h
+#
+#Depends-on:
+#unicase/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/tolower.c
+
+File: ./modules/unicase/tolower-tests
+Hash: ed6841d261a077ff9d189aced8317906563d264a53f036b1456c349ae5390ae3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-uc_tolower.c
+#tests/unicase/test-mapping-part1.h
+#tests/unicase/test-mapping-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-uc_tolower
+#check_PROGRAMS += test-uc_tolower
+#test_uc_tolower_SOURCES = unicase/test-uc_tolower.c
+
+File: ./modules/unicase/totitle
+Hash: e925016c7c1af9b8ead81b405cb19569ac2466537e6b6e77e14c80ecd2ec02e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Titlecase mapping for Unicode characters (locale and context independent).
+#
+#Files:
+#lib/unicase/totitle.c
+#lib/unicase/totitle.h
+#lib/unicase/simple-mapping.h
+#
+#Depends-on:
+#unicase/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/totitle.c
+
+File: ./modules/unicase/totitle-tests
+Hash: 1f2e63b6c7d4c4a9231bdb55822ee9a5832a12b406c36a33c84adcd9a508293b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-uc_totitle.c
+#tests/unicase/test-mapping-part1.h
+#tests/unicase/test-mapping-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-uc_totitle
+#check_PROGRAMS += test-uc_totitle
+#test_uc_totitle_SOURCES = unicase/test-uc_totitle.c
+
+File: ./modules/unicase/toupper
+Hash: 8aaecc8f0fe8244ed1d057a63648588c58a80e4e338325bdd98064b6e165f6e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Uppercase mapping for Unicode characters (locale and context independent).
+#
+#Files:
+#lib/unicase/toupper.c
+#lib/unicase/toupper.h
+#lib/unicase/simple-mapping.h
+#
+#Depends-on:
+#unicase/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/toupper.c
+
+File: ./modules/unicase/toupper-tests
+Hash: 088bfb70a96d99be06836347c59c9c427061bb90e5783de5af107ca569f7b2dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-uc_toupper.c
+#tests/unicase/test-mapping-part1.h
+#tests/unicase/test-mapping-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-uc_toupper
+#check_PROGRAMS += test-uc_toupper
+#test_uc_toupper_SOURCES = unicase/test-uc_toupper.c
+
+File: ./modules/unicase/u16-casecmp
+Hash: 6818530e13d0a9179cc5a324828cf275590bcfd888606734319f2ec85c2d3fbe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case and normalization insensitive comparison of UTF-16 strings.
+#
+#Files:
+#lib/unicase/u16-casecmp.c
+#lib/unicase/u-casecmp.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-casefold
+#uninorm/decomposing-form
+#unistr/u16-cmp2
+#minmax
+#
+#configure.ac:
+
+File: ./modules/unicase/u16-casecmp-tests
+Hash: 985b607384f6ccd0908c338c8c94a95aab290707ebd945648da7e12179a32c91
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-casecmp.c
+#tests/unicase/test-casecmp.h
+#
+#Depends-on:
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-casecmp
+#check_PROGRAMS += test-u16-casecmp
+#test_u16_casecmp_SOURCES = unicase/test-u16-casecmp.c
+
+File: ./modules/unicase/u16-casecoll
+Hash: 45c99149a78c4b226c7a25a8d9c5f5218aa6f7a058fe7f17f42ccd1a6ca80689
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent, case and normalization insensitive comparison of UTF-16
+#strings.
+#
+#Files:
+#lib/unicase/u16-casecoll.c
+#lib/unicase/u-casecoll.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-casexfrm
+#memcmp2
+#
+#configure.ac:
+
+File: ./modules/unicase/u16-casecoll-tests
+Hash: 31e39a4c7ae487d67ef3519c89bd1899593a2ea346d71aaf1713d7f324287de1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-casecoll.c
+#tests/unicase/test-casecmp.h
+#
+#Depends-on:
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-casecoll
+#check_PROGRAMS += test-u16-casecoll
+#test_u16_casecoll_SOURCES = unicase/test-u16-casecoll.c
+#test_u16_casecoll_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unicase/u16-casefold
+Hash: 1383cbf1be4a2c31ad98d3f876114778e463c88e466311c800f8d9f9af4cc472
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Casefolding mapping for UTF-16 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u16-casefold.c
+#lib/unicase/u-casefold.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-ct-casefold
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#
+#configure.ac:
+
+File: ./modules/unicase/u16-casefold-tests
+Hash: fd0a7aa152c9c02757c872500ebebc99d493cc73a033f2ec7c8c64354e23cd09
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-casefold.c
+#
+#Depends-on:
+#unistr/u16-cmp
+#uninorm/nfc
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-casefold
+#check_PROGRAMS += test-u16-casefold
+#test_u16_casefold_SOURCES = unicase/test-u16-casefold.c
+
+File: ./modules/unicase/u16-casemap
+Hash: 9ea6f5e45a7f443b1e11ff87d70fc7d148801d46f71a95bc7031cdf4f383347e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case mapping for UTF-16 strings (locale dependent).
+#
+#Files:
+#lib/unicase/unicasemap.h
+#lib/unicase/u16-casemap.c
+#lib/unicase/u-casemap.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/cased
+#unicase/ignorable
+#unicase/special-casing
+#unictype/combining-class
+
+File: ./modules/unicase/u16-casexfrm
+Hash: fbb9c5801735a92bbb367d8a356f2db64c9d997b9241b555c140e71ff73469a4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent transformation for case insensitive comparison of UTF-16
+#strings.
+#
+#Files:
+#lib/unicase/u16-casexfrm.c
+#lib/unicase/u-casexfrm.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-casefold
+#uniconv/u16-conv-to-enc
+#localcharset
+#memxfrm
+
+File: ./modules/unicase/u16-ct-casefold
+Hash: 37159365740209e5a7d17829cbb9238610e73bc05bc9149e833a2e28fbe77ce9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Casefolding mapping for UTF-16 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u16-ct-casefold.c
+#lib/unicase/u-ct-casefold.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-casemap
+#unicase/special-casing
+#unicase/tocasefold
+#uninorm/decomposing-form
+#uninorm/u16-normalize
+#uninorm/nfd
+
+File: ./modules/unicase/u16-ct-tolower
+Hash: c013fbe72a99d95e8fdaea9c91f88d1798996a9da2955066ba5fad8f88a4e6f8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Lowercase mapping for UTF-16 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u16-ct-tolower.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/u16-ct-totitle
+Hash: 4046b7bc9d5c34f4e7148868c75a798828887843774ae10176ea83b16b045120
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Titlecase mapping for UTF-16 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u16-ct-totitle.c
+#lib/unicase/u-ct-totitle.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/cased
+#unicase/ignorable
+#unicase/special-casing
+#unicase/totitle
+#unicase/tolower
+
+File: ./modules/unicase/u16-ct-toupper
+Hash: ccc71091922f7fc2f26e634f29d0882ca751840f94f4a06a5e425f173c789a49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Uppercase mapping for UTF-16 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u16-ct-toupper.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/u16-is-cased
+Hash: ba1e8be4fd14bbbd10df6d3846465b905c03f32b3bd711833abfb4001c02ad9d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether case matters for an UTF-16 string.
+#
+#Files:
+#lib/unicase/u16-is-cased.c
+#lib/unicase/u-is-cased.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-toupper
+#unicase/u16-tolower
+#unicase/u16-totitle
+#uninorm/u16-normalize
+#uninorm/nfd
+#unistr/u16-cmp
+
+File: ./modules/unicase/u16-is-cased-tests
+Hash: 1c1de2ab2b428650431c1f5b244636c8072417833b0bd0b11de97f1ae398e94f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-is-cased.c
+#tests/unicase/test-is-cased.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-is-cased
+#check_PROGRAMS += test-u16-is-cased
+#test_u16_is_cased_SOURCES = unicase/test-u16-is-cased.c
+
+File: ./modules/unicase/u16-is-casefolded
+Hash: 698f79552a6d2283f17b202a7a3aee2a5f07e49628324f15a05f8e9a6dca39e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-16 string is already case-folded.
+#
+#Files:
+#lib/unicase/u16-is-casefolded.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-is-invariant
+#unicase/u16-casefold
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u16-is-casefolded.c
+
+File: ./modules/unicase/u16-is-casefolded-tests
+Hash: 051f375cfb7382a8e1ec344b0e108dc1f934c79addfb7f42c387efc9752ca6fb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-is-casefolded.c
+#tests/unicase/test-is-casefolded.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-is-casefolded
+#check_PROGRAMS += test-u16-is-casefolded
+#test_u16_is_casefolded_SOURCES = unicase/test-u16-is-casefolded.c
+
+File: ./modules/unicase/u16-is-invariant
+Hash: 8bcd7e96e446f36364a2db34bbc8412c8c9ab12d16c3b546e8b93feadfd87250
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-16 string is invariant under a given case mapping.
+#
+#Files:
+#lib/unicase/u16-is-invariant.c
+#lib/unicase/invariant.h
+#lib/unicase/u-is-invariant.h
+#
+#Depends-on:
+#unitypes
+#uninorm/base
+#uninorm/u16-normalize
+#uninorm/nfd
+#unistr/u16-cmp
+#stdbool
+
+File: ./modules/unicase/u16-is-lowercase
+Hash: c2d486e628e83d57d3c989b6612716c7ae7078b9f1724af9db944683026daeb5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-16 string is entirely lower case.
+#
+#Files:
+#lib/unicase/u16-is-lowercase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-is-invariant
+#unicase/u16-tolower
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u16-is-lowercase.c
+
+File: ./modules/unicase/u16-is-lowercase-tests
+Hash: c66db367c2fb8c1f4732a1bc4bb9852fc97cc8d1dafeefd6c4bd9f39b5865c1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-is-lowercase.c
+#tests/unicase/test-is-lowercase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-is-lowercase
+#check_PROGRAMS += test-u16-is-lowercase
+#test_u16_is_lowercase_SOURCES = unicase/test-u16-is-lowercase.c
+
+File: ./modules/unicase/u16-is-titlecase
+Hash: 818c955449e0b476340ed38f643c41356997718494b7813fce44fe792561d5ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-16 string is entirely title case.
+#
+#Files:
+#lib/unicase/u16-is-titlecase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-is-invariant
+#unicase/u16-totitle
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u16-is-titlecase.c
+
+File: ./modules/unicase/u16-is-titlecase-tests
+Hash: 04baba42d970bf07ea45cb23bc96cd6155052942ae365b709a9da6d3f80c597c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-is-titlecase.c
+#tests/unicase/test-is-titlecase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-is-titlecase
+#check_PROGRAMS += test-u16-is-titlecase
+#test_u16_is_titlecase_SOURCES = unicase/test-u16-is-titlecase.c
+
+File: ./modules/unicase/u16-is-uppercase
+Hash: e82ea18eb83b699d27082593af769c8b81bc40b86cf57237c8a4e4fe9a94ac73
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-16 string is entirely upper case.
+#
+#Files:
+#lib/unicase/u16-is-uppercase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-is-invariant
+#unicase/u16-toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u16-is-uppercase.c
+
+File: ./modules/unicase/u16-is-uppercase-tests
+Hash: 7fbdeb55ef1e8b4e151e68589989bfba543e3ad424adc8a522aa5c58ef8354fb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-is-uppercase.c
+#tests/unicase/test-is-uppercase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-is-uppercase
+#check_PROGRAMS += test-u16-is-uppercase
+#test_u16_is_uppercase_SOURCES = unicase/test-u16-is-uppercase.c
+
+File: ./modules/unicase/u16-prefix-context
+Hash: 3dc69cdf655127d5d473e1cde7a899329e2e6b493b673c06ea8018dac8d0fd11
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-mapping context of prefix UTF-16 string.
+#
+#Files:
+#lib/unicase/u16-prefix-context.c
+#lib/unicase/u-prefix-context.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/empty-prefix-context
+#unicase/ignorable
+#unictype/combining-class
+#unistr/u16-mbtouc-unsafe
+#unistr/u16-prev
+
+File: ./modules/unicase/u16-suffix-context
+Hash: b2a18ae78e78297153eac554ec5721d470d74903a32472db0a9ce63e53649851
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-mapping context of suffix UTF-16 string.
+#
+#Files:
+#lib/unicase/u16-suffix-context.c
+#lib/unicase/u-suffix-context.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/empty-prefix-context
+#unicase/ignorable
+#unictype/combining-class
+#unistr/u16-mbtouc-unsafe
+
+File: ./modules/unicase/u16-tolower
+Hash: c347b36dfad840812803552632b08f317baa2df4964177260d34f31a3802a5bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Lowercase mapping for UTF-16 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u16-tolower.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-casemap
+#unicase/special-casing
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#unicase/tolower
+#
+#configure.ac:
+
+File: ./modules/unicase/u16-tolower-tests
+Hash: b84ac0cc25f90fabbeaff0b0da5c26809395c487cfdc9edefadd1c0aefa159e3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-tolower.c
+#
+#Depends-on:
+#unistr/u16-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-tolower
+#check_PROGRAMS += test-u16-tolower
+#test_u16_tolower_SOURCES = unicase/test-u16-tolower.c
+
+File: ./modules/unicase/u16-totitle
+Hash: 7af4d257d9ecd8143f07a91e018451da0b059307a06a0cfd81087758df75c7af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Titlecase mapping for UTF-16 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u16-totitle.c
+#lib/unicase/u-totitle.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-ct-totitle
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#
+#configure.ac:
+
+File: ./modules/unicase/u16-totitle-tests
+Hash: c0ba0815798f5445b93916c8dfd710ae61a4e4a6b2094b328f6894ea08039eee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-totitle.c
+#
+#Depends-on:
+#unistr/u16-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-totitle
+#check_PROGRAMS += test-u16-totitle
+#test_u16_totitle_SOURCES = unicase/test-u16-totitle.c
+
+File: ./modules/unicase/u16-toupper
+Hash: 5cdf7796e82e30e9fc8e40dfba528d589ba4ebd2cf2fb0a9c2c15d881876ec2a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Uppercase mapping for UTF-16 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u16-toupper.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u16-casemap
+#unicase/special-casing
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#unicase/toupper
+#
+#configure.ac:
+
+File: ./modules/unicase/u16-toupper-tests
+Hash: 2bf965e463f623ffb1fda685ca7476644c9c68f1a4b5ae48ed9e8a5ccb479ba8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u16-toupper.c
+#
+#Depends-on:
+#unistr/u16-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-toupper
+#check_PROGRAMS += test-u16-toupper
+#test_u16_toupper_SOURCES = unicase/test-u16-toupper.c
+
+File: ./modules/unicase/u32-casecmp
+Hash: ec701d2d73236e22962ffd44be8827a1fd4c391c006c3fc71badf76527ecf748
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case and normalization insensitive comparison of UTF-32 strings.
+#
+#Files:
+#lib/unicase/u32-casecmp.c
+#lib/unicase/u-casecmp.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-casefold
+#uninorm/decomposing-form
+#unistr/u32-cmp2
+#minmax
+#
+#configure.ac:
+
+File: ./modules/unicase/u32-casecmp-tests
+Hash: c58e4566f592b2eae664b53856c1a592f11b7cea1f5c674c88e14ffed26382eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-casecmp.c
+#tests/unicase/test-casecmp.h
+#
+#Depends-on:
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-casecmp
+#check_PROGRAMS += test-u32-casecmp
+#test_u32_casecmp_SOURCES = unicase/test-u32-casecmp.c
+
+File: ./modules/unicase/u32-casecoll
+Hash: 9e95af8cdb3c0708033c65a99f7fc92c1143a42cbf91509c412f2af132e9b58f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent, case and normalization insensitive comparison of UTF-32
+#strings.
+#
+#Files:
+#lib/unicase/u32-casecoll.c
+#lib/unicase/u-casecoll.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-casexfrm
+#memcmp2
+#
+#configure.ac:
+
+File: ./modules/unicase/u32-casecoll-tests
+Hash: 3a42e511f45e4c6e22669d09ea669fa5e1579d2a29bfea86d31e19d4d0ed188d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-casecoll.c
+#tests/unicase/test-casecmp.h
+#
+#Depends-on:
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-casecoll
+#check_PROGRAMS += test-u32-casecoll
+#test_u32_casecoll_SOURCES = unicase/test-u32-casecoll.c
+#test_u32_casecoll_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unicase/u32-casefold
+Hash: 5310bb15354d20b9048c19c38d82f1e9b156513371937d768aef3045e408f613
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Casefolding mapping for UTF-32 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u32-casefold.c
+#lib/unicase/u-casefold.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-ct-casefold
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#
+#configure.ac:
+
+File: ./modules/unicase/u32-casefold-tests
+Hash: acff929de3dda45cb7df7a985157f7bbb6978c015ebe181cf7bc390eb4af0b93
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-casefold.c
+#
+#Depends-on:
+#unistr/u32-cmp
+#uninorm/nfc
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-casefold
+#check_PROGRAMS += test-u32-casefold
+#test_u32_casefold_SOURCES = unicase/test-u32-casefold.c
+
+File: ./modules/unicase/u32-casemap
+Hash: fcbef81aa3da3fda669e2899da06f2224954bea21a5b425213b95116ed7c746d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case mapping for UTF-32 strings (locale dependent).
+#
+#Files:
+#lib/unicase/unicasemap.h
+#lib/unicase/u32-casemap.c
+#lib/unicase/u-casemap.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/cased
+#unicase/ignorable
+#unicase/special-casing
+#unictype/combining-class
+
+File: ./modules/unicase/u32-casexfrm
+Hash: 9b77b15825c0269b3fbde717439137cd86ac4bdf7937338a2bfedb6720cc25fe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent transformation for case insensitive comparison of UTF-32
+#strings.
+#
+#Files:
+#lib/unicase/u32-casexfrm.c
+#lib/unicase/u-casexfrm.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-casefold
+#uniconv/u32-conv-to-enc
+#localcharset
+#memxfrm
+
+File: ./modules/unicase/u32-ct-casefold
+Hash: f934aef180e035571f47c4917cb8b472bc0058556f904e9ddd051a1dd2e488e5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Casefolding mapping for UTF-32 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u32-ct-casefold.c
+#lib/unicase/u-ct-casefold.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-casemap
+#unicase/special-casing
+#unicase/tocasefold
+#uninorm/decomposing-form
+#uninorm/u32-normalize
+#uninorm/nfd
+
+File: ./modules/unicase/u32-ct-tolower
+Hash: 65c5810ec6e2763cc7b406f472a594a1ce1ebedfd4890bc836005a8bfa1f1853
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Lowercase mapping for UTF-32 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u32-ct-tolower.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/u32-ct-totitle
+Hash: 730a8124be974b4c6186de5104e5d3a3208002d9b310318e83c304ccc7409eca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Titlecase mapping for UTF-32 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u32-ct-totitle.c
+#lib/unicase/u-ct-totitle.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/cased
+#unicase/ignorable
+#unicase/special-casing
+#unicase/totitle
+#unicase/tolower
+
+File: ./modules/unicase/u32-ct-toupper
+Hash: 517e6daa7e3ff4e5a9ea617bb230e7ea0bb20dfb4f81c788fd1023f2341cedf4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Uppercase mapping for UTF-32 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u32-ct-toupper.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/u32-is-cased
+Hash: 5ce9d40cccbffb9a9c49b3d2709bfa0949b0aa906b11393b34975646bf485598
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether case matters for an UTF-32 string.
+#
+#Files:
+#lib/unicase/u32-is-cased.c
+#lib/unicase/u-is-cased.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-toupper
+#unicase/u32-tolower
+#unicase/u32-totitle
+#uninorm/u32-normalize
+#uninorm/nfd
+#unistr/u32-cmp
+
+File: ./modules/unicase/u32-is-cased-tests
+Hash: 0e2fe0bc6a28fea85758303a2d5d7f4c1bd9ed3bd94cf16a3949e4d019283271
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-is-cased.c
+#tests/unicase/test-is-cased.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-is-cased
+#check_PROGRAMS += test-u32-is-cased
+#test_u32_is_cased_SOURCES = unicase/test-u32-is-cased.c
+
+File: ./modules/unicase/u32-is-casefolded
+Hash: 68c2ba4f4238adf6c1f4cc83d97a6d86118310fd1a641c902e726a695aeb645e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-32 string is already case-folded.
+#
+#Files:
+#lib/unicase/u32-is-casefolded.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-is-invariant
+#unicase/u32-casefold
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u32-is-casefolded.c
+
+File: ./modules/unicase/u32-is-casefolded-tests
+Hash: 9baaec6610b0e6713ecc0958cac60f2e1784412f211761790f5a097c8a376a9b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-is-casefolded.c
+#tests/unicase/test-is-casefolded.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-is-casefolded
+#check_PROGRAMS += test-u32-is-casefolded
+#test_u32_is_casefolded_SOURCES = unicase/test-u32-is-casefolded.c
+
+File: ./modules/unicase/u32-is-invariant
+Hash: ae4bdd6e40164c85318734c1bfe6ef2406abbf28449716826b5c0cc649dd667b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-32 string is invariant under a given case mapping.
+#
+#Files:
+#lib/unicase/u32-is-invariant.c
+#lib/unicase/invariant.h
+#lib/unicase/u-is-invariant.h
+#
+#Depends-on:
+#unitypes
+#uninorm/base
+#uninorm/u32-normalize
+#uninorm/nfd
+#unistr/u32-cmp
+#stdbool
+
+File: ./modules/unicase/u32-is-lowercase
+Hash: 86a04c1cf14b6234eb58c1c135234d71ae2256ba11690fc0cc1a8383c07545af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-32 string is entirely lower case.
+#
+#Files:
+#lib/unicase/u32-is-lowercase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-is-invariant
+#unicase/u32-tolower
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u32-is-lowercase.c
+
+File: ./modules/unicase/u32-is-lowercase-tests
+Hash: 561f68eec7a8eca23fe5171edf84c4918d83f7475cf8ca9c8f31299f350e6d1a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-is-lowercase.c
+#tests/unicase/test-is-lowercase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-is-lowercase
+#check_PROGRAMS += test-u32-is-lowercase
+#test_u32_is_lowercase_SOURCES = unicase/test-u32-is-lowercase.c
+
+File: ./modules/unicase/u32-is-titlecase
+Hash: b51d2022ce7184d979eb3f2c7d7dfd06f5f56ba75835e6869ce84515d7079c3e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-32 string is entirely title case.
+#
+#Files:
+#lib/unicase/u32-is-titlecase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-is-invariant
+#unicase/u32-totitle
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u32-is-titlecase.c
+
+File: ./modules/unicase/u32-is-titlecase-tests
+Hash: 6a34c1b561a32f53503cfe5a07e695178e19183100478a7b2830a7dc4aa352f8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-is-titlecase.c
+#tests/unicase/test-is-titlecase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-is-titlecase
+#check_PROGRAMS += test-u32-is-titlecase
+#test_u32_is_titlecase_SOURCES = unicase/test-u32-is-titlecase.c
+
+File: ./modules/unicase/u32-is-uppercase
+Hash: db114fe07115d41592da51c58b97db87937a0ab28faa8311b1fae5d4e459d4b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-32 string is entirely upper case.
+#
+#Files:
+#lib/unicase/u32-is-uppercase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-is-invariant
+#unicase/u32-toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u32-is-uppercase.c
+
+File: ./modules/unicase/u32-is-uppercase-tests
+Hash: 0b8dbcef01a430670d3ce5ad8f593b6d1d4939bc82726a9375133a366207b5c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-is-uppercase.c
+#tests/unicase/test-is-uppercase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-is-uppercase
+#check_PROGRAMS += test-u32-is-uppercase
+#test_u32_is_uppercase_SOURCES = unicase/test-u32-is-uppercase.c
+
+File: ./modules/unicase/u32-prefix-context
+Hash: ccea335aabbebef46684ab14bc8367ffa7466f82dc077d57791f8bf74284784a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-mapping context of prefix UTF-32 string.
+#
+#Files:
+#lib/unicase/u32-prefix-context.c
+#lib/unicase/u-prefix-context.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/empty-prefix-context
+#unicase/ignorable
+#unictype/combining-class
+#unistr/u32-mbtouc-unsafe
+#unistr/u32-prev
+
+File: ./modules/unicase/u32-suffix-context
+Hash: 6d3933ac2f59dfdc75c4410111751fd8c876980afb4a270f096a4e6463ca1f34
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-mapping context of suffix UTF-32 string.
+#
+#Files:
+#lib/unicase/u32-suffix-context.c
+#lib/unicase/u-suffix-context.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/empty-prefix-context
+#unicase/ignorable
+#unictype/combining-class
+#unistr/u32-mbtouc-unsafe
+
+File: ./modules/unicase/u32-tolower
+Hash: dc2e33f7d67efc2a63069eb52470379eb1fb354b9a41e9bd84340197db18d244
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Lowercase mapping for UTF-32 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u32-tolower.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-casemap
+#unicase/special-casing
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#unicase/tolower
+#
+#configure.ac:
+
+File: ./modules/unicase/u32-tolower-tests
+Hash: 691fb04f472062f2627a45ef41710996ab9debbc2cdff9da3b7d7e1cc5da8f30
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-tolower.c
+#
+#Depends-on:
+#unistr/u32-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-tolower
+#check_PROGRAMS += test-u32-tolower
+#test_u32_tolower_SOURCES = unicase/test-u32-tolower.c
+
+File: ./modules/unicase/u32-totitle
+Hash: e3608640fe49bc79b180b9d61a6fe5831d7b68e28690b783490027213e19ecf4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Titlecase mapping for UTF-32 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u32-totitle.c
+#lib/unicase/u-totitle.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-ct-totitle
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#
+#configure.ac:
+
+File: ./modules/unicase/u32-totitle-tests
+Hash: d5ae4231e55bfd01b9a9704cd4e87e501b87da49bf3f776920d0b82e7bbed79e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-totitle.c
+#
+#Depends-on:
+#unistr/u32-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-totitle
+#check_PROGRAMS += test-u32-totitle
+#test_u32_totitle_SOURCES = unicase/test-u32-totitle.c
+
+File: ./modules/unicase/u32-toupper
+Hash: 2660d6b2ac72e7df1a91d5fb8fa4c8974f075e97adb2a126208fc56b22a009e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Uppercase mapping for UTF-32 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u32-toupper.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u32-casemap
+#unicase/special-casing
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#unicase/toupper
+#
+#configure.ac:
+
+File: ./modules/unicase/u32-toupper-tests
+Hash: 397f91c63d6aa6541affbb2f2ef04c005c09f8d3a4c8fdb0452823387815be4e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u32-toupper.c
+#
+#Depends-on:
+#unistr/u32-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-toupper
+#check_PROGRAMS += test-u32-toupper
+#test_u32_toupper_SOURCES = unicase/test-u32-toupper.c
+
+File: ./modules/unicase/u8-casecmp
+Hash: ca4ae334574da6f0d193c4435b23567011df07932cbc9e4e632d8cbc4887f670
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case and normalization insensitive comparison of UTF-8 strings.
+#
+#Files:
+#lib/unicase/u8-casecmp.c
+#lib/unicase/u-casecmp.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casefold
+#uninorm/decomposing-form
+#unistr/u8-cmp2
+#minmax
+#
+#configure.ac:
+
+File: ./modules/unicase/u8-casecmp-tests
+Hash: 5e5bcc1b056e1356f0f621674949ed5a3a3767cbf58d54b88660100dd417af7d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-casecmp.c
+#tests/unicase/test-casecmp.h
+#
+#Depends-on:
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-casecmp
+#check_PROGRAMS += test-u8-casecmp
+#test_u8_casecmp_SOURCES = unicase/test-u8-casecmp.c
+
+File: ./modules/unicase/u8-casecoll
+Hash: c1fd7dd20afb27b0fb626c71dd16ee6e6aba9abcb2842d478ce3fc71a4a16864
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent, case and normalization insensitive comparison of UTF-8
+#strings.
+#
+#Files:
+#lib/unicase/u8-casecoll.c
+#lib/unicase/u-casecoll.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casexfrm
+#memcmp2
+#
+#configure.ac:
+
+File: ./modules/unicase/u8-casecoll-tests
+Hash: b1f44386f0f414be20755588ec32872a75be93ed22a3068bb5bf1bb5d5c05e9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-casecoll.c
+#tests/unicase/test-casecmp.h
+#
+#Depends-on:
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-casecoll
+#check_PROGRAMS += test-u8-casecoll
+#test_u8_casecoll_SOURCES = unicase/test-u8-casecoll.c
+#test_u8_casecoll_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unicase/u8-casefold
+Hash: 46d1dab9d4400496bf9758cc9b76090236c3770e9dd6a82a44e7c9e255be65f4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Casefolding mapping for UTF-8 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u8-casefold.c
+#lib/unicase/u-casefold.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-ct-casefold
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#
+#configure.ac:
+
+File: ./modules/unicase/u8-casefold-tests
+Hash: 700ded2af7d86b2be1884d3b296856d9d832eecb40b12fed9af935a587ef538c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-casefold.c
+#
+#Depends-on:
+#unistr/u8-cmp
+#uninorm/nfc
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-casefold
+#check_PROGRAMS += test-u8-casefold
+#test_u8_casefold_SOURCES = unicase/test-u8-casefold.c
+
+File: ./modules/unicase/u8-casemap
+Hash: bfe7e7044899155138166242cd1c1db64f376771f29db7b9a6387bc5545a9caa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case mapping for UTF-8 strings (locale dependent).
+#
+#Files:
+#lib/unicase/unicasemap.h
+#lib/unicase/u8-casemap.c
+#lib/unicase/u-casemap.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/cased
+#unicase/ignorable
+#unicase/special-casing
+#unictype/combining-class
+
+File: ./modules/unicase/u8-casexfrm
+Hash: fd79cc18b0b31cd043b575383a74055c1ab4d434b0caf8cdefe71d549ada9c1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent transformation for case insensitive comparison of UTF-8
+#strings.
+#
+#Files:
+#lib/unicase/u8-casexfrm.c
+#lib/unicase/u-casexfrm.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casefold
+#uniconv/u8-conv-to-enc
+#localcharset
+#memxfrm
+
+File: ./modules/unicase/u8-ct-casefold
+Hash: 92b28bcd3f8b164ce3db000d9c10827e2329ea8bf055c1311da885fcf11c7224
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Casefolding mapping for UTF-8 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u8-ct-casefold.c
+#lib/unicase/u-ct-casefold.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/tocasefold
+#uninorm/decomposing-form
+#uninorm/u8-normalize
+#uninorm/nfd
+
+File: ./modules/unicase/u8-ct-tolower
+Hash: acd32d2f285c193fd4cae9d56b4fe8f852186035b027ccf969417d5304ea6632
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Lowercase mapping for UTF-8 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u8-ct-tolower.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/u8-ct-totitle
+Hash: cc8ed15b0ec76d44ca782741821bc796bd06da7fa9d5524ecd4af85339fd2f11
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Titlecase mapping for UTF-8 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u8-ct-totitle.c
+#lib/unicase/u-ct-totitle.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/cased
+#unicase/ignorable
+#unicase/special-casing
+#unicase/totitle
+#unicase/tolower
+
+File: ./modules/unicase/u8-ct-toupper
+Hash: dc730f64aae7b4a03dac0b92486a77107d5b189aea7196bfd0685c62c8df95eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Uppercase mapping for UTF-8 substrings (locale dependent).
+#
+#Files:
+#lib/unicase/u8-ct-toupper.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/u8-is-cased
+Hash: 29346feb4d88b35da1965d8ceb74c33eb24ec3d7c6755e969d738c7d5e1861e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether case matters for an UTF-8 string.
+#
+#Files:
+#lib/unicase/u8-is-cased.c
+#lib/unicase/u-is-cased.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-toupper
+#unicase/u8-tolower
+#unicase/u8-totitle
+#uninorm/u8-normalize
+#uninorm/nfd
+#unistr/u8-cmp
+
+File: ./modules/unicase/u8-is-cased-tests
+Hash: fba92985ae9d2857e1f18ea30fa68404144e7a077ae17ab3f6b6d387630844bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-is-cased.c
+#tests/unicase/test-is-cased.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-is-cased
+#check_PROGRAMS += test-u8-is-cased
+#test_u8_is_cased_SOURCES = unicase/test-u8-is-cased.c
+
+File: ./modules/unicase/u8-is-casefolded
+Hash: 004823bf45232bd010b755640fc38539c68ba233137b104b79681107e562c28e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-8 string is already case-folded.
+#
+#Files:
+#lib/unicase/u8-is-casefolded.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-is-invariant
+#unicase/u8-casefold
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u8-is-casefolded.c
+
+File: ./modules/unicase/u8-is-casefolded-tests
+Hash: 263aed1238b1b7f1fc41747585b8558ba184b2943e6a0a5ed09254d8bceb70ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-is-casefolded.c
+#tests/unicase/test-is-casefolded.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-is-casefolded
+#check_PROGRAMS += test-u8-is-casefolded
+#test_u8_is_casefolded_SOURCES = unicase/test-u8-is-casefolded.c
+
+File: ./modules/unicase/u8-is-invariant
+Hash: 60948f10c3faf0e5f1e8c75d4e4755025178a0b7602665ec2b780b44e425331e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-8 string is invariant under a given case mapping.
+#
+#Files:
+#lib/unicase/u8-is-invariant.c
+#lib/unicase/invariant.h
+#lib/unicase/u-is-invariant.h
+#
+#Depends-on:
+#unitypes
+#uninorm/base
+#uninorm/u8-normalize
+#uninorm/nfd
+#unistr/u8-cmp
+#stdbool
+
+File: ./modules/unicase/u8-is-lowercase
+Hash: 34edd9b8acf5ffb5cefdf629ba44424e2b4e5b06d2ced1ff3ed7fe8f98b4c066
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-8 string is entirely lower case.
+#
+#Files:
+#lib/unicase/u8-is-lowercase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-is-invariant
+#unicase/u8-tolower
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u8-is-lowercase.c
+
+File: ./modules/unicase/u8-is-lowercase-tests
+Hash: 10ab7630b97d9a85a2133f08832a5930e9cb76ee4d5270ff237f8909b4f69381
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-is-lowercase.c
+#tests/unicase/test-is-lowercase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-is-lowercase
+#check_PROGRAMS += test-u8-is-lowercase
+#test_u8_is_lowercase_SOURCES = unicase/test-u8-is-lowercase.c
+
+File: ./modules/unicase/u8-is-titlecase
+Hash: 6cf010e8975c0b9c31bcae09d35a46ccabcb6bf9e43268235b44f5fa2128b4a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-8 string is entirely title case.
+#
+#Files:
+#lib/unicase/u8-is-titlecase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-is-invariant
+#unicase/u8-totitle
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u8-is-titlecase.c
+
+File: ./modules/unicase/u8-is-titlecase-tests
+Hash: e9877102393d0dc188b0b0350ba436ab08caa492f344e9366c717badccdb9cba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-is-titlecase.c
+#tests/unicase/test-is-titlecase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-is-titlecase
+#check_PROGRAMS += test-u8-is-titlecase
+#test_u8_is_titlecase_SOURCES = unicase/test-u8-is-titlecase.c
+
+File: ./modules/unicase/u8-is-uppercase
+Hash: 4c431932e74d9e241b6cbfd96a8677648a83e12d8eb33be4c5bd0ca75ef02fd7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether an UTF-8 string is entirely upper case.
+#
+#Files:
+#lib/unicase/u8-is-uppercase.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-is-invariant
+#unicase/u8-toupper
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unicase/u8-is-uppercase.c
+
+File: ./modules/unicase/u8-is-uppercase-tests
+Hash: 8abdff1857f5cf37dccb010dfb0a602f9d17d959ae32eef30f100b85f28f0d56
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-is-uppercase.c
+#tests/unicase/test-is-uppercase.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-is-uppercase
+#check_PROGRAMS += test-u8-is-uppercase
+#test_u8_is_uppercase_SOURCES = unicase/test-u8-is-uppercase.c
+
+File: ./modules/unicase/u8-prefix-context
+Hash: 5ecf47ded622339828354fc0bd8227df80d61343f38be056ac262ac9c7edb6f0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-mapping context of prefix UTF-8 string.
+#
+#Files:
+#lib/unicase/u8-prefix-context.c
+#lib/unicase/u-prefix-context.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/empty-prefix-context
+#unicase/ignorable
+#unictype/combining-class
+#unistr/u8-mbtouc-unsafe
+#unistr/u8-prev
+
+File: ./modules/unicase/u8-suffix-context
+Hash: 52db1dee2058019ca6d4feda74482cffbfc5a4a565b53177a9abbefe7dc08d81
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case-mapping context of suffix UTF-8 string.
+#
+#Files:
+#lib/unicase/u8-suffix-context.c
+#lib/unicase/u-suffix-context.h
+#lib/unicase/context.h
+#
+#Depends-on:
+#unicase/base
+#unicase/empty-prefix-context
+#unicase/ignorable
+#unictype/combining-class
+#unistr/u8-mbtouc-unsafe
+
+File: ./modules/unicase/u8-tolower
+Hash: be9d2bebe845bb7214ea19dfb26d4fe1e965a5f155b2c969dd4115bd76c577b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Lowercase mapping for UTF-8 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u8-tolower.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#unicase/tolower
+#
+#configure.ac:
+
+File: ./modules/unicase/u8-tolower-tests
+Hash: 9df460586be34534dbbb0b9c70dc0bb47627fb9753396d62476a4b614fa725b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-tolower.c
+#
+#Depends-on:
+#unistr/u8-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-tolower
+#check_PROGRAMS += test-u8-tolower
+#test_u8_tolower_SOURCES = unicase/test-u8-tolower.c
+
+File: ./modules/unicase/u8-totitle
+Hash: 85a1ae83366e9c279164785a0942861e11250e991d68a9941e8456b5d5091689
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Titlecase mapping for UTF-8 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u8-totitle.c
+#lib/unicase/u-totitle.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-ct-totitle
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#
+#configure.ac:
+
+File: ./modules/unicase/u8-totitle-tests
+Hash: 8925b3a190c422e6f0d9e31d19ab54caf4a8887690a5b620d641c5017370f1f3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-totitle.c
+#
+#Depends-on:
+#unistr/u8-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-totitle
+#check_PROGRAMS += test-u8-totitle
+#test_u8_totitle_SOURCES = unicase/test-u8-totitle.c
+
+File: ./modules/unicase/u8-toupper
+Hash: 6fe8062fb2f1159eef3335ce57152d96b2e90f841a93268a327eb9b33d4b7dac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Uppercase mapping for UTF-8 strings (locale dependent).
+#
+#Files:
+#lib/unicase/u8-toupper.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casemap
+#unicase/special-casing
+#unicase/empty-prefix-context
+#unicase/empty-suffix-context
+#unicase/toupper
+#
+#configure.ac:
+
+File: ./modules/unicase/u8-toupper-tests
+Hash: 564156d657eeb5d102cf153ea549d993603c9ff628bd973bfe800f57d1a679d2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-u8-toupper.c
+#
+#Depends-on:
+#unistr/u8-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-toupper
+#check_PROGRAMS += test-u8-toupper
+#test_u8_toupper_SOURCES = unicase/test-u8-toupper.c
+
+File: ./modules/unicase/ulc-casecmp
+Hash: 68c2c9ee2d34116f51d3455d0132e2c2b075668f72d776d04eb5690a70358676
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Case and normalization insensitive comparison of strings.
+#
+#Files:
+#lib/unicase/ulc-casecmp.c
+#lib/unicase/u-casecmp.h
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casefold
+#uninorm/decomposing-form
+#uniconv/u8-conv-from-enc
+#unistr/u8-cmp2
+#localcharset
+#minmax
+
+File: ./modules/unicase/ulc-casecmp-tests
+Hash: 585ee94daa40b366d603f34b7b173a34a1b8964fe5c56cf2c35050919a4d44c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-ulc-casecmp1.sh
+#tests/unicase/test-ulc-casecmp2.sh
+#tests/unicase/test-ulc-casecmp.c
+#tests/unicase/test-casecmp.h
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#uninorm/nfd
+#
+#configure.ac:
+#gt_LOCALE_FR
+#gt_LOCALE_FR_UTF8
+
+File: ./modules/unicase/ulc-casecoll
+Hash: 909fe97e8c38d2c720cb273d484a279f01bc645915baa123ded5c62b6e8f782b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent, case and normalization insensitive comparison of strings.
+#
+#Files:
+#lib/unicase/ulc-casecoll.c
+#lib/unicase/u-casecoll.h
+#
+#Depends-on:
+#unicase/base
+#unicase/ulc-casexfrm
+#memcmp2
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicase/ulc-casecoll-tests
+Hash: 3aa05820f48ae55daebe731221cd5d0df5ec9529d0a600c7d7b206b32fdef9c0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unicase/test-ulc-casecoll1.sh
+#tests/unicase/test-ulc-casecoll2.sh
+#tests/unicase/test-ulc-casecoll.c
+#tests/unicase/test-casecmp.h
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#uninorm/nfc
+#
+#configure.ac:
+#gt_LOCALE_FR
+#gt_LOCALE_FR_UTF8
+
+File: ./modules/unicase/ulc-casexfrm
+Hash: 80c074f7cefa5fe6db0f329a84821f63a62f1be16f6186352a47e63e92e4fe5b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent transformation for case insensitive comparison of strings.
+#
+#Files:
+#lib/unicase/ulc-casexfrm.c
+#
+#Depends-on:
+#unicase/base
+#unicase/u8-casexfrm
+#uniconv/u8-conv-from-enc
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unicodeio
+Hash: 4333a8ae7bc04faa921bfb89db8fe32b88be80b215f2472f2bc7a68652de0dbb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Unicode character output to streams with locale dependent encoding.
+#
+#Files:
+#lib/unicodeio.h
+#lib/unicodeio.c
+#m4/unicodeio.m4
+#
+#Depends-on:
+#unistr/u8-uctomb
+#iconv
+#iconv_open
+#gettext-h
+#localcharset
+#error
+
+File: ./modules/uniconv/base
+Hash: 50d3e96212a8941485ac49045d1b2d9a621d2e31818e8c00408f034d2017e43b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for conversion from/to legacy encodings.
+#
+#Files:
+#lib/uniconv.h
+#lib/iconveh.h
+#lib/striconveha.h
+#lib/localcharset.h
+#
+#Depends-on:
+#unitypes
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uniconv/u16-conv-from-enc
+Hash: c46131ff4aa3a2106a7a1339801be9af40b215349485b7e0c4e6a36b6f4ff1c4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-16 from legacy encodings.
+#
+#Files:
+#lib/uniconv/u16-conv-from-enc.c
+#lib/uniconv/u-conv-from-enc.h
+#
+#Depends-on:
+#uniconv/base
+#striconveha
+#uniconv/u8-conv-from-enc
+#unistr/u8-to-u16
+#unistr/u8-mblen
+#unistr/u16-mblen
+
+File: ./modules/uniconv/u16-conv-from-enc-tests
+Hash: 472e10a2772a1912b22ae6a1c68afbf664f725de5c5df3e3cdba23f9f204d64e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u16-conv-from-enc.c
+#
+#Depends-on:
+#unistr/u16-cmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-conv-from-enc
+#check_PROGRAMS += test-u16-conv-from-enc
+#test_u16_conv_from_enc_SOURCES = uniconv/test-u16-conv-from-enc.c
+#test_u16_conv_from_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u16-conv-to-enc
+Hash: d4074a6bb0f69e6645106a507c446abf11a81f25e5e5557a51791d353716cef4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-16 to legacy encodings.
+#
+#Files:
+#lib/uniconv/u16-conv-to-enc.c
+#lib/uniconv/u-conv-to-enc.h
+#
+#Depends-on:
+#uniconv/base
+#striconveha
+#uniconv/u8-conv-to-enc
+#unistr/u16-mbtoucr
+#unistr/u8-uctomb
+#unistr/u16-mblen
+#unistr/u8-mblen
+
+File: ./modules/uniconv/u16-conv-to-enc-tests
+Hash: 9520afbe67376243ccb7117be073ad4d81d6a2f0e8c091de74830ff5cf55efc7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u16-conv-to-enc.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-conv-to-enc
+#check_PROGRAMS += test-u16-conv-to-enc
+#test_u16_conv_to_enc_SOURCES = uniconv/test-u16-conv-to-enc.c
+#test_u16_conv_to_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u16-strconv-from-enc
+Hash: e66be9d71e6bf985c519af717648ae35ee39fd7dc2cf4a41954ec7b911b58386
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-16 from legacy encodings.
+#
+#Files:
+#lib/uniconv/u16-strconv-from-enc.c
+#lib/uniconv/u-strconv-from-enc.h
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u16-conv-from-enc
+#unistr/u16-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uniconv/u16-strconv-from-enc-tests
+Hash: 8f56873fd4d0d3179d47b0ccd34640859f3d03d04a46f6dcc8000581d84d475c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u16-strconv-from-enc.c
+#
+#Depends-on:
+#unistr/u16-strcmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-strconv-from-enc
+#check_PROGRAMS += test-u16-strconv-from-enc
+#test_u16_strconv_from_enc_SOURCES = uniconv/test-u16-strconv-from-enc.c
+#test_u16_strconv_from_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u16-strconv-from-locale
+Hash: e7d3a887f18ea4704b8382f80154d1a8ff4b1f3ad8bdf3daa8780df3f5fb0794
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-16 from the locale encoding.
+#
+#Files:
+#lib/uniconv/u16-strconv-from-locale.c
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u16-strconv-from-enc
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniconv/u16-strconv-from-locale.c
+
+File: ./modules/uniconv/u16-strconv-to-enc
+Hash: 804a6b8458959515baa0ade9234305472d8ca4489645997a233a770ccfa3db38
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-16 to legacy encodings.
+#
+#Files:
+#lib/uniconv/u16-strconv-to-enc.c
+#lib/uniconv/u-strconv-to-enc.h
+#
+#Depends-on:
+#uniconv/base
+#striconveha
+#uniconv/u8-strconv-to-enc
+#unistr/u16-to-u8
+#unistr/u16-strlen
+#
+#configure.ac:
+
+File: ./modules/uniconv/u16-strconv-to-enc-tests
+Hash: b2e5d8c2f8ffcfd1d28486a5bd1040fc1ca57eeabcc21ea302c2812afeb77cd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u16-strconv-to-enc.c
+#
+#Depends-on:
+#unistr/u16-strcmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-strconv-to-enc
+#check_PROGRAMS += test-u16-strconv-to-enc
+#test_u16_strconv_to_enc_SOURCES = uniconv/test-u16-strconv-to-enc.c
+#test_u16_strconv_to_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u16-strconv-to-locale
+Hash: 455b9eda97528d3fed7c2192b1c5d598f08b8e0c3c7908b70105a59cc9a5e712
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-16 to the locale encoding.
+#
+#Files:
+#lib/uniconv/u16-strconv-to-locale.c
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u16-strconv-to-enc
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniconv/u16-strconv-to-locale.c
+
+File: ./modules/uniconv/u32-conv-from-enc
+Hash: b773a682f169e27a916669cb459f8929157695299844f7ad0b5c8ca1b07c9d98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-32 from legacy encodings.
+#
+#Files:
+#lib/uniconv/u32-conv-from-enc.c
+#lib/uniconv/u-conv-from-enc.h
+#
+#Depends-on:
+#uniconv/base
+#striconveha
+#uniconv/u8-conv-from-enc
+#unistr/u8-to-u32
+#unistr/u8-mblen
+#unistr/u32-mblen
+
+File: ./modules/uniconv/u32-conv-from-enc-tests
+Hash: b7a87e6d1fc76ab5af93ff1ec14381b3b5fa556301ce03944b16ce80fa3a474d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u32-conv-from-enc.c
+#
+#Depends-on:
+#unistr/u32-cmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-conv-from-enc
+#check_PROGRAMS += test-u32-conv-from-enc
+#test_u32_conv_from_enc_SOURCES = uniconv/test-u32-conv-from-enc.c
+#test_u32_conv_from_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u32-conv-to-enc
+Hash: 5f329346c8a18e1cddb439eeab4e40485158bbec7bab75fda688dea2459980f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-32 to legacy encodings.
+#
+#Files:
+#lib/uniconv/u32-conv-to-enc.c
+#lib/uniconv/u-conv-to-enc.h
+#
+#Depends-on:
+#uniconv/base
+#striconveha
+#uniconv/u8-conv-to-enc
+#unistr/u32-to-u8
+#unistr/u32-mblen
+#unistr/u8-mblen
+
+File: ./modules/uniconv/u32-conv-to-enc-tests
+Hash: 3124b5d26aae7637bbd24af36baa31150343715f56e7871635a468dd8466baa3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u32-conv-to-enc.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-conv-to-enc
+#check_PROGRAMS += test-u32-conv-to-enc
+#test_u32_conv_to_enc_SOURCES = uniconv/test-u32-conv-to-enc.c
+#test_u32_conv_to_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u32-strconv-from-enc
+Hash: 359ebb5cc74fc82ed45796edf491764c8f7e83e20b6dacc7d13e5416c3e471d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-32 from legacy encodings.
+#
+#Files:
+#lib/uniconv/u32-strconv-from-enc.c
+#lib/uniconv/u-strconv-from-enc.h
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u32-conv-from-enc
+#unistr/u32-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uniconv/u32-strconv-from-enc-tests
+Hash: a0a2e6dc86862e28989f20c4ddaa34e8223c809f806cd72cd6640178ae8b5cd1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u32-strconv-from-enc.c
+#
+#Depends-on:
+#unistr/u32-strcmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-strconv-from-enc
+#check_PROGRAMS += test-u32-strconv-from-enc
+#test_u32_strconv_from_enc_SOURCES = uniconv/test-u32-strconv-from-enc.c
+#test_u32_strconv_from_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u32-strconv-from-locale
+Hash: c011f0e8d5e5e2f63a61b369538cd266305938147e2ab39f73c5e3784c8d735b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-32 from the locale encoding.
+#
+#Files:
+#lib/uniconv/u32-strconv-from-locale.c
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u32-strconv-from-enc
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniconv/u32-strconv-from-locale.c
+
+File: ./modules/uniconv/u32-strconv-to-enc
+Hash: 5d6453b129313ce2c2d717d648d8b8e45489abbbd3955c02810b5a7572b9b719
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-32 to legacy encodings.
+#
+#Files:
+#lib/uniconv/u32-strconv-to-enc.c
+#lib/uniconv/u-strconv-to-enc.h
+#
+#Depends-on:
+#uniconv/base
+#striconveha
+#uniconv/u8-strconv-to-enc
+#unistr/u32-to-u8
+#unistr/u32-strlen
+#
+#configure.ac:
+
+File: ./modules/uniconv/u32-strconv-to-enc-tests
+Hash: 8f88075d042c44e2aa42892fa09fa9af6430a420fdaac65c1b38a23fa6fab98e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u32-strconv-to-enc.c
+#
+#Depends-on:
+#unistr/u32-strcmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-strconv-to-enc
+#check_PROGRAMS += test-u32-strconv-to-enc
+#test_u32_strconv_to_enc_SOURCES = uniconv/test-u32-strconv-to-enc.c
+#test_u32_strconv_to_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u32-strconv-to-locale
+Hash: 91ad7c7e746794b8c39d48ff6d86f66be144aff2dcb4ce7a47b2d0309f743704
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-32 to the locale encoding.
+#
+#Files:
+#lib/uniconv/u32-strconv-to-locale.c
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u32-strconv-to-enc
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniconv/u32-strconv-to-locale.c
+
+File: ./modules/uniconv/u8-conv-from-enc
+Hash: 804e9093cbca9f80897ffa3c0fd7a241fbe11ba1ffba444784d6e42d0356c977
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-8 from legacy encodings.
+#
+#Files:
+#lib/uniconv/u8-conv-from-enc.c
+#
+#Depends-on:
+#uniconv/base
+#c-strcaseeq
+#striconveha
+#unistr/u8-check
+#unistr/u8-mblen
+#
+#configure.ac:
+
+File: ./modules/uniconv/u8-conv-from-enc-tests
+Hash: 352f9ccc88acaabc9a51eba5d6a0ff8e28e22f469b191bc49c1bc98977f5bec0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u8-conv-from-enc.c
+#
+#Depends-on:
+#unistr/u8-strlen
+#unistr/u8-cmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-conv-from-enc
+#check_PROGRAMS += test-u8-conv-from-enc
+#test_u8_conv_from_enc_SOURCES = uniconv/test-u8-conv-from-enc.c
+#test_u8_conv_from_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u8-conv-to-enc
+Hash: cc7c4c9d46ffdc0195647b7eece0c79fc431097740a27bcdef04b2c7cd2e6526
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-8 to legacy encodings.
+#
+#Files:
+#lib/uniconv/u8-conv-to-enc.c
+#
+#Depends-on:
+#uniconv/base
+#c-strcaseeq
+#striconveha
+#unistr/u8-check
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uniconv/u8-conv-to-enc-tests
+Hash: 3ea5f97d358e1d8b795d46d69f34aa29ea7c433a36855e8806a6dfbfea298f89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u8-conv-to-enc.c
+#
+#Depends-on:
+#unistr/u8-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-conv-to-enc
+#check_PROGRAMS += test-u8-conv-to-enc
+#test_u8_conv_to_enc_SOURCES = uniconv/test-u8-conv-to-enc.c
+#test_u8_conv_to_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u8-strconv-from-enc
+Hash: 5e258f26c0b35883b6b9bec42d435ab74abc790026b28b0011349c63723f84c5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-8 from legacy encodings.
+#
+#Files:
+#lib/uniconv/u8-strconv-from-enc.c
+#lib/uniconv/u-strconv-from-enc.h
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u8-conv-from-enc
+#unistr/u8-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uniconv/u8-strconv-from-enc-tests
+Hash: e2d97875d2e2efad64b3c5b95a2ab213f85221612cf878b28a659b50f6ad1e5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u8-strconv-from-enc.c
+#
+#Depends-on:
+#unistr/u8-strcmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-strconv-from-enc
+#check_PROGRAMS += test-u8-strconv-from-enc
+#test_u8_strconv_from_enc_SOURCES = uniconv/test-u8-strconv-from-enc.c
+#test_u8_strconv_from_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u8-strconv-from-locale
+Hash: c956a8c27cb3e458b463f4e91d841246c7a6ae91891cdd9499a57b3b48ed9dd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion to UTF-8 from the locale encoding.
+#
+#Files:
+#lib/uniconv/u8-strconv-from-locale.c
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u8-strconv-from-enc
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniconv/u8-strconv-from-locale.c
+
+File: ./modules/uniconv/u8-strconv-to-enc
+Hash: b19a1d9c1504bb80aa9cd09ccbffaaf0a945434256e26d6c6429afcee0e16bd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-8 to legacy encodings.
+#
+#Files:
+#lib/uniconv/u8-strconv-to-enc.c
+#
+#Depends-on:
+#uniconv/base
+#c-strcaseeq
+#striconveha
+#unistr/u8-check
+#unistr/u8-strlen
+#
+#configure.ac:
+
+File: ./modules/uniconv/u8-strconv-to-enc-tests
+Hash: 74ba81dad04705f9bb90d5907e722a799d9edb194320dcd893dcbb04489b8618
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniconv/test-u8-strconv-to-enc.c
+#
+#Depends-on:
+#unistr/u8-strcmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-strconv-to-enc
+#check_PROGRAMS += test-u8-strconv-to-enc
+#test_u8_strconv_to_enc_SOURCES = uniconv/test-u8-strconv-to-enc.c
+#test_u8_strconv_to_enc_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniconv/u8-strconv-to-locale
+Hash: d775764fbd80cf47c97204c533f0bac9bfb7c1d68ed1c5281a558e905aca1ea1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion from UTF-8 to the locale encoding.
+#
+#Files:
+#lib/uniconv/u8-strconv-to-locale.c
+#
+#Depends-on:
+#uniconv/base
+#uniconv/u8-strconv-to-enc
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniconv/u8-strconv-to-locale.c
+
+File: ./modules/unictype/base
+Hash: 4e1cf149a4cc5d587b34fd6d92440d314b2af3393dfd0a61b4a15174e34bb77f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for Unicode classification and properties.
+#
+#Files:
+#lib/unictype.h
+#
+#Depends-on:
+#unitypes
+#stdbool
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/unictype/bidicategory-all
+Hash: 632ad012575ff81135aad7e11721e8ed5468908229d9ee70f9a3f26de61c0a4d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Complete API for Unicode character bidi categories.
+#
+#Files:
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-byname
+#unictype/bidicategory-name
+#unictype/bidicategory-of
+#unictype/bidicategory-test
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/bidicategory-byname
+Hash: 09674c570ebb614f743ba480be41e7594d43113441387f5559c2ceb7b436f156
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Find a Unicode character bidi category, given its name.
+#
+#Files:
+#lib/unictype/bidi_byname.c
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/bidi_byname.c
+#
+#Include:
+
+File: ./modules/unictype/bidicategory-byname-tests
+Hash: 37431bc97e0f6d78ce420c06b21cabcf68769652511504ab8d1039801a9ec07f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-bidi_byname.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-bidi_byname
+#check_PROGRAMS += test-bidi_byname
+#test_bidi_byname_SOURCES = unictype/test-bidi_byname.c
+
+File: ./modules/unictype/bidicategory-name
+Hash: 6b7c212cdc0f09083c9e15b6c7828faae41878570511f81d229ada75fe8ca833
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Name of Unicode character bidi category.
+#
+#Files:
+#lib/unictype/bidi_name.c
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/bidi_name.c
+#
+#Include:
+
+File: ./modules/unictype/bidicategory-name-tests
+Hash: 1f692ec85934508818f0e9455388105761ec91d7b8651deb5821c715b5955583
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-bidi_name.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-bidi_name
+#check_PROGRAMS += test-bidi_name
+#test_bidi_name_SOURCES = unictype/test-bidi_name.c
+
+File: ./modules/unictype/bidicategory-of
+Hash: df49d7be4ac72c665f506751c8f93dc7924128b5c1b30057ebbb80e80d7c07d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine bidi category of a Unicode character.
+#
+#Files:
+#lib/unictype/bidi_of.c
+#lib/unictype/bidi_of.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/bidi_of.c
+
+File: ./modules/unictype/bidicategory-of-tests
+Hash: 0df5b16f511b104b64d2a64bcad6a61c8334903b7f0fa240e3245366692e9ebc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-bidi_of.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-bidi_of
+#check_PROGRAMS += test-bidi_of
+#test_bidi_of_SOURCES = unictype/test-bidi_of.c
+
+File: ./modules/unictype/bidicategory-test
+Hash: e04b555d948c988f298ed25f34bdac22386c23bdfcf2543516f4641c1f39d8dc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character belongs to a given bidi category.
+#
+#Files:
+#lib/unictype/bidi_test.c
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/bidi_test.c
+
+File: ./modules/unictype/bidicategory-test-tests
+Hash: ee67d7005fc35e3fb828c820d0b3d7c19d38f941aa7bf6099c498543c567dfe5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-bidi_test.c
+#
+#Depends-on:
+#unictype/bidicategory-of
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-bidi_test
+#check_PROGRAMS += test-bidi_test
+#test_bidi_test_SOURCES = unictype/test-bidi_test.c
+
+File: ./modules/unictype/block-all
+Hash: bdfff6be11a258cb47ab7a8bf6178d7d7114512a689a521a4953ee93896992d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Complete API for blocks of Unicode characters.
+#
+#Files:
+#
+#Depends-on:
+#unictype/block-of
+#unictype/block-test
+#unictype/block-list
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/unictype/block-list
+Hash: 79571465a0c92e50f110cee696a8897e1960025526b1f2ebcb85b4d1e85419e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#List of Unicode character blocks.
+#
+#Files:
+#lib/unictype/blocks.c
+#lib/unictype/blocks.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/blocks.c
+
+File: ./modules/unictype/block-list-tests
+Hash: daeb13d7d8249409a86aca59f29f900a224a8dd687906034467e7acfe4abaab9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-block_list.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-block_list
+#check_PROGRAMS += test-block_list
+#test_block_list_SOURCES = unictype/test-block_list.c
+
+File: ./modules/unictype/block-of
+Hash: 7a84f72f56b616480823c9145721e8a26adf4238ab1a3119781b9fbdef69c6b4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine block of a Unicode character.
+#
+#Files:
+#
+#Depends-on:
+#unictype/base
+#unictype/block-list
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unictype.h"
+
+File: ./modules/unictype/block-of-tests
+Hash: cbcc5b54e996690827b7460481468e4d1b8ef456588d2211296bd1442151a510
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-block_of.c
+#
+#Depends-on:
+#unictype/block-list
+#unictype/block-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-block_of
+#check_PROGRAMS += test-block_of
+#test_block_of_SOURCES = unictype/test-block_of.c
+
+File: ./modules/unictype/block-test
+Hash: 82f1e702e237268a7d1acf7963b035db43cc7f83816b40aa62da8ba990bf806a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character belongs to a given Unicode block.
+#
+#Files:
+#lib/unictype/block_test.c
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/block_test.c
+#
+#Include:
+
+File: ./modules/unictype/block-test-tests
+Hash: 2c8ab641903b6c1bf1ef067359f59acc62938576a819aff154170166cbf468e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-block_test.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-block_test
+#check_PROGRAMS += test-block_test
+#test_block_test_SOURCES = unictype/test-block_test.c
+
+File: ./modules/unictype/category-C
+Hash: b50f0ee64a86121ee994c6f0b630f23efd1865a08e792be1feb051cda4729a1a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category C.
+#
+#Files:
+#lib/unictype/categ_C.c
+#lib/unictype/categ_C.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_C.c
+
+File: ./modules/unictype/category-C-tests
+Hash: a65b4f3c13e24ce5097984842008e38e3d0376410f7440b12efd00bcbf0e228b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_C.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_C
+#check_PROGRAMS += test-categ_C
+#test_categ_C_SOURCES = unictype/test-categ_C.c
+
+File: ./modules/unictype/category-Cc
+Hash: 8ddd6768f801ea69a4c257bfaf3f185a20f151b01dcd2d27f43a05dd22d7a288
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Cc.
+#
+#Files:
+#lib/unictype/categ_Cc.c
+#lib/unictype/categ_Cc.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Cc.c
+
+File: ./modules/unictype/category-Cc-tests
+Hash: f8aaf65656f005829d0cedebea1b5e64724d10961760d90965f21ede7be9ed8d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Cc.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Cc
+#check_PROGRAMS += test-categ_Cc
+#test_categ_Cc_SOURCES = unictype/test-categ_Cc.c
+
+File: ./modules/unictype/category-Cf
+Hash: 3820a40d604e9af2a925220231c4f94c688f10240e1b918aedda94c19f63f42d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Cf.
+#
+#Files:
+#lib/unictype/categ_Cf.c
+#lib/unictype/categ_Cf.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Cf.c
+
+File: ./modules/unictype/category-Cf-tests
+Hash: 9cb0efdc2747f61dbdf9d152c2e9aa9435a602c03fe88a162ca602d4d17fc2dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Cf.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Cf
+#check_PROGRAMS += test-categ_Cf
+#test_categ_Cf_SOURCES = unictype/test-categ_Cf.c
+
+File: ./modules/unictype/category-Cn
+Hash: b686b3ffa74ae9bf11fe7c3edd11d051c9532e49ff8bcaf8681a815a91dc2dda
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Cn.
+#
+#Files:
+#lib/unictype/categ_Cn.c
+#lib/unictype/categ_Cn.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Cn.c
+
+File: ./modules/unictype/category-Cn-tests
+Hash: d91ee0666b67145ef883bf1cc95deec3f918b0080befd8f5ddcfad3c19789f93
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Cn.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Cn
+#check_PROGRAMS += test-categ_Cn
+#test_categ_Cn_SOURCES = unictype/test-categ_Cn.c
+
+File: ./modules/unictype/category-Co
+Hash: 6b6e944701acde3db6b942a62d48b1a4a7c46810b96a5c49f385ee6c9b27ac9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Co.
+#
+#Files:
+#lib/unictype/categ_Co.c
+#lib/unictype/categ_Co.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Co.c
+
+File: ./modules/unictype/category-Co-tests
+Hash: d873cf764c6a47ea7ee5f2d72407373de8f970043e9263270008e67b731f8e25
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Co.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Co
+#check_PROGRAMS += test-categ_Co
+#test_categ_Co_SOURCES = unictype/test-categ_Co.c
+
+File: ./modules/unictype/category-Cs
+Hash: f176ebb894fc40328b46d9fa4a72d8f165276f1ec6839db1f25cb4fc0c73620f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Cs.
+#
+#Files:
+#lib/unictype/categ_Cs.c
+#lib/unictype/categ_Cs.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Cs.c
+
+File: ./modules/unictype/category-Cs-tests
+Hash: d151c46f4827e266335ed4ec6cdf187649eda552000ea99975eda0d8772ac3d4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Cs.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Cs
+#check_PROGRAMS += test-categ_Cs
+#test_categ_Cs_SOURCES = unictype/test-categ_Cs.c
+
+File: ./modules/unictype/category-L
+Hash: f5869373405431b090effa65191e784d1a69e6b6b42a886bb9df656a5ee02413
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category L.
+#
+#Files:
+#lib/unictype/categ_L.c
+#lib/unictype/categ_L.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_L.c
+
+File: ./modules/unictype/category-L-tests
+Hash: ea767cac4c3bb427c1b2b182b5c1b46f63cff6f5681b21f9d06680ef355ba8e5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_L.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_L
+#check_PROGRAMS += test-categ_L
+#test_categ_L_SOURCES = unictype/test-categ_L.c
+
+File: ./modules/unictype/category-Ll
+Hash: 03f83b90f827cb120251bcbe842eaa084e7cdb38489c334929b938268a12471e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Ll.
+#
+#Files:
+#lib/unictype/categ_Ll.c
+#lib/unictype/categ_Ll.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Ll.c
+
+File: ./modules/unictype/category-Ll-tests
+Hash: af6bca72d7cc585c103c7a027820119a48cb5acaf4aee212fbb217c9c00ff3c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Ll.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Ll
+#check_PROGRAMS += test-categ_Ll
+#test_categ_Ll_SOURCES = unictype/test-categ_Ll.c
+
+File: ./modules/unictype/category-Lm
+Hash: c166f5182990d42f606eec6fa97b95b8ce1df5876241fdaa12f1a11743b2aab1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Lm.
+#
+#Files:
+#lib/unictype/categ_Lm.c
+#lib/unictype/categ_Lm.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Lm.c
+
+File: ./modules/unictype/category-Lm-tests
+Hash: 71473868edc5241c85418fce441b7013525978d62e67cbcfe0fec9dcddfd2b57
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Lm.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Lm
+#check_PROGRAMS += test-categ_Lm
+#test_categ_Lm_SOURCES = unictype/test-categ_Lm.c
+
+File: ./modules/unictype/category-Lo
+Hash: 67158963c6e0a345ee9bc0d5c065c4c18a7168b5879737172cd1112d72c4591a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Lo.
+#
+#Files:
+#lib/unictype/categ_Lo.c
+#lib/unictype/categ_Lo.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Lo.c
+
+File: ./modules/unictype/category-Lo-tests
+Hash: 0c158f7fa0611249fba73685a045cb373bf649b0635c6e872d3eb980dc1b21a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Lo.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Lo
+#check_PROGRAMS += test-categ_Lo
+#test_categ_Lo_SOURCES = unictype/test-categ_Lo.c
+
+File: ./modules/unictype/category-Lt
+Hash: ee79e9d68d1912c787845696834c42487ba52a0cd3b36aa84653deb1322e490d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Lt.
+#
+#Files:
+#lib/unictype/categ_Lt.c
+#lib/unictype/categ_Lt.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Lt.c
+
+File: ./modules/unictype/category-Lt-tests
+Hash: 11f268108f2bb9d1606114611cb44960e4662fa9f8198acf4fd60da549accf78
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Lt.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Lt
+#check_PROGRAMS += test-categ_Lt
+#test_categ_Lt_SOURCES = unictype/test-categ_Lt.c
+
+File: ./modules/unictype/category-Lu
+Hash: 0a4eaa83dcddd00b34c73ca983f04117269bf5bfa158fa0d89832be5094b4d90
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Lu.
+#
+#Files:
+#lib/unictype/categ_Lu.c
+#lib/unictype/categ_Lu.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Lu.c
+
+File: ./modules/unictype/category-Lu-tests
+Hash: a0dac69a29c09411c98a76369af5b198ea84aac0b398a3b4ae86971b79ee9126
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Lu.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Lu
+#check_PROGRAMS += test-categ_Lu
+#test_categ_Lu_SOURCES = unictype/test-categ_Lu.c
+
+File: ./modules/unictype/category-M
+Hash: a7a00a68742ea377e8acc7abdbc8be4e68d02f21b0620169f59307388032c4db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category M.
+#
+#Files:
+#lib/unictype/categ_M.c
+#lib/unictype/categ_M.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_M.c
+
+File: ./modules/unictype/category-M-tests
+Hash: 577a796ee3c175c3259e994317d9aed54c5933c67d0a83f6bd9fc8e5850cc9a9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_M.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_M
+#check_PROGRAMS += test-categ_M
+#test_categ_M_SOURCES = unictype/test-categ_M.c
+
+File: ./modules/unictype/category-Mc
+Hash: 71c90dc0adcd33bf142b74d95207976f76732c2cb30772cfe56370e1c91ed7eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Mc.
+#
+#Files:
+#lib/unictype/categ_Mc.c
+#lib/unictype/categ_Mc.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Mc.c
+
+File: ./modules/unictype/category-Mc-tests
+Hash: 431977d8c1cb9d82897fbdd9a08deef510b682fab7f6159e7fc216c38c1e8e9a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Mc.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Mc
+#check_PROGRAMS += test-categ_Mc
+#test_categ_Mc_SOURCES = unictype/test-categ_Mc.c
+
+File: ./modules/unictype/category-Me
+Hash: a2767f24d3e738ee3492d2d932bbefab6f7385cc599baeb7a8a086b091617d2c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Me.
+#
+#Files:
+#lib/unictype/categ_Me.c
+#lib/unictype/categ_Me.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Me.c
+
+File: ./modules/unictype/category-Me-tests
+Hash: 35bbc1fda018e0b791449c5008793296c3a3e62eda8bf2e0e88bed08a2dc9d1a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Me.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Me
+#check_PROGRAMS += test-categ_Me
+#test_categ_Me_SOURCES = unictype/test-categ_Me.c
+
+File: ./modules/unictype/category-Mn
+Hash: 9c497c87637eb462f82eda98acec5373e61fba83ee7ec2c427de7b035973fa34
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Mn.
+#
+#Files:
+#lib/unictype/categ_Mn.c
+#lib/unictype/categ_Mn.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Mn.c
+
+File: ./modules/unictype/category-Mn-tests
+Hash: c00bff9f96b47ab9816b2c9a96f2c47b80d0752a80bb67654788f43859461d1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Mn.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Mn
+#check_PROGRAMS += test-categ_Mn
+#test_categ_Mn_SOURCES = unictype/test-categ_Mn.c
+
+File: ./modules/unictype/category-N
+Hash: 2bfe868358d181bfd867763536ff7f3bb0f44291e6e03929da90d0d120400092
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category N.
+#
+#Files:
+#lib/unictype/categ_N.c
+#lib/unictype/categ_N.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_N.c
+
+File: ./modules/unictype/category-N-tests
+Hash: c23cbc138890321fd3fdb198b39f748116f9238cf675f52255977b6d45721ee7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_N.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_N
+#check_PROGRAMS += test-categ_N
+#test_categ_N_SOURCES = unictype/test-categ_N.c
+
+File: ./modules/unictype/category-Nd
+Hash: d2b53e39c388911f4942747fc095dfb19a39f66203827f697c4ae977c9a4c583
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Nd.
+#
+#Files:
+#lib/unictype/categ_Nd.c
+#lib/unictype/categ_Nd.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Nd.c
+
+File: ./modules/unictype/category-Nd-tests
+Hash: 63f97050d8f2145d4b9c1e662044a192ff4d734ed2cff11a3d7cb2f48830492f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Nd.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Nd
+#check_PROGRAMS += test-categ_Nd
+#test_categ_Nd_SOURCES = unictype/test-categ_Nd.c
+
+File: ./modules/unictype/category-Nl
+Hash: 2c97eed29932465ae99eaff40da7232f77ee20bebe9743b3a5e7ce90d317a910
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Nl.
+#
+#Files:
+#lib/unictype/categ_Nl.c
+#lib/unictype/categ_Nl.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Nl.c
+
+File: ./modules/unictype/category-Nl-tests
+Hash: 1401df484ceba15e90ce4fcdf480b3e089a3275e8b913efbb46db266cf6177d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Nl.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Nl
+#check_PROGRAMS += test-categ_Nl
+#test_categ_Nl_SOURCES = unictype/test-categ_Nl.c
+
+File: ./modules/unictype/category-No
+Hash: 3397e879fc6577306d2fe96f9cdbe3a0a86c9ed66024645d234845212359aea4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category No.
+#
+#Files:
+#lib/unictype/categ_No.c
+#lib/unictype/categ_No.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_No.c
+
+File: ./modules/unictype/category-No-tests
+Hash: 2a89303b56ce7233f8d856dd764d8ac0a5ded572ef43e8bc2fe133fe627f2d85
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_No.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_No
+#check_PROGRAMS += test-categ_No
+#test_categ_No_SOURCES = unictype/test-categ_No.c
+
+File: ./modules/unictype/category-P
+Hash: 89beab2585b3809a28361467d0b2a72d39325830bf80777af3fe0897b3e8f81d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category P.
+#
+#Files:
+#lib/unictype/categ_P.c
+#lib/unictype/categ_P.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_P.c
+
+File: ./modules/unictype/category-P-tests
+Hash: 8df51034f7e890e668b22a22d07a297b15c0e01cc85b073962d2598adb02781f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_P.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_P
+#check_PROGRAMS += test-categ_P
+#test_categ_P_SOURCES = unictype/test-categ_P.c
+
+File: ./modules/unictype/category-Pc
+Hash: baec1ce567b94017943677ccd928abfbbfbe0fd8c3734619eb83fe5c97aeb88e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Pc.
+#
+#Files:
+#lib/unictype/categ_Pc.c
+#lib/unictype/categ_Pc.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Pc.c
+
+File: ./modules/unictype/category-Pc-tests
+Hash: 08ac7a0073c001eb0357900f764e29214a2e996a07da7b72cac05dd1a6695188
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Pc.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Pc
+#check_PROGRAMS += test-categ_Pc
+#test_categ_Pc_SOURCES = unictype/test-categ_Pc.c
+
+File: ./modules/unictype/category-Pd
+Hash: c69b1aa58dbacb75dd27403d35d2ab221f4f8d4275b9bbec105498b201dd447e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Pd.
+#
+#Files:
+#lib/unictype/categ_Pd.c
+#lib/unictype/categ_Pd.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Pd.c
+
+File: ./modules/unictype/category-Pd-tests
+Hash: 0b164d7f16c3ec72454fa87fe962e93e7548c0f60cbc54a25a94f28444e95dc9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Pd.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Pd
+#check_PROGRAMS += test-categ_Pd
+#test_categ_Pd_SOURCES = unictype/test-categ_Pd.c
+
+File: ./modules/unictype/category-Pe
+Hash: c930640ce04a7798a64dd30bbc66a35ac09088f561aec806d11ceae4cd3003c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Pe.
+#
+#Files:
+#lib/unictype/categ_Pe.c
+#lib/unictype/categ_Pe.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Pe.c
+
+File: ./modules/unictype/category-Pe-tests
+Hash: afae91619e0b047a38295ae48bc0fd18560f48d16b018bf24050eab24a4b41d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Pe.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Pe
+#check_PROGRAMS += test-categ_Pe
+#test_categ_Pe_SOURCES = unictype/test-categ_Pe.c
+
+File: ./modules/unictype/category-Pf
+Hash: 1733b390e82ece48e63ae4e7c1445ce652192926eaa57566eaf5c3623deafcbb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Pf.
+#
+#Files:
+#lib/unictype/categ_Pf.c
+#lib/unictype/categ_Pf.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Pf.c
+
+File: ./modules/unictype/category-Pf-tests
+Hash: 01a4afab769af5dae8d7f1a13a2df2eb8108250e5876122560f46d13309ce3ed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Pf.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Pf
+#check_PROGRAMS += test-categ_Pf
+#test_categ_Pf_SOURCES = unictype/test-categ_Pf.c
+
+File: ./modules/unictype/category-Pi
+Hash: 4cf8b1ef413c59c2ac665b277476526f48e614fb23e9b19b3481e86af728e62c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Pi.
+#
+#Files:
+#lib/unictype/categ_Pi.c
+#lib/unictype/categ_Pi.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Pi.c
+
+File: ./modules/unictype/category-Pi-tests
+Hash: f4a65dcf759d18b45032f2a6f2f45c6e8b132f9e2453532b581816a208fe392d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Pi.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Pi
+#check_PROGRAMS += test-categ_Pi
+#test_categ_Pi_SOURCES = unictype/test-categ_Pi.c
+
+File: ./modules/unictype/category-Po
+Hash: d52f4465d5fd2beb1e22120866a103b5482d3932bedae9c0898cd78da58dedcb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Po.
+#
+#Files:
+#lib/unictype/categ_Po.c
+#lib/unictype/categ_Po.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Po.c
+
+File: ./modules/unictype/category-Po-tests
+Hash: 76a5d75e2d40dc3319f0fee99c21bfae46838612062409782f9033eab9f560a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Po.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Po
+#check_PROGRAMS += test-categ_Po
+#test_categ_Po_SOURCES = unictype/test-categ_Po.c
+
+File: ./modules/unictype/category-Ps
+Hash: b04f01af08d6326b4d8ef8fbf5bd9b199dbadbffc4234d2d7233dafa424c25cb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Ps.
+#
+#Files:
+#lib/unictype/categ_Ps.c
+#lib/unictype/categ_Ps.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Ps.c
+
+File: ./modules/unictype/category-Ps-tests
+Hash: a1c9597abf14374fbdf86528dbfc850e867fd217d1c1b024139c6dee3a79aa04
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Ps.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Ps
+#check_PROGRAMS += test-categ_Ps
+#test_categ_Ps_SOURCES = unictype/test-categ_Ps.c
+
+File: ./modules/unictype/category-S
+Hash: 3b1f6fe997bd2a5b457bad45930b2f0347be0f6392cbf0ce864c0df37f6835a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category S.
+#
+#Files:
+#lib/unictype/categ_S.c
+#lib/unictype/categ_S.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_S.c
+
+File: ./modules/unictype/category-S-tests
+Hash: 16bb3a0a6ab8c9af9d79ce7425b8b8d2ae3d6151249988b73d622c7c5b7a7de7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_S.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_S
+#check_PROGRAMS += test-categ_S
+#test_categ_S_SOURCES = unictype/test-categ_S.c
+
+File: ./modules/unictype/category-Sc
+Hash: 6eb49b9fa984148e7370fb7cf238b34303dc2713452f854d289d119beda4d0a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Sc.
+#
+#Files:
+#lib/unictype/categ_Sc.c
+#lib/unictype/categ_Sc.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Sc.c
+
+File: ./modules/unictype/category-Sc-tests
+Hash: a4ca01545a5c388f10de42be48b57b7bdf6c2025f297183c4e09138c64c3e9e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Sc.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Sc
+#check_PROGRAMS += test-categ_Sc
+#test_categ_Sc_SOURCES = unictype/test-categ_Sc.c
+
+File: ./modules/unictype/category-Sk
+Hash: fc08600f54e46b801537fbb2282bf602d46c3eae8eef49fde48540d800f5ea45
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Sk.
+#
+#Files:
+#lib/unictype/categ_Sk.c
+#lib/unictype/categ_Sk.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Sk.c
+
+File: ./modules/unictype/category-Sk-tests
+Hash: 0af20842d317e64eaed4d4cac1d29f1057f07218e7bd54e0308882d5e245164b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Sk.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Sk
+#check_PROGRAMS += test-categ_Sk
+#test_categ_Sk_SOURCES = unictype/test-categ_Sk.c
+
+File: ./modules/unictype/category-Sm
+Hash: e61490e30f1edf81b4e66dc4d0c3527aa343e35173dc55dc5485c084f1ee0f4b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Sm.
+#
+#Files:
+#lib/unictype/categ_Sm.c
+#lib/unictype/categ_Sm.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Sm.c
+
+File: ./modules/unictype/category-Sm-tests
+Hash: c5e37d4c9c1393eda2c620a82f5b375566fb0f9995fc5441f2093f30ccc3166d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Sm.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Sm
+#check_PROGRAMS += test-categ_Sm
+#test_categ_Sm_SOURCES = unictype/test-categ_Sm.c
+
+File: ./modules/unictype/category-So
+Hash: a3dff7aa78b2315131bc3318189b8d9a8e6b06793fc849c3994be974b035a253
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category So.
+#
+#Files:
+#lib/unictype/categ_So.c
+#lib/unictype/categ_So.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_So.c
+
+File: ./modules/unictype/category-So-tests
+Hash: 49c2087f7b9afff2491ecf214c89e44009b358b14b5b9d869b54f0c0c92a361b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_So.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_So
+#check_PROGRAMS += test-categ_So
+#test_categ_So_SOURCES = unictype/test-categ_So.c
+
+File: ./modules/unictype/category-Z
+Hash: ca060713544186ac2208fbdc02c6dbae13dc78dcd0445d53d62d4e02ba9023ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Z.
+#
+#Files:
+#lib/unictype/categ_Z.c
+#lib/unictype/categ_Z.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Z.c
+
+File: ./modules/unictype/category-Z-tests
+Hash: 61ecd265cb17d3e856e153b5b091186a9ab9909a9a66788d066d277af58ceace
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Z.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Z
+#check_PROGRAMS += test-categ_Z
+#test_categ_Z_SOURCES = unictype/test-categ_Z.c
+
+File: ./modules/unictype/category-Zl
+Hash: e3d90459eb2e48d1e5c764da67c517e8e9ebd43793276d784020dcbae9ff7d0c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Zl.
+#
+#Files:
+#lib/unictype/categ_Zl.c
+#lib/unictype/categ_Zl.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Zl.c
+
+File: ./modules/unictype/category-Zl-tests
+Hash: 4c9ef314a9b6cab23d2d6f2d0444d4fe9b7f9954af49e0bd6e7030994aec127b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Zl.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Zl
+#check_PROGRAMS += test-categ_Zl
+#test_categ_Zl_SOURCES = unictype/test-categ_Zl.c
+
+File: ./modules/unictype/category-Zp
+Hash: 5864d79e3b057201ad88484f89888d7714eb13334438ec9cadb7240ad3663147
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Zp.
+#
+#Files:
+#lib/unictype/categ_Zp.c
+#lib/unictype/categ_Zp.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Zp.c
+
+File: ./modules/unictype/category-Zp-tests
+Hash: a0c6723ba2159e4987e988da7fb8913ac6b460b690267332a75fbf451c458216
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Zp.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Zp
+#check_PROGRAMS += test-categ_Zp
+#test_categ_Zp_SOURCES = unictype/test-categ_Zp.c
+
+File: ./modules/unictype/category-Zs
+Hash: 5981c5e91908b4fdf5033b2606eaa690522fc36d1bdbb6b60bf7ef9d8fdc8e43
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is of general category Zs.
+#
+#Files:
+#lib/unictype/categ_Zs.c
+#lib/unictype/categ_Zs.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_Zs.c
+
+File: ./modules/unictype/category-Zs-tests
+Hash: 38745f1e1cd5b9242a9413a1e3d25ba47a20404f3cc3cb4b318a28f4ed9c931d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_Zs.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_Zs
+#check_PROGRAMS += test-categ_Zs
+#test_categ_Zs_SOURCES = unictype/test-categ_Zs.c
+
+File: ./modules/unictype/category-all
+Hash: 3d894bc3558f7fdf0760387f32b9627717dd24428a19a48cb411f113efeebace
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Complete API for Unicode character categories.
+#
+#Files:
+#
+#Depends-on:
+#unictype/category-C
+#unictype/category-Cc
+#unictype/category-Cf
+#unictype/category-Cn
+#unictype/category-Co
+#unictype/category-Cs
+#unictype/category-L
+#unictype/category-Ll
+#unictype/category-Lm
+
+File: ./modules/unictype/category-and
+Hash: 78d599519e1b4077a85a754c8a76b52e924d7df2d790839ae0ebf2bf50cdd7de
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Intersection of categories of Unicode characters.
+#
+#Files:
+#lib/unictype/categ_and.c
+#
+#Depends-on:
+#unictype/base
+#unictype/category-none
+#unictype/category-test-withtable
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_and.c
+
+File: ./modules/unictype/category-and-not
+Hash: 35825dba1e5244e4c37a040a16cf1cd5f5a37e7e561855a07cba4c3776ace911
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Set-difference of categories of Unicode characters.
+#
+#Files:
+#lib/unictype/categ_and_not.c
+#
+#Depends-on:
+#unictype/base
+#unictype/category-none
+#unictype/category-test-withtable
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_and_not.c
+
+File: ./modules/unictype/category-and-not-tests
+Hash: 5dfcd8920d40b91371b3d4fec6cb0452bcd2864024e1e5a4544b9e2097e2f425
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_and_not.c
+#
+#Depends-on:
+#unictype/category-or
+#unictype/category-test
+#unictype/category-L
+#unictype/category-N
+#unictype/category-Lu
+#unictype/category-Nd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_and_not
+
+File: ./modules/unictype/category-and-tests
+Hash: c538067c2d779faefd644adddf042cab9032a40dfeb4b6b03c38378351d63311
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_and.c
+#
+#Depends-on:
+#unictype/category-or
+#unictype/category-test
+#unictype/category-L
+#unictype/category-Nd
+#unictype/category-Lu
+#unictype/category-N
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_and
+
+File: ./modules/unictype/category-byname
+Hash: d0a9fe6bb6d1837f702eb144212981a3a2eb06af802930b189f942340510b510
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Find a Unicode character category, given its name.
+#
+#Files:
+#lib/unictype/categ_byname.c
+#
+#Depends-on:
+#unictype/base
+#unictype/category-C
+#unictype/category-Cc
+#unictype/category-Cf
+#unictype/category-Cn
+#unictype/category-Co
+#unictype/category-Cs
+#unictype/category-L
+
+File: ./modules/unictype/category-byname-tests
+Hash: a57b1223530e502aa4f0bda361a12a55a0b0fcb599b6bf8754677488da057fdf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_byname.c
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_byname
+#check_PROGRAMS += test-categ_byname
+#test_categ_byname_SOURCES = unictype/test-categ_byname.c
+
+File: ./modules/unictype/category-name
+Hash: c23bcf4c0d06378f9bcb6f131fcbc90b2e2448ca7f1bf4063a0c6295027d6357
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Name of Unicode character category.
+#
+#Files:
+#lib/unictype/categ_name.c
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_name.c
+#
+#Include:
+
+File: ./modules/unictype/category-name-tests
+Hash: 7bc548fea282ac4604a59a95f585d192923453eebc02372e3e9c5fbfc5eaae15
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_name.c
+#
+#Depends-on:
+#unictype/category-or
+#unictype/category-Z
+#unictype/category-Nl
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_name
+#check_PROGRAMS += test-categ_name
+#test_categ_name_SOURCES = unictype/test-categ_name.c
+
+File: ./modules/unictype/category-none
+Hash: a9a1ca41387b91edd2cb62516ca9f94270303decde97b0347da52b92cfb3855d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Empty category of Unicode characters.
+#
+#Files:
+#lib/unictype/categ_none.c
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_none.c
+#
+#Include:
+
+File: ./modules/unictype/category-none-tests
+Hash: 31f1e4a827d204cb2b470d75671dd835a8c32e7b3f833dc0401b99385640e8d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_none.c
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_none
+#check_PROGRAMS += test-categ_none
+#test_categ_none_SOURCES = unictype/test-categ_none.c
+
+File: ./modules/unictype/category-of
+Hash: 974c856b996733c9d314f0be7d8691b914f945479c3c11e93f250c193f3d1c65
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine category of a Unicode character.
+#
+#Files:
+#lib/unictype/categ_of.c
+#lib/unictype/categ_of.h
+#
+#Depends-on:
+#unictype/base
+#unictype/category-none
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/category-of-tests
+Hash: 42839935bfd2e81a9d235055b7a3d0bb5562941eb78842488e058ed792556e54
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_of.c
+#
+#Depends-on:
+#unictype/category-test
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_of
+#check_PROGRAMS += test-categ_of
+#test_categ_of_SOURCES = unictype/test-categ_of.c
+
+File: ./modules/unictype/category-or
+Hash: 35a47dab7b419c5deeef431fdc78ccd7cd5baedff94a686cce22bd798a1b8597
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Union of categories of Unicode characters.
+#
+#Files:
+#lib/unictype/categ_or.c
+#
+#Depends-on:
+#unictype/base
+#unictype/category-test-withtable
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_or.c
+
+File: ./modules/unictype/category-or-tests
+Hash: ac89764c8c50ee585d731aa7819be10f9ef249e7dd239257f5b84613465664aa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_or.c
+#
+#Depends-on:
+#unictype/category-test
+#unictype/category-L
+#unictype/category-N
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_or
+#check_PROGRAMS += test-categ_or
+#test_categ_or_SOURCES = unictype/test-categ_or.c
+
+File: ./modules/unictype/category-test
+Hash: bdb12cdfdc6ca2d35807024262d2c16ba98f449bafcc711851696ba12d67a2c1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character belongs to a given category.
+#
+#Files:
+#lib/unictype/categ_test.c
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/categ_test.c
+
+File: ./modules/unictype/category-test-withtable
+Hash: b98b240c52fcb6378a2e2183e87e231efcaf7d74e9d474946233426a26805950
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character belongs to a given bitmask of categories.
+#
+#Files:
+#
+#Depends-on:
+#unictype/base
+#unictype/category-of
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unictype.h"
+
+File: ./modules/unictype/category-test-withtable-tests
+Hash: 522643348eaa5859383a5edca5d2db6080d726910779860e6050007c2478aa6c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-categ_test_withtable.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-categ_test_withtable
+#check_PROGRAMS += test-categ_test_withtable
+#test_categ_test_withtable_SOURCES = unictype/test-categ_test_withtable.c
+
+File: ./modules/unictype/combining-class
+Hash: ddc3c9d9a846292bc778c0a79e60224a20c590b26eff7bf2e6202e7a328fd171
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine combining class of a Unicode character.
+#
+#Files:
+#lib/unictype/combining.c
+#lib/unictype/combining.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/combining.c
+
+File: ./modules/unictype/combining-class-tests
+Hash: 721daeb2b85c77f8850103e61c3793bfbb07f6cbcabcd0430d30ea9cffb94772
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-combining.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-combining
+#check_PROGRAMS += test-combining
+#test_combining_SOURCES = unictype/test-combining.c
+
+File: ./modules/unictype/ctype-alnum
+Hash: 28a03adaf78b611fb05f9d5f78226e3a99a6ae085731ebe361b0aab7d8f94825
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isalnum() function and the
+#<wctype.h> iswalnum() function.
+#
+#Files:
+#lib/unictype/ctype_alnum.c
+#lib/unictype/ctype_alnum.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-alnum-tests
+Hash: c7fb14f6421f17a0720c0c34eb38f5f2d50786684ed1100d728dc1f124eefd89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_alnum.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_alnum
+#check_PROGRAMS += test-ctype_alnum
+#test_ctype_alnum_SOURCES = unictype/test-ctype_alnum.c
+
+File: ./modules/unictype/ctype-alpha
+Hash: d2a481c195d984e352e58239b85d1ddaf9f50d109bfc6b85d907bd4bd8ff5c70
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isalpha() function and the
+#<wctype.h> iswalpha() function.
+#
+#Files:
+#lib/unictype/ctype_alpha.c
+#lib/unictype/ctype_alpha.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-alpha-tests
+Hash: 3a9e921bc71d352cd00edcb0989bf5af3a4d672d7240fc0393d961167dacdc69
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_alpha.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_alpha
+#check_PROGRAMS += test-ctype_alpha
+#test_ctype_alpha_SOURCES = unictype/test-ctype_alpha.c
+
+File: ./modules/unictype/ctype-blank
+Hash: 9e2f1712d6c03d450a89009a89e1750349abf6dd9163fd04937253d1c6b1eeeb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isblank() function and the
+#<wctype.h> iswblank() function.
+#
+#Files:
+#lib/unictype/ctype_blank.c
+#lib/unictype/ctype_blank.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-blank-tests
+Hash: fe2889d3f3ad667d7f0e4aedc581223a1acf2cd8c8a9cff60885bc6bdf3c21aa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_blank.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_blank
+#check_PROGRAMS += test-ctype_blank
+#test_ctype_blank_SOURCES = unictype/test-ctype_blank.c
+
+File: ./modules/unictype/ctype-cntrl
+Hash: b736a6527db0df045f1a2a16e1c51ef476a5ba707474329da33044a83dc2c327
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> iscntrl() function and the
+#<wctype.h> iswcntrl() function.
+#
+#Files:
+#lib/unictype/ctype_cntrl.c
+#lib/unictype/ctype_cntrl.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-cntrl-tests
+Hash: 83b6d1d0acb5a7c3da3946f0b0cb03c5572989603ab445584f3fda5845a5ed02
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_cntrl.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_cntrl
+#check_PROGRAMS += test-ctype_cntrl
+#test_ctype_cntrl_SOURCES = unictype/test-ctype_cntrl.c
+
+File: ./modules/unictype/ctype-digit
+Hash: 879caa1322c752ed06df6f6afccdf849be9a45fae67ffcd886e4f62d1d1873af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isdigit() function and the
+#<wctype.h> iswdigit() function.
+#
+#Files:
+#lib/unictype/ctype_digit.c
+#lib/unictype/ctype_digit.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-digit-tests
+Hash: 9bba9eeaa2f45a9f026e15777cc135139eb71442bb412b37fdb4e46fa500e9fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_digit.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_digit
+#check_PROGRAMS += test-ctype_digit
+#test_ctype_digit_SOURCES = unictype/test-ctype_digit.c
+
+File: ./modules/unictype/ctype-graph
+Hash: 2ef3938dac0ccae7cd506f4eefe1cea71cf7ea01d9f50167db24ab4fc82630bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isgraph() function and the
+#<wctype.h> iswgraph() function.
+#
+#Files:
+#lib/unictype/ctype_graph.c
+#lib/unictype/ctype_graph.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-graph-tests
+Hash: 9d9985cdaf34dbd1f8fccc53f50602ad560a24b52b609cd597d48edee014e5db
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_graph.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_graph
+#check_PROGRAMS += test-ctype_graph
+#test_ctype_graph_SOURCES = unictype/test-ctype_graph.c
+
+File: ./modules/unictype/ctype-lower
+Hash: cb1767e556918f8841464940f550a8733704f8c2391c3a33bde89aa075ed1595
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> islower() function and the
+#<wctype.h> iswlower() function.
+#
+#Files:
+#lib/unictype/ctype_lower.c
+#lib/unictype/ctype_lower.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-lower-tests
+Hash: 7bd4bc7286c52bdba174f606bdd39e3c2a14425f04ad20ed8a60db863dd16860
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_lower.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_lower
+#check_PROGRAMS += test-ctype_lower
+#test_ctype_lower_SOURCES = unictype/test-ctype_lower.c
+
+File: ./modules/unictype/ctype-print
+Hash: 95c3ffb5695aef3e47bc444b773f9501046ee4e96ac74e84b09b4a12ae63925c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isprint() function and the
+#<wctype.h> iswprint() function.
+#
+#Files:
+#lib/unictype/ctype_print.c
+#lib/unictype/ctype_print.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-print-tests
+Hash: b5a5e2c93714cc8f44d2cc834cc4cab1965805b0a5a696f660c6d5425a10f1b4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_print.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_print
+#check_PROGRAMS += test-ctype_print
+#test_ctype_print_SOURCES = unictype/test-ctype_print.c
+
+File: ./modules/unictype/ctype-punct
+Hash: 30c5dc47e071bf7e13e768ec0f5631adff4a0644593e492309fa155a96f1e52b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> ispunct() function and the
+#<wctype.h> iswpunct() function.
+#
+#Files:
+#lib/unictype/ctype_punct.c
+#lib/unictype/ctype_punct.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-punct-tests
+Hash: e24e81e32e48af4f3ad62568023d96b33656602f4fa1121388095c339e328410
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_punct.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_punct
+#check_PROGRAMS += test-ctype_punct
+#test_ctype_punct_SOURCES = unictype/test-ctype_punct.c
+
+File: ./modules/unictype/ctype-space
+Hash: 134adf6d350636dcc21ff680625983b7bfdebdb584d7c7aee7a61f29a0dd813d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isspace() function and the
+#<wctype.h> iswspace() function.
+#
+#Files:
+#lib/unictype/ctype_space.c
+#lib/unictype/ctype_space.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-space-tests
+Hash: befbdd7e9998b90e42ff81474eddde0d21e53a4662d9b050b0cbde1c5766ad06
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_space.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_space
+#check_PROGRAMS += test-ctype_space
+#test_ctype_space_SOURCES = unictype/test-ctype_space.c
+
+File: ./modules/unictype/ctype-upper
+Hash: adaaea05b0f82c25ef35b9fdc70271711a42ec215908956e8d1970599590c2a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isupper() function and the
+#<wctype.h> iswupper() function.
+#
+#Files:
+#lib/unictype/ctype_upper.c
+#lib/unictype/ctype_upper.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-upper-tests
+Hash: 9d3e9c8860829c6cf56788691f4307bfff11c649ee4d1ce07eebc78b5c63aa48
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_upper.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_upper
+#check_PROGRAMS += test-ctype_upper
+#test_ctype_upper_SOURCES = unictype/test-ctype_upper.c
+
+File: ./modules/unictype/ctype-xdigit
+Hash: 1fb0f1a57bfadfe1a05375fa49d9ad6029bc63ee4e098e4f19ecfe016569cfb8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Generalization of the <ctype.h> isxdigit() function and the
+#<wctype.h> iswxdigit() function.
+#
+#Files:
+#lib/unictype/ctype_xdigit.c
+#lib/unictype/ctype_xdigit.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/ctype-xdigit-tests
+Hash: 348d4f2ad199d3bcbde3a850acb6cb041407f5304217938e0faa94b4e077e245
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-ctype_xdigit.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ctype_xdigit
+#check_PROGRAMS += test-ctype_xdigit
+#test_ctype_xdigit_SOURCES = unictype/test-ctype_xdigit.c
+
+File: ./modules/unictype/decimal-digit
+Hash: 27a248b33a996430ab76dd33f15d79fcdd448e1a4202bb7ed145a2b325b93214
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Value of a decimal digit Unicode character.
+#
+#Files:
+#lib/unictype/decdigit.c
+#lib/unictype/decdigit.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/decdigit.c
+
+File: ./modules/unictype/decimal-digit-tests
+Hash: fa2674a0a7049241f0054d7b9c4623acc719139c38030cd634da820051e5a94d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-decdigit.c
+#tests/unictype/test-decdigit.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-decdigit
+#check_PROGRAMS += test-decdigit
+#test_decdigit_SOURCES = unictype/test-decdigit.c
+
+File: ./modules/unictype/digit
+Hash: 37d63645cee12e3fc8e07940e3269b4aa6efd28a98514ff313d47dd94986cfab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Value of a digit Unicode character.
+#
+#Files:
+#lib/unictype/digit.c
+#lib/unictype/digit.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/digit.c
+
+File: ./modules/unictype/digit-tests
+Hash: ba1b48a196743f9c600944082c7a409dbf866ac6bdbe6905542d9d31beb520f0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-digit.c
+#tests/unictype/test-digit.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-digit
+#check_PROGRAMS += test-digit
+#test_digit_SOURCES = unictype/test-digit.c
+
+File: ./modules/unictype/mirror
+Hash: 737907a60001d13647093663b873a0144496be541a6a5bc1420eca09f460aff9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Mirrored Unicode characters.
+#
+#Files:
+#lib/unictype/mirror.c
+#lib/unictype/mirror.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/mirror.c
+
+File: ./modules/unictype/mirror-tests
+Hash: 43be5a05c0d2ad239dadc2f8b4e8d6499fa7cd8fa4b5b849978b2998033365c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-mirror.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-mirror
+#check_PROGRAMS += test-mirror
+#test_mirror_SOURCES = unictype/test-mirror.c
+
+File: ./modules/unictype/numeric
+Hash: c18f6cfbe3f5da5d1ea97acd5c9f5ee7c729f20bd4e351a779a2faa3890bcc21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Value of a numeric Unicode character.
+#
+#Files:
+#lib/unictype/numeric.c
+#lib/unictype/numeric.h
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/numeric.c
+
+File: ./modules/unictype/numeric-tests
+Hash: c51267b606dcccb38fb491732dcca3c0b80f59046b789fa1ae525f3be85886d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-numeric.c
+#tests/unictype/test-numeric.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-numeric
+#check_PROGRAMS += test-numeric
+#test_numeric_SOURCES = unictype/test-numeric.c
+
+File: ./modules/unictype/property-all
+Hash: e4780bf1987d881bf983458a649dfffaf5c7a9cc9ef41613c0befa7dbbdde0c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Complete API for Unicode character properties.
+#
+#Files:
+#
+#Depends-on:
+#unictype/property-alphabetic
+#unictype/property-ascii-hex-digit
+#unictype/property-bidi-arabic-digit
+#unictype/property-bidi-arabic-right-to-left
+#unictype/property-bidi-block-separator
+#unictype/property-bidi-boundary-neutral
+#unictype/property-bidi-common-separator
+#unictype/property-bidi-control
+#unictype/property-bidi-embedding-or-override
+
+File: ./modules/unictype/property-alphabetic
+Hash: a298ca9e2446afd6c699d1040bf10752950ce171a4606dd0534a21f11e852f19
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "alphabetic".
+#
+#Files:
+#lib/unictype/pr_alphabetic.c
+#lib/unictype/pr_alphabetic.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-alphabetic-tests
+Hash: f73ca732355c1fd5db309eb5d710b0333dd8ef095c1ed22c7445fda713c3e3d7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_alphabetic.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_alphabetic
+#check_PROGRAMS += test-pr_alphabetic
+#test_pr_alphabetic_SOURCES = unictype/test-pr_alphabetic.c
+
+File: ./modules/unictype/property-ascii-hex-digit
+Hash: d8ce7d0410e2ca14e80a434995b1525da57d8780f13ead5ed771427b103db01d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "ascii hex digit".
+#
+#Files:
+#lib/unictype/pr_ascii_hex_digit.c
+#lib/unictype/pr_ascii_hex_digit.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-ascii-hex-digit-tests
+Hash: 6e6fa210fc93fc3226b7ba0791b2399217a9bc54d5dc07ffa358d164e06ef704
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_ascii_hex_digit.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_ascii_hex_digit
+#check_PROGRAMS += test-pr_ascii_hex_digit
+#test_pr_ascii_hex_digit_SOURCES = unictype/test-pr_ascii_hex_digit.c
+
+File: ./modules/unictype/property-bidi-arabic-digit
+Hash: e7f84b609149feaab428e1216e31384be4d3bde3b55eb1ff233311b9b425b45a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi arabic digit".
+#
+#Files:
+#lib/unictype/pr_bidi_arabic_digit.c
+#lib/unictype/pr_bidi_arabic_digit.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-arabic-digit-tests
+Hash: 5098b091adb529cb5e8ebb5baa2888d60c483624df246cbfe7bb3994c8c43a97
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_arabic_digit.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_arabic_digit
+#check_PROGRAMS += test-pr_bidi_arabic_digit
+#test_pr_bidi_arabic_digit_SOURCES = unictype/test-pr_bidi_arabic_digit.c
+
+File: ./modules/unictype/property-bidi-arabic-right-to-left
+Hash: 277b27f8d4b98eab3ce66c0ed69393b5c0f705e4a316cf3fcbc2a1d9b8fe7c5e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi arabic right to left".
+#
+#Files:
+#lib/unictype/pr_bidi_arabic_right_to_left.c
+#lib/unictype/pr_bidi_arabic_right_to_left.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-arabic-right-to-left-tests
+Hash: b71fe2cac47b7cec5926e7882e03d0511a128fb8efe28dac77990f5faf4137f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_arabic_right_to_left.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_arabic_right_to_left
+#check_PROGRAMS += test-pr_bidi_arabic_right_to_left
+#test_pr_bidi_arabic_right_to_left_SOURCES = unictype/test-pr_bidi_arabic_right_to_left.c
+
+File: ./modules/unictype/property-bidi-block-separator
+Hash: 806a5338edaca16e3c85769e5ca9c55a9f59751e003522618d9cd22e71fc306b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi block separator".
+#
+#Files:
+#lib/unictype/pr_bidi_block_separator.c
+#lib/unictype/pr_bidi_block_separator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-block-separator-tests
+Hash: c0f9dd1fb890f0d13e9d0448f1254afc9b34e9418f2190d84a88acadbc43e38c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_block_separator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_block_separator
+#check_PROGRAMS += test-pr_bidi_block_separator
+#test_pr_bidi_block_separator_SOURCES = unictype/test-pr_bidi_block_separator.c
+
+File: ./modules/unictype/property-bidi-boundary-neutral
+Hash: 57ab23ca6c3bab8b58533e0ffafe73a089298424f051ec680ea90a49d0e1d578
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi boundary neutral".
+#
+#Files:
+#lib/unictype/pr_bidi_boundary_neutral.c
+#lib/unictype/pr_bidi_boundary_neutral.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-boundary-neutral-tests
+Hash: 3d319e764651ffe6cb938ede64871a856742dc39ed39eb52b29165913f1feb1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_boundary_neutral.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_boundary_neutral
+#check_PROGRAMS += test-pr_bidi_boundary_neutral
+#test_pr_bidi_boundary_neutral_SOURCES = unictype/test-pr_bidi_boundary_neutral.c
+
+File: ./modules/unictype/property-bidi-common-separator
+Hash: 5c235403a70d881fc83dc8771a5dbb322ddf493a63331eb86b046677e4cdc9fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi common separator".
+#
+#Files:
+#lib/unictype/pr_bidi_common_separator.c
+#lib/unictype/pr_bidi_common_separator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-common-separator-tests
+Hash: 06bdb846d4303255edcbddc8ef0c0c7effbd9c68d444a1d9dc5ea2c79bcdbd14
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_common_separator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_common_separator
+#check_PROGRAMS += test-pr_bidi_common_separator
+#test_pr_bidi_common_separator_SOURCES = unictype/test-pr_bidi_common_separator.c
+
+File: ./modules/unictype/property-bidi-control
+Hash: 25479c28563fbb43d1f193d019ba1c5f71128afa993c2c2b49a20b8143ffd4b5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi control".
+#
+#Files:
+#lib/unictype/pr_bidi_control.c
+#lib/unictype/pr_bidi_control.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-control-tests
+Hash: 43b1e9d79dd3aac72eaa92aefe58aab7af1a0e20ca2055ef5072a82c710b735d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_control.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_control
+#check_PROGRAMS += test-pr_bidi_control
+#test_pr_bidi_control_SOURCES = unictype/test-pr_bidi_control.c
+
+File: ./modules/unictype/property-bidi-embedding-or-override
+Hash: 6f2855dcc504a8ce337996180eb2848b1e4be4170430688a78623e6349327f5e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi embedding or override".
+#
+#Files:
+#lib/unictype/pr_bidi_embedding_or_override.c
+#lib/unictype/pr_bidi_embedding_or_override.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-embedding-or-override-tests
+Hash: 1680aa3f6106894819a3d8e10e42a62136d5ea3eac3f1e8abb0ead74536d4d55
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_embedding_or_override.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_embedding_or_override
+#check_PROGRAMS += test-pr_bidi_embedding_or_override
+#test_pr_bidi_embedding_or_override_SOURCES = unictype/test-pr_bidi_embedding_or_override.c
+
+File: ./modules/unictype/property-bidi-eur-num-separator
+Hash: 40119ffa48d01b225fca375c19697cb8f2e4c09bfce577028adf0a40e3805948
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi eur num separator".
+#
+#Files:
+#lib/unictype/pr_bidi_eur_num_separator.c
+#lib/unictype/pr_bidi_eur_num_separator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-eur-num-separator-tests
+Hash: d4d8ee97cba337debbf435f4ceeb4a8648a6dcdf8c1479e0f9e89d4e9e43ca9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_eur_num_separator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_eur_num_separator
+#check_PROGRAMS += test-pr_bidi_eur_num_separator
+#test_pr_bidi_eur_num_separator_SOURCES = unictype/test-pr_bidi_eur_num_separator.c
+
+File: ./modules/unictype/property-bidi-eur-num-terminator
+Hash: b401d88fa970de38142b52d6d2fbdb846a163697e2aae4b08aa0334e9a38fd71
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi eur num terminator".
+#
+#Files:
+#lib/unictype/pr_bidi_eur_num_terminator.c
+#lib/unictype/pr_bidi_eur_num_terminator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-eur-num-terminator-tests
+Hash: ed6b61b035bd4e75258d9d37eb7a3c4b033d26d40edad08a7c357789574f8afb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_eur_num_terminator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_eur_num_terminator
+#check_PROGRAMS += test-pr_bidi_eur_num_terminator
+#test_pr_bidi_eur_num_terminator_SOURCES = unictype/test-pr_bidi_eur_num_terminator.c
+
+File: ./modules/unictype/property-bidi-european-digit
+Hash: dc0d9e23ff24d6d243b27f45106ceb2a26b2b07c08e00df91e16127573573d72
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi european digit".
+#
+#Files:
+#lib/unictype/pr_bidi_european_digit.c
+#lib/unictype/pr_bidi_european_digit.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-european-digit-tests
+Hash: a6aaa82ed09527f584de05c6e458db39a317f7c9ec0f9344eca69c6ae1b50115
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_european_digit.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_european_digit
+#check_PROGRAMS += test-pr_bidi_european_digit
+#test_pr_bidi_european_digit_SOURCES = unictype/test-pr_bidi_european_digit.c
+
+File: ./modules/unictype/property-bidi-hebrew-right-to-left
+Hash: 0bb360f52483f1b4d2b163115b644efa0d7d99c98e1c39a59bcd5f83a2d8ae81
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi hebrew right to left".
+#
+#Files:
+#lib/unictype/pr_bidi_hebrew_right_to_left.c
+#lib/unictype/pr_bidi_hebrew_right_to_left.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-hebrew-right-to-left-tests
+Hash: 11b28b5a112f842b50ed00b6e4173737cf383152ebdec8535760e97bd5b9a619
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_hebrew_right_to_left.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_hebrew_right_to_left
+#check_PROGRAMS += test-pr_bidi_hebrew_right_to_left
+#test_pr_bidi_hebrew_right_to_left_SOURCES = unictype/test-pr_bidi_hebrew_right_to_left.c
+
+File: ./modules/unictype/property-bidi-left-to-right
+Hash: 37ae8d71a9fe73c594a62ef26ee7b85f33d94504bc0ca99cdcc449dbfac67997
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi left to right".
+#
+#Files:
+#lib/unictype/pr_bidi_left_to_right.c
+#lib/unictype/pr_bidi_left_to_right.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-left-to-right-tests
+Hash: 1ed6b97ac2ebdd21e07974056ff940413398f89230b2daf96ee74927df0e18aa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_left_to_right.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_left_to_right
+#check_PROGRAMS += test-pr_bidi_left_to_right
+#test_pr_bidi_left_to_right_SOURCES = unictype/test-pr_bidi_left_to_right.c
+
+File: ./modules/unictype/property-bidi-non-spacing-mark
+Hash: 93eaae290050a750e17e01e2ea8d355a9e8817942873759bce494f496c851804
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi non spacing mark".
+#
+#Files:
+#lib/unictype/pr_bidi_non_spacing_mark.c
+#lib/unictype/pr_bidi_non_spacing_mark.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-non-spacing-mark-tests
+Hash: 517a1b466bcb931e1ecfdf5a37d1251013cd6eb3285346331e406d4758625f28
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_non_spacing_mark.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_non_spacing_mark
+#check_PROGRAMS += test-pr_bidi_non_spacing_mark
+#test_pr_bidi_non_spacing_mark_SOURCES = unictype/test-pr_bidi_non_spacing_mark.c
+
+File: ./modules/unictype/property-bidi-other-neutral
+Hash: bf693a39ab6b1b3ab51d87d4cb9e2dffac8020d2a66fa59b35e866d8f1eb2fd0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi other neutral".
+#
+#Files:
+#lib/unictype/pr_bidi_other_neutral.c
+#lib/unictype/pr_bidi_other_neutral.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-other-neutral-tests
+Hash: 5f19810740bbf6714da1e1a18b496c5d10a1b64d65bbb1f8cb8958e119443e63
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_other_neutral.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_other_neutral
+#check_PROGRAMS += test-pr_bidi_other_neutral
+#test_pr_bidi_other_neutral_SOURCES = unictype/test-pr_bidi_other_neutral.c
+
+File: ./modules/unictype/property-bidi-pdf
+Hash: 648a08b6a38413f4e507b01c949970ffdc826987e75e9aeea243bb63268a64b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi pdf".
+#
+#Files:
+#lib/unictype/pr_bidi_pdf.c
+#lib/unictype/pr_bidi_pdf.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-pdf-tests
+Hash: fbf5ba569b5e4838bd7588f671714f6cfd9978e046415212afdc440a0c7a96a1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_pdf.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_pdf
+#check_PROGRAMS += test-pr_bidi_pdf
+#test_pr_bidi_pdf_SOURCES = unictype/test-pr_bidi_pdf.c
+
+File: ./modules/unictype/property-bidi-segment-separator
+Hash: bc039a644f31ded1c641ecf81c35f885046ee253c9a4c0500aa3adfaf84a7143
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi segment separator".
+#
+#Files:
+#lib/unictype/pr_bidi_segment_separator.c
+#lib/unictype/pr_bidi_segment_separator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-segment-separator-tests
+Hash: e1ff8030e1f0187fff8c6a57e0e318a53b79965a52d40a2a94c14b07f9a43e3e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_segment_separator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_segment_separator
+#check_PROGRAMS += test-pr_bidi_segment_separator
+#test_pr_bidi_segment_separator_SOURCES = unictype/test-pr_bidi_segment_separator.c
+
+File: ./modules/unictype/property-bidi-whitespace
+Hash: 5cb15410d45e4d5e6123a2afbb3599f281e6a99c9cc9cecf956620eedd1cccec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "bidi whitespace".
+#
+#Files:
+#lib/unictype/pr_bidi_whitespace.c
+#lib/unictype/pr_bidi_whitespace.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/bidicategory-of
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-bidi-whitespace-tests
+Hash: fdbaeac606388cdab71cf252cf7462019f69a919e247fd0f1f6943e002d4f466
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_bidi_whitespace.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_bidi_whitespace
+#check_PROGRAMS += test-pr_bidi_whitespace
+#test_pr_bidi_whitespace_SOURCES = unictype/test-pr_bidi_whitespace.c
+
+File: ./modules/unictype/property-byname
+Hash: 289229dfb7a081dccb2b38c24ad305a79f652f6267d17c4b2bc1fe3ee0392a60
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Find a Unicode character property, given its name.
+#
+#Files:
+#lib/unictype/pr_byname.c
+#lib/unictype/pr_byname.gperf
+#
+#Depends-on:
+#unictype/base
+#unictype/property-alphabetic
+#unictype/property-ascii-hex-digit
+#unictype/property-bidi-arabic-digit
+#unictype/property-bidi-arabic-right-to-left
+#unictype/property-bidi-block-separator
+#unictype/property-bidi-boundary-neutral
+
+File: ./modules/unictype/property-byname-tests
+Hash: e061b6520b59a6c6f962c37c3f29912812835aa6976b99c3f967ec945e3267d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_byname.c
+#
+#Depends-on:
+#unictype/property-test
+#unictype/property-composite
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_byname
+#check_PROGRAMS += test-pr_byname
+#test_pr_byname_SOURCES = unictype/test-pr_byname.c
+
+File: ./modules/unictype/property-combining
+Hash: d1f5657f5cb55dbf80b7d9de4cc88f189c9902550979f52df45ed1ff581cda89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "combining".
+#
+#Files:
+#lib/unictype/pr_combining.c
+#lib/unictype/pr_combining.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-combining-tests
+Hash: 26d850be0624a6da7b37f1284986abcc968a917cca02e5790aceed33c90c3e7f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_combining.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_combining
+#check_PROGRAMS += test-pr_combining
+#test_pr_combining_SOURCES = unictype/test-pr_combining.c
+
+File: ./modules/unictype/property-composite
+Hash: 0bc02b36c12afaa79ff289bc9ab054adb7ba7f101eb5d83d21bec08726bb8a30
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "composite".
+#
+#Files:
+#lib/unictype/pr_composite.c
+#lib/unictype/pr_composite.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-composite-tests
+Hash: de4e42b1b04b7b5d2a3f223bf57a7f963a6b044b975f3adfc5badfe9fe6c8a9d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_composite.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_composite
+#check_PROGRAMS += test-pr_composite
+#test_pr_composite_SOURCES = unictype/test-pr_composite.c
+
+File: ./modules/unictype/property-currency-symbol
+Hash: 38931af79b678c17b54d008d68d06da42565307882a5ed84c9e2fabf46adabd4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "currency symbol".
+#
+#Files:
+#lib/unictype/pr_currency_symbol.c
+#lib/unictype/pr_currency_symbol.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/category-test
+#unictype/category-Sc
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-currency-symbol-tests
+Hash: c44cbb3841cb6ee1c200948d5358c808d2afa5ed066e05fe761a162e5425c3a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_currency_symbol.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_currency_symbol
+#check_PROGRAMS += test-pr_currency_symbol
+#test_pr_currency_symbol_SOURCES = unictype/test-pr_currency_symbol.c
+
+File: ./modules/unictype/property-dash
+Hash: 6f6715eb86fe5d3935c25c84f223e5dc897b7facba8292a563feaa48aefc3dcf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "dash".
+#
+#Files:
+#lib/unictype/pr_dash.c
+#lib/unictype/pr_dash.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-dash-tests
+Hash: 336458f67010f6e373b025a1b95658b60a80b62fdc17fa653833d5632abae862
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_dash.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_dash
+#check_PROGRAMS += test-pr_dash
+#test_pr_dash_SOURCES = unictype/test-pr_dash.c
+
+File: ./modules/unictype/property-decimal-digit
+Hash: ab9d982292589986c136763105451afc4e550e1f766fb7cf7fd479554a7823fe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "decimal digit".
+#
+#Files:
+#lib/unictype/pr_decimal_digit.c
+#lib/unictype/pr_decimal_digit.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/category-test
+#unictype/category-Nd
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-decimal-digit-tests
+Hash: f9dab010accb22da62438d64ff3b1d89cadc983abe41c90e0d36d3f95dacab58
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_decimal_digit.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_decimal_digit
+#check_PROGRAMS += test-pr_decimal_digit
+#test_pr_decimal_digit_SOURCES = unictype/test-pr_decimal_digit.c
+
+File: ./modules/unictype/property-default-ignorable-code-point
+Hash: 39cb9b635c390bb3472f20af716f07a55e56999934b777da88215a81431f8beb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "default ignorable code point".
+#
+#Files:
+#lib/unictype/pr_default_ignorable_code_point.c
+#lib/unictype/pr_default_ignorable_code_point.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-default-ignorable-code-point-tests
+Hash: 725afdd41612957003a16ea422cd23f09b93706d334893b8d8d811286b2c6d21
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_default_ignorable_code_point.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_default_ignorable_code_point
+#check_PROGRAMS += test-pr_default_ignorable_code_point
+#test_pr_default_ignorable_code_point_SOURCES = unictype/test-pr_default_ignorable_code_point.c
+
+File: ./modules/unictype/property-deprecated
+Hash: 79536b50ac0f32280a1c63019a08bdb55d7c4f230f56d646d5ad96cced3c538e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "deprecated".
+#
+#Files:
+#lib/unictype/pr_deprecated.c
+#lib/unictype/pr_deprecated.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-deprecated-tests
+Hash: 89dbf3c37054f64ee5800dc34339646d8b855c002cdc860420a8714ee401640b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_deprecated.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_deprecated
+#check_PROGRAMS += test-pr_deprecated
+#test_pr_deprecated_SOURCES = unictype/test-pr_deprecated.c
+
+File: ./modules/unictype/property-diacritic
+Hash: 2167518c89f96013d60de0d7bd69854028a5e3d6fdd2e71bbbfeb4cb9f3b1492
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "diacritic".
+#
+#Files:
+#lib/unictype/pr_diacritic.c
+#lib/unictype/pr_diacritic.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-diacritic-tests
+Hash: 0d5be7c918de05603a8c0268d27d0db62f2b1d38bc193fe63213bba985b63ece
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_diacritic.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_diacritic
+#check_PROGRAMS += test-pr_diacritic
+#test_pr_diacritic_SOURCES = unictype/test-pr_diacritic.c
+
+File: ./modules/unictype/property-extender
+Hash: b8df4a5a2fd274644f43d95fbfde098fdb4c5452c4a38c64d8fa877bf7e9429a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "extender".
+#
+#Files:
+#lib/unictype/pr_extender.c
+#lib/unictype/pr_extender.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-extender-tests
+Hash: 05501a0275aad607ab69634a3dcd09e345d5f061e94bfe945296ed1d8e0281fb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_extender.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_extender
+#check_PROGRAMS += test-pr_extender
+#test_pr_extender_SOURCES = unictype/test-pr_extender.c
+
+File: ./modules/unictype/property-format-control
+Hash: e97eb042dbf91fbcb84628c0e9ef5e8743f4e16c20f3822c91af3af81260d442
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "format control".
+#
+#Files:
+#lib/unictype/pr_format_control.c
+#lib/unictype/pr_format_control.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-format-control-tests
+Hash: 300d3629279205e7d3aca2218dceb96dc4e8104c02b08bdf0ea499cec2b4345c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_format_control.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_format_control
+#check_PROGRAMS += test-pr_format_control
+#test_pr_format_control_SOURCES = unictype/test-pr_format_control.c
+
+File: ./modules/unictype/property-grapheme-base
+Hash: 1d406865136b5ad9914abcfbea83b6b26fc6ef93799878602b7ff8e531def3b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "grapheme base".
+#
+#Files:
+#lib/unictype/pr_grapheme_base.c
+#lib/unictype/pr_grapheme_base.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-grapheme-base-tests
+Hash: d0d6ae70d2541c74b54f3077f958dc88fd339c17141ebed95d2098aa07764b51
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_grapheme_base.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_grapheme_base
+#check_PROGRAMS += test-pr_grapheme_base
+#test_pr_grapheme_base_SOURCES = unictype/test-pr_grapheme_base.c
+
+File: ./modules/unictype/property-grapheme-extend
+Hash: 4ca0ea448f826a8dcc99962e3512270fedf561cbf72cab04d963a3b8fe9f2cc9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "grapheme extend".
+#
+#Files:
+#lib/unictype/pr_grapheme_extend.c
+#lib/unictype/pr_grapheme_extend.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-grapheme-extend-tests
+Hash: 251f5705f6a5351b1688c582f72007829eabf599395bd587462cec7c1ef4c7ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_grapheme_extend.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_grapheme_extend
+#check_PROGRAMS += test-pr_grapheme_extend
+#test_pr_grapheme_extend_SOURCES = unictype/test-pr_grapheme_extend.c
+
+File: ./modules/unictype/property-grapheme-link
+Hash: 805c1470e3e0c3eccfe26fb3b1ac5f3cb9fa30b9cb4049116a50e551d2d2dadb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "grapheme link".
+#
+#Files:
+#lib/unictype/pr_grapheme_link.c
+#lib/unictype/pr_grapheme_link.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-grapheme-link-tests
+Hash: 7e91764c19175d59c63329ebc8ba52dd5a1daedec9503307e7e445ec11baa949
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_grapheme_link.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_grapheme_link
+#check_PROGRAMS += test-pr_grapheme_link
+#test_pr_grapheme_link_SOURCES = unictype/test-pr_grapheme_link.c
+
+File: ./modules/unictype/property-hex-digit
+Hash: 0243a6070da96a337e17ba1eac120c0278e8365179fa37001eab65bc841dca16
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "hex digit".
+#
+#Files:
+#lib/unictype/pr_hex_digit.c
+#lib/unictype/pr_hex_digit.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-hex-digit-tests
+Hash: ef1f4f62b88d9527516e4c387908dd597fcfc30ff2ef577a1e4f152dadeb7da7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_hex_digit.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_hex_digit
+#check_PROGRAMS += test-pr_hex_digit
+#test_pr_hex_digit_SOURCES = unictype/test-pr_hex_digit.c
+
+File: ./modules/unictype/property-hyphen
+Hash: a0821e75c179f78649d812ddbed18c56b1ab27bc11bbc92e1bbf601ceffc7ff6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "hyphen".
+#
+#Files:
+#lib/unictype/pr_hyphen.c
+#lib/unictype/pr_hyphen.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-hyphen-tests
+Hash: 765e3e90b923d1554a370caf1b6073e944952d55cc20decf5355706dd59c4a8b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_hyphen.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_hyphen
+#check_PROGRAMS += test-pr_hyphen
+#test_pr_hyphen_SOURCES = unictype/test-pr_hyphen.c
+
+File: ./modules/unictype/property-id-continue
+Hash: 88c348e9357bae50819c40887ad325d0cb4dff384527221bc06c948478786b8e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "id continue".
+#
+#Files:
+#lib/unictype/pr_id_continue.c
+#lib/unictype/pr_id_continue.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-id-continue-tests
+Hash: a1b963baf983a2e176537129d463352188b09a47bf5ab860665a23a90bf6e358
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_id_continue.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_id_continue
+#check_PROGRAMS += test-pr_id_continue
+#test_pr_id_continue_SOURCES = unictype/test-pr_id_continue.c
+
+File: ./modules/unictype/property-id-start
+Hash: 4eaaa206f01c7c53ec5c62c65bc68299c4fd87505eecc86dd9663c09993b4e9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "id start".
+#
+#Files:
+#lib/unictype/pr_id_start.c
+#lib/unictype/pr_id_start.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-id-start-tests
+Hash: 4f8896c70d8c5c02d98b15396de19f3208b7bc17c16826cf6a36d9545f24b467
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_id_start.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_id_start
+#check_PROGRAMS += test-pr_id_start
+#test_pr_id_start_SOURCES = unictype/test-pr_id_start.c
+
+File: ./modules/unictype/property-ideographic
+Hash: 882c18da5775cd65733fe4342190c2a1351a309f720c550014802c9c55a8caa3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "ideographic".
+#
+#Files:
+#lib/unictype/pr_ideographic.c
+#lib/unictype/pr_ideographic.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-ideographic-tests
+Hash: 34d8d3cedf758c4d81e744f4889e5bb1be1a5b27c5f329ca4b8f8a2b01e5419a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_ideographic.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_ideographic
+#check_PROGRAMS += test-pr_ideographic
+#test_pr_ideographic_SOURCES = unictype/test-pr_ideographic.c
+
+File: ./modules/unictype/property-ids-binary-operator
+Hash: f4d8afcbedaee7883f98bbef9d064da30080ca5c30bb69e4c121ff4a35c086c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "ids binary operator".
+#
+#Files:
+#lib/unictype/pr_ids_binary_operator.c
+#lib/unictype/pr_ids_binary_operator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-ids-binary-operator-tests
+Hash: 7d1df1ed242c102a7db0885fdc9cfdddc800be84a7aff9ffa6ab7110b1fb9919
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_ids_binary_operator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_ids_binary_operator
+#check_PROGRAMS += test-pr_ids_binary_operator
+#test_pr_ids_binary_operator_SOURCES = unictype/test-pr_ids_binary_operator.c
+
+File: ./modules/unictype/property-ids-trinary-operator
+Hash: 85d2ab0e8ac73b2661f0d86991e3a6542e27785b206750a77f89f6e6180006c4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "ids trinary operator".
+#
+#Files:
+#lib/unictype/pr_ids_trinary_operator.c
+#lib/unictype/pr_ids_trinary_operator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-ids-trinary-operator-tests
+Hash: 0db46545722b0074382db8f9778b93f2b2c999b373dd4e140c00038f5d457cde
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_ids_trinary_operator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_ids_trinary_operator
+#check_PROGRAMS += test-pr_ids_trinary_operator
+#test_pr_ids_trinary_operator_SOURCES = unictype/test-pr_ids_trinary_operator.c
+
+File: ./modules/unictype/property-ignorable-control
+Hash: 0b4df36bc55d43efa688f71468710e03f31101e74735e77c0e82bbb40ea8cf83
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "ignorable control".
+#
+#Files:
+#lib/unictype/pr_ignorable_control.c
+#lib/unictype/pr_ignorable_control.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-ignorable-control-tests
+Hash: 361a567ee30e5c3d66e49c322fb943dcf379c416efd298b8e765a86df7b8d4a3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_ignorable_control.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_ignorable_control
+#check_PROGRAMS += test-pr_ignorable_control
+#test_pr_ignorable_control_SOURCES = unictype/test-pr_ignorable_control.c
+
+File: ./modules/unictype/property-iso-control
+Hash: e691953d49f2f1fe84f5f6e2fad1186c4eb762f027e33299658e4c5eba30660b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "iso control".
+#
+#Files:
+#lib/unictype/pr_iso_control.c
+#lib/unictype/pr_iso_control.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/category-test
+#unictype/category-Cc
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-iso-control-tests
+Hash: f57f712359bfefdae3dc796024f0624204633b914daddf063ba299e36beacab4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_iso_control.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_iso_control
+#check_PROGRAMS += test-pr_iso_control
+#test_pr_iso_control_SOURCES = unictype/test-pr_iso_control.c
+
+File: ./modules/unictype/property-join-control
+Hash: 2ed9d5ffc6571d30341e7b1b5ee17937ed6848102b257849a78a9acf2d261c19
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "join control".
+#
+#Files:
+#lib/unictype/pr_join_control.c
+#lib/unictype/pr_join_control.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-join-control-tests
+Hash: 20570eaa864f5eb7f27a5597716ec2f511096ed75bfb8903ea3e59a92e160a95
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_join_control.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_join_control
+#check_PROGRAMS += test-pr_join_control
+#test_pr_join_control_SOURCES = unictype/test-pr_join_control.c
+
+File: ./modules/unictype/property-left-of-pair
+Hash: de0c6b86d8d0ada6338276d41346fb709516ae12d09e310279a596a00e396ff0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "left of pair".
+#
+#Files:
+#lib/unictype/pr_left_of_pair.c
+#lib/unictype/pr_left_of_pair.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-left-of-pair-tests
+Hash: 590a1e14f34adabb021272f1b8df2edc4b9d326e3d37ab5c6ad047e0fbb7fe48
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_left_of_pair.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_left_of_pair
+#check_PROGRAMS += test-pr_left_of_pair
+#test_pr_left_of_pair_SOURCES = unictype/test-pr_left_of_pair.c
+
+File: ./modules/unictype/property-line-separator
+Hash: 31ace60527e36197ca50741b94ede127b3d953900b68e432c978d9e363696245
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "line separator".
+#
+#Files:
+#lib/unictype/pr_line_separator.c
+#lib/unictype/pr_line_separator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-line-separator-tests
+Hash: c0cb63221d49fa05a3cac59d948f26d1f1dbe145bac9ab3e52bce1c35dc324bb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_line_separator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_line_separator
+#check_PROGRAMS += test-pr_line_separator
+#test_pr_line_separator_SOURCES = unictype/test-pr_line_separator.c
+
+File: ./modules/unictype/property-logical-order-exception
+Hash: 5ce0b27c3dd8909d431c6e4fc485b095c37b9b7bf6a9cb5ddd863016ee4916e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "logical order exception".
+#
+#Files:
+#lib/unictype/pr_logical_order_exception.c
+#lib/unictype/pr_logical_order_exception.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-logical-order-exception-tests
+Hash: 2a19434dd65dc663a0a31d11122a41add9e9b346f5bddf108681c4c97d027f49
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_logical_order_exception.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_logical_order_exception
+#check_PROGRAMS += test-pr_logical_order_exception
+#test_pr_logical_order_exception_SOURCES = unictype/test-pr_logical_order_exception.c
+
+File: ./modules/unictype/property-lowercase
+Hash: bb6f6bc847beef7154a8d672ab49526095d80c1685e6c049d1a17e06e97cb65e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "lowercase".
+#
+#Files:
+#lib/unictype/pr_lowercase.c
+#lib/unictype/pr_lowercase.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-lowercase-tests
+Hash: 93ab2f7aa19d1e31a2174820fc431dccae2ea8570e02c565302a9a8669e541f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_lowercase.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_lowercase
+#check_PROGRAMS += test-pr_lowercase
+#test_pr_lowercase_SOURCES = unictype/test-pr_lowercase.c
+
+File: ./modules/unictype/property-math
+Hash: d51d7a6043ebde3d28240ce9cf896dce5017ce282d5a60589f9a45df6f3eeacc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "math".
+#
+#Files:
+#lib/unictype/pr_math.c
+#lib/unictype/pr_math.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-math-tests
+Hash: c0187d2319a48367927d734d8717a6f3475d9f592ec5f93fae146fb1aae36bfa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_math.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_math
+#check_PROGRAMS += test-pr_math
+#test_pr_math_SOURCES = unictype/test-pr_math.c
+
+File: ./modules/unictype/property-non-break
+Hash: 9529ee336877c9f543b53e369cda856846cd228dc4328e6bd5700adba5a6917f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "non break".
+#
+#Files:
+#lib/unictype/pr_non_break.c
+#lib/unictype/pr_non_break.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-non-break-tests
+Hash: 0a031731584038381b6726f6c922ff9b6a410cdae8463459d058cc19d78c70cf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_non_break.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_non_break
+#check_PROGRAMS += test-pr_non_break
+#test_pr_non_break_SOURCES = unictype/test-pr_non_break.c
+
+File: ./modules/unictype/property-not-a-character
+Hash: 032b1ced5ad9146c168553ed7664c4465377ba81ac24d6ca3399afb41fce68d1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "not a character".
+#
+#Files:
+#lib/unictype/pr_not_a_character.c
+#lib/unictype/pr_not_a_character.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-not-a-character-tests
+Hash: 85e321f2da30ee77b0814267fdd770456081e20c7bf329f70ba2ba7f61aeee9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_not_a_character.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_not_a_character
+#check_PROGRAMS += test-pr_not_a_character
+#test_pr_not_a_character_SOURCES = unictype/test-pr_not_a_character.c
+
+File: ./modules/unictype/property-numeric
+Hash: 2b392ef4aaee21cd825ff65ccf6ed2351218207039ba0912ddab67332c266819
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "numeric".
+#
+#Files:
+#lib/unictype/pr_numeric.c
+#lib/unictype/pr_numeric.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-numeric-tests
+Hash: 4d5a8bc0c7fe8c7a5ac0e41e3e4eca8d9d7368351b5eb0399354b2f007336946
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_numeric.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_numeric
+#check_PROGRAMS += test-pr_numeric
+#test_pr_numeric_SOURCES = unictype/test-pr_numeric.c
+
+File: ./modules/unictype/property-other-alphabetic
+Hash: c8920d7560743d923cb04f88984708ca0e40aad30ece7c522f58fefffccaa025
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "other alphabetic".
+#
+#Files:
+#lib/unictype/pr_other_alphabetic.c
+#lib/unictype/pr_other_alphabetic.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-other-alphabetic-tests
+Hash: e190d41fcc74a02992ba27d74b2ab5dead491cb30bd75bfa7ff4320276f290b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_other_alphabetic.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_other_alphabetic
+#check_PROGRAMS += test-pr_other_alphabetic
+#test_pr_other_alphabetic_SOURCES = unictype/test-pr_other_alphabetic.c
+
+File: ./modules/unictype/property-other-default-ignorable-code-point
+Hash: cb0ce01f186191ae95f50c643dc0c04c1c6c986aee315d3ea1b370edc2a68a7c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "other default ignorable code point".
+#
+#Files:
+#lib/unictype/pr_other_default_ignorable_code_point.c
+#lib/unictype/pr_other_default_ignorable_code_point.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-other-default-ignorable-code-point-tests
+Hash: 0df1f3fbeb35eb0ab93cfc5adfdd023b7115f80225f7400f34d953ad6d6c37ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_other_default_ignorable_code_point.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_other_default_ignorable_code_point
+#check_PROGRAMS += test-pr_other_default_ignorable_code_point
+#test_pr_other_default_ignorable_code_point_SOURCES = unictype/test-pr_other_default_ignorable_code_point.c
+
+File: ./modules/unictype/property-other-grapheme-extend
+Hash: ee90750261ed1c1f4c584fc10986d17fdc4cddce44fa4f92d1e04fef8cf89b89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "other grapheme extend".
+#
+#Files:
+#lib/unictype/pr_other_grapheme_extend.c
+#lib/unictype/pr_other_grapheme_extend.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-other-grapheme-extend-tests
+Hash: b026224a7126897dedcd0514c64f777a9dac1a5ae42a6b26123e159696235660
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_other_grapheme_extend.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_other_grapheme_extend
+#check_PROGRAMS += test-pr_other_grapheme_extend
+#test_pr_other_grapheme_extend_SOURCES = unictype/test-pr_other_grapheme_extend.c
+
+File: ./modules/unictype/property-other-id-continue
+Hash: 0d606c7ce244000d32f047c6859e7bed0de5ee72c5cb9139af200640d52a87b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "other id continue".
+#
+#Files:
+#lib/unictype/pr_other_id_continue.c
+#lib/unictype/pr_other_id_continue.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-other-id-continue-tests
+Hash: 1b855a92d302210152900e5826d662991b9ed9d0094ca122b35e365ebdc888a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_other_id_continue.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_other_id_continue
+#check_PROGRAMS += test-pr_other_id_continue
+#test_pr_other_id_continue_SOURCES = unictype/test-pr_other_id_continue.c
+
+File: ./modules/unictype/property-other-id-start
+Hash: 85e293b375f6400da29a181cd5df1c39df4fd8a41b712ded5aa67941cb73c911
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "other id start".
+#
+#Files:
+#lib/unictype/pr_other_id_start.c
+#lib/unictype/pr_other_id_start.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-other-id-start-tests
+Hash: 3787fadee72a0c5e9bbf920aa4d9e7cfb938e742afe3eadf696661aae3869d4a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_other_id_start.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_other_id_start
+#check_PROGRAMS += test-pr_other_id_start
+#test_pr_other_id_start_SOURCES = unictype/test-pr_other_id_start.c
+
+File: ./modules/unictype/property-other-lowercase
+Hash: dd9158fe00af3634fbf4894a7a7d39f49a096a56a5ddcf8de0269dae9917a9a2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "other lowercase".
+#
+#Files:
+#lib/unictype/pr_other_lowercase.c
+#lib/unictype/pr_other_lowercase.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-other-lowercase-tests
+Hash: 22cefe2852788dd4e347abebb8fc057f6d419a7b5f2c2396ac04f76ab7b3a352
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_other_lowercase.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_other_lowercase
+#check_PROGRAMS += test-pr_other_lowercase
+#test_pr_other_lowercase_SOURCES = unictype/test-pr_other_lowercase.c
+
+File: ./modules/unictype/property-other-math
+Hash: 6f137bffdd881747e667c7e0223af5418369adbfb07e6a260213f598352a7aed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "other math".
+#
+#Files:
+#lib/unictype/pr_other_math.c
+#lib/unictype/pr_other_math.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-other-math-tests
+Hash: a2a527587449bcf12ec99eea4279691d0e67841ba3dda949d1305c1c685f1d56
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_other_math.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_other_math
+#check_PROGRAMS += test-pr_other_math
+#test_pr_other_math_SOURCES = unictype/test-pr_other_math.c
+
+File: ./modules/unictype/property-other-uppercase
+Hash: b46091eca6344298f01cf3212389d8d4219cdcdc47f34c0717036423e955084d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "other uppercase".
+#
+#Files:
+#lib/unictype/pr_other_uppercase.c
+#lib/unictype/pr_other_uppercase.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-other-uppercase-tests
+Hash: 023d04db2180a4dea322146510e8eff99d5beb44e8128afa8f8e88d144050042
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_other_uppercase.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_other_uppercase
+#check_PROGRAMS += test-pr_other_uppercase
+#test_pr_other_uppercase_SOURCES = unictype/test-pr_other_uppercase.c
+
+File: ./modules/unictype/property-paired-punctuation
+Hash: 1d859b46eabc16a1e57b9b2954afc69340c3a79670e89e873a87410b9ba41c26
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "paired punctuation".
+#
+#Files:
+#lib/unictype/pr_paired_punctuation.c
+#lib/unictype/pr_paired_punctuation.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-paired-punctuation-tests
+Hash: 3dc6788141d18e07dd8dc0fb0053166f630315bc8215bbb3b4930e29cc5a654b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_paired_punctuation.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_paired_punctuation
+#check_PROGRAMS += test-pr_paired_punctuation
+#test_pr_paired_punctuation_SOURCES = unictype/test-pr_paired_punctuation.c
+
+File: ./modules/unictype/property-paragraph-separator
+Hash: 4bde987c281721186520942769b713f1fb72e6b89f0efdf22a801459ca6c1da5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "paragraph separator".
+#
+#Files:
+#lib/unictype/pr_paragraph_separator.c
+#lib/unictype/pr_paragraph_separator.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-paragraph-separator-tests
+Hash: 8ea598596aa3c7f2196847f5d2b04d91118d8432591a7900bad55e59f21e0957
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_paragraph_separator.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_paragraph_separator
+#check_PROGRAMS += test-pr_paragraph_separator
+#test_pr_paragraph_separator_SOURCES = unictype/test-pr_paragraph_separator.c
+
+File: ./modules/unictype/property-pattern-syntax
+Hash: dd0e266d0cdbed6c8f67a2a71b31f1bcc921de800608bf487117fb9d579ad5b6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "pattern syntax".
+#
+#Files:
+#lib/unictype/pr_pattern_syntax.c
+#lib/unictype/pr_pattern_syntax.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-pattern-syntax-tests
+Hash: 74b934ab1b9469ba24a85a4adfc447a0fe30b71205d0885c37e71ade8f4abe6b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_pattern_syntax.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_pattern_syntax
+#check_PROGRAMS += test-pr_pattern_syntax
+#test_pr_pattern_syntax_SOURCES = unictype/test-pr_pattern_syntax.c
+
+File: ./modules/unictype/property-pattern-white-space
+Hash: cd23f486d1e33e059c0653c4c339679e9c9401dbf04f14c3c3eb3261d51b26b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "pattern white space".
+#
+#Files:
+#lib/unictype/pr_pattern_white_space.c
+#lib/unictype/pr_pattern_white_space.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-pattern-white-space-tests
+Hash: 71c170c4866379e63f3bb731ab85f2675e40b871062cc884df1de5be1837761e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_pattern_white_space.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_pattern_white_space
+#check_PROGRAMS += test-pr_pattern_white_space
+#test_pr_pattern_white_space_SOURCES = unictype/test-pr_pattern_white_space.c
+
+File: ./modules/unictype/property-private-use
+Hash: cb7550618124824da04c13ec2bd6b80a6444e05bee1220dd98489e250e7a9240
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "private use".
+#
+#Files:
+#lib/unictype/pr_private_use.c
+#lib/unictype/pr_private_use.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-private-use-tests
+Hash: 3cd8463e98f9176d4dd6cc366180e41338763176fa4706ac27d183badd11aba8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_private_use.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_private_use
+#check_PROGRAMS += test-pr_private_use
+#test_pr_private_use_SOURCES = unictype/test-pr_private_use.c
+
+File: ./modules/unictype/property-punctuation
+Hash: dc281e36df6d442fa0f68bbc7e04a254cbd5c115d2f043b734db537a7f59e49e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "punctuation".
+#
+#Files:
+#lib/unictype/pr_punctuation.c
+#lib/unictype/pr_punctuation.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/category-test
+#unictype/category-P
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-punctuation-tests
+Hash: 73665fbcda85e14c9462050cf75e9afc536fd913bd1d5900cf97f412b497fca1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_punctuation.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_punctuation
+#check_PROGRAMS += test-pr_punctuation
+#test_pr_punctuation_SOURCES = unictype/test-pr_punctuation.c
+
+File: ./modules/unictype/property-quotation-mark
+Hash: 802d39421d4852f167495adab8835f95bfb039d9cf3da4e96402513bfae74c86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "quotation mark".
+#
+#Files:
+#lib/unictype/pr_quotation_mark.c
+#lib/unictype/pr_quotation_mark.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-quotation-mark-tests
+Hash: 249c1e649ef3751f101e913435432f9c49b0d0df5b01b3d473c00459170d717b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_quotation_mark.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_quotation_mark
+#check_PROGRAMS += test-pr_quotation_mark
+#test_pr_quotation_mark_SOURCES = unictype/test-pr_quotation_mark.c
+
+File: ./modules/unictype/property-radical
+Hash: 9dc8bbd17a314eae8e7fa2194634004a5b4119c7e3c80d455da08635995f3bcd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "radical".
+#
+#Files:
+#lib/unictype/pr_radical.c
+#lib/unictype/pr_radical.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-radical-tests
+Hash: 8605e5c3719893234523ef1acb9b061be8ec1066d7fdd54e5ea53c38ec151877
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_radical.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_radical
+#check_PROGRAMS += test-pr_radical
+#test_pr_radical_SOURCES = unictype/test-pr_radical.c
+
+File: ./modules/unictype/property-sentence-terminal
+Hash: 8b91030220afed7743fb6e5e30128a21ca543fbc5780d8065aa1b31aeb1df6c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "sentence terminal".
+#
+#Files:
+#lib/unictype/pr_sentence_terminal.c
+#lib/unictype/pr_sentence_terminal.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-sentence-terminal-tests
+Hash: 530a93e6d04220fd9172a9a905cdc32fe57e19be686fe220d871a07332f40572
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_sentence_terminal.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_sentence_terminal
+#check_PROGRAMS += test-pr_sentence_terminal
+#test_pr_sentence_terminal_SOURCES = unictype/test-pr_sentence_terminal.c
+
+File: ./modules/unictype/property-soft-dotted
+Hash: 4f18089a0aad15e3dfd60873a0c3834432563e1f3ef02fe9f6f04d1eac9793f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "soft dotted".
+#
+#Files:
+#lib/unictype/pr_soft_dotted.c
+#lib/unictype/pr_soft_dotted.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-soft-dotted-tests
+Hash: db01ce3d54221e1475114ddb8c40f65bb5474c7c62a31ec1b88b9e29fc4c6e64
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_soft_dotted.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_soft_dotted
+#check_PROGRAMS += test-pr_soft_dotted
+#test_pr_soft_dotted_SOURCES = unictype/test-pr_soft_dotted.c
+
+File: ./modules/unictype/property-space
+Hash: f315c7db18916c69554448fdd4e8475c871bffb1d8b24f0dfb61ca5d85b6c46f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "space".
+#
+#Files:
+#lib/unictype/pr_space.c
+#lib/unictype/pr_space.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/category-test
+#unictype/category-Zs
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-space-tests
+Hash: 2d0b377aa6b8a819f06a0ddfa1efa005ed4f7f576f4ea7020452d6c4b17f32a9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_space.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_space
+#check_PROGRAMS += test-pr_space
+#test_pr_space_SOURCES = unictype/test-pr_space.c
+
+File: ./modules/unictype/property-terminal-punctuation
+Hash: e2e1592f8c1590e78277581cca7c7c445c368a77fb36b2d70a4b9dc3a34e6774
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "terminal punctuation".
+#
+#Files:
+#lib/unictype/pr_terminal_punctuation.c
+#lib/unictype/pr_terminal_punctuation.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-terminal-punctuation-tests
+Hash: 4f9997e3fe9d4ebed7a77eb0fd05d89815ae32ff9ff8031c812940c81a1efafb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_terminal_punctuation.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_terminal_punctuation
+#check_PROGRAMS += test-pr_terminal_punctuation
+#test_pr_terminal_punctuation_SOURCES = unictype/test-pr_terminal_punctuation.c
+
+File: ./modules/unictype/property-test
+Hash: 2875a882df3810f71e1fa58cdbdc8ba8655cc5fb7f71bffd1b484291cc30d5bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character has a given property.
+#
+#Files:
+#lib/unictype/pr_test.c
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/pr_test.c
+#
+#Include:
+
+File: ./modules/unictype/property-test-tests
+Hash: 49c056d8f126c9d246e06fe986e974f68defb79f7f140ad3544b2c29df529bcf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_test.c
+#
+#Depends-on:
+#unictype/property-composite
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_test
+#check_PROGRAMS += test-pr_test
+#test_pr_test_SOURCES = unictype/test-pr_test.c
+
+File: ./modules/unictype/property-titlecase
+Hash: 3424c3cad8bf8349bf8461d39d1a115224cfbb9158038a54cb40d2be6c5b2120
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "titlecase".
+#
+#Files:
+#lib/unictype/pr_titlecase.c
+#lib/unictype/pr_titlecase.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#unictype/category-test
+#unictype/category-Lt
+#inline
+#
+#configure.ac:
+
+File: ./modules/unictype/property-titlecase-tests
+Hash: 68aa95f02e391e2973eca93c11bb41b987c0c684de9d768e3396a58a7dd1bece
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_titlecase.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_titlecase
+#check_PROGRAMS += test-pr_titlecase
+#test_pr_titlecase_SOURCES = unictype/test-pr_titlecase.c
+
+File: ./modules/unictype/property-unassigned-code-value
+Hash: 7d90d0183c752ec332e42ff788c34355da36a0493e00c7760940fc7e20135428
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "unassigned code value".
+#
+#Files:
+#lib/unictype/pr_unassigned_code_value.c
+#lib/unictype/pr_unassigned_code_value.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-unassigned-code-value-tests
+Hash: cbfaaa154729897cb18d5d837c467f75104ddbc1cb4c7336df9abd0cfb1a81fd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_unassigned_code_value.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_unassigned_code_value
+#check_PROGRAMS += test-pr_unassigned_code_value
+#test_pr_unassigned_code_value_SOURCES = unictype/test-pr_unassigned_code_value.c
+
+File: ./modules/unictype/property-unified-ideograph
+Hash: 5f82e9650128f62edabfa02bd2206d49f1d23ef1cfde0fdb4c0c073cf59c9264
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "unified ideograph".
+#
+#Files:
+#lib/unictype/pr_unified_ideograph.c
+#lib/unictype/pr_unified_ideograph.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-unified-ideograph-tests
+Hash: 507f4c45bf2809f3017279e85b2b365bda51244f4ea729fe03ba64a34038210a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_unified_ideograph.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_unified_ideograph
+#check_PROGRAMS += test-pr_unified_ideograph
+#test_pr_unified_ideograph_SOURCES = unictype/test-pr_unified_ideograph.c
+
+File: ./modules/unictype/property-uppercase
+Hash: 70abaed515023d6afc46706ad95faedb80654165fc422cd8373401302d52ca1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "uppercase".
+#
+#Files:
+#lib/unictype/pr_uppercase.c
+#lib/unictype/pr_uppercase.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-uppercase-tests
+Hash: e193081d132ebc0d073d04c4a1f36482e8966efa2d71941c323638700fa18129
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_uppercase.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_uppercase
+#check_PROGRAMS += test-pr_uppercase
+#test_pr_uppercase_SOURCES = unictype/test-pr_uppercase.c
+
+File: ./modules/unictype/property-variation-selector
+Hash: 09f553c5824dc3d20487e71b22ed1c43c89e77956f5db9f769946e92cae72cca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "variation selector".
+#
+#Files:
+#lib/unictype/pr_variation_selector.c
+#lib/unictype/pr_variation_selector.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-variation-selector-tests
+Hash: 11704488bd5afbd4917ed521aaccd46ac3b38f3aa83264e59db51015e4f48ff7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_variation_selector.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_variation_selector
+#check_PROGRAMS += test-pr_variation_selector
+#test_pr_variation_selector_SOURCES = unictype/test-pr_variation_selector.c
+
+File: ./modules/unictype/property-white-space
+Hash: e2f24576777878c97b0dfcbbb1df20226d1d41094831016337b91f77798b7405
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "white space".
+#
+#Files:
+#lib/unictype/pr_white_space.c
+#lib/unictype/pr_white_space.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-white-space-tests
+Hash: 36b16726463f04af8d26b36416ca251e30dd47fdb7ec970403e0374c579cab29
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_white_space.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_white_space
+#check_PROGRAMS += test-pr_white_space
+#test_pr_white_space_SOURCES = unictype/test-pr_white_space.c
+
+File: ./modules/unictype/property-xid-continue
+Hash: 987e6db719b50516e803a9244c23943e9d086183f863846550d21130150c82b0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "xid continue".
+#
+#Files:
+#lib/unictype/pr_xid_continue.c
+#lib/unictype/pr_xid_continue.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-xid-continue-tests
+Hash: 492a0ada9d94175fe3770661d3f231e5b9d71a1a5013a6d7075319e0eece9504
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_xid_continue.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_xid_continue
+#check_PROGRAMS += test-pr_xid_continue
+#test_pr_xid_continue_SOURCES = unictype/test-pr_xid_continue.c
+
+File: ./modules/unictype/property-xid-start
+Hash: 174f854ffe740306b5020504fd505eb8b5952185d32ce77b1cab4745b5c49277
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "xid start".
+#
+#Files:
+#lib/unictype/pr_xid_start.c
+#lib/unictype/pr_xid_start.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-xid-start-tests
+Hash: 4796f6dadd2aead564c00995d88c9e6226cc3c128f72bd64f3ef82db90784f14
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_xid_start.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_xid_start
+#check_PROGRAMS += test-pr_xid_start
+#test_pr_xid_start_SOURCES = unictype/test-pr_xid_start.c
+
+File: ./modules/unictype/property-zero-width
+Hash: 038f0bd94d08940987f80a3d3e3e27de60d394d652fba7f22706c1621b21dc31
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is "zero width".
+#
+#Files:
+#lib/unictype/pr_zero_width.c
+#lib/unictype/pr_zero_width.h
+#lib/unictype/bitmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/property-zero-width-tests
+Hash: 0707ef51a9013ca150a7d623b2d1911acd92345e0baa0c7705276f85cc35d964
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-pr_zero_width.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-pr_zero_width
+#check_PROGRAMS += test-pr_zero_width
+#test_pr_zero_width_SOURCES = unictype/test-pr_zero_width.c
+
+File: ./modules/unictype/scripts
+Hash: fc0ee5870e8d757e967e0a9f128e9586560851ff7514e8bdf199eb876b442bdc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Scripts of Unicode characters.
+#
+#Files:
+#lib/unictype/scripts.c
+#lib/unictype/scripts.h
+#lib/unictype/scripts_byname.gperf
+#
+#Depends-on:
+#unictype/base
+#gperf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/scripts-all
+Hash: c00aaee85d9c7895fc040082fd619c1eb344047070f916e39b4b17c315aba6bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Complete API for scripts of Unicode characters.
+#
+#Files:
+#
+#Depends-on:
+#unictype/scripts
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unictype.h"
+
+File: ./modules/unictype/scripts-tests
+Hash: bb3ba53f7c6b1f28677c2d12df775f79b9b353dc7dca8eaa1dbb502a0f9d5720
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-scripts.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-scripts
+#check_PROGRAMS += test-scripts
+#test_scripts_SOURCES = unictype/test-scripts.c
+
+File: ./modules/unictype/syntax-c-ident
+Hash: 1c8901c3c1d2b9e9bbd683173217f122327141ec2215681b693943cc55fdc06e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character can occur in identifiers in the C language.
+#
+#Files:
+#lib/unictype/sy_c_ident.c
+#lib/unictype/sy_c_ident.h
+#lib/unictype/identsyntaxmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/syntax-c-ident-tests
+Hash: 123c21cdbadb06d99e5b097714ad472c50e4ed364fad3d97d7f3003d77b33513
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-sy_c_ident.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sy_c_ident
+#check_PROGRAMS += test-sy_c_ident
+#test_sy_c_ident_SOURCES = unictype/test-sy_c_ident.c
+
+File: ./modules/unictype/syntax-c-whitespace
+Hash: 75dd8a020ca18c0a26e3d4708fe09f2c32dcb4b9f4e34cd005f65e7d9c576dad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is whitespace in the C language syntax.
+#
+#Files:
+#lib/unictype/sy_c_whitespace.c
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/sy_c_whitespace.c
+#
+#Include:
+
+File: ./modules/unictype/syntax-c-whitespace-tests
+Hash: aea812d7be9ef3e9722b0f0487cf7fc24ca0b0e51f547fc4695c42573e5e824a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-sy_c_whitespace.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sy_c_whitespace
+#check_PROGRAMS += test-sy_c_whitespace
+#test_sy_c_whitespace_SOURCES = unictype/test-sy_c_whitespace.c
+
+File: ./modules/unictype/syntax-java-ident
+Hash: 648109158cd0ea8cae5103e40be04bd32626edcce12a516612d0586e9d6d6d9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character can occur in identifiers in the Java language.
+#
+#Files:
+#lib/unictype/sy_java_ident.c
+#lib/unictype/sy_java_ident.h
+#lib/unictype/identsyntaxmap.h
+#
+#Depends-on:
+#unictype/base
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unictype/syntax-java-ident-tests
+Hash: ef0ebc71a20170d2bd658f3d21546f7bd96f6dfaa6c0bc762e0facbcb7471e7e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-sy_java_ident.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sy_java_ident
+#check_PROGRAMS += test-sy_java_ident
+#test_sy_java_ident_SOURCES = unictype/test-sy_java_ident.c
+
+File: ./modules/unictype/syntax-java-whitespace
+Hash: f2a070894d55a1a11b3bc214ad6d007f9b24932a204311ceff15f22f6d026db9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a Unicode character is whitespace in the Java language syntax.
+#
+#Files:
+#lib/unictype/sy_java_whitespace.c
+#
+#Depends-on:
+#unictype/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unictype/sy_java_whitespace.c
+#
+#Include:
+
+File: ./modules/unictype/syntax-java-whitespace-tests
+Hash: 2c5288f2e01a728b760497bd94f4c460e0f462c6d025fa6d752a5f81b83208aa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unictype/test-sy_java_whitespace.c
+#tests/unictype/test-predicate-part1.h
+#tests/unictype/test-predicate-part2.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-sy_java_whitespace
+#check_PROGRAMS += test-sy_java_whitespace
+#test_sy_java_whitespace_SOURCES = unictype/test-sy_java_whitespace.c
+
+File: ./modules/unilbrk/base
+Hash: 29d4ffad9a27050e59b897eb5485b88b77b0b36343526d8d97fa89ebc45675b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for line breaking.
+#
+#Files:
+#lib/unilbrk.h
+#
+#Depends-on:
+#unitypes
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/unilbrk/tables
+Hash: d5b2dbbfbbacbfc56105ff4bc9acdcc81b78c7d8fc243e56f60556bc335af848
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking auxiliary tables.
+#
+#Files:
+#lib/unilbrk/lbrktables.h
+#lib/unilbrk/lbrktables.c
+#lib/unilbrk/lbrkprop1.h
+#lib/unilbrk/lbrkprop2.h
+#
+#Depends-on:
+#unilbrk/base
+#
+#configure.ac:
+#AC_REQUIRE([AC_C_INLINE])
+
+File: ./modules/unilbrk/u16-possible-linebreaks
+Hash: fb2b033ab8de0b38a406eb24d58ec648859c3a0daefae77a3696f50c1af32358
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking of UTF-16 strings.
+#
+#Files:
+#lib/unilbrk/u16-possible-linebreaks.c
+#lib/uniwidth/cjk.h
+#
+#Depends-on:
+#unilbrk/base
+#unilbrk/tables
+#unistr/u16-mbtouc-unsafe
+#streq
+#
+#configure.ac:
+
+File: ./modules/unilbrk/u16-possible-linebreaks-tests
+Hash: fbfe78f87743c86c8f7e03b624e7e33d3d7720493f3fe0b94c182b8979451e0d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unilbrk/test-u16-possible-linebreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-possible-linebreaks
+#check_PROGRAMS += test-u16-possible-linebreaks
+#test_u16_possible_linebreaks_SOURCES = unilbrk/test-u16-possible-linebreaks.c
+
+File: ./modules/unilbrk/u16-width-linebreaks
+Hash: fad0c3b357ebd62c279df0e1df7131aa5d32dc21a6bcfc3492b28caa10322eb3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking of UTF-16 strings.
+#
+#Files:
+#lib/unilbrk/u16-width-linebreaks.c
+#
+#Depends-on:
+#unilbrk/base
+#unilbrk/u16-possible-linebreaks
+#uniwidth/width
+#unistr/u16-mbtouc-unsafe
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unilbrk/u16-width-linebreaks-tests
+Hash: cc378551fc21c3e7697f37eaad7f1a7cb567ebd744da77caa3f5584eb5f4b209
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unilbrk/test-u16-width-linebreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-width-linebreaks
+#check_PROGRAMS += test-u16-width-linebreaks
+#test_u16_width_linebreaks_SOURCES = unilbrk/test-u16-width-linebreaks.c
+
+File: ./modules/unilbrk/u32-possible-linebreaks
+Hash: e4e6fd32876d026ea4d6225b5882b1a0f874e8c4769cea4a29501a775f24624b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking of UTF-32 strings.
+#
+#Files:
+#lib/unilbrk/u32-possible-linebreaks.c
+#lib/uniwidth/cjk.h
+#
+#Depends-on:
+#unilbrk/base
+#unilbrk/tables
+#streq
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unilbrk/u32-possible-linebreaks-tests
+Hash: bc7097904f67f5422302f3c361fd2db5cec933083cb98dcb5dcc1b4f64a0f160
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unilbrk/test-u32-possible-linebreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-possible-linebreaks
+#check_PROGRAMS += test-u32-possible-linebreaks
+#test_u32_possible_linebreaks_SOURCES = unilbrk/test-u32-possible-linebreaks.c
+
+File: ./modules/unilbrk/u32-width-linebreaks
+Hash: 5d80370161a248c9751945e228bcc0bcd8d1d8a502b880f1cbe6576e30cf55b8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking of UTF-32 strings.
+#
+#Files:
+#lib/unilbrk/u32-width-linebreaks.c
+#
+#Depends-on:
+#unilbrk/base
+#unilbrk/u32-possible-linebreaks
+#uniwidth/width
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unilbrk/u32-width-linebreaks.c
+
+File: ./modules/unilbrk/u32-width-linebreaks-tests
+Hash: b8b0f5957fff79f41d13af8b0343a21b96e70fffc16fdcb57e1e3cc904a34fbf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unilbrk/test-u32-width-linebreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-width-linebreaks
+#check_PROGRAMS += test-u32-width-linebreaks
+#test_u32_width_linebreaks_SOURCES = unilbrk/test-u32-width-linebreaks.c
+
+File: ./modules/unilbrk/u8-possible-linebreaks
+Hash: aa74f0b3f28f7d3dc25556a32bb2fa75814a7ee31bee6f2893ad7b36c057f07e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking of UTF-8 strings.
+#
+#Files:
+#lib/unilbrk/u8-possible-linebreaks.c
+#lib/uniwidth/cjk.h
+#
+#Depends-on:
+#unilbrk/base
+#unilbrk/tables
+#unistr/u8-mbtouc-unsafe
+#streq
+#
+#configure.ac:
+
+File: ./modules/unilbrk/u8-possible-linebreaks-tests
+Hash: 53170e22e1f25e6953c13ea92e1bf95b90edb709828a99cecab8e1430d810337
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unilbrk/test-u8-possible-linebreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-possible-linebreaks
+#check_PROGRAMS += test-u8-possible-linebreaks
+#test_u8_possible_linebreaks_SOURCES = unilbrk/test-u8-possible-linebreaks.c
+
+File: ./modules/unilbrk/u8-width-linebreaks
+Hash: 93e6b87973701eba658c8fa334b4c1073d826268ed30da0fcf575f09dac5a901
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking of UTF-8 strings.
+#
+#Files:
+#lib/unilbrk/u8-width-linebreaks.c
+#
+#Depends-on:
+#unilbrk/base
+#unilbrk/u8-possible-linebreaks
+#uniwidth/width
+#unistr/u8-mbtouc-unsafe
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unilbrk/u8-width-linebreaks-tests
+Hash: aed16d1c061f3f35fddc06ffe21674359c1f408eccf11b76128c66dcabde665a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unilbrk/test-u8-width-linebreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-width-linebreaks
+#check_PROGRAMS += test-u8-width-linebreaks
+#test_u8_width_linebreaks_SOURCES = unilbrk/test-u8-width-linebreaks.c
+
+File: ./modules/unilbrk/ulc-common
+Hash: 9a542448cea2b4551dbe74db6db19d6a710a9852a22366389e4bde5720704dd5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking auxiliary functions.
+#
+#Files:
+#lib/unilbrk/ulc-common.h
+#lib/unilbrk/ulc-common.c
+#
+#Depends-on:
+#c-ctype
+#c-strcaseeq
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unilbrk/ulc-common.c
+
+File: ./modules/unilbrk/ulc-possible-linebreaks
+Hash: a8ae35611c7f64d0f14765c7c432fd80dcb2d522898c2baafe870eab574f94c0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking of strings.
+#
+#Files:
+#lib/unilbrk/ulc-possible-linebreaks.c
+#
+#Depends-on:
+#unilbrk/base
+#unilbrk/u8-possible-linebreaks
+#unilbrk/ulc-common
+#uniconv/u8-conv-from-enc
+#c-ctype
+#
+#configure.ac:
+
+File: ./modules/unilbrk/ulc-possible-linebreaks-tests
+Hash: 66540e1eacff19c056c6f522a61e19234bfb6e1ef88f8a1def60051272923714
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unilbrk/test-ulc-possible-linebreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ulc-possible-linebreaks
+#check_PROGRAMS += test-ulc-possible-linebreaks
+#test_ulc_possible_linebreaks_SOURCES = unilbrk/test-ulc-possible-linebreaks.c
+#test_ulc_possible_linebreaks_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unilbrk/ulc-width-linebreaks
+Hash: 4d8019fb733c5d022283c22399191899fe50ea419b772baf123fd6a2a9642f0f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Line breaking of strings.
+#
+#Files:
+#lib/unilbrk/ulc-width-linebreaks.c
+#
+#Depends-on:
+#unilbrk/base
+#unilbrk/u8-width-linebreaks
+#unilbrk/ulc-common
+#uniconv/u8-conv-from-enc
+#c-ctype
+#
+#configure.ac:
+
+File: ./modules/unilbrk/ulc-width-linebreaks-tests
+Hash: ab389d2a8210afd8fa6f14184c42bed9763f9bc35f300703515b0fde7d4023ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unilbrk/test-ulc-width-linebreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ulc-width-linebreaks
+#check_PROGRAMS += test-ulc-width-linebreaks
+#test_ulc_width_linebreaks_SOURCES = unilbrk/test-ulc-width-linebreaks.c
+#test_ulc_width_linebreaks_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uniname/base
+Hash: 14222ba2a3831447be1c5f3821c04fd881c40b0011a712c6ea4380b5e0d7627c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for Unicode character names.
+#
+#Files:
+#lib/uniname.h
+#
+#Depends-on:
+#unitypes
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"uniname.h"
+
+File: ./modules/uniname/uniname
+Hash: f8203167c7d48cbc145295b4987e3949bc4fcaefeb920a3bd869979a3751242b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Association between Unicode characters and their names.
+#
+#Files:
+#lib/uniname/gen-uninames.lisp
+#lib/uniname/uninames.h
+#lib/uniname/uniname.c
+#
+#Depends-on:
+#uniname/base
+#memcmp
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uniname/uniname-tests
+Hash: e8ed561ff853cf6328b746f8a2f8b3c04609757e43e47c62cfde89bb927f6965
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniname/test-uninames.sh
+#tests/uniname/test-uninames.c
+#tests/uniname/UnicodeDataNames.txt
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += uniname/test-uninames.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-uninames
+
+File: ./modules/uninorm/base
+Hash: 55708fb81393394b4c7140b2a5317365173587180c3269f8fd500c04dc6ab541
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for normalization forms of Unicode strings.
+#
+#Files:
+#lib/uninorm.h
+#
+#Depends-on:
+#unitypes
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"uninorm.h"
+
+File: ./modules/uninorm/canonical-decomposition
+Hash: 0c842b02f4a51325fa53847ff43c6b266598ae61f3ebd376c6f04234d099a4b6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Canonical decomposition of Unicode characters.
+#
+#Files:
+#lib/uninorm/canonical-decomposition.c
+#
+#Depends-on:
+#uninorm/base
+#uninorm/decomposition-table
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uninorm/canonical-decomposition.c
+
+File: ./modules/uninorm/canonical-decomposition-tests
+Hash: f466cfc0bda31b447c9123811c53a3d07befc8b189a14a10e504ffada3c213e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-canonical-decomposition.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-canonical-decomposition
+#check_PROGRAMS += test-canonical-decomposition
+#test_canonical_decomposition_SOURCES = uninorm/test-canonical-decomposition.c
+
+File: ./modules/uninorm/compat-decomposition
+Hash: a8448f11d9af55dc734db18330636fc5597007bd38d015b0dce43653a4d95143
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compatibility decomposition of Unicode characters.
+#
+#Files:
+#lib/uninorm/decompose-internal.h
+#lib/uninorm/compat-decomposition.c
+#
+#Depends-on:
+#uninorm/base
+#uninorm/decomposition
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uninorm/compat-decomposition.c
+
+File: ./modules/uninorm/compat-decomposition-tests
+Hash: dfc9f69fa13843e2845a6d18df5748b8539cb64a93a69104b5cbda4c53c773cb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-compat-decomposition.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-compat-decomposition
+#check_PROGRAMS += test-compat-decomposition
+#test_compat_decomposition_SOURCES = uninorm/test-compat-decomposition.c
+
+File: ./modules/uninorm/composition
+Hash: ed68f5f00207cc044c32fc7e9803a2d8b3aacba259c755b39004cf2257dadcab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Composition of Unicode characters.
+#
+#Files:
+#lib/uninorm/composition.c
+#lib/uninorm/composition-table.gperf
+#
+#Depends-on:
+#uninorm/base
+#gperf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uninorm/composition.c
+
+File: ./modules/uninorm/composition-tests
+Hash: 143cce642d1aa68831d8ddeab1ebc3e0146099c05ced2dffd438a9bb4d69d5ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-composition.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-composition
+#check_PROGRAMS += test-composition
+#test_composition_SOURCES = uninorm/test-composition.c
+
+File: ./modules/uninorm/decompose-internal
+Hash: ddb12f59e41add6ed130a093f703313546e67c18717773a2666a4a7bf7a9bd9e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Decomposition of Unicode strings.
+#
+#Files:
+#lib/uninorm/decompose-internal.h
+#lib/uninorm/decompose-internal.c
+#
+#Depends-on:
+#unitypes
+#array-mergesort
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uninorm/decompose-internal.c
+
+File: ./modules/uninorm/decomposing-form
+Hash: bf3de6d60b1205900b4c31b36b6e00febdb46344e9026a355f8491cd49b8b4f4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Decomposing variant of a normalization form.
+#
+#Files:
+#lib/uninorm/decomposing-form.c
+#lib/uninorm/normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uninorm/decomposing-form.c
+
+File: ./modules/uninorm/decomposing-form-tests
+Hash: a08e924c595e8eac1e915d262fbcb92e69b7115d8e3ee02fc857a00594202287
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-decomposing-form.c
+#
+#Depends-on:
+#uninorm/nfc
+#uninorm/nfd
+#uninorm/nfkc
+#uninorm/nfkd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-decomposing-form
+#check_PROGRAMS += test-decomposing-form
+#test_decomposing_form_SOURCES = uninorm/test-decomposing-form.c
+
+File: ./modules/uninorm/decomposition
+Hash: 278f4492a2ab7f569353ad541ea108f2d9983e3bac359d848d422628c99d1e8d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Decomposition of Unicode characters.
+#
+#Files:
+#lib/uninorm/decomposition.c
+#
+#Depends-on:
+#uninorm/base
+#uninorm/decomposition-table
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uninorm/decomposition.c
+
+File: ./modules/uninorm/decomposition-table
+Hash: cd1abae2797adce6e27d5eeda1610f8ccffdfa17c6d774a67a90a9bb41d008ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Decomposition of Unicode characters.
+#
+#Files:
+#lib/uninorm/decomposition-table.h
+#lib/uninorm/decomposition-table.c
+#lib/uninorm/decomposition-table1.h
+#lib/uninorm/decomposition-table2.h
+#
+#Depends-on:
+#uninorm/base
+#
+#configure.ac:
+#AC_REQUIRE([AC_C_INLINE])
+
+File: ./modules/uninorm/decomposition-tests
+Hash: c9b2dfa9fe54b63937cfb0d5c629e850a6c22aa224c8190fe4917ea8e01fddbc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-decomposition.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-decomposition
+#check_PROGRAMS += test-decomposition
+#test_decomposition_SOURCES = uninorm/test-decomposition.c
+
+File: ./modules/uninorm/filter
+Hash: 633ce3bb5d3271ee9e2eb6c1c70ce097f50b84e47358a2f2b6fe6487daaa7c1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Normalization of a stream of Unicode characters.
+#
+#Files:
+#lib/uninorm/uninorm-filter.c
+#lib/uninorm/normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#unictype/combining-class
+#uninorm/decompose-internal
+#malloc-posix
+#
+#configure.ac:
+
+File: ./modules/uninorm/filter-tests
+Hash: f1dd9689e14716782d10b036b74ac51d552d5eb95815d98d73d9e05465f12f37
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-uninorm-filter-nfc.c
+#
+#Depends-on:
+#unistr/u32-cmp
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-uninorm-filter-nfc
+#check_PROGRAMS += test-uninorm-filter-nfc
+#test_uninorm_filter_nfc_SOURCES = uninorm/test-uninorm-filter-nfc.c
+
+File: ./modules/uninorm/nfc
+Hash: 60058c5f1110cd6e42a99597ecd15d0d6c31ad22df871e1950ab8437181ffc96
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Canonical normalization of Unicode strings.
+#
+#Files:
+#lib/uninorm/nfc.c
+#lib/uninorm/normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/canonical-decomposition
+#uninorm/composition
+#uninorm/nfd
+#
+#configure.ac:
+
+File: ./modules/uninorm/nfc-tests
+Hash: 6a0c689cd819d5e0a9885c65ae694a08e25eb08c50452e3fe23d5304e2ec46b7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-nfc.c
+#tests/uninorm/test-u8-nfc.c
+#tests/uninorm/test-u16-nfc.c
+#tests/uninorm/test-u32-nfc.c
+#tests/uninorm/test-u32-nfc-big.sh
+#tests/uninorm/test-u32-nfc-big.c
+#tests/uninorm/test-u32-normalize-big.h
+#tests/uninorm/test-u32-normalize-big.c
+#tests/uninorm/NormalizationTest.txt
+#
+#Depends-on:
+#unistr/u8-cmp
+#unistr/u16-cmp
+#unistr/u32-cmp
+
+File: ./modules/uninorm/nfd
+Hash: ca777b00f508579277d7aaa803482277d4aede656f6cbe85ca7ca28430484344
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Canonical decomposition of Unicode strings.
+#
+#Files:
+#lib/uninorm/nfd.c
+#lib/uninorm/normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/canonical-decomposition
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uninorm/nfd.c
+
+File: ./modules/uninorm/nfd-tests
+Hash: be9139e6cae2e3a1532af1e0b57b0c07057941b4ed2ddccd3db64a803bd82d07
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-nfd.c
+#tests/uninorm/test-u8-nfd.c
+#tests/uninorm/test-u16-nfd.c
+#tests/uninorm/test-u32-nfd.c
+#tests/uninorm/test-u32-nfd-big.sh
+#tests/uninorm/test-u32-nfd-big.c
+#tests/uninorm/test-u32-normalize-big.h
+#tests/uninorm/test-u32-normalize-big.c
+#tests/uninorm/NormalizationTest.txt
+#
+#Depends-on:
+#unistr/u8-cmp
+#unistr/u16-cmp
+#unistr/u32-cmp
+
+File: ./modules/uninorm/nfkc
+Hash: e73c029c73f8ffbe7adc1aa3a17d84758a58fed8e3633fab4c7ca48f8f9ca01d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compatibility normalization of Unicode strings.
+#
+#Files:
+#lib/uninorm/nfkc.c
+#lib/uninorm/normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/compat-decomposition
+#uninorm/composition
+#uninorm/nfkd
+#
+#configure.ac:
+
+File: ./modules/uninorm/nfkc-tests
+Hash: a324be7602d5247af463f546da060584d4922db40058f93e535ee94369624a15
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-nfkc.c
+#tests/uninorm/test-u8-nfkc.c
+#tests/uninorm/test-u16-nfkc.c
+#tests/uninorm/test-u32-nfkc.c
+#tests/uninorm/test-u32-nfkc-big.sh
+#tests/uninorm/test-u32-nfkc-big.c
+#tests/uninorm/test-u32-normalize-big.h
+#tests/uninorm/test-u32-normalize-big.c
+#tests/uninorm/NormalizationTest.txt
+#
+#Depends-on:
+#unistr/u8-cmp
+#unistr/u16-cmp
+#unistr/u32-cmp
+
+File: ./modules/uninorm/nfkd
+Hash: 216c1ffcd9a03874199fccd2ea75e41a63e40e0c58c486c729a5ebd10e2baf27
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compatibility decomposition of Unicode strings.
+#
+#Files:
+#lib/uninorm/nfkd.c
+#lib/uninorm/normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/compat-decomposition
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uninorm/nfkd.c
+
+File: ./modules/uninorm/nfkd-tests
+Hash: 7d8600486ccfb54a1c4b0ae4cae9c529305055357cfa7698b37d3c6a8fdd4c3e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-nfkd.c
+#tests/uninorm/test-u8-nfkd.c
+#tests/uninorm/test-u16-nfkd.c
+#tests/uninorm/test-u32-nfkd.c
+#tests/uninorm/test-u32-nfkd-big.sh
+#tests/uninorm/test-u32-nfkd-big.c
+#tests/uninorm/test-u32-normalize-big.h
+#tests/uninorm/test-u32-normalize-big.c
+#tests/uninorm/NormalizationTest.txt
+#
+#Depends-on:
+#unistr/u8-cmp
+#unistr/u16-cmp
+#unistr/u32-cmp
+
+File: ./modules/uninorm/u16-normalize
+Hash: 254ec15f4087c7b0e7d73adb91e09e1f00b8410b15cfced0389027f5f3d25a5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Normalization of UTF-16 strings.
+#
+#Files:
+#lib/uninorm/u16-normalize.c
+#lib/uninorm/normalize-internal.h
+#lib/uninorm/u-normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#unistr/u16-mbtouc-unsafe
+#unistr/u16-uctomb
+#unistr/u16-cpy
+#unictype/combining-class
+#uninorm/decompose-internal
+
+File: ./modules/uninorm/u16-normcmp
+Hash: 60b267a1ee14fc708de9a0bd87ca61e72e80825cad6bc6ff135729454537e3d6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Normalization insensitive comparison of UTF-16 strings.
+#
+#Files:
+#lib/uninorm/u16-normcmp.c
+#lib/uninorm/u-normcmp.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u16-normalize
+#unistr/u16-cmp2
+#minmax
+#
+#configure.ac:
+
+File: ./modules/uninorm/u16-normcmp-tests
+Hash: 2650b0af205c8cc429eed30048ac9a4dad0b894d7f90d702061ead69e32e8caf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-u16-normcmp.c
+#tests/uninorm/test-u16-normcmp.h
+#
+#Depends-on:
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-normcmp
+#check_PROGRAMS += test-u16-normcmp
+#test_u16_normcmp_SOURCES = uninorm/test-u16-normcmp.c
+
+File: ./modules/uninorm/u16-normcoll
+Hash: fee77c1acd7117d103bf8735b316146e124e0a217e801751129718102d3980e9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent, normalization insensitive comparison of UTF-16 strings.
+#
+#Files:
+#lib/uninorm/u16-normcoll.c
+#lib/uninorm/u-normcoll.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u16-normxfrm
+#memcmp2
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uninorm/u16-normcoll-tests
+Hash: 5f868bfe3fde2026592d72aa80de2d4323c477c55aa8eda9dac137b8dfbf3389
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-u16-normcoll.c
+#tests/uninorm/test-u16-normcmp.h
+#
+#Depends-on:
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-normcoll
+#check_PROGRAMS += test-u16-normcoll
+#test_u16_normcoll_SOURCES = uninorm/test-u16-normcoll.c
+#test_u16_normcoll_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uninorm/u16-normxfrm
+Hash: 6da763d8b900521a6e278440e419f025be68f1f90e61a082f347d292e2e3b48c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent transformation for comparison of UTF-16 strings.
+#
+#Files:
+#lib/uninorm/u16-normxfrm.c
+#lib/uninorm/u-normxfrm.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u16-normalize
+#uniconv/u16-conv-to-enc
+#localcharset
+#memxfrm
+#
+#configure.ac:
+
+File: ./modules/uninorm/u32-normalize
+Hash: 728b89052e03740cbfdeeee3cfeeb93c1856853fb07f3b04a52a7f4d0f3386ea
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Normalization of UTF-32 strings.
+#
+#Files:
+#lib/uninorm/u32-normalize.c
+#lib/uninorm/normalize-internal.h
+#lib/uninorm/u-normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#unistr/u32-mbtouc-unsafe
+#unistr/u32-uctomb
+#unistr/u32-cpy
+#unictype/combining-class
+#uninorm/decompose-internal
+
+File: ./modules/uninorm/u32-normcmp
+Hash: ef451854caeca2c8ceaa38128fc3ecc46ac88e450438a45f49163a8d6459b0f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Normalization insensitive comparison of UTF-32 strings.
+#
+#Files:
+#lib/uninorm/u32-normcmp.c
+#lib/uninorm/u-normcmp.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u32-normalize
+#unistr/u32-cmp2
+#minmax
+#
+#configure.ac:
+
+File: ./modules/uninorm/u32-normcmp-tests
+Hash: 7237480a01f8c518eedfc6749df570f5c2115c1d144d1cda8390caa84e01bea0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-u32-normcmp.c
+#tests/uninorm/test-u32-normcmp.h
+#
+#Depends-on:
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-normcmp
+#check_PROGRAMS += test-u32-normcmp
+#test_u32_normcmp_SOURCES = uninorm/test-u32-normcmp.c
+
+File: ./modules/uninorm/u32-normcoll
+Hash: b7eb853b14b60ce750a977c0a753b00e7bae1e25a4dc49b7e1f3e577399f3b9c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent, normalization insensitive comparison of UTF-32 strings.
+#
+#Files:
+#lib/uninorm/u32-normcoll.c
+#lib/uninorm/u-normcoll.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u32-normxfrm
+#memcmp2
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uninorm/u32-normcoll-tests
+Hash: 26c01f5e545110a25cd7c5e459320fbadcbc428a9e6d18294cd779d42b4fecab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-u32-normcoll.c
+#tests/uninorm/test-u32-normcmp.h
+#
+#Depends-on:
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-normcoll
+#check_PROGRAMS += test-u32-normcoll
+#test_u32_normcoll_SOURCES = uninorm/test-u32-normcoll.c
+#test_u32_normcoll_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uninorm/u32-normxfrm
+Hash: b55dc62687502a41c881449b9bdc29f233d37e40e5e63df427030d99d02bef7b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent transformation for comparison of UTF-32 strings.
+#
+#Files:
+#lib/uninorm/u32-normxfrm.c
+#lib/uninorm/u-normxfrm.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u32-normalize
+#uniconv/u32-conv-to-enc
+#localcharset
+#memxfrm
+#
+#configure.ac:
+
+File: ./modules/uninorm/u8-normalize
+Hash: 67725ebcf8da9754aa7be1162f4ee96607ac824a6031afdd87a62ef3d17810e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Normalization of UTF-8 strings.
+#
+#Files:
+#lib/uninorm/u8-normalize.c
+#lib/uninorm/normalize-internal.h
+#lib/uninorm/u-normalize-internal.h
+#
+#Depends-on:
+#uninorm/base
+#unistr/u8-mbtouc-unsafe
+#unistr/u8-uctomb
+#unistr/u8-cpy
+#unictype/combining-class
+#uninorm/decompose-internal
+
+File: ./modules/uninorm/u8-normcmp
+Hash: 3c986b68b5dd7426bb420158436b7298d3ecab8e151606e900e5ecaba89681d4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Normalization insensitive comparison of UTF-8 strings.
+#
+#Files:
+#lib/uninorm/u8-normcmp.c
+#lib/uninorm/u-normcmp.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u8-normalize
+#unistr/u8-cmp2
+#minmax
+#
+#configure.ac:
+
+File: ./modules/uninorm/u8-normcmp-tests
+Hash: 53594b9d7b20e4f6767f43618ac2a4f9f9aaa8028da81dd773bd8f725d065aa3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-u8-normcmp.c
+#tests/uninorm/test-u8-normcmp.h
+#
+#Depends-on:
+#uninorm/nfd
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-normcmp
+#check_PROGRAMS += test-u8-normcmp
+#test_u8_normcmp_SOURCES = uninorm/test-u8-normcmp.c
+
+File: ./modules/uninorm/u8-normcoll
+Hash: 149b1a7f74ac5e6727721ce233443cfc06ed98033f9f0724d185a4e7ea669729
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent, normalization insensitive comparison of UTF-8 strings.
+#
+#Files:
+#lib/uninorm/u8-normcoll.c
+#lib/uninorm/u-normcoll.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u8-normxfrm
+#memcmp2
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/uninorm/u8-normcoll-tests
+Hash: 29bbf4e6bc068279d9f6ecb257f7c09203f568dae1362ea6343a86caef24573c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uninorm/test-u8-normcoll.c
+#tests/uninorm/test-u8-normcmp.h
+#
+#Depends-on:
+#uninorm/nfc
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-normcoll
+#check_PROGRAMS += test-u8-normcoll
+#test_u8_normcoll_SOURCES = uninorm/test-u8-normcoll.c
+#test_u8_normcoll_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/uninorm/u8-normxfrm
+Hash: 28e882bcc408f734dbe4a30c8907c4ab6c7803e7d1c4c828f3c830efbe198b91
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent transformation for comparison of UTF-8 strings.
+#
+#Files:
+#lib/uninorm/u8-normxfrm.c
+#lib/uninorm/u-normxfrm.h
+#
+#Depends-on:
+#uninorm/base
+#uninorm/u8-normalize
+#uniconv/u8-conv-to-enc
+#localcharset
+#memxfrm
+#
+#configure.ac:
+
+File: ./modules/unistd
+Hash: dbd2f26b0321b56b0a24ae997cb7a3f1d20e4d054e578a2da4f5f35ec2e491d1
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A GNU-like <unistd.h>.
+#
+#Files:
+#m4/unistd_h.m4
+#lib/unistd.in.h
+#
+#Depends-on:
+#include_next
+#link-warning
+#stddef
+#
+#configure.ac:
+#gl_UNISTD_H
+
+File: ./modules/unistd-safer
+Hash: e13cb7d10c4c353c4534a10e50f2add94102296c420d682bcfd7e46042860f5f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#File descriptor functions that avoid clobbering STD{IN,OUT,ERR}_FILENO.
+#
+#Files:
+#lib/unistd--.h
+#lib/dup-safer.c
+#lib/fd-safer.c
+#lib/pipe-safer.c
+#lib/unistd-safer.h
+#m4/unistd-safer.m4
+#
+#Depends-on:
+#unistd
+#
+#configure.ac:
+
+File: ./modules/unistd-tests
+Hash: c5a369a6a22a5c28685b41272e0c158001cf10f53b58bad411602fc4542476ef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-unistd.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-unistd
+#check_PROGRAMS += test-unistd
+#
+#License:
+#LGPL
+
+File: ./modules/unistdio/base
+Hash: cb84e6cd2695bb4f4172d2c8a0918b3d339c7ccc9003c5548a655c11ef038257
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for formatted output to strings.
+#
+#Files:
+#lib/unistdio.h
+#
+#Depends-on:
+#unitypes
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unistdio.h"
+
+File: ./modules/unistdio/u-printf-args
+Hash: a0c39a7cd90d51f1067f83b90bb694c68e18eb7fb39702444070608e55c12e8e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Fetching a printf argument list.
+#
+#Files:
+#lib/unistdio/u-printf-args.h
+#lib/unistdio/u-printf-args.c
+#lib/printf-args.h
+#lib/printf-args.c
+#m4/vasnprintf.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+#
+#Depends-on:
+#unitypes
+
+File: ./modules/unistdio/u16-asnprintf
+Hash: e5a1c81801f1b344c3821ebe2a309887e4af4254e6ae4f6200f382b66c35e446
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string, with automatic memory allocation and
+#bounded output size.
+#
+#Files:
+#lib/unistdio/u16-asnprintf.c
+#lib/unistdio/u-asnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-vasnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u16-asnprintf-tests
+Hash: 32c4fd1e0b2cdfe673e68a3aab7cf3108e45729f79abdd5b98e8c0a804b9746c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u16-asnprintf1.c
+#tests/unistdio/test-u16-asnprintf1.h
+#tests/unistdio/test-u16-printf1.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-asnprintf1
+#check_PROGRAMS += test-u16-asnprintf1
+#test_u16_asnprintf1_SOURCES = unistdio/test-u16-asnprintf1.c
+#test_u16_asnprintf1_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unistdio/u16-asprintf
+Hash: a3db1508f6b3c88bb92133f3ece2af5b665e6ac3f28096a3843cd72f4aca5927
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u16-asprintf.c
+#lib/unistdio/u-asprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-vasprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u16-asprintf.c
+
+File: ./modules/unistdio/u16-printf-parse
+Hash: ce2adac94e7b1b6ab6becda606586f2ce214e270fdf123b1f90475ec44978b82
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Parsing an UTF-16 format string.
+#
+#Files:
+#lib/unistdio/u-printf-parse.h
+#lib/unistdio/u16-printf-parse.c
+#lib/printf-parse.h
+#lib/printf-parse.c
+#m4/vasnprintf.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+#
+#Depends-on:
+#unistdio/u-printf-args
+
+File: ./modules/unistdio/u16-snprintf
+Hash: 936f2aa7eb538828d32e402413cda30c439eee1c8c5fa3d50ca1e1e0791c9065
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-16 string.
+#
+#Files:
+#lib/unistdio/u16-snprintf.c
+#lib/unistdio/u-snprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-vsnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u16-snprintf.c
+
+File: ./modules/unistdio/u16-sprintf
+Hash: 4f9d3bdc4ecaf39bbb4d5587d4c9980f2dcded7fce5c2ce68d46c10586f8b778
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string.
+#
+#Files:
+#lib/unistdio/u16-sprintf.c
+#lib/unistdio/u-sprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-sprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u16-sprintf.c
+
+File: ./modules/unistdio/u16-u16-asnprintf
+Hash: 8829c634236443e3fd488b05fd8c222627430c7ac48ee5256aad8709ad82d67d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string, with automatic memory allocation and
+#bounded output size.
+#
+#Files:
+#lib/unistdio/u16-u16-asnprintf.c
+#lib/unistdio/u-asnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-u16-vasnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u16-u16-asprintf
+Hash: 8223e90b776e0f011ec0fcc8d5d86239db472e6fec9f4b59ef5f451b658336f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u16-u16-asprintf.c
+#lib/unistdio/u-asprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-u16-vasprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u16-u16-asprintf.c
+
+File: ./modules/unistdio/u16-u16-snprintf
+Hash: be3778392c62064afca5dbef4b4eddee43c8fff3f6e3f0cbb1f216382bff5a5c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-16 string.
+#
+#Files:
+#lib/unistdio/u16-u16-snprintf.c
+#lib/unistdio/u-snprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-u16-vsnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u16-u16-snprintf.c
+
+File: ./modules/unistdio/u16-u16-sprintf
+Hash: d8fa0b52ad2772bc36ce74b51b05322f3c0e2ecc3797d5dc28c05e4fcb9af336
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string.
+#
+#Files:
+#lib/unistdio/u16-u16-sprintf.c
+#lib/unistdio/u-sprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-u16-sprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u16-u16-sprintf.c
+
+File: ./modules/unistdio/u16-u16-vasnprintf
+Hash: 39b53e2cf3419ccfeb2f825be2e6d255c750de08abfcc80f7769118e4c15d912
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to UTF-16 strings.
+#
+#Files:
+#lib/unistdio/u16-u16-vasnprintf.c
+#lib/vasnprintf.c
+#m4/vasnprintf.m4
+#m4/printf.m4
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#m4/longlong.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+
+File: ./modules/unistdio/u16-u16-vasprintf
+Hash: ad8b4e11e4f5a36c527d2e0a0023b74ca6e332791894d2057990b47314d3c490
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u16-u16-vasprintf.c
+#lib/unistdio/u-vasprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-u16-vasnprintf
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u16-u16-vsnprintf
+Hash: 6d3ae7a9bd95ebc852c1bf5ec893e08ca0d1d395c0d2b3a80d427f98a166be37
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-16 string.
+#
+#Files:
+#lib/unistdio/u16-u16-vsnprintf.c
+#lib/unistdio/u-vsnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-u16-vasnprintf
+#unistr/u16-cpy
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u16-u16-vsprintf
+Hash: 008c05b23a6db2628eb914823dbc1d1e1ffc00f6fcdf03be9b07ab4fcdf9e423
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string.
+#
+#Files:
+#lib/unistdio/u16-u16-vsprintf.c
+#lib/unistdio/u-vsprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-u16-vasnprintf
+#stdint
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u16-vasnprintf
+Hash: 79062a7a8a415fa52fc8ac9c12333f59d9d23497f740d7cb158c321c67f99d30
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to UTF-16 strings.
+#
+#Files:
+#lib/unistdio/u16-vasnprintf.c
+#lib/vasnprintf.c
+#m4/vasnprintf.m4
+#m4/printf.m4
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#m4/longlong.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+
+File: ./modules/unistdio/u16-vasnprintf-tests
+Hash: 6d2007f23f43d2b3e81692e0ae50880bcbb48177372edae183a19d48cb3f8f8f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u16-vasnprintf1.c
+#tests/unistdio/test-u16-asnprintf1.h
+#tests/unistdio/test-u16-printf1.h
+#tests/unistdio/test-u16-vasnprintf2.sh
+#tests/unistdio/test-u16-vasnprintf2.c
+#tests/unistdio/test-u16-vasnprintf3.sh
+#tests/unistdio/test-u16-vasnprintf3.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#unistr/u16-cmp
+#unistr/u16-cpy
+#unistr/u16-strcmp
+
+File: ./modules/unistdio/u16-vasprintf
+Hash: 41a2ff271a2c3cfe20383034c9fb6435057adcadb678e34eb00362b9dcb2d24f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u16-vasprintf.c
+#lib/unistdio/u-vasprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-vasnprintf
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u16-vasprintf-tests
+Hash: 7e555fc4132ab88db55c5acf19bf9b6fad003ab6a0386396959579a013327b64
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u16-vasprintf1.c
+#tests/unistdio/test-u16-printf1.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-vasprintf1
+#check_PROGRAMS += test-u16-vasprintf1
+#test_u16_vasprintf1_SOURCES = unistdio/test-u16-vasprintf1.c
+#test_u16_vasprintf1_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unistdio/u16-vsnprintf
+Hash: b7f6994eb06dcae1f3e609d63f59edef32a47f7dee16172c5631b0a4ce241375
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-16 string.
+#
+#Files:
+#lib/unistdio/u16-vsnprintf.c
+#lib/unistdio/u-vsnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-vasnprintf
+#unistr/u16-cpy
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u16-vsnprintf-tests
+Hash: b34bc4e356dde5443e4f217134e96ae90baebd5961b4b1e60a20ea4640fe39c3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u16-vsnprintf1.c
+#tests/unistdio/test-u16-printf1.h
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-vsnprintf1
+#check_PROGRAMS += test-u16-vsnprintf1
+#test_u16_vsnprintf1_SOURCES = unistdio/test-u16-vsnprintf1.c
+#test_u16_vsnprintf1_LDADD = $(LDADD) @LIBINTL@ @LIBICONV@
+
+File: ./modules/unistdio/u16-vsprintf
+Hash: d992d7cacc2843a1ee28dd7645010c6243f981342a2672247852edd3c758ce13
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-16 string.
+#
+#Files:
+#lib/unistdio/u16-vsprintf.c
+#lib/unistdio/u-vsprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u16-vasnprintf
+#stdint
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u16-vsprintf-tests
+Hash: ad42ae89ce30aefca64040557c94850bb25b76a89e76037b65703cc566312ab4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u16-vsprintf1.c
+#tests/unistdio/test-u16-printf1.h
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-vsprintf1
+#check_PROGRAMS += test-u16-vsprintf1
+#test_u16_vsprintf1_SOURCES = unistdio/test-u16-vsprintf1.c
+#test_u16_vsprintf1_LDADD = $(LDADD) @LIBINTL@ @LIBICONV@
+
+File: ./modules/unistdio/u32-asnprintf
+Hash: 420179fe1ab744c708eeee5a4c8d8f5dad764ccdefd530a40c9bfe0fcb7fbcc2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string, with automatic memory allocation and
+#bounded output size.
+#
+#Files:
+#lib/unistdio/u32-asnprintf.c
+#lib/unistdio/u-asnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-vasnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u32-asnprintf-tests
+Hash: 8181ceb0d445dc7158c18f6448eaf893d71f57b76962acdb30ba0c303221d2c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u32-asnprintf1.c
+#tests/unistdio/test-u32-asnprintf1.h
+#tests/unistdio/test-u32-printf1.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-asnprintf1
+#check_PROGRAMS += test-u32-asnprintf1
+#test_u32_asnprintf1_SOURCES = unistdio/test-u32-asnprintf1.c
+#test_u32_asnprintf1_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unistdio/u32-asprintf
+Hash: 4b11f321da844ca6e09623c0f19929295e253a97937a01561fa4746fda7f4df6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u32-asprintf.c
+#lib/unistdio/u-asprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-vasprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u32-asprintf.c
+
+File: ./modules/unistdio/u32-printf-parse
+Hash: 5e822828c5cc06a435f1ce53ee019565338480f5f360811cf3442c3b34c75e73
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Parsing an UTF-32 format string.
+#
+#Files:
+#lib/unistdio/u-printf-parse.h
+#lib/unistdio/u32-printf-parse.c
+#lib/printf-parse.h
+#lib/printf-parse.c
+#m4/vasnprintf.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+#
+#Depends-on:
+#unistdio/u-printf-args
+
+File: ./modules/unistdio/u32-snprintf
+Hash: 9d3e3d30f71e91fdc5b5e03a0b6cd0c325987732aed11f760e460a78b3cc03be
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-32 string.
+#
+#Files:
+#lib/unistdio/u32-snprintf.c
+#lib/unistdio/u-snprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-vsnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u32-snprintf.c
+
+File: ./modules/unistdio/u32-sprintf
+Hash: b2bf7b19524e9af5f873aa6746e0b9541a8674ed0c719cf785b34640ebc9bce7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string.
+#
+#Files:
+#lib/unistdio/u32-sprintf.c
+#lib/unistdio/u-sprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-sprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u32-sprintf.c
+
+File: ./modules/unistdio/u32-u32-asnprintf
+Hash: c6db48a7b18e3180257faf8806786872780482b6aae288432f27a13b94ae8461
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string, with automatic memory allocation and
+#bounded output size.
+#
+#Files:
+#lib/unistdio/u32-u32-asnprintf.c
+#lib/unistdio/u-asnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-u32-vasnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u32-u32-asprintf
+Hash: 2579aec352a8fc8d5c74f20b1085688f9828b3759f08b10c11b22892c34871bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u32-u32-asprintf.c
+#lib/unistdio/u-asprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-u32-vasprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u32-u32-asprintf.c
+
+File: ./modules/unistdio/u32-u32-snprintf
+Hash: 94944d66a8c7f2fc8aee1a402dc12406ac66b367e28c2b1da44338e501a05ef5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-32 string.
+#
+#Files:
+#lib/unistdio/u32-u32-snprintf.c
+#lib/unistdio/u-snprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-u32-vsnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u32-u32-snprintf.c
+
+File: ./modules/unistdio/u32-u32-sprintf
+Hash: 9a7d4d5bcf8be7e7913c99a0dafd8cf2db3608475f1a412f8c50acdf2ad45e35
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string.
+#
+#Files:
+#lib/unistdio/u32-u32-sprintf.c
+#lib/unistdio/u-sprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-u32-sprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u32-u32-sprintf.c
+
+File: ./modules/unistdio/u32-u32-vasnprintf
+Hash: e8010b11eb33ce3e5f17d3d42583d655ee1da1b1876e4b190b224c891eecd4b9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to UTF-32 strings.
+#
+#Files:
+#lib/unistdio/u32-u32-vasnprintf.c
+#lib/vasnprintf.c
+#m4/vasnprintf.m4
+#m4/printf.m4
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#m4/longlong.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+
+File: ./modules/unistdio/u32-u32-vasprintf
+Hash: 3f8169aa39520c68945f195873e0eb3109147fef1f3ca8d1e4f586073feb0b23
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u32-u32-vasprintf.c
+#lib/unistdio/u-vasprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-u32-vasnprintf
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u32-u32-vsnprintf
+Hash: 5c72f750e5e15748ef48465141a5c80060b8a0e5e24c7fc0bfc4af600ee43e43
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-32 string.
+#
+#Files:
+#lib/unistdio/u32-u32-vsnprintf.c
+#lib/unistdio/u-vsnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-u32-vasnprintf
+#unistr/u32-cpy
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u32-u32-vsprintf
+Hash: b41115de72a702c2f6471a8efac119032669525cc835f48ea347c33026f48f3b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string.
+#
+#Files:
+#lib/unistdio/u32-u32-vsprintf.c
+#lib/unistdio/u-vsprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-u32-vasnprintf
+#stdint
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u32-vasnprintf
+Hash: a573d4003a595c0075c5337d0deb65198f6ab5a5dcb643a2b4af9b96d01debf6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to UTF-32 strings.
+#
+#Files:
+#lib/unistdio/u32-vasnprintf.c
+#lib/vasnprintf.c
+#m4/vasnprintf.m4
+#m4/printf.m4
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#m4/longlong.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+
+File: ./modules/unistdio/u32-vasnprintf-tests
+Hash: 36037a8dc95c519a7e55a1b4f8c56e58a8e3a5a250ffff8bfda2758140ed3f65
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u32-vasnprintf1.c
+#tests/unistdio/test-u32-asnprintf1.h
+#tests/unistdio/test-u32-printf1.h
+#tests/unistdio/test-u32-vasnprintf2.sh
+#tests/unistdio/test-u32-vasnprintf2.c
+#tests/unistdio/test-u32-vasnprintf3.sh
+#tests/unistdio/test-u32-vasnprintf3.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#unistr/u32-cmp
+#unistr/u32-cpy
+#unistr/u32-strcmp
+
+File: ./modules/unistdio/u32-vasprintf
+Hash: 882213d6b43cd083fcc15a1165057fdd63d9eb9d5b58a073c2ab1f2d69e3caf7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u32-vasprintf.c
+#lib/unistdio/u-vasprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-vasnprintf
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u32-vasprintf-tests
+Hash: cd3da5fa9a934100c549d656d1d64487a57c72087b28137c2b42af09c5437b0f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u32-vasprintf1.c
+#tests/unistdio/test-u32-printf1.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-vasprintf1
+#check_PROGRAMS += test-u32-vasprintf1
+#test_u32_vasprintf1_SOURCES = unistdio/test-u32-vasprintf1.c
+#test_u32_vasprintf1_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unistdio/u32-vsnprintf
+Hash: 2cdec23651eda4713ebf64ee4762c9721011b6bcff7570d2ba9dbb8fc1c261b6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-32 string.
+#
+#Files:
+#lib/unistdio/u32-vsnprintf.c
+#lib/unistdio/u-vsnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-vasnprintf
+#unistr/u32-cpy
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u32-vsnprintf-tests
+Hash: c68b4af23046464830afb456b98f78c099691d6468eb684aef2dc6808c188a65
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u32-vsnprintf1.c
+#tests/unistdio/test-u32-printf1.h
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-vsnprintf1
+#check_PROGRAMS += test-u32-vsnprintf1
+#test_u32_vsnprintf1_SOURCES = unistdio/test-u32-vsnprintf1.c
+#test_u32_vsnprintf1_LDADD = $(LDADD) @LIBINTL@ @LIBICONV@
+
+File: ./modules/unistdio/u32-vsprintf
+Hash: ebd2451d6c2e41fc7c5271270f372213a92f03ef2daadd2182972b433e554896
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-32 string.
+#
+#Files:
+#lib/unistdio/u32-vsprintf.c
+#lib/unistdio/u-vsprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u32-vasnprintf
+#stdint
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u32-vsprintf-tests
+Hash: 1acdac65177d0a64e2669c3b2210dd86bc1cbad6cf8204cebbd385657193ce92
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u32-vsprintf1.c
+#tests/unistdio/test-u32-printf1.h
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-vsprintf1
+#check_PROGRAMS += test-u32-vsprintf1
+#test_u32_vsprintf1_SOURCES = unistdio/test-u32-vsprintf1.c
+#test_u32_vsprintf1_LDADD = $(LDADD) @LIBINTL@ @LIBICONV@
+
+File: ./modules/unistdio/u8-asnprintf
+Hash: 671e88d83c47cad90e09e8183d6415bcb4c18035322c98d07a863aeaf6fa0b54
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string, with automatic memory allocation and
+#bounded output size.
+#
+#Files:
+#lib/unistdio/u8-asnprintf.c
+#lib/unistdio/u-asnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-vasnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u8-asnprintf-tests
+Hash: 10a61fe9519293ace37569fdc3cb3e030735c425f3253a7c97a9c4af28834a02
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u8-asnprintf1.c
+#tests/unistdio/test-u8-asnprintf1.h
+#tests/unistdio/test-u8-printf1.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-asnprintf1
+#check_PROGRAMS += test-u8-asnprintf1
+#test_u8_asnprintf1_SOURCES = unistdio/test-u8-asnprintf1.c
+#test_u8_asnprintf1_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unistdio/u8-asprintf
+Hash: 9fe5db8cf1422dc97b9b723452837bf7eba50f2ce70f38744fed356cb67ba6c6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u8-asprintf.c
+#lib/unistdio/u-asprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-vasprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u8-asprintf.c
+
+File: ./modules/unistdio/u8-printf-parse
+Hash: 44082b101deb9af1103053eb19fb0390cd5b28b367c5de92e84ba92d818ba40f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Parsing an UTF-8 format string.
+#
+#Files:
+#lib/unistdio/u-printf-parse.h
+#lib/unistdio/u8-printf-parse.c
+#lib/printf-parse.h
+#lib/printf-parse.c
+#m4/vasnprintf.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+#
+#Depends-on:
+#unistdio/u-printf-args
+
+File: ./modules/unistdio/u8-snprintf
+Hash: 79b5f87048e482b8d4bbd8322eb3cd9ea61083ee9654688c21eba9924d05eb3c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-8 string.
+#
+#Files:
+#lib/unistdio/u8-snprintf.c
+#lib/unistdio/u-snprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-vsnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u8-snprintf.c
+
+File: ./modules/unistdio/u8-sprintf
+Hash: 4477280d827c0700517e29715526f76cc614fde226c78f7dc367e1e78236703e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string.
+#
+#Files:
+#lib/unistdio/u8-sprintf.c
+#lib/unistdio/u-sprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-sprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u8-sprintf.c
+
+File: ./modules/unistdio/u8-u8-asnprintf
+Hash: aa014092e59d71b5f6ec447c5f47f7596fc5accddd217e9fc6032baff8e01142
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string, with automatic memory allocation and
+#bounded output size.
+#
+#Files:
+#lib/unistdio/u8-u8-asnprintf.c
+#lib/unistdio/u-asnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-u8-vasnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u8-u8-asprintf
+Hash: b81a9f24da7506d62addb380cb0899892063ee4bcfa3c39b1782d056cc5e7b98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u8-u8-asprintf.c
+#lib/unistdio/u-asprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-u8-vasprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u8-u8-asprintf.c
+
+File: ./modules/unistdio/u8-u8-snprintf
+Hash: eab1371efd0a40b90692743ed735eaba5eaf3870f968f88d07e30d8baa2a2272
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-8 string.
+#
+#Files:
+#lib/unistdio/u8-u8-snprintf.c
+#lib/unistdio/u-snprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-u8-vsnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u8-u8-snprintf.c
+
+File: ./modules/unistdio/u8-u8-sprintf
+Hash: b06d07e2cc7e3afff9faadfa604c069ca8cf659693881606dc8627b7ec5a0e1c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string.
+#
+#Files:
+#lib/unistdio/u8-u8-sprintf.c
+#lib/unistdio/u-sprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-u8-sprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/u8-u8-sprintf.c
+
+File: ./modules/unistdio/u8-u8-vasnprintf
+Hash: c67caefd2283651d78359cec0a2d90b0d5aeb97a3c5db710f666b690452d85ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to UTF-8 strings.
+#
+#Files:
+#lib/unistdio/u8-u8-vasnprintf.c
+#lib/vasnprintf.c
+#m4/vasnprintf.m4
+#m4/printf.m4
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#m4/longlong.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+
+File: ./modules/unistdio/u8-u8-vasprintf
+Hash: a08013161a7462b4b53e50b9264b664d384727fc249569c17a885e05e94af322
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u8-u8-vasprintf.c
+#lib/unistdio/u-vasprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-u8-vasnprintf
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u8-u8-vsnprintf
+Hash: 61bae80d81e22834e041ca1deb3421979390ac879e971a01e5fcf1bc32cf7bee
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-8 string.
+#
+#Files:
+#lib/unistdio/u8-u8-vsnprintf.c
+#lib/unistdio/u-vsnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-u8-vasnprintf
+#unistr/u8-cpy
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u8-u8-vsprintf
+Hash: 609118650b7ee936ae050628649117774d883713b8a6cb8c5e1c241c74ab81f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string.
+#
+#Files:
+#lib/unistdio/u8-u8-vsprintf.c
+#lib/unistdio/u-vsprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-u8-vasnprintf
+#stdint
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u8-vasnprintf
+Hash: 55dcb014930de61418a0dc35670e9d20a7ea72ce01aa0757cc87482bc11eec88
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to UTF-8 strings.
+#
+#Files:
+#lib/unistdio/u8-vasnprintf.c
+#lib/vasnprintf.c
+#m4/vasnprintf.m4
+#m4/printf.m4
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#m4/longlong.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+
+File: ./modules/unistdio/u8-vasnprintf-tests
+Hash: 116b70b260b697d44cddecc4170f10dfec7461493a99589aea489e9697dfaf1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u8-vasnprintf1.c
+#tests/unistdio/test-u8-asnprintf1.h
+#tests/unistdio/test-u8-printf1.h
+#tests/unistdio/test-u8-vasnprintf2.sh
+#tests/unistdio/test-u8-vasnprintf2.c
+#tests/unistdio/test-u8-vasnprintf3.sh
+#tests/unistdio/test-u8-vasnprintf3.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#unistr/u8-cmp
+#unistr/u8-cpy
+#unistr/u8-strcmp
+
+File: ./modules/unistdio/u8-vasprintf
+Hash: f831f573cfd6f1abe875d5fe09542645d419f50eb2bd0f86ae396b86d874c816
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/u8-vasprintf.c
+#lib/unistdio/u-vasprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-vasnprintf
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/u8-vasprintf-tests
+Hash: 6e1fbf837a8c5423857ac068329f2bab9fbd674db7b813b2a13b224ccd13718c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u8-vasprintf1.c
+#tests/unistdio/test-u8-printf1.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-vasprintf1
+#check_PROGRAMS += test-u8-vasprintf1
+#test_u8_vasprintf1_SOURCES = unistdio/test-u8-vasprintf1.c
+#test_u8_vasprintf1_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unistdio/u8-vsnprintf
+Hash: b9eb6dace1eee830b408454c93d614798f2832e95c9f976d964b2956454726a8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length UTF-8 string.
+#
+#Files:
+#lib/unistdio/u8-vsnprintf.c
+#lib/unistdio/u-vsnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-vasnprintf
+#unistr/u8-cpy
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u8-vsnprintf-tests
+Hash: 1be08e23a34822134bc7f1747b68357d4ce2a8f0690d5a06e3b16f0fb0b6c8f2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u8-vsnprintf1.c
+#tests/unistdio/test-u8-printf1.h
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-vsnprintf1
+#check_PROGRAMS += test-u8-vsnprintf1
+#test_u8_vsnprintf1_SOURCES = unistdio/test-u8-vsnprintf1.c
+#test_u8_vsnprintf1_LDADD = $(LDADD) @LIBINTL@ @LIBICONV@
+
+File: ./modules/unistdio/u8-vsprintf
+Hash: 36876a19f42af01cf95e1f627a66a3b4fb8774dbc13367d748b0eb2534612450
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to an UTF-8 string.
+#
+#Files:
+#lib/unistdio/u8-vsprintf.c
+#lib/unistdio/u-vsprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/u8-vasnprintf
+#stdint
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/u8-vsprintf-tests
+Hash: 84b3a8b35732e99760883086f7ea042ad872e4691b82cdc12004b433c6cd3898
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-u8-vsprintf1.c
+#tests/unistdio/test-u8-printf1.h
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-vsprintf1
+#check_PROGRAMS += test-u8-vsprintf1
+#test_u8_vsprintf1_SOURCES = unistdio/test-u8-vsprintf1.c
+#test_u8_vsprintf1_LDADD = $(LDADD) @LIBINTL@ @LIBICONV@
+
+File: ./modules/unistdio/ulc-asnprintf
+Hash: aef4b8ca6ca35a4e2b162dad823919bdefdf406831025f419dc5e8068d11ec1d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a string, with automatic memory allocation and bounded
+#output size.
+#
+#Files:
+#lib/unistdio/ulc-asnprintf.c
+#lib/unistdio/u-asnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-vasnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/ulc-asnprintf-tests
+Hash: 1e801a641f59b3b47c5685bef89c04f17748c884d1db640f8808bbfa2562b021
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-ulc-asnprintf1.c
+#tests/unistdio/test-ulc-asnprintf1.h
+#tests/unistdio/test-ulc-printf1.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ulc-asnprintf1
+#check_PROGRAMS += test-ulc-asnprintf1
+#test_ulc_asnprintf1_SOURCES = unistdio/test-ulc-asnprintf1.c
+#test_ulc_asnprintf1_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unistdio/ulc-asprintf
+Hash: 03a7f927e5cada2a4c5828bc4b3a212b6a0be29cb146459d2cc6a355c7d6ed6b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/ulc-asprintf.c
+#lib/unistdio/u-asprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-vasprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/ulc-asprintf.c
+
+File: ./modules/unistdio/ulc-fprintf
+Hash: 47e1a7a54213b0cb11c7d73c3ef899ab5947f84f5bd4aa4ee1473daf8ded4178
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Print formatted output to a stream.
+#
+#Files:
+#lib/unistdio/ulc-fprintf.c
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-vasnprintf
+#fseterr
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/ulc-printf-parse
+Hash: e24404a5be2431850f0f1feb51f9fac37bdf6aab0b5bfc8ad170c9257abe81c7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Parsing an ASCII format string.
+#
+#Files:
+#lib/unistdio/u-printf-parse.h
+#lib/unistdio/ulc-printf-parse.c
+#lib/printf-parse.h
+#lib/printf-parse.c
+#m4/vasnprintf.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+#
+#Depends-on:
+#unistdio/u-printf-args
+
+File: ./modules/unistdio/ulc-snprintf
+Hash: 8bcd8d35147496ef3250a46a6e5271502f8ff69cbfd483af5eb93a5d874c9be6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length string.
+#
+#Files:
+#lib/unistdio/ulc-snprintf.c
+#lib/unistdio/u-snprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-vsnprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/ulc-snprintf.c
+
+File: ./modules/unistdio/ulc-sprintf
+Hash: 03de557028b609bc44f43a6c2dd375a744c55b482e028f6a0ac404ae45c38c5e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a string.
+#
+#Files:
+#lib/unistdio/ulc-sprintf.c
+#lib/unistdio/u-sprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-sprintf
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistdio/ulc-sprintf.c
+
+File: ./modules/unistdio/ulc-vasnprintf
+Hash: 2d955b7e918bba4cf7dc36e075eb2b0d83d4e29fd648db3ed93d231daf7a1530
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to strings.
+#
+#Files:
+#lib/unistdio/ulc-vasnprintf.c
+#lib/vasnprintf.c
+#m4/vasnprintf.m4
+#m4/printf.m4
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#m4/longlong.m4
+#m4/intmax_t.m4
+#m4/stdint_h.m4
+#m4/inttypes_h.m4
+
+File: ./modules/unistdio/ulc-vasnprintf-tests
+Hash: 1c8d7e070a14e0424fc140adc0e006bbb94e1e97a6ccf7f929b3f8b72616eb02
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-ulc-vasnprintf1.c
+#tests/unistdio/test-ulc-asnprintf1.h
+#tests/unistdio/test-ulc-printf1.h
+#tests/unistdio/test-ulc-vasnprintf2.sh
+#tests/unistdio/test-ulc-vasnprintf2.c
+#tests/unistdio/test-ulc-vasnprintf3.sh
+#tests/unistdio/test-ulc-vasnprintf3.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR
+
+File: ./modules/unistdio/ulc-vasprintf
+Hash: 836850e1658f7235dff277c8c273b21c5c85d7eb024bb4cc979aea52e1aaff04
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a string, with automatic memory allocation.
+#
+#Files:
+#lib/unistdio/ulc-vasprintf.c
+#lib/unistdio/u-vasprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-vasnprintf
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/ulc-vasprintf-tests
+Hash: 30d398df554c29d695b98ab4bbd6d0e2ed3e38713a6455fcfecf6324b7b1935d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-ulc-vasprintf1.c
+#tests/unistdio/test-ulc-printf1.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ulc-vasprintf1
+#check_PROGRAMS += test-ulc-vasprintf1
+#test_ulc_vasprintf1_SOURCES = unistdio/test-ulc-vasprintf1.c
+#test_ulc_vasprintf1_LDADD = $(LDADD) @LIBICONV@
+
+File: ./modules/unistdio/ulc-vfprintf
+Hash: a517b7505ee60d4a22c9632833a3e9a85edbac52a2882110025727efe7886b26
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Print formatted output to a stream.
+#
+#Files:
+#lib/unistdio/ulc-vfprintf.c
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-vasnprintf
+#fseterr
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/ulc-vsnprintf
+Hash: 51bff1a79ad0658b32c869972f5c1fbcf51339da26f92e2de991e828ae0c59ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a fixed-length string.
+#
+#Files:
+#lib/unistdio/ulc-vsnprintf.c
+#lib/unistdio/u-vsnprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-vasnprintf
+#errno
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistdio/ulc-vsnprintf-tests
+Hash: 9b378029e95da2a44f7dc99b6b24d4148ba72916a20ee18228b335f49c9c13b7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-ulc-vsnprintf1.c
+#tests/unistdio/test-ulc-printf1.h
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ulc-vsnprintf1
+#check_PROGRAMS += test-ulc-vsnprintf1
+#test_ulc_vsnprintf1_SOURCES = unistdio/test-ulc-vsnprintf1.c
+#test_ulc_vsnprintf1_LDADD = $(LDADD) @LIBINTL@ @LIBICONV@
+
+File: ./modules/unistdio/ulc-vsprintf
+Hash: eb869efc315f53bd130d3288515fad6772428e711947a3166d07dc0b686b006b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Formatted output to a string.
+#
+#Files:
+#lib/unistdio/ulc-vsprintf.c
+#lib/unistdio/u-vsprintf.h
+#
+#Depends-on:
+#unistdio/base
+#unistdio/ulc-vasnprintf
+#stdint
+#errno
+#
+#configure.ac:
+
+File: ./modules/unistdio/ulc-vsprintf-tests
+Hash: aebae0fdefdd4531b226beb5e736dfcf790a849d91eb8abee309b6d2def3d0cf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/unistdio/test-ulc-vsprintf1.c
+#tests/unistdio/test-ulc-printf1.h
+#
+#Depends-on:
+#xalloc
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-ulc-vsprintf1
+#check_PROGRAMS += test-ulc-vsprintf1
+#test_ulc_vsprintf1_SOURCES = unistdio/test-ulc-vsprintf1.c
+#test_ulc_vsprintf1_LDADD = $(LDADD) @LIBINTL@ @LIBICONV@
+
+File: ./modules/unistr/base
+Hash: db12f54bab99e17db66374a1cbe7b437ef0698fd82e152c408337de17b2f092b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for elementary Unicode string functions.
+#
+#Files:
+#lib/unistr.h
+#
+#Depends-on:
+#unitypes
+#stdbool
+#inline
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u16-check
+Hash: ad6c444a5a5599ada9d5af6c97f77bfeeaf93f462d31efcfeb022793738e2310
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Check UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-check.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-check.c
+#
+#Include:
+
+File: ./modules/unistr/u16-chr
+Hash: 6c894150648cf9c4991eb5f1320e36878a0ad878b1973f9a7f53744ae092188f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in piece of UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-chr.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-chr.c
+
+File: ./modules/unistr/u16-cmp
+Hash: 6c1680cbdeffbfe7254af009a9b38e4fd7c2a8d04d6cbb827f5b8c79581de104
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare pieces of UTF-16 strings.
+#
+#Files:
+#lib/unistr/u16-cmp.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-cmp.c
+#
+#Include:
+
+File: ./modules/unistr/u16-cmp2
+Hash: 7d0f86845e9623a2a43cea7ac77f2033321dd70b9eb86b3cff8479eb8f8092ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare pieces of UTF-16 strings with possibly different lengths.
+#
+#Files:
+#lib/unistr/u16-cmp2.c
+#lib/unistr/u-cmp2.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-cmp
+#minmax
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u16-cpy
+Hash: 4c2c3026a1bd49c91ccc758b866e7796578166a2aa65dafb4966719a13784ce1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-cpy.c
+#lib/unistr/u-cpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-cpy.c
+
+File: ./modules/unistr/u16-cpy-alloc
+Hash: c62421466f75814033d6587c3beae0f81ad0163be8d79ab76e96294d5be98fa1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-cpy-alloc.c
+#lib/unistr/u-cpy-alloc.h
+#
+#Depends-on:
+#unistr/base
+#malloc-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-cpy-alloc.c
+
+File: ./modules/unistr/u16-endswith
+Hash: fd68d80d149e1f8b89805dc96f07f05f71d16744dbc36c88ff10277272d5827c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-16 strings.
+#
+#Files:
+#lib/unistr/u16-endswith.c
+#lib/unistr/u-endswith.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strlen
+#unistr/u16-cmp
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u16-mblen
+Hash: 26c0544bfdb15aa81c21e8cca721659799fc9eb4af9859124775f26f2a3a705a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-mblen.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-mblen.c
+#
+#Include:
+
+File: ./modules/unistr/u16-mbsnlen
+Hash: 270ddf040b389f659a422772337a42fc0ec8dd948c8c10451154f6d844ee6b05
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Count characters in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-mbsnlen.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-mblen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-mbsnlen.c
+
+File: ./modules/unistr/u16-mbtouc
+Hash: 3e7eff841306b06d86124014854b26de8789fb0ce6f8712fa55b055f224dc01b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-mbtouc.c
+#lib/unistr/u16-mbtouc-aux.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u16-mbtouc])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-mbtouc.c unistr/u16-mbtouc-aux.c
+
+File: ./modules/unistr/u16-mbtouc-unsafe
+Hash: c0e51d9a7694fa751055b2101e4145eb3c274590735f9e3aaa7f2ba527181a2b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-mbtouc-unsafe.c
+#lib/unistr/u16-mbtouc-unsafe-aux.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u16-mbtouc-unsafe])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-mbtouc-unsafe.c unistr/u16-mbtouc-unsafe-aux.c
+
+File: ./modules/unistr/u16-mbtoucr
+Hash: b4d4a7d76a589c82835ed877110de2f60d8784b5967cbe25f0d76cbb1a2da887
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-16 string, returning an error code upon failure.
+#
+#Files:
+#lib/unistr/u16-mbtoucr.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u16-mbtoucr])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-mbtoucr.c
+
+File: ./modules/unistr/u16-move
+Hash: 9a0ecd1db4dcb2318df5febbce8fdda68bed7d0e159505d9d34f35b1c81620c1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-move.c
+#lib/unistr/u-move.h
+#
+#Depends-on:
+#unistr/base
+#memmove
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-move.c
+
+File: ./modules/unistr/u16-next
+Hash: e2886f5dc60d6da76a941b4ba981a844116081c6002290af2034b04bc33d24c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Iterate over next character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-next.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-next.c
+#
+#Include:
+
+File: ./modules/unistr/u16-prev
+Hash: b10276bd1b4800ac02a835a6a1304a196318ceb8ba7007cc39163874d6b2b414
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Iterate over previous character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-prev.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-prev.c
+#
+#Include:
+
+File: ./modules/unistr/u16-set
+Hash: 114fbcd3a3fed8c29138b66ac993b9245c5defb057304fda3b051515c3875ff1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Fill UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-set.c
+#lib/unistr/u-set.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-set.c
+
+File: ./modules/unistr/u16-startswith
+Hash: 1c99a909517d107b4bc043ab2289b7c6e9bba9474e4dd7e84bc2926b38e9e279
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-16 strings.
+#
+#Files:
+#lib/unistr/u16-startswith.c
+#lib/unistr/u-startswith.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-startswith.c
+
+File: ./modules/unistr/u16-stpcpy
+Hash: 768b6daf4c471a2a53acef0cacdfe8e4149f46ceb14ab399c3b2ba7b83d4f5b3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-stpcpy.c
+#lib/unistr/u-stpcpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-stpcpy.c
+
+File: ./modules/unistr/u16-stpncpy
+Hash: 0ddc4dc25205318206f6d5672095fab98b5db9c46a147fad733625ecd65123f8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-stpncpy.c
+#lib/unistr/u-stpncpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-stpncpy.c
+
+File: ./modules/unistr/u16-strcat
+Hash: 88ee8f819e444554daf43fea856b453474a12bee6c17437accad02cf95ee6735
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Concatenate UTF-16 strings.
+#
+#Files:
+#lib/unistr/u16-strcat.c
+#lib/unistr/u-strcat.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strcat.c
+
+File: ./modules/unistr/u16-strchr
+Hash: dcea6f78f71dd2109e6110bd7a16fa2d0a22b874796525e0408a254480565d2a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strchr.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strchr.c
+
+File: ./modules/unistr/u16-strcmp
+Hash: 9d508e0abbece1745811f8dae554e715a7d8810d5592374ef22a48a71bc83086
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-16 strings.
+#
+#Files:
+#lib/unistr/u16-strcmp.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strcmp.c
+#
+#Include:
+
+File: ./modules/unistr/u16-strcoll
+Hash: 1fe6ba935b495dc3478561c04d876888a347fe69f38317c38428da74b126b0bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-16 strings using the collation rules of the current locale.
+#
+#Files:
+#lib/unistr/u16-strcoll.c
+#lib/unistr/u-strcoll.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strcmp
+#uniconv/u16-strconv-to-locale
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u16-strcpy
+Hash: af4022a6903937a21af7a08c5717154046fdd57e878c927d2edec273d2a926a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strcpy.c
+#lib/unistr/u-strcpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strcpy.c
+
+File: ./modules/unistr/u16-strcspn
+Hash: d81d7f1d978cd2385ef84886511f43055c67086231b11f06adca968444603ac2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strcspn.c
+#lib/unistr/u-strcspn.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strlen
+#unistr/u16-strmbtouc
+#unistr/u16-strchr
+#
+#configure.ac:
+
+File: ./modules/unistr/u16-strdup
+Hash: c589b243730f3ce78ba1ed578ed46050b66267618dca7ae20f79f7cb1275795f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strdup.c
+#lib/unistr/u-strdup.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strdup.c
+
+File: ./modules/unistr/u16-strlen
+Hash: 85de6c72712b4e42a20ae5fd7aead9d06d1e78fa6fc9a479ab0a4d985ddb7f8e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine length of UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strlen.c
+#lib/unistr/u-strlen.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strlen.c
+
+File: ./modules/unistr/u16-strmblen
+Hash: 757f17cdeeb24d993e1d0f25ee11241f4592f31df2ff9b8d714fa40f1a425bc7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strmblen.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strmblen.c
+#
+#Include:
+
+File: ./modules/unistr/u16-strmbtouc
+Hash: 8b6dd01329ab9c2282e3cc33f1d47413579448ceb31527062d902bf4203e4d41
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strmbtouc.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strmbtouc.c
+#
+#Include:
+
+File: ./modules/unistr/u16-strncat
+Hash: fe1e70a83c71ee2ec211d24de4c48d8b9811b03bd8db37317832f52292fc5a4a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Concatenate UTF-16 strings.
+#
+#Files:
+#lib/unistr/u16-strncat.c
+#lib/unistr/u-strncat.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strncat.c
+
+File: ./modules/unistr/u16-strncmp
+Hash: 25d145ad99710676d8aeada4370f22d6782b5b340ff43bcf914b24266d700cab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-16 strings.
+#
+#Files:
+#lib/unistr/u16-strncmp.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strncmp.c
+#
+#Include:
+
+File: ./modules/unistr/u16-strncpy
+Hash: 058c662917c80ac2a3b1e1265b2aef2942cb80af1fc7647692d735ea0e91429f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strncpy.c
+#lib/unistr/u-strncpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strncpy.c
+
+File: ./modules/unistr/u16-strnlen
+Hash: bc1f56a19f7521d6d6fd729687ebf5f1722a86bcad21e4222c85701fe89c9be3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine bounded length of UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strnlen.c
+#lib/unistr/u-strnlen.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strnlen.c
+
+File: ./modules/unistr/u16-strpbrk
+Hash: b18ea47f78d4c249674e38e7b0d10f07914a2f961ce737e9734a59ebeafd5e97
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strpbrk.c
+#lib/unistr/u-strpbrk.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strmbtouc
+#unistr/u16-strchr
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u16-strrchr
+Hash: a6037543d1928cad924bb02facd245aef6c2419603ae2a837e7f314885d1d754
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strrchr.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strrchr.c
+
+File: ./modules/unistr/u16-strspn
+Hash: b0c52081086d9124b0ccdf547c3d3a350928da09fffb4a14f309e574fc1bb6bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strspn.c
+#lib/unistr/u-strspn.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strlen
+#unistr/u16-strmbtouc
+#unistr/u16-cmp
+#unistr/u16-strchr
+#
+#configure.ac:
+
+File: ./modules/unistr/u16-strstr
+Hash: a4d8fadace1392d4a8c2bf1d2d9001cf52051b7cecadf246c46980a1219661c2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-16 strings.
+#
+#Files:
+#lib/unistr/u16-strstr.c
+#lib/unistr/u-strstr.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-strstr.c
+
+File: ./modules/unistr/u16-strtok
+Hash: 6ab1255e7878f7e66c14b305cd9c23c25767e21f0b902e92f75b2de2b133e85a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Tokenize UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-strtok.c
+#lib/unistr/u-strtok.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-strspn
+#unistr/u16-strpbrk
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u16-to-u32
+Hash: 1ed07813c21251360d34df1c66a3daccd46125db5a9fc2567c1496e997bb66cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert UTF-16 string to UTF-32 string.
+#
+#Files:
+#lib/unistr/u16-to-u32.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-mbtouc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-to-u32.c
+
+File: ./modules/unistr/u16-to-u8
+Hash: 4be6380172f47f003a1063b623d36f0a85c64ea132e0cb472f53461599799806
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert UTF-16 string to UTF-8 string.
+#
+#Files:
+#lib/unistr/u16-to-u8.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-mbtouc
+#unistr/u8-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-to-u8.c
+
+File: ./modules/unistr/u16-uctomb
+Hash: 96a71e89b7fa7eb1cfe1ebd8e41ceabf497aa60f4640968470ed47918aafb1e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Store a character in UTF-16 string.
+#
+#Files:
+#lib/unistr/u16-uctomb.c
+#lib/unistr/u16-uctomb-aux.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u16-uctomb])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u16-uctomb.c unistr/u16-uctomb-aux.c
+
+File: ./modules/unistr/u32-check
+Hash: d30089eb527ed45788420d61fb178c2d0b33a244eb675a679a9b6fd2fef42555
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Check UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-check.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-check.c
+#
+#Include:
+
+File: ./modules/unistr/u32-chr
+Hash: 1ef545b51ec0c964f4a9476466a69e63f79c453c5d5263f0b24bfb9618acdcbe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in piece of UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-chr.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-chr.c
+#
+#Include:
+
+File: ./modules/unistr/u32-cmp
+Hash: a89c5d8292e8294b4e754de419a6bacd5f1af4a6fa42dd0eb5c5833cd60cdff4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare pieces of UTF-32 strings.
+#
+#Files:
+#lib/unistr/u32-cmp.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-cmp.c
+#
+#Include:
+
+File: ./modules/unistr/u32-cmp2
+Hash: 59b45d7fd7ecfd2c32cd59c72eb001f51c33df3f1d790f91be50da090076f70e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare pieces of UTF-32 strings with possibly different lengths.
+#
+#Files:
+#lib/unistr/u32-cmp2.c
+#lib/unistr/u-cmp2.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-cmp
+#minmax
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u32-cpy
+Hash: 19a8f09d63a3fc5788ed016282639b16e694ce41efef0b9c98cb998cd6cda60a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-cpy.c
+#lib/unistr/u-cpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-cpy.c
+
+File: ./modules/unistr/u32-cpy-alloc
+Hash: bbe7c52e264a76ae6b197122f7ef7d5644bae478ae870e3877a6d275cf272437
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-cpy-alloc.c
+#lib/unistr/u-cpy-alloc.h
+#
+#Depends-on:
+#unistr/base
+#malloc-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-cpy-alloc.c
+
+File: ./modules/unistr/u32-endswith
+Hash: 12d65828740c811526f183278620b0767e19b7e189d698648b48fec0bcf641b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-32 strings.
+#
+#Files:
+#lib/unistr/u32-endswith.c
+#lib/unistr/u-endswith.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strlen
+#unistr/u32-cmp
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u32-mblen
+Hash: dfd5b7f9f5ddd7f8cda044e2ce8e4b9812b85498250cc94f9a1afc31e3ce9f7a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-mblen.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-mblen.c
+#
+#Include:
+
+File: ./modules/unistr/u32-mbsnlen
+Hash: c31250e54523ca128b3ed988d971d7e11660e697418e817492b0bf560f6c4224
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Count characters in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-mbsnlen.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-mbsnlen.c
+#
+#Include:
+
+File: ./modules/unistr/u32-mbtouc
+Hash: 97fab0b684c47ef8efe41fb02737feafbf66aa909ed50d38a9f2b22b177eb150
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-mbtouc.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u32-mbtouc])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-mbtouc.c
+
+File: ./modules/unistr/u32-mbtouc-unsafe
+Hash: adf485282664d86d231c518cf90e384edff8e45d6856c08a74d01bdffe9c1b31
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-mbtouc-unsafe.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u32-mbtouc-unsafe])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-mbtouc-unsafe.c
+
+File: ./modules/unistr/u32-mbtoucr
+Hash: 43802ecda3d739f61ee96e307a9e89513827787a3fea19d6bc619e2fe75ce235
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-32 string, returning an error code upon failure.
+#
+#Files:
+#lib/unistr/u32-mbtoucr.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u32-mbtoucr])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-mbtoucr.c
+
+File: ./modules/unistr/u32-move
+Hash: 598e84fe64fcc32320d43558f207c4c2f650cca4176da169ebdb525e96870337
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-move.c
+#lib/unistr/u-move.h
+#
+#Depends-on:
+#unistr/base
+#memmove
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-move.c
+
+File: ./modules/unistr/u32-next
+Hash: a1643b07f52eee7629ead82e69379068917e0731aceb00c5758875c59b7c8147
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Iterate over next character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-next.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-next.c
+#
+#Include:
+
+File: ./modules/unistr/u32-prev
+Hash: 4d810016048f7288e2ed8abbe5aad802e978554e6bd59751bd32ef757a2a44bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Iterate over previous character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-prev.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-prev.c
+#
+#Include:
+
+File: ./modules/unistr/u32-set
+Hash: e4c2e34d50001462cac8a78eeb9a2934842aa8fcd830c164b8c5c6a9b29e6989
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Fill UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-set.c
+#lib/unistr/u-set.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-set.c
+
+File: ./modules/unistr/u32-startswith
+Hash: 3c5ca341b07d6b8cb9d89b7c9112d3800ceb600f646ffbcaf130f419ae525439
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-32 strings.
+#
+#Files:
+#lib/unistr/u32-startswith.c
+#lib/unistr/u-startswith.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-startswith.c
+
+File: ./modules/unistr/u32-stpcpy
+Hash: b446f2c8936a11f4cd5e1aeb26c2b5ee54e00895f295c64150bedbe7d7bf9aaf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-stpcpy.c
+#lib/unistr/u-stpcpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-stpcpy.c
+
+File: ./modules/unistr/u32-stpncpy
+Hash: 1316df8fbcf81888ec6a060e7b50dc78bfa42fb1984fa53cf718c80904c3094f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-stpncpy.c
+#lib/unistr/u-stpncpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-stpncpy.c
+
+File: ./modules/unistr/u32-strcat
+Hash: 4c925e546f690a456f6e577a025389a0b3eb5b209801629047b2dde3b94f3509
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Concatenate UTF-32 strings.
+#
+#Files:
+#lib/unistr/u32-strcat.c
+#lib/unistr/u-strcat.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strcat.c
+
+File: ./modules/unistr/u32-strchr
+Hash: 56f174656fdf4adad996c9f8c5c24a5f740352e7628b1ba77506deb6a37f9cdc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strchr.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strchr.c
+#
+#Include:
+
+File: ./modules/unistr/u32-strcmp
+Hash: 7065d4bc58252885bb48ffd390e2598b13e53b629f99b1bb9ce9c64d6bc3ebfb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-32 strings.
+#
+#Files:
+#lib/unistr/u32-strcmp.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strcmp.c
+#
+#Include:
+
+File: ./modules/unistr/u32-strcoll
+Hash: 5613745c45e9990b47ddb6d591605f89411d5270bc593481cd5009218c2396a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-32 strings using the collation rules of the current locale.
+#
+#Files:
+#lib/unistr/u32-strcoll.c
+#lib/unistr/u-strcoll.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strcmp
+#uniconv/u32-strconv-to-locale
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u32-strcpy
+Hash: fcc34d80ea5d8c6e8f9b81a5f304c610e56a561c384184f7828b174b8030d889
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strcpy.c
+#lib/unistr/u-strcpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strcpy.c
+
+File: ./modules/unistr/u32-strcspn
+Hash: 2bc19f0ef48e258551cd82ccd6ae6acab80afd51324e942dbc96d2777e9e0e06
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strcspn.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strlen
+#unistr/u32-strchr
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strcspn.c
+
+File: ./modules/unistr/u32-strdup
+Hash: a86383941494d5eabe2c7c18986a45f1949520c0bb308324490f6c8c33bcad06
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strdup.c
+#lib/unistr/u-strdup.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strdup.c
+
+File: ./modules/unistr/u32-strlen
+Hash: cac5e41b27597a0e6ea06e373da8c27d86c950ac67e32dead50003e539f7fe43
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine length of UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strlen.c
+#lib/unistr/u-strlen.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strlen.c
+
+File: ./modules/unistr/u32-strmblen
+Hash: 0a39dd66f226db1655fa8adde6900e597ce8cb093af6419a0773394bf43e8bf2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strmblen.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strmblen.c
+#
+#Include:
+
+File: ./modules/unistr/u32-strmbtouc
+Hash: b549c1a44c55d0ab2c49f1adebb1920287cd23f3706b970f4597894c034d5e86
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strmbtouc.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strmbtouc.c
+#
+#Include:
+
+File: ./modules/unistr/u32-strncat
+Hash: 57f9cd08214329a7a22ae525087199e02b869335a7d205fabf671f4980de6899
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Concatenate UTF-32 strings.
+#
+#Files:
+#lib/unistr/u32-strncat.c
+#lib/unistr/u-strncat.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strncat.c
+
+File: ./modules/unistr/u32-strncmp
+Hash: e96953d0ea23e21638cfb21463b1dc6a24727b137c96a1a3d55d2863f182f198
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-32 strings.
+#
+#Files:
+#lib/unistr/u32-strncmp.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strncmp.c
+#
+#Include:
+
+File: ./modules/unistr/u32-strncpy
+Hash: 3c1ed4cd48c6daf7faca50c6ea9e58bad9306e1ec96b392ce6941db4e9ae4341
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strncpy.c
+#lib/unistr/u-strncpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strncpy.c
+
+File: ./modules/unistr/u32-strnlen
+Hash: 28f35912d4dd18d1efb1ec1b5ab7370f6c8d5ca60fa4672627d18b96fe6971ce
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine bounded length of UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strnlen.c
+#lib/unistr/u-strnlen.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strnlen.c
+
+File: ./modules/unistr/u32-strpbrk
+Hash: 3d1e9ba187b678b79f07715d90f0fd805860a04670b5b4ec832db44a11c791e2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strpbrk.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strchr
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strpbrk.c
+
+File: ./modules/unistr/u32-strrchr
+Hash: 354743e1655d52b8664156e34b7bbd99f6c10f09221923cfcd72a00f531cc34e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strrchr.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strrchr.c
+#
+#Include:
+
+File: ./modules/unistr/u32-strspn
+Hash: 2c0deed50d3efbf74245bafc93dca86fd3cac1120db9190f93ad2ce047b0931b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strspn.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strchr
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strspn.c
+
+File: ./modules/unistr/u32-strstr
+Hash: 876a50ab36555d6512bff19b244be2ce5f7bdbda514aabc36e7b5ea80559572b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-32 strings.
+#
+#Files:
+#lib/unistr/u32-strstr.c
+#lib/unistr/u-strstr.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-strstr.c
+
+File: ./modules/unistr/u32-strtok
+Hash: 529d687fd41eb8bd1e8c79f8c17b630e83b4293186976cadb38afc021a6a2a0d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Tokenize UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-strtok.c
+#lib/unistr/u-strtok.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u32-strspn
+#unistr/u32-strpbrk
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u32-to-u16
+Hash: 022d4994ff8e18312f8980e63443531a9e85316a1fe116717032e2a79d294bb6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert UTF-32 string to UTF-16 string.
+#
+#Files:
+#lib/unistr/u32-to-u16.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u16-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-to-u16.c
+
+File: ./modules/unistr/u32-to-u8
+Hash: fd3ab8952b1edc44a7b37328238e9a9d259c19ee9ac7d6931f0ebaef8776bc37
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert UTF-32 string to UTF-8 string.
+#
+#Files:
+#lib/unistr/u32-to-u8.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-to-u8.c
+
+File: ./modules/unistr/u32-uctomb
+Hash: 1af030b215d042441496451065fa2a829bef744bba02b1b9ab1e0b2c069f7b89
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Store a character in UTF-32 string.
+#
+#Files:
+#lib/unistr/u32-uctomb.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u32-uctomb])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u32-uctomb.c
+
+File: ./modules/unistr/u8-check
+Hash: e762bd6549a1b7739cfdde71aa4fdc5bcb65de7297b68d3bf0253b675c66ec2c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Check UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-check.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-check.c
+#
+#Include:
+
+File: ./modules/unistr/u8-chr
+Hash: 0f0f61a73f9c721fffacf395adf6390efc059183552a212b322f17396d8badfd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in piece of UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-chr.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-chr.c
+
+File: ./modules/unistr/u8-cmp
+Hash: e53af4cf3c4bbdaf8b40dcfd3d2d9ba20534b044f44a92db805c3acc2ac558f4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare pieces of UTF-8 strings.
+#
+#Files:
+#lib/unistr/u8-cmp.c
+#
+#Depends-on:
+#unistr/base
+#memcmp
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-cmp.c
+
+File: ./modules/unistr/u8-cmp2
+Hash: 00fccbb392a1ea9e5a35b9e5b0e92734f0b03ef7c1bf58e88234e80be6d15034
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare pieces of UTF-8 strings with possibly different lengths.
+#
+#Files:
+#lib/unistr/u8-cmp2.c
+#lib/unistr/u-cmp2.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-cmp
+#minmax
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u8-cpy
+Hash: a8d050dbe93417ef2632e1cd18f25c1ef0d1b02b74ef16a7968e9e3756afad40
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-cpy.c
+#lib/unistr/u-cpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-cpy.c
+
+File: ./modules/unistr/u8-cpy-alloc
+Hash: 7b4a814d0a03e059042bee4ad27e13d8bc3d280393db8d95e0d4bef3466e0f60
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-cpy-alloc.c
+#lib/unistr/u-cpy-alloc.h
+#
+#Depends-on:
+#unistr/base
+#malloc-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-cpy-alloc.c
+
+File: ./modules/unistr/u8-endswith
+Hash: 39adcf4c5bd6e19f7600028d7625f6b4b0e7cbb6b2af481f6ecd787fdf9188ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-8 strings.
+#
+#Files:
+#lib/unistr/u8-endswith.c
+#lib/unistr/u-endswith.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-strlen
+#unistr/u8-cmp
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u8-mblen
+Hash: 408faa587e56fbb1d478e61d61dd03cdc116d3dd92d9b54e6c0c9bfdff5b5276
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-mblen.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-mblen.c
+#
+#Include:
+
+File: ./modules/unistr/u8-mbsnlen
+Hash: f0f2db825748512cee734ad6fa30b49a4609d6f0bd990758476030ab197d3a96
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Count characters in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-mbsnlen.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-mblen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-mbsnlen.c
+
+File: ./modules/unistr/u8-mbtouc
+Hash: 518c26f031f4bf33f4ada1641e839d4332c8e1ed7e5c6044b3d9042aff5d4ba0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-mbtouc.c
+#lib/unistr/u8-mbtouc-aux.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u8-mbtouc])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-mbtouc.c unistr/u8-mbtouc-aux.c
+
+File: ./modules/unistr/u8-mbtouc-unsafe
+Hash: 3de70315efd5082b08b82696cb8607aed3a9ce70772847e7404961630d4565d1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-mbtouc-unsafe.c
+#lib/unistr/u8-mbtouc-unsafe-aux.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u8-mbtouc-unsafe])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-mbtouc-unsafe.c unistr/u8-mbtouc-unsafe-aux.c
+
+File: ./modules/unistr/u8-mbtoucr
+Hash: fa50e84a06148660a72bf6793ab1ab735d876fc58d4af10d3da13089aebbba73
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-8 string, returning an error code upon failure.
+#
+#Files:
+#lib/unistr/u8-mbtoucr.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u8-mbtoucr])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-mbtoucr.c
+
+File: ./modules/unistr/u8-move
+Hash: 266f706359ff6fa14c20e575e16bc5485d3353b6f89c410ac93dcf41601669b8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy piece of UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-move.c
+#lib/unistr/u-move.h
+#
+#Depends-on:
+#unistr/base
+#memmove
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-move.c
+
+File: ./modules/unistr/u8-next
+Hash: 1b8d63ec73c8841e2de255038e733d06312add264d5a9d6493a37238415f3476
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Iterate over next character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-next.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-next.c
+#
+#Include:
+
+File: ./modules/unistr/u8-prev
+Hash: 8d5b54525b1e206aceacc33ac18db8f242f680e4ff2108dc4f339cad3d3846bd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Iterate over previous character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-prev.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-prev.c
+#
+#Include:
+
+File: ./modules/unistr/u8-set
+Hash: 0758300e7315732a1bdd6e409ed9ae5a66e81f6af5196c56a13bea90e59ac0d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Fill UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-set.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-set.c
+#
+#Include:
+
+File: ./modules/unistr/u8-startswith
+Hash: ce09cc33ab2257e14a2c13048216ca38145c2a027391108dcad6645cf38d134b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-8 strings.
+#
+#Files:
+#lib/unistr/u8-startswith.c
+#lib/unistr/u-startswith.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-startswith.c
+
+File: ./modules/unistr/u8-stpcpy
+Hash: f51e9e6b3a4e4d55ce408f8332ced953ef2701226945794ca9a736debd142f6a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-stpcpy.c
+#lib/unistr/u-stpcpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#AC_CHECK_FUNCS_ONCE([stpcpy])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-stpcpy.c
+
+File: ./modules/unistr/u8-stpncpy
+Hash: 0509c5614f94701a66adc81cf069f2eceff65e00afe2e8af7e7ee372242fc0ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-stpncpy.c
+#lib/unistr/u-stpncpy.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-stpncpy.c
+
+File: ./modules/unistr/u8-strcat
+Hash: 3d7e5b83ffd692c82ae35edff74365fc2fef6c51d569eb72c701838ceb1ed064
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Concatenate UTF-8 strings.
+#
+#Files:
+#lib/unistr/u8-strcat.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strcat.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strchr
+Hash: 371da7bd92f6327fe7ed4e7adf4a92ac13860b0d5b70cbf74ce84dcc5734c189
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strchr.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strchr.c
+
+File: ./modules/unistr/u8-strcmp
+Hash: 27ac4927a7266ecefb5276252d4ac2aa9fbac030608f00440a41862cc4c9e3ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-8 strings.
+#
+#Files:
+#lib/unistr/u8-strcmp.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strcmp.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strcoll
+Hash: eb8ef55b39888bc59996029734bc4765e587347fd6849c9eabeb537484ad0e47
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-8 strings using the collation rules of the current locale.
+#
+#Files:
+#lib/unistr/u8-strcoll.c
+#lib/unistr/u-strcoll.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-strcmp
+#uniconv/u8-strconv-to-locale
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u8-strcpy
+Hash: 8acb4839e489dfc0b194d9845c1b8818b932ef8788ca3a59091e65274a17cf7a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strcpy.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strcpy.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strcspn
+Hash: 901bde35d4a19fe0038605f60c0121c979df786313ef257d26f7a0cb6ddea390
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strcspn.c
+#lib/unistr/u-strcspn.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-strlen
+#unistr/u8-strmbtouc
+#unistr/u8-strchr
+#
+#configure.ac:
+
+File: ./modules/unistr/u8-strdup
+Hash: 72155a23384c8d68b0792478ea50cef86bf0dbbedede0fc0b21c9692bf679840
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strdup.c
+#lib/unistr/u-strdup.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-strlen
+#
+#configure.ac:
+#AC_CHECK_FUNCS_ONCE([strdup])
+#
+#Makefile.am:
+
+File: ./modules/unistr/u8-strlen
+Hash: 78e1bea871c30a4bb4a24717de55076cb9e9e44b7a82f92c0e29dcfa8c70b47f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine length of UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strlen.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strlen.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strmblen
+Hash: 39d415aa0c53cd0bb4390fc79b42f7fed602cb124da5c9fe08ca0f6ecf66dced
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strmblen.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strmblen.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strmbtouc
+Hash: a2eb24ffc4cd94e7a7c9f774f864b1e8c9ca8d8fb8ab56fc5bf6ec16c06792f8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Look at first character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strmbtouc.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strmbtouc.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strncat
+Hash: 313fefe65e273b4a185b3cb48174e459e354a2aaf8323bf44a5ed65e84e703cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Concatenate UTF-8 strings.
+#
+#Files:
+#lib/unistr/u8-strncat.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strncat.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strncmp
+Hash: 8eddf5eb56c701e04fc346f2637657d112e6ffd19b9b5067cdc426c80d7ab648
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compare UTF-8 strings.
+#
+#Files:
+#lib/unistr/u8-strncmp.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strncmp.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strncpy
+Hash: b8f595c135b53ac6810786b317c5f72b21daf539a08428a70a72d02b1cfafbd9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strncpy.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strncpy.c
+#
+#Include:
+
+File: ./modules/unistr/u8-strnlen
+Hash: df5a00a46fb2149c3bb563bbae6cd56749db185256df83503027242f7127e329
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine bounded length of UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strnlen.c
+#lib/unistr/u-strnlen.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strnlen.c
+
+File: ./modules/unistr/u8-strpbrk
+Hash: cf46d198446f93fc02a87a29251104030023b02667c191c15d097d443a257882
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strpbrk.c
+#lib/unistr/u-strpbrk.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-strmbtouc
+#unistr/u8-strchr
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u8-strrchr
+Hash: 67af768301a77434ce2e829df7f6cc95d934376737252d5687fe2ed4f99d6058
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strrchr.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strrchr.c
+
+File: ./modules/unistr/u8-strspn
+Hash: b254b4d4af0993182505511f6b69a9b43f2fd89167d945c4dec7381b4cd0d393
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Search for some characters in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strspn.c
+#lib/unistr/u-strspn.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-strlen
+#unistr/u8-strmbtouc
+#unistr/u8-cmp
+#unistr/u8-strchr
+#
+#configure.ac:
+
+File: ./modules/unistr/u8-strstr
+Hash: 6ae0bfddf7d25b1db21f7f2022846bd2b9bb1fda741de649f263f1bd422da1af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Substring test for UTF-8 strings.
+#
+#Files:
+#lib/unistr/u8-strstr.c
+#lib/unistr/u-strstr.h
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-strstr.c
+
+File: ./modules/unistr/u8-strtok
+Hash: 6789a23f8b70334a2d70c3957f6e3794923c47f9366315d7ec20d169082ff0c9
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Tokenize UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-strtok.c
+#lib/unistr/u-strtok.h
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-strspn
+#unistr/u8-strpbrk
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/unistr/u8-to-u16
+Hash: 6b1b43f09949fb6925196b2be1a666c19623dffdeeb7412037f390acc3fa99d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert UTF-8 string to UTF-16 string.
+#
+#Files:
+#lib/unistr/u8-to-u16.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-mbtouc
+#unistr/u16-uctomb
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-to-u16.c
+
+File: ./modules/unistr/u8-to-u32
+Hash: d12ae67b97c01738122febaaa36ed901a5cdb13adb9bff527d723b25cb2830b8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert UTF-8 string to UTF-32 string.
+#
+#Files:
+#lib/unistr/u8-to-u32.c
+#
+#Depends-on:
+#unistr/base
+#unistr/u8-mbtouc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-to-u32.c
+
+File: ./modules/unistr/u8-uctomb
+Hash: 91b24fa371c552ef8e0b7ade2830d19fff02c16a71c5cf7540a6df6d37df8786
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Store a character in UTF-8 string.
+#
+#Files:
+#lib/unistr/u8-uctomb.c
+#lib/unistr/u8-uctomb-aux.c
+#
+#Depends-on:
+#unistr/base
+#
+#configure.ac:
+#gl_MODULE_INDICATOR([unistr/u8-uctomb])
+#
+#Makefile.am:
+#lib_SOURCES += unistr/u8-uctomb.c unistr/u8-uctomb-aux.c
+
+File: ./modules/unitypes
+Hash: 3c84fbb1b5987bd3154848f1f8a9455771418452fd66b92cb4e246849d683ac0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base types for Unicode string functions.
+#
+#Files:
+#lib/unitypes.h
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unitypes.h"
+
+File: ./modules/uniwbrk/base
+Hash: d482b7472bbc6482fd9e9f0dd92f23cc0ca9e68ea603067ecf03925aa83dfdde
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for word breaks.
+#
+#Files:
+#lib/uniwbrk.h
+#
+#Depends-on:
+#unitypes
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"uniwbrk.h"
+
+File: ./modules/uniwbrk/table
+Hash: 2799bba2f5960a06740d6d655215f499af718df4c8cc88d09787c6f95d16cc32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#
+#Files:
+#lib/uniwbrk/wbrktable.h
+#lib/uniwbrk/wbrktable.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwbrk/wbrktable.c
+#
+#Include:
+#"uniwbrk/wbrktable.h"
+
+File: ./modules/uniwbrk/u16-wordbreaks
+Hash: d7f70f6d8c5b458af47173ce7928ae07ba100b05546ee8ba67d1ff4f2a9339e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Word breaks in UTF-16 strings.
+#
+#Files:
+#lib/uniwbrk/u16-wordbreaks.c
+#lib/uniwbrk/u-wordbreaks.h
+#
+#Depends-on:
+#uniwbrk/base
+#uniwbrk/wordbreak-property
+#uniwbrk/table
+#unistr/u16-mbtouc-unsafe
+#
+#configure.ac:
+
+File: ./modules/uniwbrk/u16-wordbreaks-tests
+Hash: c0ad0afa38eb38012d0efeb296d1e3c3552da44da4fe9c9edf7c4c49ad839c1a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwbrk/test-u16-wordbreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-wordbreaks
+#check_PROGRAMS += test-u16-wordbreaks
+#test_u16_wordbreaks_SOURCES = uniwbrk/test-u16-wordbreaks.c
+
+File: ./modules/uniwbrk/u32-wordbreaks
+Hash: 3078e02d1f069bff3f8954303d781186bd57696ce962b99fd6d463edcaa7886e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Word breaks in UTF-32 strings.
+#
+#Files:
+#lib/uniwbrk/u32-wordbreaks.c
+#lib/uniwbrk/u-wordbreaks.h
+#
+#Depends-on:
+#uniwbrk/base
+#uniwbrk/wordbreak-property
+#uniwbrk/table
+#unistr/u32-mbtouc-unsafe
+#
+#configure.ac:
+
+File: ./modules/uniwbrk/u32-wordbreaks-tests
+Hash: 63feee9699766ae3a2d981e1afce46021c4162eb71fe500dec6cb7425c8f051e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwbrk/test-u32-wordbreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-wordbreaks
+#check_PROGRAMS += test-u32-wordbreaks
+#test_u32_wordbreaks_SOURCES = uniwbrk/test-u32-wordbreaks.c
+
+File: ./modules/uniwbrk/u8-wordbreaks
+Hash: 8b9a2479ce00d2ea86f22bf74d08fd9e4144e6f802e825345a069a97544b64bf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Word breaks in UTF-8 strings.
+#
+#Files:
+#lib/uniwbrk/u8-wordbreaks.c
+#lib/uniwbrk/u-wordbreaks.h
+#
+#Depends-on:
+#uniwbrk/base
+#uniwbrk/wordbreak-property
+#uniwbrk/table
+#unistr/u8-mbtouc-unsafe
+#
+#configure.ac:
+
+File: ./modules/uniwbrk/u8-wordbreaks-tests
+Hash: f449dca432c9d000b9dcf7156aebdacb6a5458a2aaa98b163031199f4d7a0a5c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwbrk/test-u8-wordbreaks.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-wordbreaks
+#check_PROGRAMS += test-u8-wordbreaks
+#test_u8_wordbreaks_SOURCES = uniwbrk/test-u8-wordbreaks.c
+
+File: ./modules/uniwbrk/ulc-wordbreaks
+Hash: 1960fd867aafb45907b1a05155d61fd72f1298a693482083df733ad1f4ac5b22
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Word breaks in strings.
+#
+#Files:
+#lib/uniwbrk/ulc-wordbreaks.c
+#
+#Depends-on:
+#uniwbrk/base
+#uniwbrk/u8-wordbreaks
+#unilbrk/ulc-common
+#uniconv/u8-conv-from-enc
+#c-ctype
+#localcharset
+#
+#configure.ac:
+
+File: ./modules/uniwbrk/ulc-wordbreaks-tests
+Hash: cf79df0da1d74f9bc16ddfb86ae51b61a11053258ca11d95a60edad1a55975f1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwbrk/test-ulc-wordbreaks.sh
+#tests/uniwbrk/test-ulc-wordbreaks.c
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR
+#
+#Makefile.am:
+#TESTS += uniwbrk/test-ulc-wordbreaks.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' LOCALE_FR='@LOCALE_FR@'
+#check_PROGRAMS += test-ulc-wordbreaks
+
+File: ./modules/uniwbrk/wordbreak-property
+Hash: 8d79911936415bdaa5a026169572855d941dd4c7e3a5b73929ee71014485e918
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for word breaks.
+#
+#Files:
+#lib/uniwbrk/wordbreak-property.c
+#lib/uniwbrk/wbrkprop.h
+#
+#Depends-on:
+#uniwbrk/base
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwbrk/wordbreak-property.c
+
+File: ./modules/uniwidth/base
+Hash: 3586e1904006e2ff3b99c322d51a9d93d5ae389bb64cc98c42574fde384b9d96
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Base layer for Unicode string width.
+#
+#Files:
+#lib/uniwidth.h
+#lib/localcharset.h
+#
+#Depends-on:
+#unitypes
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/uniwidth/u16-strwidth
+Hash: 647245c0f7f5245e452c16a7277d9fa55dce164e88828579f741cd7161453550
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine display width of UTF-16 string.
+#
+#Files:
+#lib/uniwidth/u16-strwidth.c
+#
+#Depends-on:
+#uniwidth/base
+#uniwidth/u16-width
+#unistr/u16-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwidth/u16-strwidth.c
+
+File: ./modules/uniwidth/u16-strwidth-tests
+Hash: fc680b14fa92a63747604225594434c464e284f4ddd63cd26ca707b9218f204e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwidth/test-u16-strwidth.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-strwidth
+#check_PROGRAMS += test-u16-strwidth
+#test_u16_strwidth_SOURCES = uniwidth/test-u16-strwidth.c
+
+File: ./modules/uniwidth/u16-width
+Hash: a6a6448321623e86774b6707c62650ff8a42e78980b5225ec46ffbf15cabd495
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine display width of UTF-16 string.
+#
+#Files:
+#lib/uniwidth/u16-width.c
+#
+#Depends-on:
+#uniwidth/base
+#uniwidth/width
+#unistr/u16-mbtouc-unsafe
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwidth/u16-width.c
+
+File: ./modules/uniwidth/u16-width-tests
+Hash: ffc13ce1b559cb247a4eee44d1dee158808875bf29e78f5e5a71a6661e5a0194
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwidth/test-u16-width.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u16-width
+#check_PROGRAMS += test-u16-width
+#test_u16_width_SOURCES = uniwidth/test-u16-width.c
+
+File: ./modules/uniwidth/u32-strwidth
+Hash: 4f122cf229d732419564e8ae27aba5c45041cc3af9a7df0cc8e4b077f19dab08
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine display width of UTF-32 string.
+#
+#Files:
+#lib/uniwidth/u32-strwidth.c
+#
+#Depends-on:
+#uniwidth/base
+#uniwidth/u32-width
+#unistr/u32-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwidth/u32-strwidth.c
+
+File: ./modules/uniwidth/u32-strwidth-tests
+Hash: d68ce5199592ac78150411b271dd19a9bedb90e2da4a4e786fffd7a76f005a98
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwidth/test-u32-strwidth.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-strwidth
+#check_PROGRAMS += test-u32-strwidth
+#test_u32_strwidth_SOURCES = uniwidth/test-u32-strwidth.c
+
+File: ./modules/uniwidth/u32-width
+Hash: e31da64c351f3a30e812efbec790479ca725fc6a73c6f9ab9097f83f6952b958
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine display width of UTF-32 string.
+#
+#Files:
+#lib/uniwidth/u32-width.c
+#
+#Depends-on:
+#uniwidth/base
+#uniwidth/width
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwidth/u32-width.c
+
+File: ./modules/uniwidth/u32-width-tests
+Hash: 8966b816cbed7089ccb6d1958a94464d24ddc56835b9f2373c1883f63a1fbeab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwidth/test-u32-width.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u32-width
+#check_PROGRAMS += test-u32-width
+#test_u32_width_SOURCES = uniwidth/test-u32-width.c
+
+File: ./modules/uniwidth/u8-strwidth
+Hash: c4026a9176a0c66b80e93cf80a633682b9301a186a0f741dc9bda322e3520497
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine display width of UTF-8 string.
+#
+#Files:
+#lib/uniwidth/u8-strwidth.c
+#
+#Depends-on:
+#uniwidth/base
+#uniwidth/u8-width
+#unistr/u8-strlen
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwidth/u8-strwidth.c
+
+File: ./modules/uniwidth/u8-strwidth-tests
+Hash: b51f991886abd37c01ac192f25153fee276acc957110eaa0d00d7dd878960193
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwidth/test-u8-strwidth.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-strwidth
+#check_PROGRAMS += test-u8-strwidth
+#test_u8_strwidth_SOURCES = uniwidth/test-u8-strwidth.c
+
+File: ./modules/uniwidth/u8-width
+Hash: 13f689e5bdf202aa24b776a52e12d49e0e0f6787793d093ada614e8648b8c447
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine display width of UTF-8 string.
+#
+#Files:
+#lib/uniwidth/u8-width.c
+#
+#Depends-on:
+#uniwidth/base
+#uniwidth/width
+#unistr/u8-mbtouc-unsafe
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwidth/u8-width.c
+
+File: ./modules/uniwidth/u8-width-tests
+Hash: 2bb505810e270e60abdcfef3b629aa17611580d374703e82bdbcffa25b6e7a07
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwidth/test-u8-width.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-u8-width
+#check_PROGRAMS += test-u8-width
+#test_u8_width_SOURCES = uniwidth/test-u8-width.c
+
+File: ./modules/uniwidth/width
+Hash: 6c90cc51c79e162e44efaac12316c8c1bf904251dfc30ff95df903a60fddb7ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine display width of Unicode character.
+#
+#Files:
+#lib/uniwidth/width.c
+#lib/uniwidth/cjk.h
+#
+#Depends-on:
+#uniwidth/base
+#streq
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += uniwidth/width.c
+
+File: ./modules/uniwidth/width-tests
+Hash: d2a94933efed06c9b2c93e453c51e0bea1644b13025a45bb2e4d7f7a134f017d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/uniwidth/test-uc_width.c
+#tests/uniwidth/test-uc_width2.c
+#tests/uniwidth/test-uc_width2.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-uc_width uniwidth/test-uc_width2.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-uc_width test-uc_width2
+#test_uc_width_SOURCES = uniwidth/test-uc_width.c
+#test_uc_width2_SOURCES = uniwidth/test-uc_width2.c
+
+File: ./modules/unlink-busy
+Hash: cf3b5582b7024760963d496c895961062b40655c4ccbfffa69c4203ee899b799
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether a running program can be unlinked.
+#
+#Files:
+#m4/unlink-busy.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_FUNC_UNLINK_BUSY_TEXT
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/unlinkdir
+Hash: 961f9dbc8abeddbe1de620774438544ed07d32a8d57b0d2608262dc90b4c2d40
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine whether we can unlink directories.
+#
+#Files:
+#lib/unlinkdir.h
+#lib/unlinkdir.c
+#m4/unlinkdir.m4
+#
+#Depends-on:
+#stdbool
+#priv-set
+#
+#configure.ac:
+#gl_UNLINKDIR
+
+File: ./modules/unlocked-io
+Hash: 10a29316112d376a40710e21f2374085247898d6f97d15efcbaa0c988a9db134
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Enable faster, non-thread-safe stdio functions if available.
+#
+#Files:
+#lib/unlocked-io.h
+#m4/unlocked-io.m4
+#
+#Depends-on:
+#extensions
+#
+#configure.ac:
+#gl_FUNC_GLIBC_UNLOCKED_IO
+#
+#Makefile.am:
+
+File: ./modules/unsetenv
+Hash: 0a83211b238e02290f061d8551bb8dcb6a28d255aec01b89844b3bfb0ba80574
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#unsetenv() function: remove an environment variable.
+#
+#Files:
+#lib/unsetenv.c
+#m4/setenv.m4
+#
+#Depends-on:
+#stdlib
+#unistd
+#environ
+#
+#configure.ac:
+#gl_FUNC_UNSETENV
+#gl_STDLIB_MODULE_INDICATOR([unsetenv])
+
+File: ./modules/update-copyright
+Hash: 2e4db6b5e36ca243b23f39ecc1ff04ee1fa625a292c7ff68a561922fce57955f
+License: 
+Copyright: year list to include the current year
+Licence-Text: 
+#Header: 
+#Description:
+#Update an FSF copyright year list to include the current year.
+#
+#Files:
+#build-aux/update-copyright
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/update-copyright-tests
+Hash: 6ae199954037613567109fe39c4c6783d33b89a42e800e808670137daeba71a0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-update-copyright.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#abs_aux_dir=`cd "$ac_aux_dir"; pwd`
+#AC_SUBST([abs_aux_dir])
+#
+#Makefile.am:
+#TESTS += test-update-copyright.sh
+#TESTS_ENVIRONMENT += PATH='$(abs_aux_dir)'$(PATH_SEPARATOR)"$$PATH"
+
+File: ./modules/uptime
+Hash: 8af60d16f2c9279ddb4a52fa629fdf58f78c8b7f48841926bf691e7cc2733f82
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether /proc/uptime might exist.
+#
+#Files:
+#m4/uptime.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_SYS_PROC_UPTIME
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/useless-if-before-free
+Hash: b4fbea16aa89a4f83a76bfc53ce22893a237dcba989f0fc80e539dca0fc8406f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Detect useless "if" tests before "free" calls.
+#
+#Files:
+#build-aux/useless-if-before-free
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/userspec
+Hash: f7690daa1d2f1b753e9787040ee16f8dc4809bd04085a7c984a4e909e61320af
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Parse a `user:group' specifier (e.g. the first argument of chown utility).
+#
+#Files:
+#lib/inttostr.h
+#lib/userspec.c
+#lib/userspec.h
+#m4/userspec.m4
+#
+#Depends-on:
+#posixver
+#xalloc
+#xstrtol
+#strdup
+#gettext-h
+
+File: ./modules/utf16-ucs4
+Hash: da66714c26922eab20bebafafce8d764b26eff8bcb3d63150d0d80880d0b7971
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion UTF-16 to UCS-4.
+#
+#Files:
+#
+#Depends-on:
+#unistr/u16-mbtouc
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unistr.h"
+
+File: ./modules/utf16-ucs4-unsafe
+Hash: 5cf44d0d88cb9cbf183eb2d13627b2bb4b6241ec46624b43f75b21178d86bbc7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion UTF-16 to UCS-4.
+#
+#Files:
+#
+#Depends-on:
+#unistr/u16-mbtouc-unsafe
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unistr.h"
+
+File: ./modules/utf8-ucs4
+Hash: 7918cc934ad409a54d593def98245ee9ab76c5e4e0101659121492e86323714c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion UTF-8 to UCS-4.
+#
+#Files:
+#
+#Depends-on:
+#unistr/u8-mbtouc
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unistr.h"
+
+File: ./modules/utf8-ucs4-unsafe
+Hash: 3f8a718d34aec97dc029e79cd6d883b739bc502c9f56520b2b3932a0e4dbc7eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Conversion UTF-8 to UCS-4.
+#
+#Files:
+#
+#Depends-on:
+#unistr/u8-mbtouc-unsafe
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#"unistr.h"
+
+File: ./modules/utime
+Hash: 0086e6436338f3bdcf0779814b2ac35c4f0c043fe03fcdd4c5445bd97544ab6d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#utime() function: change access and/or modification times of a file.
+#
+#Status:
+#obsolete
+#
+#Notice:
+#This module is obsolete. It can be removed on 2010-01-01.
+#
+#Files:
+#lib/utime.c
+#m4/utimbuf.m4
+#m4/utime.m4
+#m4/utimes.m4
+#m4/utimes-null.m4
+
+File: ./modules/utimecmp
+Hash: 32fe4db3bb7f813c99e96b80a7ae085537894b2879ee5dcf1b693363ee3e2867
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#compare file time stamps
+#
+#Files:
+#lib/utimecmp.h
+#lib/utimecmp.c
+#m4/utimecmp.m4
+#
+#Depends-on:
+#hash
+#stat-time
+#time
+#utimens
+#xalloc
+#intprops
+
+File: ./modules/utimens
+Hash: 1a3764888caba4228270901f1c6865fcd6f1fc997f9671616e63032837541d15
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Set file access and modification times.
+#
+#Files:
+#lib/utimens.c
+#lib/utimens.h
+#m4/utimbuf.m4
+#m4/utimens.m4
+#m4/utimes.m4
+#
+#Depends-on:
+#errno
+#sys_time
+#time
+
+File: ./modules/vararrays
+Hash: 11b57911d704f4e91720bc43fd37031fb2572f5f0c87207182343c00279f7924
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Variable-length arrays
+#
+#Files:
+#m4/vararrays.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_C_VARARRAYS
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/vasnprintf
+Hash: 0ca1ad02eaa6ba3485e86ae626ef721e9c68bad2f7eed1b0b44dbdfa04c31f7c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#vsprintf with automatic memory allocation and bounded output size.
+#
+#Files:
+#lib/float+.h
+#lib/printf-args.h
+#lib/printf-args.c
+#lib/printf-parse.h
+#lib/printf-parse.c
+#lib/vasnprintf.h
+#lib/vasnprintf.c
+#lib/asnprintf.c
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#m4/longlong.m4
+
+File: ./modules/vasnprintf-posix
+Hash: 6c49ae496f80e7370811c077c14e8a248c1321bc096d0370be6ef63da30b58a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible vsprintf with automatic memory allocation and bounded output
+#size.
+#
+#Files:
+#m4/vasnprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+#frexpl-nolibm
+#printf-frexp
+
+File: ./modules/vasnprintf-posix-tests
+Hash: a745a55e48911374b99312c61633baba5b40028ffb4a5d4eae397f71d7a09223
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vasnprintf-posix.c
+#tests/test-vasnprintf-posix2.sh
+#tests/test-vasnprintf-posix2.c
+#tests/nan.h
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#stdint
+#float
+#
+#configure.ac:
+#gt_LOCALE_FR
+#gt_LOCALE_FR_UTF8
+
+File: ./modules/vasnprintf-tests
+Hash: c9038b619e31e485f0f5f1772bcb765d4e4fe573fb052364bd9d87e718e4d7f7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vasnprintf.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-vasnprintf
+#check_PROGRAMS += test-vasnprintf
+
+File: ./modules/vasprintf
+Hash: 2a5bf142e7b62113b71434bdb41f540a22fa3e2f4988d2cdb1a49889c0ae1b6a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#vsprintf with automatic memory allocation.
+#
+#Notice:
+#If you are using GNU gettext version 0.16.1 or older, add the following options
+#to XGETTEXT_OPTIONS in your po/Makevars:
+#  --flag=asprintf:2:c-format --flag=vasprintf:2:c-format
+#
+#Files:
+#lib/vasprintf.c
+#lib/asprintf.c
+#m4/vasprintf.m4
+#
+#Depends-on:
+#extensions
+
+File: ./modules/vasprintf-posix
+Hash: 87d9366296e00893359df81249d4af46b24987917cdbcb9ddd9917a6384e0e01
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible vsprintf with automatic memory allocation.
+#
+#Files:
+#m4/vasprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#vasprintf
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+#frexpl-nolibm
+#printf-frexp
+
+File: ./modules/vasprintf-posix-tests
+Hash: 0e4e5d206d990fae9f7f9e583594e056290c7ca384fd5f3b2b25846cc4954472
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vasprintf-posix.c
+#tests/nan.h
+#
+#Depends-on:
+#stdint
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-vasprintf-posix
+#check_PROGRAMS += test-vasprintf-posix
+
+File: ./modules/vasprintf-tests
+Hash: 93d7f8b56d3b48d585accaeec8a52e9d82fb0c3bd5be43f87b58ce1d5c0d684d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vasprintf.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-vasprintf
+#check_PROGRAMS += test-vasprintf
+
+File: ./modules/vc-list-files
+Hash: 4060528cc071faf648d4863fa61da87a9d56296ba1dedf4d26a394ac10e20b75
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#list version-controlled files (vc-agnostic)
+#
+#Files:
+#build-aux/vc-list-files
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+#
+#License:
+
+File: ./modules/vc-list-files-tests
+Hash: 672846856b1ad2139f324d719545476ad87078aca3ac134ac448c3378a251b45
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vc-list-files-git.sh
+#tests/test-vc-list-files-cvs.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#abs_aux_dir=`cd "$ac_aux_dir"; pwd`
+#AC_SUBST([abs_aux_dir])
+#
+#Makefile.am:
+#TESTS += test-vc-list-files-git.sh
+#TESTS += test-vc-list-files-cvs.sh
+#TESTS_ENVIRONMENT += PATH='$(abs_aux_dir)'$(PATH_SEPARATOR)"$$PATH"
+
+File: ./modules/vdprintf
+Hash: d90bc5e200dd487a23da97197e9d41b5c7914746b77c99e0c4541ebc7cfe9a0b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#vdprintf() function: print formatted output to a file descriptor
+#
+#Files:
+#lib/vdprintf.c
+#m4/vdprintf.m4
+#
+#Depends-on:
+#stdio
+#vasnprintf
+#full-write
+#errno
+#
+#configure.ac:
+#gl_FUNC_VDPRINTF
+
+File: ./modules/vdprintf-posix
+Hash: 52c74541d4c3fe58758a1b96a6f3492d64f9512c13452020ab184ca8276c1d23
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible vdprintf() function: print formatted output to a file
+#descriptor
+#
+#Files:
+#m4/vdprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#vdprintf
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+#frexpl-nolibm
+
+File: ./modules/vdprintf-posix-tests
+Hash: 4d157c167b21f081760beceb2bf3cd1d8d2ed7ca3e85d70f261c10544a14fd57
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vdprintf-posix.sh
+#tests/test-vdprintf-posix.c
+#tests/test-fprintf-posix.h
+#tests/test-printf-posix.output
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-vdprintf-posix.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-vdprintf-posix
+
+File: ./modules/verify
+Hash: 7b7a55bf8b12b6b043c75e5b36238844c0d81146a20dc6cc4e10615da92bde26
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Compile-time assert-like macros.
+#
+#Files:
+#lib/verify.h
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += verify.h
+#
+#Include:
+#"verify.h"
+
+File: ./modules/verror
+Hash: 31ffe5f9045730d63c11a0e4f2c6099ed5b6add722f8a850c7d15a599939160e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#verror and verror_at_line functions: Error reporting with va_list.
+#
+#Notice:
+#If you are using GNU gettext version 0.16.1 or older, add the following options
+#to XGETTEXT_OPTIONS in your po/Makevars:
+#  --flag=verror:3:c-format --flag=verror_at_line:5:c-format
+#
+#Files:
+#lib/verror.h
+#lib/verror.c
+#
+#Depends-on:
+#error
+#xvasprintf
+
+File: ./modules/version-etc
+Hash: 076ea07214d3703eead804ba12f0102d732b07f8b26b85a033e982959cd64289
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Print --version and bug-reporting information in a consistent format.
+#
+#Files:
+#lib/version-etc.h
+#lib/version-etc.c
+#m4/version-etc.m4
+#
+#Depends-on:
+#gettext-h
+#stdarg
+#
+#configure.ac:
+#gl_VERSION_ETC
+
+File: ./modules/version-etc-fsf
+Hash: 3a09b4e87ffd6f7781b9f472c86691351c56cbdf817a6616c015c7501a22abf5
+License: 
+Copyright: variable for FSF projects
+Licence-Text: 
+#Header: 
+#Description:
+#Copyright variable for FSF projects
+#
+#Files:
+#lib/version-etc-fsf.c
+#
+#Depends-on:
+#version-etc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += version-etc-fsf.c
+#
+#Include:
+
+File: ./modules/version-etc-tests
+Hash: 1327777f181a8daca2a09ff369d10d2152cd63509e9adf5947ed0f223be007cc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-version-etc.c
+#tests/test-version-etc.sh
+#
+#Depends-on:
+#progname
+#version-etc-fsf
+#
+#Makefile.am:
+#TESTS += test-version-etc.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-version-etc
+#test_version_etc_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/vfprintf-posix
+Hash: d64c2cba406b12fcf7403bec84b3248b8aec004325b88a397c41745482edff33
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible vfprintf() function: print formatted output to a stream
+#
+#Files:
+#lib/vfprintf.c
+#m4/vfprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#stdio
+#fseterr
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+
+File: ./modules/vfprintf-posix-tests
+Hash: ef6a0dd485a1a8fa70f5f69cf73e58d5212671dbe76ea475035af6aa8ca211fa
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vfprintf-posix.sh
+#tests/test-vfprintf-posix.c
+#tests/test-fprintf-posix.h
+#tests/test-printf-posix.output
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-vfprintf-posix.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-vfprintf-posix
+
+File: ./modules/vprintf-posix
+Hash: 6413862a090be5b48381c212df58e7ff0125aec71cc08741bee814809663f79a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible vprintf() function: print formatted output to standard output
+#
+#Files:
+#lib/vprintf.c
+#m4/vprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#stdio
+#vfprintf-posix
+#printf-safe
+#
+#configure.ac:
+#gl_FUNC_VPRINTF_POSIX
+
+File: ./modules/vprintf-posix-tests
+Hash: 71e75a75b9e1323affcb2af3b37aa0f9c82187679520918b0ce50e63dc83a229
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vprintf-posix.sh
+#tests/test-vprintf-posix.c
+#tests/test-printf-posix.h
+#tests/test-printf-posix.output
+#
+#Depends-on:
+#stdint
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-vprintf-posix.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@' srcdir='$(srcdir)'
+#check_PROGRAMS += test-vprintf-posix
+
+File: ./modules/vsnprintf
+Hash: 2b8244a8bc283b9b7fba2aa42f4b195f8fe366ded5a28f34a26afa42fa342922
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#vsnprintf() function: print formatted output from an stdarg argument list
+#to a fixed length string
+#
+#Files:
+#lib/vsnprintf.c
+#m4/vsnprintf.m4
+#m4/printf.m4
+#
+#Depends-on:
+#stdio
+#vasnprintf
+#errno
+#
+#configure.ac:
+
+File: ./modules/vsnprintf-posix
+Hash: 7afbc43f411ec81ee764b7423797914265905513ffa6fabcfa4852806a276167
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible vsnprintf() function: print formatted output to a fixed length
+#string
+#
+#Files:
+#m4/vsnprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#vsnprintf
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+#frexpl-nolibm
+
+File: ./modules/vsnprintf-posix-tests
+Hash: c538b182d94e371856cf95289d1df542721db6100735e0afdd794c77cf6507ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vsnprintf-posix.c
+#tests/test-snprintf-posix.h
+#tests/test-vsnprintf.c
+#tests/nan.h
+#
+#Depends-on:
+#stdint
+#float
+#
+#configure.ac:
+#AC_DEFINE([CHECK_VSNPRINTF_POSIX], 1,
+#  [Define to 1 for strict checking in test-vsnprintf.c.])
+#
+#Makefile.am:
+
+File: ./modules/vsnprintf-tests
+Hash: 517e24da52633b20a362061b8d5e2d4a75312ef2da2ed5327bc740f9094a6638
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vsnprintf.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-vsnprintf
+#check_PROGRAMS += test-vsnprintf
+
+File: ./modules/vsprintf-posix
+Hash: 7502f2e441ffbf13ecaaec0b1f6b068fc924286e387c3dadf15e722fdbe435d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible vsprintf() function: print formatted output to a string
+#
+#Files:
+#lib/vsprintf.c
+#m4/vsprintf-posix.m4
+#m4/printf.m4
+#
+#Depends-on:
+#stdio
+#vasnprintf
+#isnand-nolibm
+#isnanl-nolibm
+#frexp-nolibm
+#frexpl-nolibm
+
+File: ./modules/vsprintf-posix-tests
+Hash: ef57fa5c23966009d7847ddbc32559229f2c378ab7769efb6009ab98230bd0c4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-vsprintf-posix.c
+#tests/test-sprintf-posix.h
+#tests/nan.h
+#
+#Depends-on:
+#stdint
+#float
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-vsprintf-posix
+#check_PROGRAMS += test-vsprintf-posix
+
+File: ./modules/wait-process
+Hash: b7a74c9e6cd90602d200af87be99f780df780c45a2fee29eadaf2ca03f84339e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Waiting for a subprocess to finish.
+#
+#Files:
+#lib/wait-process.h
+#lib/wait-process.c
+#m4/wait-process.m4
+#m4/sig_atomic_t.m4
+#
+#Depends-on:
+#fatal-signal
+#error
+#exit
+#xalloc
+#gettext-h
+
+File: ./modules/warnings
+Hash: e81b2d723d4d214468c22e2397796f0c4b9fc0f2828bc4ca5f4568a2e96cddd5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Helper M4 functions for safely adding compiler warning parameters.
+#
+#Files:
+#m4/warnings.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#AC_SUBST([WARN_CFLAGS])
+#
+#License:
+#unlimited
+#
+#Maintainer:
+
+File: ./modules/wchar
+Hash: 7bea4b53cc8e946a5f0639f58ad45143022b056c62d1e7510dbf24d27a83f2bc
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <wchar.h> that works around platform issues.
+#
+#Files:
+#lib/wchar.in.h
+#m4/wchar.m4
+#m4/wint_t.m4
+#
+#Depends-on:
+#include_next
+#link-warning
+#stddef
+#
+#configure.ac:
+#gl_WCHAR_H
+
+File: ./modules/wchar-tests
+Hash: 2577576be9eddcb707d89988c439d01cbd84985f87119bc5dcc4712579bbc58e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-wchar.c
+#
+#Depends-on:
+#verify
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-wchar
+#check_PROGRAMS += test-wchar
+#
+#License:
+#LGPL
+
+File: ./modules/wcrtomb
+Hash: 3ce48f52a57c00a01fc38354c9d389e2180b97a960003f6de07b667b4972b24b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#wcrtomb() function: convert wide character to multibyte character.
+#
+#Files:
+#lib/wcrtomb.c
+#m4/wcrtomb.m4
+#m4/mbrtowc.m4
+#m4/mbstate_t.m4
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#wchar
+
+File: ./modules/wcrtomb-tests
+Hash: 40dfd7d5da9bca4d0b61cdaea8cbee2bebbb0dda4e9aee53236eef6d5ba59585
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-wcrtomb.sh
+#tests/test-wcrtomb.c
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#btowc
+#
+#configure.ac:
+#gt_LOCALE_FR
+#gt_LOCALE_FR_UTF8
+#gt_LOCALE_JA
+
+File: ./modules/wcsnrtombs
+Hash: 3f6c8e9f0e197e5311863cffb9acbb2139c632022ad052e6c9daa48a46b3baed
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#wcsnrtombs() function: convert wide string to string.
+#
+#Files:
+#lib/wcsnrtombs.c
+#lib/wcsrtombs-state.c
+#m4/wcsnrtombs.m4
+#m4/mbrtowc.m4
+#m4/mbstate_t.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#wchar
+
+File: ./modules/wcsnrtombs-tests
+Hash: d827f4771c76ced1482bb8c9c9804b1dbbb17f8b6aa78e2707e3c23f6eeaaf51
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-wcsnrtombs1.sh
+#tests/test-wcsnrtombs2.sh
+#tests/test-wcsnrtombs3.sh
+#tests/test-wcsnrtombs4.sh
+#tests/test-wcsnrtombs.c
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR
+
+File: ./modules/wcsrtombs
+Hash: fe05078bfac5d8e0cec4b9ca0737209213b5836fab881ad5f531fc80aeac555d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#wcsrtombs() function: convert wide string to string.
+#
+#Files:
+#lib/wcsrtombs.c
+#lib/wcsrtombs-state.c
+#m4/wcsrtombs.m4
+#m4/mbrtowc.m4
+#m4/mbstate_t.m4
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+
+File: ./modules/wcsrtombs-tests
+Hash: f76281c8192c2e2c685def38b47ce5224f53ceacc652ee10c7cb1f5a59b3d0b1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-wcsrtombs1.sh
+#tests/test-wcsrtombs2.sh
+#tests/test-wcsrtombs3.sh
+#tests/test-wcsrtombs4.sh
+#tests/test-wcsrtombs.c
+#m4/locale-fr.m4
+#m4/locale-ja.m4
+#m4/locale-zh.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gt_LOCALE_FR
+
+File: ./modules/wctob
+Hash: 841e8708f6cd2c554c2a193f9a81d57f65649c8d2b1f7ec92fd75cb65e33ae58
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#wctob() function: convert wide character to unibyte character.
+#
+#Files:
+#lib/wctob.c
+#m4/wctob.m4
+#m4/locale-fr.m4
+#m4/codeset.m4
+#
+#Depends-on:
+#wchar
+#
+#configure.ac:
+#gl_FUNC_WCTOB
+#gl_WCHAR_MODULE_INDICATOR([wctob])
+
+File: ./modules/wctype
+Hash: 18d8213d39c0529c7c20e76f90d3ab686509c23b402a2028018fb36685488102
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A <wctype.h> that conforms better to C99.
+#
+#Files:
+#lib/wctype.in.h
+#m4/wctype.m4
+#m4/wint_t.m4
+#
+#Depends-on:
+#include_next
+#
+#configure.ac:
+#gl_WCTYPE_H
+#
+#Makefile.am:
+
+File: ./modules/wctype-tests
+Hash: be49f6d3db8c36ed9d867050a33ba9826edd677df187bc17e2624a5b11ada570
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-wctype.c
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-wctype
+#check_PROGRAMS += test-wctype
+#
+#License:
+#LGPL
+
+File: ./modules/wcwidth
+Hash: 1b1ac1d7efd6291414a3a3f489f1268fc9112d32461579c05c975be64b29c020
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine the number of screen columns needed for a character.
+#
+#Files:
+#lib/wcwidth.c
+#m4/wcwidth.m4
+#m4/wchar_t.m4
+#m4/wint_t.m4
+#
+#Depends-on:
+#extensions
+#wchar
+#wctype
+#localcharset
+#streq
+
+File: ./modules/wcwidth-tests
+Hash: 05a5f992e1791afad928046facae2139a90fde83646d3f8b05fd584e7faeffc2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-wcwidth.c
+#
+#Depends-on:
+#localcharset
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-wcwidth
+#check_PROGRAMS += test-wcwidth
+
+File: ./modules/winsz-ioctl
+Hash: c183aec307c705feb0625eb00b95f57e9713dda4959e9b277134f7b54af6a0ec
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether use of TIOCGWINSZ requires sys/ioctl.h.
+#
+#Files:
+#m4/jm-winsz2.m4
+#
+#Depends-on:
+#winsz-termios
+#
+#configure.ac:
+#gl_HEADER_TIOCGWINSZ_NEEDS_SYS_IOCTL
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/winsz-termios
+Hash: 00bc2319cc9a43155ebfcaa9e11de69606dc9ca6b1e4f24365b2d599b378e442
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Test whether use of TIOCGWINSZ requires termios.h.
+#
+#Files:
+#m4/jm-winsz1.m4
+#
+#Depends-on:
+#
+#configure.ac:
+#gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H
+#gl_WINSIZE_IN_PTEM
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/write
+Hash: 65f0f043199edd0909f48c2fe00dcbdac4b987b3055131bc1fecb779928057a7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#POSIX compatible write() function: write data to a file descriptor
+#
+#Files:
+#lib/write.c
+#m4/write.m4
+#
+#Depends-on:
+#unistd
+#raise
+#
+#configure.ac:
+#gl_FUNC_WRITE
+#gl_UNISTD_MODULE_INDICATOR([write])
+
+File: ./modules/write-any-file
+Hash: 0b2868daa83fb7b0fc6971227f8890ebe1b0a16077fb3574d936cbd33cd4ab6d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Determine whether we can write any file.
+#
+#Files:
+#lib/write-any-file.h
+#lib/write-any-file.c
+#m4/write-any-file.m4
+#
+#Depends-on:
+#stdbool
+#priv-set
+#
+#configure.ac:
+#gl_WRITE_ANY_FILE
+
+File: ./modules/xalloc
+Hash: a75de21c7c6ac9d05414cf8ca65d2f1f28ec4e09bfa78549f2c24916f9a779ba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Memory allocation with out-of-memory checking.  Also see xalloc-die.
+#
+#Files:
+#lib/xalloc.h
+#lib/xmalloc.c
+#m4/xalloc.m4
+#
+#Depends-on:
+#inline
+#xalloc-die
+#
+#configure.ac:
+#gl_XALLOC
+
+File: ./modules/xalloc-die
+Hash: c1f26355f82c42d68e2e87babfdd932bcc4ac0bc4ced0df5cc539ca91ce47d93
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Report a memory allocation failure and exit.
+#
+#Files:
+#lib/xalloc-die.c
+#
+#Depends-on:
+#xalloc
+#error
+#gettext-h
+#exitfail
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/xconcat-filename
+Hash: 132e60d6315cb64826b2bbf055e133c55e5a1676982b1fc84c06258c05fff824
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Construct a full filename by concatenating a directory name, a relative
+#filename, and a suffix, with out-of-memory checking.
+#
+#Files:
+#lib/concat-filename.h
+#lib/xconcat-filename.c
+#
+#Depends-on:
+#concat-filename
+#xalloc-die
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/xgetcwd
+Hash: a7e09cd1f414ba952c6567940e45b0b546f60a736da453f52e8c86011386e77d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return the current working directory, without size limitations.
+#
+#Files:
+#lib/xgetcwd.h
+#lib/xgetcwd.c
+#m4/xgetcwd.m4
+#
+#Depends-on:
+#getcwd
+#xalloc
+#stdbool
+#
+#configure.ac:
+#gl_XGETCWD
+
+File: ./modules/xgetdomainname
+Hash: 9b5f18896883e9d6b7b85dc9dafcec3a4caf07cbec4870f37c5922d4d10d84e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return machine's domainname, without size limitations.
+#
+#Files:
+#lib/xgetdomainname.h
+#lib/xgetdomainname.c
+#
+#Depends-on:
+#getdomainname
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += xgetdomainname.h xgetdomainname.c
+
+File: ./modules/xgethostname
+Hash: 069989cc88c61eb54c68862011d9cd7ed14ba4ce66c77a5459368e7618ea4d6c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Return machine's hostname, without size limitations.
+#
+#Files:
+#lib/xgethostname.h
+#lib/xgethostname.c
+#
+#Depends-on:
+#gethostname
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += xgethostname.h xgethostname.c
+
+File: ./modules/xmalloca
+Hash: 1db0db3c1ceba00f88e5deafe38523a85a4161ed736a582c367c7e4b5b5b60b6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Safe automatic memory allocation with out of memory checking.
+#
+#Files:
+#lib/xmalloca.h
+#lib/xmalloca.c
+#
+#Depends-on:
+#malloca
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += xmalloca.c
+
+File: ./modules/xmemcoll
+Hash: 39fc9b14d693e26ef8d1d17e75b9baaaf7ab622e5214aaff03687a8c0afc29a6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Locale dependent memory area comparison, with error checking.
+#
+#Files:
+#lib/xmemcoll.h
+#lib/xmemcoll.c
+#
+#Depends-on:
+#memcoll
+#gettext-h
+#error
+#quotearg
+#exitfail
+#
+#configure.ac:
+
+File: ./modules/xmemdup0
+Hash: 67a8b2bd891aa98a97f64fd443cecf85ccfa37f19b3a0efc1f085c95debf3471
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Copy a block of arbitrary bytes, and append a trailing NUL.
+#
+#Files:
+#lib/xmemdup0.h
+#lib/xmemdup0.c
+#
+#Depends-on:
+#xalloc
+#
+#configure.ac:
+#AC_LIBOBJ([xmemdup0])
+#
+#Makefile.am:
+
+File: ./modules/xmemdup0-tests
+Hash: f736c0573ad3d34f23a78072056d2122ff924e78e7ce98793455cd9f4436948f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-xmemdup0.c
+#
+#Depends-on:
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-xmemdup0
+#check_PROGRAMS += test-xmemdup0
+#test_xmemdup0_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/xnanosleep
+Hash: 9140638a34c9d2e4b145028fb8693d47fcb704ac35b46e473674c9ed7fea8434
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#a more convenient interface to nanosleep
+#
+#Files:
+#lib/xnanosleep.h
+#lib/xnanosleep.c
+#m4/xnanosleep.m4
+#
+#Depends-on:
+#nanosleep
+#time
+#intprops
+#stdbool
+#
+#configure.ac:
+
+File: ./modules/xprintf
+Hash: 9c52d5d2c0ec5381b883d458857e5eb9fd2050a86b96958b3d94d967b687721a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#a wrapper around printf that calls error upon ENOMEM or EILSEQ errors
+#
+#Notice:
+#If you are using GNU gettext version 0.16.1 or older, add the following options
+#to XGETTEXT_OPTIONS in your po/Makevars:
+#  --flag=xprintf:1:c-format --flag=xvprintf:1:c-format
+#  --flag=xfprintf:2:c-format --flag=xvfprintf:2:c-format
+#
+#Files:
+#lib/xprintf.h
+#lib/xprintf.c
+#
+#Depends-on:
+#error
+
+File: ./modules/xprintf-posix
+Hash: 04d54e931a50cfc4cd35870f39dcfff7ff21fc089013aa07b3b3f6bd148b820d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#A wrapper around printf with POSIX compatible format string interpretation,
+#that calls error upon ENOMEM or EILSEQ errors.
+#
+#Files:
+#
+#Depends-on:
+#xprintf
+#vprintf-posix
+#vfprintf-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/xprintf-posix-tests
+Hash: 2f816dd982317210b6b67aea3640c552e241359673bef69e1d8eafa0f238ba62
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-xprintf-posix.sh
+#tests/test-xfprintf-posix.c
+#tests/test-xprintf-posix.c
+#tests/test-fprintf-posix.h
+#tests/test-printf-posix.h
+#tests/test-printf-posix.output
+#
+#Depends-on:
+#stdint
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/xreadlink
+Hash: 95a60a683231c9a0f5320b1e632c3054686a043fdebabed3e896a49f499c8e01
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Reading symbolic links without size limitation.
+#
+#Files:
+#lib/xreadlink.h
+#lib/xreadlink.c
+#
+#Depends-on:
+#areadlink
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += xreadlink.c
+
+File: ./modules/xsetenv
+Hash: 337217e257fc903155c3a171aa46257094e0d9912711837ce03805e93e47755f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#xsetenv() function: set an environment variable, with out-of-memory checking.
+#unsetenv() function: remove an environment variable.
+#
+#Files:
+#lib/xsetenv.h
+#lib/xsetenv.c
+#
+#Depends-on:
+#setenv
+#unsetenv
+#error
+#exit
+#gettext-h
+
+File: ./modules/xsize
+Hash: 95dc1d636c6c00acd3ed20e5ce784c788f897935eb4f3655264213de86dae482
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Checked size_t computations.
+#
+#Files:
+#lib/xsize.h
+#m4/xsize.m4
+#
+#Depends-on:
+#size_max
+#
+#configure.ac:
+#gl_XSIZE
+#
+#Makefile.am:
+#lib_SOURCES += xsize.h
+
+File: ./modules/xstriconv
+Hash: 942bc357d4e8965fd14b1c754c058955bc6c0cd1b795350453d172625d279047
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character set conversion of strings made easy, uses iconv, with out-of-memory
+#checking.
+#
+#Files:
+#lib/xstriconv.h
+#lib/xstriconv.c
+#
+#Depends-on:
+#striconv
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/xstriconveh
+Hash: 4943c4561755ac0e324ebf8e5f238ff15eefe650675186fb5b1793e988dd5559
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Character set conversion of strings made easy, uses iconv, with out-of-memory
+#checking.
+#
+#Files:
+#lib/xstriconveh.h
+#lib/xstriconveh.c
+#
+#Depends-on:
+#striconveh
+#xalloc
+#
+#configure.ac:
+#
+#Makefile.am:
+
+File: ./modules/xstrndup
+Hash: 7ba0a68faaec8f490d934f91875d49013c87b87520d685467174869110eabcbe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Duplicate a bounded initial segment of a string, with out-of-memory checking.
+#
+#Files:
+#lib/xstrndup.h
+#lib/xstrndup.c
+#m4/xstrndup.m4
+#
+#Depends-on:
+#strndup
+#xalloc
+#
+#configure.ac:
+#gl_XSTRNDUP
+
+File: ./modules/xstrtod
+Hash: 128b4ee0746da30fc9f29a1b5f6f95c1401cce18c4242713b24c93f1bf6e8918
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert string to 'double', with error checking.
+#
+#Files:
+#lib/xstrtod.h
+#lib/xstrtod.c
+#m4/xstrtod.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gl_XSTRTOD
+#
+#Makefile.am:
+
+File: ./modules/xstrtoimax
+Hash: d8abe54149e8816b18398bfde53b3e3e804f43ffc85f35e79717798cf5f88915
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert string to 'intmax_t', with error checking.
+#
+#Files:
+#lib/xstrtoimax.c
+#
+#Depends-on:
+#xstrtol
+#strtoimax
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += xstrtoimax.c
+
+File: ./modules/xstrtoimax-tests
+Hash: ed0c5056e3fe1f25e1e8a01656c9be74ae5d5e45506319d4e5bd21703e1a5422
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-xstrtoimax.c
+#tests/test-xstrtoimax.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-xstrtoimax.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-xstrtoimax
+#test_xstrtoimax_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/xstrtol
+Hash: 5cb690ca8bad394d9dc7d2ad5680a49b852c3440914d33562a358485a9ca202a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert string to 'long' or 'unsigned long', with error checking.
+#
+#Files:
+#lib/xstrtol.h
+#lib/xstrtol.c
+#lib/xstrtoul.c
+#lib/xstrtol-error.c
+#m4/xstrtol.m4
+#
+#Depends-on:
+#exitfail
+#error
+#getopt-gnu
+#gettext-h
+
+File: ./modules/xstrtol-tests
+Hash: 50cd2e95398b90848b7d08a47ae7e303a749118f10ce1c6c960c7fe230d22c55
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-xstrtol.c
+#tests/test-xstrtoul.c
+#tests/test-xstrtol.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-xstrtol.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-xstrtol test-xstrtoul
+#test_xstrtol_LDADD = $(LDADD) @LIBINTL@
+#test_xstrtoul_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/xstrtold
+Hash: d29ee03b049e8dafc8f9899418c0b422b9e45283103d405408e6d4d8ed9697f6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert string to 'long double', with error checking.
+#
+#Files:
+#lib/xstrtod.h
+#lib/xstrtod.c
+#lib/xstrtold.c
+#m4/xstrtod.m4
+#
+#Depends-on:
+#stdbool
+#
+#configure.ac:
+#gl_XSTRTOLD
+
+File: ./modules/xstrtoumax
+Hash: 42a9aee1373bf0049f1683212a889da6e6e16873e8a637cc64d1903d7a76f2dd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Convert string to 'uintmax_t', with error checking.
+#
+#Files:
+#lib/xstrtoumax.c
+#
+#Depends-on:
+#xstrtol
+#strtoumax
+#
+#configure.ac:
+#
+#Makefile.am:
+#lib_SOURCES += xstrtoumax.c
+
+File: ./modules/xstrtoumax-tests
+Hash: 27cbe25f094974926313b006fdf804274814be11ea6a0812164eae08ec470449
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-xstrtoumax.c
+#tests/test-xstrtoumax.sh
+#
+#Depends-on:
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-xstrtoumax.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-xstrtoumax
+#test_xstrtoumax_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/xvasprintf
+Hash: a6af5f93a0c236af2d1b802283c3bdce0ea1f2c4dd55454e7e277fc06f94247e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#vasprintf and asprintf with out-of-memory checking.  Also see xalloc-die.
+#
+#Notice:
+#If you are using GNU gettext version 0.16.1 or older, add the following options
+#to XGETTEXT_OPTIONS in your po/Makevars: --flag=xasprintf:1:c-format
+#
+#Files:
+#lib/xvasprintf.h
+#lib/xvasprintf.c
+#lib/xasprintf.c
+#lib/xalloc.h
+#m4/xvasprintf.m4
+#
+#Depends-on:
+
+File: ./modules/xvasprintf-posix
+Hash: 4bc8e2e9c2de1645326347861bed0bfa82dd17c40147bf9ef30d3c0c395b3c4e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#vasprintf and asprintf with POSIX compatible format string interpretation and
+#with out-of-memory checking.  Also see xalloc-die.
+#
+#Files:
+#
+#Depends-on:
+#xvasprintf
+#vasprintf-posix
+#
+#configure.ac:
+#
+#Makefile.am:
+#
+#Include:
+
+File: ./modules/xvasprintf-tests
+Hash: 96c4599e808fbaee60ca768b38fe00a99c224201f3bfa8c359e10bb5887dba9a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-xvasprintf.c
+#
+#Depends-on:
+#progname
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-xvasprintf
+#check_PROGRAMS += test-xvasprintf
+#test_xvasprintf_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/yesno
+Hash: 8b1282449041c482e56df4a5f090b6e7547efd0f06069cc96a430c198de978e6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Read a response from the user, and its classification as matching "yes" or
+#"no".
+#
+#Files:
+#lib/yesno.c
+#lib/yesno.h
+#m4/yesno.m4
+#
+#Depends-on:
+#getline
+#rpmatch
+#stdbool
+#
+#configure.ac:
+
+File: ./modules/yesno-tests
+Hash: 3a33d863e2dfedfb3896bf992c73a1a454a66db29d80b309a77766db787e118b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Files:
+#tests/test-yesno.c
+#tests/test-yesno.sh
+#
+#Depends-on:
+#closein
+#binary-io
+#
+#configure.ac:
+#
+#Makefile.am:
+#TESTS += test-yesno.sh
+#TESTS_ENVIRONMENT += EXEEXT='@EXEEXT@'
+#check_PROGRAMS += test-yesno
+#test_yesno_LDADD = $(LDADD) @LIBINTL@
+
+File: ./modules/yield
+Hash: e86a78bb30ab1dd3068ebdc30c9f5cbc3f61f5fc8c33c26f63bda382c8900ba7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Description:
+#Yielding the processor to other threads.
+#
+#Files:
+#lib/glthread/yield.h
+#m4/yield.m4
+#
+#Depends-on:
+#threadlib
+#
+#configure.ac:
+#gl_YIELD
+#
+#Makefile.am:
+#lib_SOURCES += glthread/yield.h
+
+File: ./posix-modules
+Hash: a5ccaf8a1eb82ecf46eb6b2aa5c191573ba82514eb2a06faae04e262348940c7
+License: GPL-3+ 
+Copyright: 2002-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+##
+## Copyright (C) 2002-2008 Free Software Foundation, Inc.
+##
+## 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
+
+File: ./tests/locale/fr/LC_MESSAGES/test-quotearg.mo
+Hash: aa0b83acbe74a54fa3cd8a775c76808e83114c0a544170c7390bce7ef812a035
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#Þ\12\ 4\95\0\0\0\0\ 2\0\0\0\1c\0\0\0,\0\0\0\ 5\0\0\0<\0\0\0\ 1\0\0\0P\0\0\0\ 1\0\0\0R\0\0\0\ 2\0\0\0T\0\0\0\ 2\0\0\0W\0\0\0\0\0\0\0\ 2\0\0\0\0\0\0\0\0\0\0\0\ 1\0\0\0'\0`\0»\0«\0
+
+File: ./tests/locale/fr/LC_MESSAGES/test-quotearg.po
+Hash: 78381df0a60b4cf5be4ba6df357926269fa34959f18832cdf96c0badc79895e4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+## Message catalog that maps the ASCII replacements for single-quote characters
+## to real single-quote characters.
+## The header entry is commented out on purpose, so that gettext() performs no
+## no character set conversion from the PO file's encoding to the locale
+## encoding. This allows us to use the same PO file in various locales.
+##msgid ""
+##msgstr ""
+##"Project-Id-Version: GNU gnulib\n"
+##"PO-Revision-Date: 2009-01-26 01:02+01:00\n"
+##"Last-Translator: Eric Blake <ebb9@byu.net>\n"
+##"Language-Team: Undetermined <und@li.org>\n"
+##"MIME-Version: 1.0\n"
+##"Content-Type: text/plain; charset=UTF-8\n"
+##"Content-Transfer-Encoding: 8bit\n"
+
+File: ./tests/nan.h
+Hash: 0e920a53922496135430d09f3bfebfc1f03f63142e1f0ff761e842e96d506a56
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Macros for not-a-number.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-alignof.c
+Hash: 8bf8f28addd7565ad3f4256848a2aed22f6b4d89ba5b501f5d3e45273b84af36
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <alignof.h>.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-alloca-opt.c
+Hash: 7be92bd4805798798cc208871e587c60cff48c8fe695b08405cf2dcc866ddbfc
+License: GPL-3+ 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of optional automatic memory allocation.
+#   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-arcfour.c
+Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-arctwo.c
+Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-argmatch.c
+Hash: 374d3cdd98263ea28ad0f3d8c21f8aaf953562d377316a56f32a69534d13603b
+License: GPL-3+ 
+Copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of exact or abbreviated match search.
+#   Copyright (C) 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-argp-2.sh
+Hash: aa582c3a737c286f43630868ea734856d5d74809aed1e967403b6d1e21a96ec6
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for argp.
+## Copyright (C) 2006-2008 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-argp-version-etc-1.sh
+Hash: 14124a44a2d4160fc8d3bde7bef3491c53725766368df8d5b97c5473869753bd
+License: GPL-3+ 
+Copyright: Free Software Foundation, Inc / [0-9]\{4,4\}//' | / 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for argp-version-etc.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-argp-version-etc.c
+Hash: 9894dd1ed11fe0f5567b33d83bddb190020bbbb37e5792cd8a76a9145eb3e7cc
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test suite for argp-version-etc.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   This file is part of the GNUlib Library.
+#
+#   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
+
+File: ./tests/test-argp.c
+Hash: 3b0ecdaec3be7ac59ab04ba51095836c4843d5fe2016294aef19667d894b0503
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test suite for argp.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#   This file is part of the GNUlib Library.
+#
+#   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
+
+File: ./tests/test-argv-iter.c
+Hash: 87ef6b17b9a78fc466aa9cc85627af6f6e0ac63b0d7c82998d4dab47a9bd298f
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test argv iterator
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-arpa_inet.c
+Hash: 79ac8a737e1a83e3bad62ce1868e706a2b08bf46afa32c67681e91beb53462a1
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <arpa/inet.h> substitute.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-array-mergesort.c
+Hash: f9c4ef4dc591cbeac70eba11e9533d59181f12cf12d362e00782f45ecd9c36ed
+License: LGPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of stable-sorting of an array using mergesort.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-array_list.c
+Hash: e03fc7928bfbe8781c744e1c21b70a907264b62c59bce976a7ac04694d5ff6a2
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./tests/test-array_oset.c
+Hash: c0bae0da40c7a22d6504b362bb30545716f1f9ad8bd5ca4a817a809f88197808
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ordered set data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2007.
+#
+#   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
+
+File: ./tests/test-atexit.c
+Hash: 03e140710061dad22ceba20a744340059a599decc42a1f0a57061c370b674eeb
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of execution of program termination handlers.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-atexit.sh
+Hash: e693dded1c3bbe595a21498a71264cec8bb24a8356518618974847660d760774
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-atexit.tmp"
+## Check that an atexit handler is called when main() returns normally.
+#echo > t-atexit.tmp
+#./test-atexit${EXEEXT}
+#if test -f t-atexit.tmp; then
+#  exit 1
+#fi
+#
+## Check that an atexit handler is called when the program is left
+## through exit(0).
+
+File: ./tests/test-avltree_list.c
+Hash: 7eda006f64201339fc1716ebf20c065d5bdad5b0c385ae538ed09804b9100628
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-avltree_oset.c
+Hash: 30f270cd2b85bb909eaa7bbd80590b7f31be418ab29815c404aa0266290f320a
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ordered set data type implementation.
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-avltreehash_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-base64.c
+Hash: f1a00fd1ea70356a96758211f9ee6ac4b85a24414ac54c1d218c21c6df7f8a15
+License: GPL-3+ 
+Copyright: 2004, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Self tests for base64.
+#   Copyright (C) 2004, 2008 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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
+
+File: ./tests/test-binary-io.c
+Hash: c45b392e94b4c908c583df305c095c968079bb2bbe726a7feefc0c7400de5a58
+License: GPL-3+ 
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of binary mode I/O.
+#   Copyright (C) 2005, 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-binary-io.sh
+Hash: 1ed5b40114bb55012cd28394883f8711c6a892ec24cc5ae55877736ff7753a9a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-bin-out1.tmp t-bin-out2.tmp"
+#./test-binary-io${EXEEXT} > t-bin-out1.tmp || exit 1
+#
+#rm -fr $tmpfiles
+#
+#exit 0
+
+File: ./tests/test-bitrotate.c
+Hash: b31c900c0b50eeae92b228ab5590bb3f390daf91535632322fe28d791eb1e0b1
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <bitrotate.h> substitute.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-btowc.c
+Hash: 5ebcafef18833867faa6529b403f9ea8209c5b226325a645d7f4213d0daf22c1
+License: GPL-3+ 
+Copyright: != WEOF); / 2008 Free Software Foundation, Inc / == c);
+Licence-Text: 
+#Header: 
+#/* Test of conversion of unibyte character to wide character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-btowc1.sh
+Hash: b4bac8f44ded39802e8ffbefa260cde10c90ae2f9cb7a3639bcf747a93fe871e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-btowc${EXEEXT} 1
+
+File: ./tests/test-btowc2.sh
+Hash: 0cc0919cbfb0a866d644d13cc08068596b5dac38fb9fe437415b812d0c3b0370
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-btowc${EXEEXT} 2
+
+File: ./tests/test-byteswap.c
+Hash: 54ff0c61e08753f6557e58cbd5a9ec794ca5f2e7f51c605f4188f2803a5da67f
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <byteswap.h> substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-c-ctype.c
+Hash: 13becd45e283e22f97fac9aa9901241affa9a90f9e2e0a10efd1267cb9bada9e
+License: GPL-3+ 
+Copyright: 2005, 2007-2008 Free Software Foundation, Inc / == (c >= 0 && c < 0x80));
+Licence-Text: 
+#Header: 
+#/* Test of character handling in C locale.
+#   Copyright (C) 2005, 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-c-stack.c
+Hash: 3b31d9428c61805262bd02ba033b43f2e82e1152a2cc23f48bae221a7b86dce1
+License: GPL-3+ 
+Copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of c-stack module.
+#   Copyright (C) 2002, 2004, 2006, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-c-stack.sh
+Hash: 5ff4f37644ece982d306be694f3a8f1b7ab0be3f227b9134ed02bf92044cfd94
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-c-stack.tmp"
+#./test-c-stack${EXEEXT} 2> t-c-stack.tmp
+#case $? in
+#  77) cat t-c-stack.tmp >&2; (exit 77); exit 77 ;;
+#  1) ;;
+#  *) (exit 1); exit 1 ;;
+#esac
+#if grep 'stack overflow' t-c-stack.tmp >/dev/null ; then
+#  :
+#else
+
+File: ./tests/test-c-stack2.sh
+Hash: 0f27101d5e51c1531872dbbbfbb5b506368d7d6a144a87856a97f8c6ae1f4ab4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-c-stack2.tmp"
+#
+## Sanitize exit status within a subshell, since some shells fail to
+## redirect stderr on their message about death due to signal.
+#(./test-c-stack${EXEEXT} 1; exit $?) 2> t-c-stack2.tmp
+#
+#case $? in
+#  77) if grep 'stack overflow' t-c-stack2.tmp >/dev/null ; then
+#      if test -z "$LIBSIGSEGV"; then
+#        echo 'cannot tell stack overflow from crash; consider installing libsigsegv' >&2
+
+File: ./tests/test-c-strcase.sh
+Hash: 08c6d116921579362a23059ad95ba47ee824ef9404b810f66d92b225af9669da
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in the C locale.
+#./test-c-strcasecmp${EXEEXT} || exit 1
+#./test-c-strncasecmp${EXEEXT} || exit 1
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  LC_ALL=$LOCALE_FR ./test-c-strcasecmp${EXEEXT} locale || exit 1
+#  LC_ALL=$LOCALE_FR ./test-c-strncasecmp${EXEEXT} locale || exit 1
+#fi
+#
+## Test in a Turkish UTF-8 locale.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+
+File: ./tests/test-c-strcasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-c-strcasestr.c
+Hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
+License: GPL-3+ 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-c-strncasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-c-strstr.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-canonicalize-lgpl.c
+Hash: 75c8baa24049fa693e9d21c4e974cbf52f43450a5b050bec610517bc05fe9464
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of execution of program termination handlers.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-canonicalize-lgpl.sh
+Hash: 81afe45f5b4980a73878cb5e648cd582ecf66655103424ffe60cb82e671243eb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-can-lgpl.tmp ise"
+#mkdir t-can-lgpl.tmp
+#test "x$HAVE_SYMLINK" = xyes \
+#  && ln -s t-can-lgpl.tmp/ket ise \
+#  || { echo "Skipping test: symbolic links not supported on this filesystem"
+#       rm -fr $tmpfiles
+#       exit 77
+#     }
+#(cd t-can-lgpl.tmp \
+# && ln -s bef plo \
+
+File: ./tests/test-canonicalize.c
+Hash: 7c61f923516c2bb3723a7449064aadf6b2ecf9568d3e1e05f1869841160852ad
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of execution of file name canonicalization.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-canonicalize.sh
+Hash: 179eb3794b8e41c6c38fb9483fc9591a1a45870367cf8694ab22293d2a6fb124
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-can.tmp ise"
+#mkdir t-can.tmp
+#test "x$HAVE_SYMLINK" = xyes \
+#  && ln -s t-can.tmp/ket ise \
+#  || { echo "Skipping test: symbolic links not supported on this filesystem"
+#       rm -fr $tmpfiles
+#       exit 77
+#     }
+#(cd t-can.tmp \
+# && ln -s bef plo \
+
+File: ./tests/test-carray_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-ceilf1.c
+Hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards positive infinity.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-ceilf2.c
+Hash: 86a9ed39c606402b92c6f2e5daf06b375f4c08068ac4c300f415df82ff10049a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards positive infinity.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-ceill.c
+Hash: e09b1df767b4364cee38177843c6dcd444e346b8bb5b5161b90d8acec2dbf97b
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards positive infinity.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-closein.c
+Hash: 60b704da91782d85057f15589b9adc2d33e1d034e212d4fe256a6e2bc65ffab7
+License: GPL 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of closein module.
+#   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-closein.sh
+Hash: 24747fa1e687723c702708fb4c239cf6e54f59d0a1ba915784eb47e86e4c29ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#p=t-closein-
+#tmpfiles="${p}in.tmp ${p}xout.tmp ${p}out1.tmp ${p}out2.tmp"
+#
+#echo Hello world > ${p}in.tmp
+#echo world > ${p}xout.tmp
+#
+## Test with seekable stdin; followon process must see remaining data
+#(./test-closein${EXEEXT}; cat) < ${p}in.tmp > ${p}out1.tmp || exit 1
+#cmp ${p}out1.tmp ${p}in.tmp || exit 1
+
+File: ./tests/test-cond.c
+Hash: cdf0a1afb208f062d159f0bae1e25a2c661d41e33bae74c541e2bd6700dbd280
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of condition variables in multithreaded situations.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-copy-acl.c
+Hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of copying of files.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-copy-acl.sh
+Hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#
+#test "$USE_ACL" = 0 &&
+#  {
+#    echo "Skipping test: insufficient ACL support"
+#    exit 77
+#  }
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+
+File: ./tests/test-copy-file.c
+Hash: b07b34ea88cab3fe8cbac959666aac9f3ac02289367135b8bdf8221c2048f83d
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of copying of files.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-copy-file.sh
+Hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+#func_tmpdir ()
+#{
+#  # Use the environment variable TMPDIR, falling back to /tmp. This allows
+#  # users to specify a different temporary directory, for example, if their
+#  # /tmp is filled up or too small.
+#  : ${TMPDIR=/tmp}
+
+File: ./tests/test-count-one-bits.c
+Hash: 0a1addad31c87ba1dc9b2149bec84703e74bf936dc6807f45f0df6c679c99eba
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2007-2008 Free Software Foundation
+# *
+# * 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/>.  */
+
+File: ./tests/test-crc.c
+Hash: e926964a3909208530797cd9796ec1651f592cdf9925dcc36e6e5a566968712f
+License: GPL-3+ 
+Copyright: 2005, 2006, 2007 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005, 2006, 2007 Free Software Foundation
+# *
+# * 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/>.  */
+
+File: ./tests/test-des.c
+Hash: 2be8e95b0dea714ec5eea7bb03ba88c5768d2dc5376db963fa25bfaae842c979
+License: GPL 
+Copyright: 2005, 2007 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005, 2007 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-dirent-safer.c
+Hash: 5a22d0608d61b123ddda55784e14d7d257b9110344b8e19243968d9fa0fd2eff
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test that directory streams leave standard fds alone.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-dirname.c
+Hash: 502e96f62d9a5b6ce322bbae2e2710d9e0d9865dbc4afa1e08fe7abf01fea73e
+License: GPL-3+ 
+Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the gnulib dirname module.
+#   Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-dprintf-posix.c
+Hash: e6f0b4694e38d2d1e76dc966dd73d4afb089176883b07410a1b7f22f1e133b33
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible dprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-dprintf-posix.sh
+Hash: 87cd228811d69c325ed0768128a0b3f461e85a1cf16115f64a097d662d3f21d1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-dprintf-posix.tmp t-dprintf-posix.out"
+#./test-dprintf-posix${EXEEXT} > t-dprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-dprintf-posix.tmp > t-dprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-dprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+
+File: ./tests/test-dup2.c
+Hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test duplicating file descriptors.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-dup3.c
+Hash: 42890de08812375aedcb5743bcd75331fbc8fe7f4d79fd79f5df187ce9e10672
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test duplicating file descriptors.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-echo.sh
+Hash: 167c0f782ed61e0c577c8644fe6afd5a8c987ce1f93ba3f28228fe90928fddfe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##! /bin/sh
+#
+## func_exit STATUS
+## exit with status
+#func_exit ()
+#{
+#  (exit $1); exit $1
+#}
+#
+## func_fatal_error message
+## outputs to stderr a fatal error message, and terminates the program.
+#func_fatal_error ()
+#{
+#  echo "test-echo.sh: *** $1" 1>&2
+#  echo "test-echo.sh: *** Stop." 1>&2
+
+File: ./tests/test-environ.c
+Hash: 7f9aff3986d989fd5967abe2d2b072d678411dd664064aef0639f7a7602921bd
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of environ variable.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-errno.c
+Hash: ca54e2c0451c2ff331290635dc29a1c8f47a42e28a5e85dec52c78e70fa8e810
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <errno.h> substitute.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-exclude.c
+Hash: 8ebd7047d8c758e1bb24cb360d2ab93d441a88f10b84384950d69c2977c4165d
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test suite for exclude.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   This file is part of the GNUlib Library.
+#
+#   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
+
+File: ./tests/test-exclude1.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-exclude2.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-exclude3.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-exclude4.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-exclude5.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-exclude6.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-exclude7.sh
+Hash: 0eb276c7f21ee98c1d908a6b400b47d53318960c5ef9a28f22236817080414f6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for exclude.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-fbufmode.c
+Hash: f8bb902cbd6174946430fea20f8b499d96ef441a74fe87b603adc43f53b24ba9
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fbufmode() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fchdir.c
+Hash: 1ede59e2649f54965b96b11e3defba44f756e66e2f0c750d5f950f4dbe196fa7
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test changing to a directory named by a file descriptor.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fcntl-h.c
+Hash: 356ce47d3e2061b396a00244416fae41a78a4ff320458994f76699c2d5b742d2
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <fcntl.h> substitute.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fcntl-safer.c
+Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a file descriptor.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fdopendir.c
+Hash: 9847782c540349bedfe816a98eff2e2a2b21de374b5eb0bbaa3f59cbb61ae561
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test opening a directory stream from a file descriptor.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fflush.c
+Hash: 69eca960097ee5c280d159ba1477c6fdf640149e0e14e210b536524114a79618
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible fflush() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fflush2.c
+Hash: 0cb46425ac00337c0a55933b576d483da8c84792991892297731d9ffc746f4bd
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible fflush() function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fflush2.sh
+Hash: 9d3df2d637b481f1d5f1437b111dc2061bcf8e995843af8856817103951b1483
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Execute the test only with seekable input stream.
+## The behaviour of fflush() on a non-seekable input stream is undefined.
+#./test-fflush2${EXEEXT} 1 < "$srcdir/test-fflush2.sh" || exit $?
+#./test-fflush2${EXEEXT} 2 < "$srcdir/test-fflush2.sh" || exit $?
+##cat "$srcdir/test-fflush2.sh" | ./test-fflush2${EXEEXT} || exit $?
+#
+#exit 0
+
+File: ./tests/test-file-has-acl.c
+Hash: 6c2949f3e460929b2f8bf6c01aed469b5cc37a1eb1233352638770c3930df5df
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test for presence of ACL.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-file-has-acl.sh
+Hash: b1467dfc3f8068c2ef6833ef9f6e517dbb8289b1f4c720ab888072f32c7a9636
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#
+#test "$USE_ACL" = 0 &&
+#  {
+#    echo "Skipping test: insufficient ACL support"
+#    exit 77
+#  }
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+
+File: ./tests/test-filenamecat.c
+Hash: 2421876d5280739ca72e375a556c1af16509b646f18f3217c4a71c9539b47234
+License: GPL-3+ 
+Copyright: 1996-2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of concatenation of two arbitrary file names.
+#
+#   Copyright (C) 1996-2007, 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/test-filevercmp.c
+Hash: e9a609c14b8dce43bffbf6d67ec08a74092aa14c279914cd27cf603657ead587
+License: GPL 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of filevercmp() function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-flock.c
+Hash: ed2f3659a200c467c8c3c35b233e01ef87c935180aed9e91946bce9883ea62fe
+License: GPL-2+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of flock() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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 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/>.  */
+
+File: ./tests/test-floorf1.c
+Hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards negative infinity.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-floorf2.c
+Hash: 10a5b305844505ce6609f50929a9808ba6d4138eb48356e0d04de85bdafa6e0a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards negative infinity.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-floorl.c
+Hash: 8dd61603c1d098520aa003282269b173ff24e36a22c995a82098236b60c0bd12
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards negative infinity.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fnmatch.c
+Hash: 0949276b897ba2ca32389bb684582366b42e011338d888e27529fe47643863a0
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fnmatch string matching function.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fopen-safer.c
+Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a file stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fopen.c
+Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a file stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fopen.h
+Hash: 138711fb45460e7540a240101be66a478ca421bceef208b4e4cff039b151e64e
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a file stream.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fpending.c
+Hash: f674acf1725bc698a2a895260a0ed04e4e7d75079bc902bc25df4eda4626648c
+License: GPL-3+ 
+Copyright: 2004, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Ensure that __fpending works.
+#
+#   Copyright (C) 2004, 2007-2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/test-fpending.sh
+Hash: db7046a61b7536849f3d58ac4a230b874a449d61a4f33331d2a39e3eb40cf26f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfile=
+#trap 'rm -fr $tmpfile' 1 2 3 15
+#
+#tmpfile=test-fpending.t
+#
+#./test-fpending${EXEEXT} > $tmpfile || exit 1
+#
+#rm -fr $tmpfile
+#
+#exit 0
+
+File: ./tests/test-fprintf-posix.c
+Hash: 745ab000bd06f41a498df49ee0daf9fa7feaa93b9f16156e4b958405becd413b
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible fprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fprintf-posix.h
+Hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vsprintf() and sprintf() functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fprintf-posix.sh
+Hash: 99530f369d42274f641c5404f05d6eac54cef4816643f576b94631d3bd50e8ab
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-fprintf-posix.tmp t-fprintf-posix.out"
+#./test-fprintf-posix${EXEEXT} > t-fprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-fprintf-posix.tmp > t-fprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-fprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+
+File: ./tests/test-fprintf-posix2.c
+Hash: 61c448e81f453607a13ca6af87bb998cbde812213f3c001d9ad5bcff9cfe6f57
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible fprintf() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fprintf-posix2.sh
+Hash: 57de5c6be9adb4eb8e8cc416f2c47f934f82f4d3ce6256ce7e72fdfd6a727377
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test out-of-memory handling.
+#
+#(./test-fprintf-posix2${EXEEXT} 0
+# result=$?
+# if test $result != 77 && test $result != 78; then result=1; fi
+# exit $result
+#) 2>/dev/null
+#malloc_result=$?
+#if test $malloc_result = 77; then
+#  echo "Skipping test: getrlimit and setrlimit don't work"
+#  exit 77
+#fi
+
+File: ./tests/test-fpurge.c
+Hash: fc4f811164270032bce572b9c4f9537ea36963aa67e630a450c0258599c8ddec
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fpurge() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-freadable.c
+Hash: 8f818a6a890d5569df82559a4e62b02dfbceff150985e779e219669eebf9ec5a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of freadable() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-freadahead.c
+Hash: 9833934459a057c2572f209afac01879e5ca8a3efda95d6790d17ab9938d1917
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of freadahead() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-freadahead.sh
+Hash: 7d4e9892370ff589533c590bd88ec5f6aea65ce8126c798ab48f96d87cc0de4f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#./test-freadahead${EXEEXT} 0 < "$srcdir/test-freadahead.sh" || exit 1
+#./test-freadahead${EXEEXT} 5 < "$srcdir/test-freadahead.sh" || exit 1
+#exit 0
+
+File: ./tests/test-freading.c
+Hash: 36417f8adf8660daefb24719abfcd2d6df61a952656fe82370e243753bce4bd6
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of freading() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-freadptr.c
+Hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of freadptr() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-freadptr.sh
+Hash: d77d62afd49fb9b006aa3f1b2e41fb246f8f4e6ed232637b8c5efb02e31f6e9d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#./test-freadptr${EXEEXT} 5 < "$srcdir/test-freadptr.sh" || exit 1
+#cat "$srcdir/test-freadptr.sh" | ./test-freadptr${EXEEXT} 5 || exit 1
+#exit 0
+
+File: ./tests/test-freadptr2.c
+Hash: 172582caee47713dffbc5d209a65efb7846049d7b7943b3afde840a9f4a9f210
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of freadptr() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-freadptr2.sh
+Hash: 9e8bf4b4fdad153f5bcaf5d3d9a51c2b362cc5e21262c769e87e36bf29f6f3d3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#./test-freadptr2${EXEEXT} 0 < "$srcdir/test-freadptr2.sh" || exit 1
+#./test-freadptr2${EXEEXT} 5 < "$srcdir/test-freadptr2.sh" || exit 1
+#exit 0
+
+File: ./tests/test-freadseek.c
+Hash: dd89379556b28cba841ae08e74f0d92b1739c31a7e399dcdec050f4e73a51430
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of freadseek() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-freadseek.sh
+Hash: 8c922bdee150c36bbbc68d2273511885bd4f54145ec4e0e0b74333e9ab68c5e1
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#./test-freadseek${EXEEXT} 5 19 6 7 18 9 19 < "$srcdir/test-freadseek.sh" || exit 1
+#cat "$srcdir/test-freadseek.sh" | ./test-freadseek${EXEEXT} 5 19 6 7 18 9 19 || exit 1
+#exit 0
+
+File: ./tests/test-freopen.c
+Hash: 1794fac0885679928991ce38c01ee4e5e23331ca73e89de6fa05c0d731ac9ae6
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a file stream.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-frexp.c
+Hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of splitting a double into fraction and mantissa.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-frexpl.c
+Hash: 06e5c7a95b4f9162db1d74f609c89b24736a09affac663df79cce627cac4355a
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of splitting a 'long double' into fraction and mantissa.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fseek.c
+Hash: ae3126d4ce719f8e50ae5bd6defb067f936333ddd967e018d9d63614e1510ba7
+License: GPL-3+ 
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fseek() function.
+#   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fseek.sh
+Hash: a221109e451414ff3596a9e2fc85ecad8dc9a4b5d41c4be22ca4e8d4bdaaedcf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#./test-fseek${EXEEXT} 1 < "$srcdir/test-fseek.sh" || exit 1
+#echo hi | ./test-fseek${EXEEXT} || exit 1
+#exit 0
+
+File: ./tests/test-fseek2.sh
+Hash: 9312e62b8100ef1a5c959e559f4347907430ddca9ad4854cd611110b0768ad4d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#exec ./test-fseek${EXEEXT} 1 2 < "$srcdir/test-fseek2.sh"
+
+File: ./tests/test-fseeko.c
+Hash: 1560dd162ef0b3cfb7b9b2202b21bf9933c216776fc89f20361e521f162b3ce6
+License: GPL-3+ 
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fseeko() function.
+#   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fseeko.sh
+Hash: 5d1445019d710edf18f8405db195d0e08c95a9f8bb20b59f25e5f0d22e19dba8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#./test-fseeko${EXEEXT} 1 < "$srcdir/test-fseeko.sh" || exit 1
+#echo hi | ./test-fseeko${EXEEXT} || exit 1
+#exit 0
+
+File: ./tests/test-fseeko2.sh
+Hash: 4c322333a62415b01f183b120936fc72916ad98c98b42ee36bc50c14d8651559
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#exec ./test-fseeko${EXEEXT} 1 2 < "$srcdir/test-fseeko2.sh"
+
+File: ./tests/test-fseterr.c
+Hash: 9573252bfae2fe4f10686e73eb86cc0d662f2e25a23b7a4f70036ae38ca30ddf
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test setting the error indicator of a stream.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fstrcmp.c
+Hash: a7b983fc8ba0e4d673899f2631eae4461eeb11be8a5a01a6f57ff6790dde39f9
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fuzzy string comparison.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fsync.c
+Hash: c3f28d94e1d2539f92e889ad3322fbc9b5fcb9c406f9840452cf355766627792
+License: GPL-2+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fsync() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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 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/>.  */
+
+File: ./tests/test-ftell.c
+Hash: b7573164fb69e7149847239bf7ceb7db79f453822f1cbda04e22a52283b3281d
+License: GPL-3+ 
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ftell() function.
+#   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-ftell.sh
+Hash: 86795dd7b612958804e50342aecbc2d23222542142f4e6a6408e4f10a1f6a2dc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#./test-ftell${EXEEXT} 1 < "$srcdir/test-ftell.sh" || exit 1
+#echo hi | ./test-ftell${EXEEXT} || exit 1
+#exit 0
+
+File: ./tests/test-ftell2.sh
+Hash: 9290b195ad04a0d882c97eea29fb2ce8c5a4a9eedd6b43841d516a027908ccd2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#exec ./test-ftell${EXEEXT} 1 2 < "$srcdir/test-ftell2.sh"
+
+File: ./tests/test-ftello.c
+Hash: e34687ed84f4523c387c8408a168176c62b7e3da1d7e5c51fd2dbfdd11b61cf9
+License: GPL-3+ 
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ftello() function.
+#   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-ftello.sh
+Hash: 3fecd8a2adefe6f15a998f136266ef37222cf6273ba1da4cce7d097635bde45e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#./test-ftello${EXEEXT} 1 < "$srcdir/test-ftello.sh" || exit 1
+#echo hi | ./test-ftello${EXEEXT} || exit 1
+#exit 0
+
+File: ./tests/test-ftello2.sh
+Hash: d6d309f9866760abce0c773c476943b19b6201596ed4ce4b3163ca3c5510c760
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#exec ./test-ftello${EXEEXT} 1 2 < "$srcdir/test-ftello2.sh"
+
+File: ./tests/test-func.c
+Hash: bc81ef2fd91ed0c929de4c4958fe9d6af9f4b08a310f02929b7244bc9c3821db
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether __func__ is available
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fwritable.c
+Hash: 319d6c836c355f4f63122cc2f7ba0756183810d27488a8e5a4f09305d31c19d9
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fwritable() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-fwriting.c
+Hash: 499f0954d31a94d7067eb0be27b75766f56ab69c0494e2845759fb24d1703f4e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of fwriting() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-gc-arcfour.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-arctwo.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-des.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-hmac-md5.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-hmac-sha1.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-md2.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-md4.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-md5.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-pbkdf2-sha1.c
+Hash: 7799cf357547a841ccf3afeb7e5d9143abc19ee0a898cb087d2de1bb492bae59
+License: GPL 
+Copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2002, 2003, 2004, 2005, 2007  Free Software Foundation
+# *
+# * 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
+
+File: ./tests/test-gc-rijndael.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc-sha1.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-gc.c
+Hash: 8cb1d73b6c4bd47920f369b94539807ae13559bf31d128fea4584223d60675a0
+License: GPL 
+Copyright: 2005, 2006 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005, 2006 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-getaddrinfo.c
+Hash: 97815c6bb90ea2860ebdfcd9dfc8554dcbfa522d7aa8ba38ddecbc126e096a8d
+License: GPL-3+ 
+Copyright: 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the getaddrinfo module.
+#
+#   Copyright (C) 2006-2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/test-getdate.c
+Hash: 935427c30258eb6e5a9b394cc5d96c1427d7abe260fe0b81fe448b30a4171ba3
+License: GPL 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of getdate() function.
+#   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-getdelim.c
+Hash: c90cc89f32a451ccbfe0910eb584fd389f60f2b051affa2dbe2bdc9d80097081
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of getdelim() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-getdtablesize.c
+Hash: 434e5606cbd9d33002d0e279a6af31645a13f37bf9492b61df63bdd7fac591ce
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of getdtablesize() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-gethostname.c
+Hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008, 2009 Free Software Foundation
+# * Written by Simon Josefsson.
+# *
+# * 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
+
+File: ./tests/test-getline.c
+Hash: 324eb53650a3b992efd3fc0cce526be56e493dac9a686c8f32b40a845358556d
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of getline() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-getndelim2.c
+Hash: ad18c635ec03c40547062fe271ebb6703e1d91c537b7adf63937c9ae962c1913
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of getndelim2() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-getopt.c
+Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of command line argument processing.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-getopt.h
+Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of command line argument processing.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-getopt_long.h
+Hash: 0b2b47e3d9845bd19c82af5b5e31f5c784ce9d35eb8a8b2807eebee18b770af2
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of command line argument processing.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-getpass.c
+Hash: 9a0c1937fde38c70927a4eeb336d442bd6127bc5eb69e09a5cd4deb09e2fc195
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test getpass implementation.
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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
+
+File: ./tests/test-gettimeofday.c
+Hash: 5b419f77d9b7e6e89f7289f386cd548243e4e4adc21e9a52d41d21a027fdf8ee
+License: GPL-3+ 
+Copyright: 2005, 2007 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005, 2007 Free Software Foundation
+# * Written by Jim Meyering.
+# *
+# * 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
+
+File: ./tests/test-glob.c
+Hash: 90a78aa60a23cad4495713152d6c476d4e43d510a6392ab6368173e374d14d04
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of glob/globfree functions.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-hash.c
+Hash: a74fab88b5cf12f0e0d435a4a5e3fd5e55078cae553004def0998b9222616a24
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2009 Free Software Foundation
+# * Written by Jim Meyering
+# *
+# * 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
+
+File: ./tests/test-hmac-md5.c
+Hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# *
+# * 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/>.  */
+
+File: ./tests/test-hmac-sha1.c
+Hash: 8bb173ef978e327974c698b14b135ff61281311769ed40e2d01fbeb5d581c92d
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# *
+# * 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/>.  */
+
+File: ./tests/test-i-ring.c
+Hash: 6f100cd5549d218db3fc88df418a556f9aac62f0bcf54163da4ad21c84ccb129
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the simple ring buffer.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-iconv-utf.c
+Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of character set conversion.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-iconv.c
+Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of character set conversion.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-iconvme.c
+Hash: d82c108598a30a83eb25992c35c31945f938c62e30203a312361e842c432d069
+License: GPL-3+ 
+Copyright: 2004, 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Recode strings between character sets, using iconv.
+#   Copyright (C) 2004, 2005 Free Software Foundation, Inc.
+#   Written by Simon Josefsson.
+#
+#   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
+
+File: ./tests/test-idpriv-drop.c
+Hash: 887a2d06234e0105a076274b1c0cb5a4b97b25977378f755f305ead016dae39e
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of dropping uid/gid privileges of the current process permanently.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-idpriv-drop.sh
+Hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## A POSIX compliant 'id' program.
+#if test -f /usr/xpg4/bin/id; then
+#  ID=/usr/xpg4/bin/id
+#else
+#  ID=id
+#fi
+#
+## The user's original uid and gid.
+#uid=`$ID -u`
+#gid=`$ID -g`
+#
+#if test `$ID -u` = 0; then
+#  # No need to ask for a password.
+
+File: ./tests/test-idpriv-drop.su.sh
+Hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## This script must be run as superuser.
+#
+#origuid=$1
+#origgid=$2
+#
+## A POSIX compliant 'id' program.
+#if test -f /usr/xpg4/bin/id; then
+#  ID=/usr/xpg4/bin/id
+#else
+#  ID=id
+#fi
+#
+#if test `$ID -u` != 0; then
+#  echo "Skipping test: not superuser"
+
+File: ./tests/test-idpriv-droptemp.c
+Hash: 036d78805f967b4753cdba6e50cac8854f7b24390bbf73b5a2d7f0fd6e1c903c
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of dropping uid/gid privileges of the current process temporarily.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-idpriv-droptemp.sh
+Hash: 1b6223eb69f34418350f9987b6bf4b62f92e4629eddbc2fa2099aebf95cf6471
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## A POSIX compliant 'id' program.
+#if test -f /usr/xpg4/bin/id; then
+#  ID=/usr/xpg4/bin/id
+#else
+#  ID=id
+#fi
+#
+## The user's original uid and gid.
+#uid=`$ID -u`
+#gid=`$ID -g`
+#
+#if test `$ID -u` = 0; then
+#  # No need to ask for a password.
+
+File: ./tests/test-idpriv-droptemp.su.sh
+Hash: a12aa9b509fa38494ad1070d79f1131e19b90de504905f5178d209183b8f7d0e
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## This script must be run as superuser.
+#
+#origuid=$1
+#origgid=$2
+#
+## A POSIX compliant 'id' program.
+#if test -f /usr/xpg4/bin/id; then
+#  ID=/usr/xpg4/bin/id
+#else
+#  ID=id
+#fi
+#
+#if test `$ID -u` != 0; then
+#  echo "Skipping test: not superuser"
+
+File: ./tests/test-inttypes.c
+Hash: 8ca6a2b71d7f538cc79e407439bcd512ffca9203636f7cb336cd8c0d12d322fa
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <inttypes.h> substitute.
+#   Copyright (C) 2006-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isfinite.c
+Hash: 192e0aefe852ad279cf33f30acbf1e6a5a685ea90a52bda5174baf39c06cd339
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isfinite() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isinf.c
+Hash: 467c934361d927c8eb3bb47ae9844379ca009c7ebc4845dd28e567813ab1efcb
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isinf() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnan.c
+Hash: f1159b7f32f37a46e32fc884afa11c72818e02511e9332ee213bd99ffe3319f8
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnand() substitute.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnand-nolibm.c
+Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnand() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnand.c
+Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnand() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnand.h
+Hash: 8e193695226b00df98b39792e5eaf4b761d52c5d7d949a8722164c567b58c68a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnand() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnanf-nolibm.c
+Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnanf() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnanf.c
+Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnanf() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnanf.h
+Hash: f0bb065f381e27e3b887c65a054d7b492042dbe1770355b5d8f3995d90479aa0
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnanf() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnanl-nolibm.c
+Hash: d24217e860acd20ff34dacb3bc316ab34a3af4a1d47241da882a51348e4bc34b
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnanl() substitute.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnanl.c
+Hash: a6dad044535d0b8182f8331618c092ddc94769e6aee495678f102047711f05e7
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnanl() substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-isnanl.h
+Hash: 1ccd58e1e4f6b9d59404fddbe589f2e34e40ea508081a567040c100b60b197c3
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of isnanl() substitute.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-ldexpl.c
+Hash: 7ee31a7a49ffebce6a7c8f0225d169567e0be429e67a89882ae1670f5ae9075c
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of multiplying a 'long double' by a power of 2.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-link.c
+Hash: 26cc2a58a305192996a7e8ee065b4bf8254c9b13d4e9f4efbe3c77777e2fc065
+License: GPL-2+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of link() function.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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 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/>.  */
+
+File: ./tests/test-link.sh
+Hash: 1b15e579dd41f894ef55727093cb2490e586dd857fcd726339f4a59203a8fa68
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles="test-link-a.txt test-link-b.txt test-link-c.txt"
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+## Create a file.
+#echo "hello" > test-link-a.txt || exit 1
+#
+## Use link() to create a new name for it.
+#./test-link${EXEEXT} test-link-a.txt test-link-b.txt
+#case $? in
+#  0) ;;
+#  77)
+#    echo "Skipping test: hard links are not supported on this file system"
+#    rm -fr $tmpfiles
+
+File: ./tests/test-linked_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-linkedhash_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-locale.c
+Hash: 13e3a273bd14c7064068652cb01722dab29c3661de434218afc58cf29f5900d8
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <locale.h> substitute.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-localename.c
+Hash: 7695c1b31209fab6aba6c16e3b612f606d1eae1b0720f1781148cab7fd964e7e
+License: GPL-3+ 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of gl_locale_name function.
+#   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-lock.c
+Hash: b995e7ccbf41d3f3ae5e9ed223ede35060a5c1ac152baaf9793fd8bd43210b93
+License: GPL-3+ 
+Copyright: 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of locking in multithreaded situations.
+#   Copyright (C) 2005, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-lseek.c
+Hash: 67b2fb2011956d378309801b9f809b54658434eb8b2a5c6a77b87090bfbfa9ef
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of lseek() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-lseek.sh
+Hash: 103b304131e87f84ebdf7fe51ddbca5d1de74d1b231c0e8d0f1f74edb60aacf4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles=t-lseek.tmp
+## seekable files
+#./test-lseek${EXEEXT} 0 < "$srcdir/test-lseek.sh" > t-lseek.tmp || exit 1
+#
+## pipes
+#echo hi | ./test-lseek${EXEEXT} 1 | cat || exit 1
+#
+## closed descriptors
+#./test-lseek${EXEEXT} 2 <&- >&- || exit 1
+
+File: ./tests/test-lstat.c
+Hash: 9cafdb021e073473c5f16a5b4f74a2ac31579de14aadebbdef5a0f625250d0e8
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of lstat() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-malloca.c
+Hash: 687b864c60a0a939b2d06d15f71bedc6640551c5a46b9d97cf954b7b9dad01aa
+License: GPL-3+ 
+Copyright: 2005, 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of safe automatic memory allocation.
+#   Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-math.c
+Hash: 5e0b0077a9753a2a6ab13b7d12ba7a95c37cc998e3886d96a0c15b55bd951f48
+License: GPL-3+ 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <math.h> substitute.
+#   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbmemcasecmp.c
+Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive memory area comparison function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbmemcasecmp.h
+Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive memory area comparison function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbmemcasecmp1.sh
+Hash: 7304bc74f3d3a258e8210ea8a863f27aab54802b024dabb25a34b9549960b9f5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbmemcasecmp${EXEEXT} 1
+
+File: ./tests/test-mbmemcasecmp2.sh
+Hash: d16fd0422c4a2d96385d5b90b9c0f2c8f969de1dd4a33c5bb02fa4ac381f6f4d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbmemcasecmp${EXEEXT} 2
+
+File: ./tests/test-mbmemcasecmp3.sh
+Hash: eb492e8155da1b1de4e2250f06e478962793d6cabe9a519fd2384d15110677e7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbmemcasecmp${EXEEXT} 3
+
+File: ./tests/test-mbmemcasecoll.c
+Hash: e4a14c5260b409ddd924e4524e9dc399f02ce6a6a15956f4cae0cf0838ce4665
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive memory area comparison function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbmemcasecoll1.sh
+Hash: faed7a5be2e3810c0ffc7a90a52082c8f5cf3db405497a7e9010d2c719231ff6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbmemcasecoll${EXEEXT} 1
+
+File: ./tests/test-mbmemcasecoll2.sh
+Hash: f4fab277f9f292c7d753f3600aff43593c48069a4a3f6265958aa87a8c312491
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbmemcasecoll${EXEEXT} 2
+
+File: ./tests/test-mbmemcasecoll3.sh
+Hash: 331ac5a20f06f5d44432e5fa4396101952cb6e60bbaf36beee49e11ca7933770
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbmemcasecoll${EXEEXT} 3
+
+File: ./tests/test-mbrtowc.c
+Hash: 9e6ff6c6e393938dfae1ad3aa59b09a1aff3de7914e1d9b850ea0c62a2865a0a
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion of multibyte character to wide character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbrtowc1.sh
+Hash: aa376c39dd66d55e6cbbc2acb3c88909aef3ab2b5dd2b88b64237d1a5113a325
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbrtowc${EXEEXT} 1
+
+File: ./tests/test-mbrtowc2.sh
+Hash: d05e570292161c8c07a2800cbb86f2f1daad410c45f9cc4d75885cb775ef3edd
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbrtowc${EXEEXT} 2
+
+File: ./tests/test-mbrtowc3.sh
+Hash: a961e18d55829ef9ae6b5b67be607ed9c09ad44805d1958dec5a216b8b2d4dd2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-mbrtowc${EXEEXT} 3
+
+File: ./tests/test-mbrtowc4.sh
+Hash: edcefd4d5f047e46e09c57c8f49fd8a5acf6198d6e1457b0b0f8d0a35c8acb36
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbrtowc${EXEEXT} 4
+
+File: ./tests/test-mbscasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbscasecmp.sh
+Hash: c400cba3bdc37f57ff59514590ef1c1ffb525def25363dc057cb795350258088
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbscasecmp${EXEEXT}
+
+File: ./tests/test-mbscasestr1.c
+Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbscasestr2.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbscasestr2.sh
+Hash: 7625b9217b1cb7efd0991f90f4f63de80e96364a81c197d42ff0ea48ff92474a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbscasestr2${EXEEXT}
+
+File: ./tests/test-mbscasestr3.c
+Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbscasestr3.sh
+Hash: 7bea28d4bcddc0db1d408f47ea4d152507a19397c06a739f5f996b2dcbb95f8c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no chinese GB18030 locale is installed"
+#  else
+#    echo "Skipping test: no chinese GB18030 locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbscasestr3${EXEEXT}
+
+File: ./tests/test-mbscasestr4.c
+Hash: 7d3a2bf92400fa4f1fbd6648bee578f8cbe1004908b60fa9b87c5e03896a02f1
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbscasestr4.sh
+Hash: 7499e59252f59878b81950d351ed8786d455589a88cd005e7ff98abd521ae4b7
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbscasestr4${EXEEXT}
+
+File: ./tests/test-mbschr.c
+Hash: e5d6bd10ed694e87f1e1f158fda3d9e3bfe798703c35c003123ad801a988cd9e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching a string for a character.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbschr.sh
+Hash: 7a680a0884655b6591b91b98d2e0192e1defe778a12f3a5bf271aa6a761692a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no chinese GB18030 locale is installed"
+#  else
+#    echo "Skipping test: no chinese GB18030 locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbschr${EXEEXT}
+
+File: ./tests/test-mbscspn.c
+Hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching a string for a character among a given set of characters.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbscspn.sh
+Hash: 15cc680a7cb6f0f0f80715a88a5c62b67c5ae2c99589420be9f5a7312d252e3a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbscspn${EXEEXT}
+
+File: ./tests/test-mbsinit.c
+Hash: 0a0f9a89e23f44ce8d21a21ec2345e1f3022ba9e3e35e2705f7347e5d3da89c9
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test for initial conversion state.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsinit.sh
+Hash: 104168895eecfbae80f96f8abd4c73822d9dcb2ce305f8020a0424fe2d55a660
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsinit${EXEEXT}
+
+File: ./tests/test-mbsncasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsncasecmp.sh
+Hash: 50eadc9df534559ed5509be4a6af2522252ace74a00646bceff01daa139b622d
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbsncasecmp${EXEEXT}
+
+File: ./tests/test-mbsnrtowcs.c
+Hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion of string to wide string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsnrtowcs1.sh
+Hash: 5db850b49c6897a60588a348aadf7f5ad696f27f58876613cb686088e82065ad
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbsnrtowcs${EXEEXT} 1
+
+File: ./tests/test-mbsnrtowcs2.sh
+Hash: c861368b11ee095bb6d9f0229cc3a369b8a0244e453dc686b3540a954bc1b155
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsnrtowcs${EXEEXT} 2
+
+File: ./tests/test-mbsnrtowcs3.sh
+Hash: a8194d6aefb2a02a416354be9e9474c0c19403adf757cb21204119931c188056
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-mbsnrtowcs${EXEEXT} 3
+
+File: ./tests/test-mbsnrtowcs4.sh
+Hash: db2098f520d0c8aeebc9ec8e24bcb668e5ce3afd425e13c07d4bd7c3a7ab51d6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbsnrtowcs${EXEEXT} 4
+
+File: ./tests/test-mbspbrk.c
+Hash: 618cf2c22123f23c1abd9f63fa989c7a88d22bcdba78e71817640fbfa00fd134
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching a string for a character among a given set of characters.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbspbrk.sh
+Hash: b68f5c5e76fdb5ff39f3a4b137f26afec83fbedd80132cb547663c5113395523
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbspbrk${EXEEXT}
+
+File: ./tests/test-mbspcasecmp.c
+Hash: 3722b73f000f435b98ba31f09ee5d733d25786e0b91f3a049a38557e0ef46a79
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive string comparison function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbspcasecmp.sh
+Hash: 0dc0b806a5fc1a9d2110db05246da688cf15390dc3d79948a5d6a2bbf2040af3
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific Turkish locale is installed.
+#: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+#if test $LOCALE_TR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no turkish Unicode locale is installed"
+#  else
+#    echo "Skipping test: no turkish Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_TR_UTF8 \
+#./test-mbspcasecmp${EXEEXT}
+
+File: ./tests/test-mbsrchr.c
+Hash: 336d238f34950347720810d4eba15e4d22a9aa84098f3ec41fd2856d8aedf6d7
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching a string for the last occurrence of a character.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsrchr.sh
+Hash: f8f59a2913930da2af1851dc24468f2921742b6091b86a65e284b38b418a1397
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no chinese GB18030 locale is installed"
+#  else
+#    echo "Skipping test: no chinese GB18030 locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbsrchr${EXEEXT}
+
+File: ./tests/test-mbsrtowcs.c
+Hash: 298af5c52802717a0d5f5823212da83b8472b2c56166a91e1763533a2bec95ad
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion of string to wide string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsrtowcs1.sh
+Hash: fb24fa64654c7d2c588311970717aea290a3291349f8a5611aaa761713119cc6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-mbsrtowcs${EXEEXT} 1
+
+File: ./tests/test-mbsrtowcs2.sh
+Hash: 8d030f6028e543b4d93dfb8f14b84edd1541dc11d65ce84d512191a78bc1b4fe
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsrtowcs${EXEEXT} 2
+
+File: ./tests/test-mbsrtowcs3.sh
+Hash: b23b005a9360d7365bfc10ca426905259d2d38be17a55283e063f01a62ec8332
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-mbsrtowcs${EXEEXT} 3
+
+File: ./tests/test-mbsrtowcs4.sh
+Hash: 207d7ee682369340ed853b46675579d3be4a2707c2299493f560022e518ab334
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbsrtowcs${EXEEXT} 4
+
+File: ./tests/test-mbsspn.c
+Hash: 2708b6a1359116604ffd1f0488e510bef6ee687588f481e0cad37ed0ec848913
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching a string for a character outside a given set of characters.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsspn.sh
+Hash: e0bd7e62a91c072db88164046ecd6f42c88ce44a634a76eb1c83c248831dd936
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsspn${EXEEXT}
+
+File: ./tests/test-mbsstr1.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsstr2.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsstr2.sh
+Hash: 1d805ef1e6eab2c44e8668fa623a5d246869cb3f39a685c4a3135996e45ead77
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-mbsstr2${EXEEXT}
+
+File: ./tests/test-mbsstr3.c
+Hash: 7c4cbec68d41161a47f1f02c9953b210c494a45cb3073bad343d95d82441aa02
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of searching in a string.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-mbsstr3.sh
+Hash: 880ac90918e954ae500cce18004a2592619063b0cb6de41740f197f38df9d415
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no chinese GB18030 locale is installed"
+#  else
+#    echo "Skipping test: no chinese GB18030 locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-mbsstr3${EXEEXT}
+
+File: ./tests/test-md2.c
+Hash: abf2f70a1887b653b034add8c99c0436a2e3751e63f73929660b24930fa9f795
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# *
+# * 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
+
+File: ./tests/test-md4.c
+Hash: 3b45dbe8307316e3b18c89e65279b9440cfb8f43868ed0bc1a72f499799b1465
+License: GPL 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-md5.c
+Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-memchr.c
+Hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008-2009 Free Software Foundation
+# * Written by Eric Blake and Bruno Haible
+# *
+# * 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
+
+File: ./tests/test-memchr2.c
+Hash: 8d79550f65f0123da4f6be14234e0fe15616b4ddea78f81d77dd51fd37973be6
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008-2009 Free Software Foundation
+# * Written by Eric Blake
+# *
+# * 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
+
+File: ./tests/test-memcmp.c
+Hash: e18a4806f468c3a8e062e5dce871b138ea023af8f3f3aecc2830380fc2d28f6c
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008-2009 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-memmem.c
+Hash: 382e52373b1850a70886e1a8b5e6036b56dc71e1a7308522c9bc833e27a18406
+License: GPL-3+ 
+Copyright: 2004, 2007-2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2004, 2007-2009 Free Software Foundation
+# * Written by Bruno Haible and Eric Blake
+# *
+# * 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
+
+File: ./tests/test-memrchr.c
+Hash: 6a3297a0a6e1aa480b23ed4694064bc12682c2631bddac204c2ddba89861bd9a
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008-2009 Free Software Foundation
+# * Written by Eric Blake and Bruno Haible
+# *
+# * 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
+
+File: ./tests/test-netdb.c
+Hash: cf4bf72aa3b66b389ba6ec0da06aefe83c95f0654339a77a8704612bb9599120
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <netdb.h> substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-netinet_in.c
+Hash: a848df8c2e882b20250b3a4d479e8fada3d528f8fce8c5627355d6304c80b4dc
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <netinet/in.h> substitute.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-obstack-printf.c
+Hash: 9feff5ec7cbb16735b6c9d63f6b8c2bd3d3f4c5553f9b996be3f8cfe4240e4c4
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of obstack_printf() and obstack_vprintf() functions.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-open.c
+Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a file descriptor.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-open.h
+Hash: ea245caf71373385a97aed99b26affea9998f8f14d5bff866ca61e70e0bafed0
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a file descriptor.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-openat-safer.c
+Hash: d06869d5a44b4d7270af94cdbbb1d4190957d4292c3af8b9564002d4e4d1c985
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test that openat_safer leave standard fds alone.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-parse-duration.c
+Hash: 35362dc2615751df013220bee2763c001ae65724f6a65a56708d422de57273a8
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of parsing durations.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-parse-duration.sh
+Hash: 2fe603e83804acfadc681a8ed77a25f4146601c1502c37ef8ee8714cfba3919b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#prog=test-parse-duration
+#
+#exe=`pwd`/${prog}${EXEEXT}
+#nl='
+#'
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+#func_tmpdir ()
+
+File: ./tests/test-perror.c
+Hash: 63d18ff5d46be6478f9569c7270da67595712bcaf5d1057c6948359c2cc04bf5
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of perror() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-perror.sh
+Hash: 83349ba638f6ffc10680f2e78e438f0e6f20a812237b89ded57d8b48a10ffc79
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+## Test NULL prefix. Result should not contain a number.
+#tmpfiles="$tmpfiles t-perror.tmp"
+#./test-perror${EXEEXT} 2>&1 >/dev/null | LC_ALL=C tr -d '\r' > t-perror.tmp
+#if grep '[0-9]' t-perror.tmp > /dev/null; then
+#  rm -fr $tmpfiles; exit 1
+#fi
+#
+## Test empty prefix. Result should be the same.
+#tmpfiles="$tmpfiles t-perror1.tmp"
+#./test-perror${EXEEXT} '' 2>&1 >/dev/null | LC_ALL=C tr -d '\r' > t-perror1.tmp
+
+File: ./tests/test-pipe-filter-gi1.c
+Hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of filtering of data through a subprocess.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2009.
+#
+#   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
+
+File: ./tests/test-pipe-filter-gi1.sh
+Hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Find a 'tr' program that supports character ranges in the POSIX syntax.
+## Solaris /usr/bin/tr does not.
+#if test -f /usr/xpg6/bin/tr; then
+#  TR=/usr/xpg6/bin/tr
+#else
+#  if test -f /usr/xpg4/bin/tr; then
+#    TR=/usr/xpg4/bin/tr
+#  else
+#    TR=tr
+#  fi
+#fi
+#
+## A small file.
+
+File: ./tests/test-pipe-filter-gi2-child.c
+Hash: 00ffadb86a75c8f0e27d3d9e7c2c7061b6f4fd0bf9f0ab3ea26323aa6824c621
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Child program invoked by test-pipe-filter-gi2-main.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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.
+
+File: ./tests/test-pipe-filter-gi2-main.c
+Hash: c786b65d8861d3f3889afb7eb1b454ce25bce48f093eee46d8d331939cc7ba71
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test harness for pipe-filter-gi.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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.
+
+File: ./tests/test-pipe-filter-gi2.sh
+Hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+#
+## pipe-filter test driver.
+##
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+##
+## 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
+
+File: ./tests/test-pipe-filter-ii1.c
+Hash: a02120c35e5a3a364635f9fc70e55dc18f30a39ff1aeacd184d8446d5512fdc4
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of filtering of data through a subprocess.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Bruno Haible <haible@clisp.cons.org>, 2009.
+#
+#   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
+
+File: ./tests/test-pipe-filter-ii1.sh
+Hash: 558b591a3e9e99e92c5b2778f3c06730308aae08234e69612d078c25bcfbb2e0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Find a 'tr' program that supports character ranges in the POSIX syntax.
+## Solaris /usr/bin/tr does not.
+#if test -f /usr/xpg6/bin/tr; then
+#  TR=/usr/xpg6/bin/tr
+#else
+#  if test -f /usr/xpg4/bin/tr; then
+#    TR=/usr/xpg4/bin/tr
+#  else
+#    TR=tr
+#  fi
+#fi
+#
+## A small file.
+
+File: ./tests/test-pipe-filter-ii2-child.c
+Hash: bac3649c854de7b46c60ca030b7a379e4abe24edddb70e3dc6e6cf9f1bfc7e8c
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Child program invoked by test-pipe-filter-ii2-main.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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.
+
+File: ./tests/test-pipe-filter-ii2-main.c
+Hash: 8c157d6df939e6d434fec71cdf844cfe366d062d871530d04c05a4f12ae9559d
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test harness for pipe-filter-ii.
+#
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+#
+#   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.
+
+File: ./tests/test-pipe-filter-ii2.sh
+Hash: 9762a231a7639d601ecc6d6a9866b7b3b280dc2f64294a8558007c73fa232900
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+#
+## pipe-filter test driver.
+##
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## Written by Paolo Bonzini <bonzini@gnu.org>, 2009.
+##
+## 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
+
+File: ./tests/test-pipe.c
+Hash: 87b0ce6f07c7dc998dccca7755d36b68474a4fa9fa1c5479346bbd2a228eeaf9
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of create_pipe_bidi/wait_subprocess.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-pipe.sh
+Hash: 5dbadef404d16dd74e75f251acc266a81438820ea0ab58d558a96804b6d1dd30
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#st=0
+#for i in 0 1 2 3 4 5 6 7 ; do
+#  ./test-pipe${EXEEXT} $i \
+#    || { echo test-pipe.sh: iteration $i failed >&2; st=1; }
+#done
+#exit $st
+
+File: ./tests/test-pipe2.c
+Hash: 73c73a849418178f4ce6c9ad2e85a4a66257efbeeb4c1848901ab0c3bcd6a2cd
+License: GPL 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of pipe2.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-poll.c
+Hash: 7970e5d5d232352391d076f73881bb98e1eaa9346930e8f191a49ce549b152eb
+License: GPL 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of poll() function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-popen-safer.c
+Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a subcommand stream.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-popen-safer2.c
+Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a subcommand stream.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-popen.c
+Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a subcommand stream.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-popen.h
+Hash: 83b3e1e7703775ee7387143862cd73ab87ced55399043db6e3ffb96dfccc14a6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of opening a subcommand stream.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-posix_spawn1.c
+Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of posix_spawn() function.
+#   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-posix_spawn1.in.sh
+Hash: 7e7d5c66755ac83d083956f83bfe65ca2c9536cd8b0bd4555a6ba2a03e118aae
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#echo "Halle Potta"
+
+File: ./tests/test-posix_spawn2.c
+Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of posix_spawn() function.
+#   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-posix_spawn2.in.sh
+Hash: 781d49e1169694f7f7b1db78fc097258bfd1c59d1af21f695f2159606a696251
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#read line
+#test "$line" = "Halle Potta"
+
+File: ./tests/test-posix_spawn3.c
+Hash: 4afb8fa049de31774a7f48407d018183bb6714cd8cd2ad86110cbb339c5ad559
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of posix_spawn() function.
+#   Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-printf-frexp.c
+Hash: 063e80a2ed5729ff3b48f9f21fc67274466ae499d1c5ce8bc5835c0147a75e82
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of splitting a double into fraction and mantissa.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-printf-frexpl.c
+Hash: d9ae7fb6f3efade21dd6bd4f8e39296b78ebe14a2b6904928a9ef5f08847f210
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of splitting a 'long double' into fraction and mantissa.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-printf-posix.c
+Hash: e0609f5e2368ee405f7f4a205a106a397a6c889e06ede598f31189fd2786ea64
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible printf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-printf-posix.h
+Hash: 0af8689a85418a5c6f4b302ad44d5339b7b359db9c5010822c8ec3aa0a63559b
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vsprintf() and sprintf() functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-printf-posix.output
+Hash: 213315ade646809669a3e177d40a9b01d9430eb55ba1cd18dbc5b5e154433a5a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#12345671 33
+#12345672 33
+#12345673 33
+#0x0p+0 33
+#inf 33
+#-inf 33
+#       inf 33
+#12.750000 33
+#1234567.000000 33
+#-0.031250 33
+#0.000000 33
+#00001234.000000 33
+#1234 33
+#999.95 33
+#1000.00 33
+
+File: ./tests/test-printf-posix.sh
+Hash: 239e312ff4456b546521d2f0bd0ef84e7286d685ba3477b95b13b0f8aa071f84
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-printf-posix.tmp t-printf-posix.out"
+#./test-printf-posix${EXEEXT} > t-printf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-printf-posix.tmp > t-printf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-printf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+
+File: ./tests/test-printf-posix2.c
+Hash: f0fff3bfac69b0e70b8370a65b5668bb8c0049c0bd3c7d673c22591f45effae1
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible printf() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-printf-posix2.sh
+Hash: 5c422546366bb292df14233c6829abd4a7154bbc5b7dbf1b21fe2dd4601b8f6f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test out-of-memory handling.
+#
+#(./test-printf-posix2${EXEEXT} 0
+# result=$?
+# if test $result != 77 && test $result != 78; then result=1; fi
+# exit $result
+#) 2>/dev/null
+#malloc_result=$?
+#if test $malloc_result = 77; then
+#  echo "Skipping test: getrlimit and setrlimit don't work"
+#  exit 77
+#fi
+
+File: ./tests/test-priv-set.c
+Hash: 459b0d2a4e2ca34dd43609ddf4f6fc9da4ac8485be1f363e50eac88501417fcc
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the priv-set module.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-quotearg.c
+Hash: 104703e4201fb5c043c5e3504cebdaf76bee31f82635cd179c12eb576cb8e015
+License: GPL 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of quotearg family of functions.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-quotearg.sh
+Hash: 7e0d01aab336e5acc014edc2ff951d5234d4e4bad05e5680cca7931c706e5172
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Choose an existing locale. The locale encoding does not matter; see the
+## comment in test-quotearg.po.
+#if test $LOCALE_FR_UTF8 != none; then
+#  locale=$LOCALE_FR_UTF8
+#else
+#  if test $LOCALE_FR != none; then
+#    locale=$LOCALE_FR
+#  else
+#    locale=none
+#  fi
+#fi
+#
+#LOCALE=$locale LOCALEDIR="$srcdir/locale" \
+
+File: ./tests/test-random_r.c
+Hash: 6a99ec02e3274e3054358cfae33be3f646de66a86a4c1190e2459dd79154f0c5
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test random_r.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-rawmemchr.c
+Hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008 Free Software Foundation
+# * Written by Eric Blake and Bruno Haible
+# *
+# * 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
+
+File: ./tests/test-rbtree_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-rbtree_oset.c
+Hash: e04eacd107bad187ffb5fdb4d4955f66622e0e7f6cee9eb82e80d40657f6cffb
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ordered set data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-rbtreehash_list.c
+Hash: b585f61497a4fc7c4dfd6e91d04c704703401fecd8b22283b5c421a43a594c37
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sequential list data type implementation.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#   Written by Bruno Haible <bruno@clisp.org>, 2006.
+#
+#   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
+
+File: ./tests/test-read-file.c
+Hash: fe25f8bab073df345c729dec8f6148396d6926783db8a074ab9b9f120ebacd68
+License: GPL-3+ 
+Copyright: 2006-2007 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2006-2007 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-rijndael.c
+Hash: bd28b67ba8cdd5cd8c4098cbdcf1e85401cbbfadfdb54a5a9b29fc830bcfc77b
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005 Free Software Foundation
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-round1.c
+Hash: d481632fac56dafed412331dc1d3c962088c31ca9c3b36086d3667160fd6d480
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding to nearest, breaking ties away from zero.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-round2.c
+Hash: 78cd3c59fce9fcf77a9e67787f5add6ab91b27cb39939cec7db1472ba23e07da
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding to nearest, breaking ties away from zero.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-roundf1.c
+Hash: 3d1da36b9e0486cd4e508d505e52d43a8e69194525626087e0570a15fb56bd69
+License: GPL 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding to nearest, breaking ties away from zero.
+#   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-roundf2.c
+Hash: 2b662978b800617f406056d17c4f610c9ac9a637fe6b41e53db7b8728d9a3386
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define USE_FLOAT
+##include "test-round2.c"
+
+File: ./tests/test-roundl.c
+Hash: 78692de38971d672500f95f537d99c3625af5e163292a68f569e9b1c0db3deba
+License: GPL 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding to nearest, breaking ties away from zero.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-safe-alloc.c
+Hash: 06fa48a371192b3703bb2e5e10ccd93a9034d93b7dcff205253b40547dc5f425
+License: LGPL-2.1+ (with incorrect FSF address) 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/*
+# * Test the safe-alloc macros
+# *
+# * Copyright (C) 2009 Free Software Foundation, Inc.
+# *
+# * 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.
+# *
+
+File: ./tests/test-sameacls.c
+Hash: 1df2ca38b822fca6b61b6dc422c4b420e8b7ef60e85c53952d92ac21156b8c65
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test whether two files have the same ACLs.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sched.c
+Hash: a1d056a4d72baa204719a7171a5f9cb61426312897c83f8d72c0d329008fe2a6
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <sched.h> substitute.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-search.c
+Hash: a75b46b1de8003eaa9822f8ee5de3e28bfd9dfa3808094ed1476e96a9f8b0d9b
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <search.h> substitute.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-select-fd.c
+Hash: c39dad9c674c2b86a8b6fabc120a1231d76298f5616852e8ca555a36d57dd057
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of select() substitute, reading or writing from a given file descriptor.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-select-in.sh
+Hash: 900e4c2984ffcf50df1cf8f155327f6fc7f9fb45b05e89a8e6117c6615fa0bef
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Test select() on file descriptors opened for reading.
+#
+## This test is known to fail on Solaris 2.6 and older, due to its handling
+## of /dev/null.
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-select-in.tmp"
+#
+## Regular files.
+#
+#rm -f t-select-in.tmp
+#./test-select-fd${EXEEXT} r 0 t-select-in.tmp < ./test-select-fd${EXEEXT}
+
+File: ./tests/test-select-out.sh
+Hash: 81a7eb6dd45c11e05d7d72c30afe3a86103b6f785beccfede7592fbece606a1f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Test select() on file descriptors opened for writing.
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-select-out.out t-select-out.tmp"
+#
+## Regular files.
+#
+#rm -f t-select-out.tmp
+#./test-select-fd${EXEEXT} w 1 t-select-out.tmp > t-select-out.out
+#test `cat t-select-out.tmp` = "1" || exit 1
+#
+## Pipes.
+
+File: ./tests/test-select-stdin.c
+Hash: 2233f158677785767dc09bb2110060927bc2c348fc26ffc95bc44b538dd69287
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of select() substitute, reading from stdin.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-select.c
+Hash: 919c5a7db661553ac0cd6de0a423e3fc6d9c988e0a86fa524fae055862fd6ec8
+License: GPL-3+ 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of select() substitute.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-set-mode-acl.c
+Hash: cd6ee6081a51d9b3f3794b017a6b074ff3bc14d6825fd5f251c5fd2d46841250
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of setting an ACL equivalent to a mode.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-set-mode-acl.sh
+Hash: 3454dddf42074bbc9ee4ad92fd4b15d168fe3bd37bc4e8ba740a040441f861ca
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Show all commands when run with environment variable VERBOSE=yes.
+#test -z "$VERBOSE" || set -x
+#
+## func_tmpdir
+## creates a temporary directory.
+## Sets variable
+## - tmp             pathname of freshly created temporary directory
+#func_tmpdir ()
+#{
+#  # Use the environment variable TMPDIR, falling back to /tmp. This allows
+#  # users to specify a different temporary directory, for example, if their
+#  # /tmp is filled up or too small.
+#  : ${TMPDIR=/tmp}
+
+File: ./tests/test-sha1.c
+Hash: e18f52207f18a229817e86984ad67f9af48bc951d8a18ad1ba9665584fa5d716
+License: GPL-3+ 
+Copyright: 2005, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2005, 2008, 2009 Free Software Foundation, Inc.
+# * Written by Simon Josefsson
+# *
+# * 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
+
+File: ./tests/test-sigaction.c
+Hash: 26868ca82f9158a85f3775c877b40da4441122e03a940c9d02dfc347ff66b161
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sigaction() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-signal.c
+Hash: a2a63d1070f8da740d3d59dd751aef9681d8f4a1b47d41d92c5258448a7902a0
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <signal.h> substitute.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-signbit.c
+Hash: fa9d9d09e834d032dab7e5344a9125bc3a844d179a74b3eac76bc464ca94566e
+License: GPL-3+ 
+Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of signbit() substitute.
+#   Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sigpipe.c
+Hash: 8babbc5c4c5cf6baadd089082b26b393e84a3d336446bdf26c6170bb3b86fd55
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of SIGPIPE handling.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-sigpipe.sh
+Hash: d27845fc8088e77081e32717c8dd8327ed122194c62751c93ef8faff8ee9218c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+## Test signal's default behaviour.
+#tmpfiles="$tmpfiles t-sigpipeA.tmp"
+#./test-sigpipe${EXEEXT} A 2> t-sigpipeA.tmp | head -1 > /dev/null
+#if test -s t-sigpipeA.tmp; then
+#  LC_ALL=C tr -d '\r' < t-sigpipeA.tmp
+#  rm -fr $tmpfiles; exit 1
+#fi
+#
+## Test signal's ignored behaviour.
+#tmpfiles="$tmpfiles t-sigpipeB.tmp"
+
+File: ./tests/test-sleep.c
+Hash: c4c76435bbec1e1ae7a9b8292a1bf834366e04668c11ff07e19eda173e195eb2
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of sleep() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-snprintf-posix.c
+Hash: 7fce32e7bb5b8d3bda5a1df8212fb1d14ec7a02dc5e72ebb28dd9225dad5e397
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible snprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-snprintf-posix.h
+Hash: 9c968e1b41c6112dfd570d39aae8c0902a54036c53b751224852c002c65aada0
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vsnprintf() and snprintf() functions.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-snprintf.c
+Hash: a8fc7710afcd71af941318a653e85e172eb11dcf342d0362c2bee74cc1361c0a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of snprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sockets.c
+Hash: f651231cb9c8d0c5d7c3feceb6ab023e6fb4719e96d313b5a1611cf222e9552d
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008, 2009 Free Software Foundation
+# * Written by Simon Josefsson.
+# *
+# * 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
+
+File: ./tests/test-sprintf-posix.c
+Hash: bfa4989be540f363296df2cabc7bf499303561023475f1a5272b0a1898cf4746
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible sprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sprintf-posix.h
+Hash: 643c16861240bef0649dd4bcefe6ef1d9996a7d9bf4e16d3f70ecd7d22619764
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vsprintf() and sprintf() functions.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-stat-time.c
+Hash: 13ed608bac62ec91a2526f569107d3f2c029da8a2935eca78a4cc53839419da8
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <stat-time.h>.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-stdbool.c
+Hash: c84624aac5e8ef0d17ac6cfba2d9902112d8652ff84f75943bbaab5483a15104
+License: GPL-3+ 
+Copyright: 2002-2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <stdbool.h> substitute.
+#   Copyright (C) 2002-2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-stddef.c
+Hash: a7f33ad88ddc3e59c999ce92e4d5c33162876f2dbd2f812612f5f875e098a0e1
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <stddef.h> substitute.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-stdint.c
+Hash: 23f2d98a74e19ebc217c7540652a726c29f8393ff93360bc7d491d73ef222896
+License: GPL-3+ 
+Copyright: 2006-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <stdint.h> substitute.
+#   Copyright (C) 2006-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-stdio.c
+Hash: 2ac4b9dd417d2756a7b7531075a8de408eaa834699dcacc33968d0acd485708a
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <stdio.h> substitute.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-stdlib.c
+Hash: 054829fa60196e2c3f2af8a2ae7f5906b69a5ca770ea3f67f4bf20e58459cc39
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <stdlib.h> substitute.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-stpncpy.c
+Hash: f0900ada3225a1fce15fe1f412789c086482da205d663e8d29b7d44f0a74ff6c
+License: GPL-3+ 
+Copyright: 2003, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the system defined function stpncpy().
+#   Copyright (C) 2003, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-stpncpy.out.aix433
+Hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#i =  0, j =  0, k =  0:  from = \x00XXXXXXXXX  to = \x00YYYYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  1:  from = \x00XXXXXXXXX  to = D\x00YYYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  2:  from = \x00XXXXXXXXX  to = De\x00YYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  3:  from = \x00XXXXXXXXX  to = Des\x00YYYYYY  ret = to + 0
+#i =  0, j =  0, k =  4:  from = \x00XXXXXXXXX  to = Dest\x00YYYYY  ret = to + 0
+#i =  0, j =  0, k =  5:  from = \x00XXXXXXXXX  to = Desti\x00YYYY  ret = to + 0
+#i =  0, j =  0, k =  6:  from = \x00XXXXXXXXX  to = Destin\x00YYY  ret = to + 0
+#i =  0, j =  0, k =  7:  from = \x00XXXXXXXXX  to = Destina\x00YY  ret = to + 0
+#i =  0, j =  0, k =  8:  from = \x00XXXXXXXXX  to = Destinat\x00Y  ret = to + 0
+#i =  0, j =  0, k =  9:  from = \x00XXXXXXXXX  to = Destinati\x00  ret = to + 0
+#i =  0, j =  1, k =  0:  from = \x00XXXXXXXXX  to = \x00YYYYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  1:  from = \x00XXXXXXXXX  to = \x00\x00YYYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  2:  from = \x00XXXXXXXXX  to = \x00e\x00YYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  3:  from = \x00XXXXXXXXX  to = \x00es\x00YYYYYY  ret = to + 0
+#i =  0, j =  1, k =  4:  from = \x00XXXXXXXXX  to = \x00est\x00YYYYY  ret = to + 0
+
+File: ./tests/test-stpncpy.out.glibc
+Hash: 42a7b74a76cafd8a6d2fbc513026ecb27bf8c70c9eb0a9eb4eeedf421ac6150b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#i =  0, j =  0, k =  0:  from = \x00XXXXXXXXX  to = \x00YYYYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  1:  from = \x00XXXXXXXXX  to = D\x00YYYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  2:  from = \x00XXXXXXXXX  to = De\x00YYYYYYY  ret = to + 0
+#i =  0, j =  0, k =  3:  from = \x00XXXXXXXXX  to = Des\x00YYYYYY  ret = to + 0
+#i =  0, j =  0, k =  4:  from = \x00XXXXXXXXX  to = Dest\x00YYYYY  ret = to + 0
+#i =  0, j =  0, k =  5:  from = \x00XXXXXXXXX  to = Desti\x00YYYY  ret = to + 0
+#i =  0, j =  0, k =  6:  from = \x00XXXXXXXXX  to = Destin\x00YYY  ret = to + 0
+#i =  0, j =  0, k =  7:  from = \x00XXXXXXXXX  to = Destina\x00YY  ret = to + 0
+#i =  0, j =  0, k =  8:  from = \x00XXXXXXXXX  to = Destinat\x00Y  ret = to + 0
+#i =  0, j =  0, k =  9:  from = \x00XXXXXXXXX  to = Destinati\x00  ret = to + 0
+#i =  0, j =  1, k =  0:  from = \x00XXXXXXXXX  to = \x00YYYYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  1:  from = \x00XXXXXXXXX  to = \x00\x00YYYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  2:  from = \x00XXXXXXXXX  to = \x00e\x00YYYYYYY  ret = to + 0
+#i =  0, j =  1, k =  3:  from = \x00XXXXXXXXX  to = \x00es\x00YYYYYY  ret = to + 0
+#i =  0, j =  1, k =  4:  from = \x00XXXXXXXXX  to = \x00est\x00YYYYY  ret = to + 0
+
+File: ./tests/test-strcasestr.c
+Hash: 7d2efe1b3c344b9cff561636974f6c473250f1fa6005d9385b9ba4619287ad18
+License: GPL-3+ 
+Copyright: 2007, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case-insensitive searching in a string.
+#   Copyright (C) 2007, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-strchrnul.c
+Hash: 6664f2f7050ac1601e5eb6ca9c1a1d53c958740d1b2421053223a890bea7a97a
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008 Free Software Foundation
+# * Written by Eric Blake and Bruno Haible
+# *
+# * 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
+
+File: ./tests/test-strerror.c
+Hash: 14a1d27bf7519c28518b2fa09cdbff600099f8fbbdcdd31d19f1e17abd42eec1
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of strerror() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-striconv.c
+Hash: d87272473e825d65b336a572f6879ba7a6bb4eaa0ad053515d8ec0962ec6201b
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of character set conversion.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-striconveh.c
+Hash: d58780303b58b650191816c9c6f6d31acc192c6b06da016cd940a1daaad76347
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of character set conversion with error handling.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-striconveha.c
+Hash: 5613eb13fd03278f3cfae673d2742357a77a24e39aa5464290122bd1f5cc17e9
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of character set conversion with error handling and autodetection.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-string.c
+Hash: 0ba6f6d137f27b2f588c41cd0dd4a7f44a8611d2b5650a7623304eb04f2a985c
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <string.h> substitute.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-strings.c
+Hash: 1218735581f6fd81e89c932786b84ad7efdb3fd0a98b512cfb6ef7179ee629b9
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <strings.h> substitute.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-strsignal.c
+Hash: 911cff60ea0d2142906a8b6e37b8e316a82700ce9dc6f4419abb1544eeb16255
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of strsignal() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-strstr.c
+Hash: 921b584d5b441ef5314ef79cacb914b5734b212d15a5d3e34d83a3cac45985c7
+License: GPL-3+ 
+Copyright: 2004, 2007, 2008, 2009 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2004, 2007, 2008, 2009 Free Software Foundation
+# * Written by Bruno Haible and Eric Blake
+# *
+# * 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
+
+File: ./tests/test-strtod.c
+Hash: 94d0b9d07d2cb7df156fa576ff2f5508151924b4eec0f0394e315fc6c43fde83
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation
+Licence-Text: 
+#Header: 
+#/*
+# * Copyright (C) 2008 Free Software Foundation
+# * Written by Eric Blake
+# *
+# * 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
+
+File: ./tests/test-strverscmp.c
+Hash: 73715c12c4e50afe8feb14d326eb9d0092f449850bf20bda4a2a09965c37fd2d
+License: GPL 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of strverscmp() function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-symlinkat.c
+Hash: 688324a6ce6943ee6fcd5c4bbc12a6ed11ead304de5c082acac34fa5d620244a
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Tests of symlinkat and readlinkat.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sys_select.c
+Hash: e6cbee138afbf2346834176c831267687d1d62f0cc1c182a06b826921c4a2a0b
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <sys/select.h> substitute.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sys_socket.c
+Hash: 27b064bea275a251fd55f12386c38305cfa83d0e2ce5d9b781fc898d400773c6
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <sys/socket.h> substitute.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sys_stat.c
+Hash: 04013ed74812f946e4b59b34d20190ec2cd9ceb8574f5fc52edcd6eac76c352a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <sys/stat.h> substitute.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sys_time.c
+Hash: 3ebfc9d43b3f8649e84a73cd567fca4c7ae4d825da72da4ed90e6e5a99d94fff
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <sys/time.h> substitute.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sys_times.c
+Hash: b4313ff79695d9b7f87cdd1971b9abde2045f25322923a3e6489c6feea1eacdc
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <sys/times.h> substitute.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sys_utsname.c
+Hash: b1a0f7f5778c07e508753fb8758e87eccbf547386a4590bc130135b051293a38
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <sys/utsname.h> substitute.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-sysexits.c
+Hash: 7c3f18282922b3f9c1ebb90c97f14450d340a78ca9e554109d2696866155c1d4
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <sysexits.h> substitute.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-time.c
+Hash: e2a57979e9a7175aef1b8845af8f151674553744316aac9805c8db52cbb6dfb2
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <time.h> substitute.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-times.c
+Hash: f96de125f14181292c4c8e2e4c0974b25583ad38f9ef6a77d6460b0a6be47bb8
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of times function.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-tls.c
+Hash: a371f1638584ea868f8774f0863ed063f15ec220e756dc6cd961ac59be40da55
+License: GPL-3+ 
+Copyright: 2005, 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of thread-local storage in multithreaded situations.
+#   Copyright (C) 2005, 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-trunc1.c
+Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-trunc2.c
+Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-truncf1.c
+Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-truncf2.c
+Hash: 79e959413538618ee4120057654f81868c89cbff2de55d6ff1219e6fd6e3d82e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-truncl.c
+Hash: 503c95b4810a0f30ba1704d1103337c932b495da73ef6c06c21d7a26583b3d60
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of rounding towards zero.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-tsearch.c
+Hash: 5fc9ed83fc429236699dce56057e9d206682791a0228c09393bd282e8874f20b
+License: LGPL-3+ 
+Copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test program for tsearch et al.
+#   Copyright (C) 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc.
+#   This file is part of the GNU C Library.
+#
+#   The GNU C 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 3 of the
+#   License, or (at your option) any later version.
+#
+#   The GNU C 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
+
+File: ./tests/test-tsearch.sh
+Hash: 4a91b1aa51229c44027a90338ac75c18482cd83b1c5a42abbbd5e586cc77bdde
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-tsearch.out"
+#./test-tsearch${EXEEXT} > t-tsearch.out 2>&1
+#test $? = 0 || { cat t-tsearch.out 1>&2; rm -f $tmpfiles; exit 1; }
+#
+#rm -f $tmpfiles
+#
+#exit 0
+
+File: ./tests/test-u64.c
+Hash: e479b4ed53ff1ef1ddb7c68c062cc0b016685511ba81a14bfa6c2971d06cab71
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <u64.h>
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-uname.c
+Hash: 95dd080068a87ec7a8f8dd8f9c52cfcc3eb411fdc69747e76099b7f55491e9e0
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of system information.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-unistd.c
+Hash: 9dec8ae8ec34dede0933ebdae6fea6044297491dfbba7df3544444a73b7cf7fb
+License: GPL-3+ 
+Copyright: 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <unistd.h> substitute.
+#   Copyright (C) 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-update-copyright.sh
+Hash: 31a6cf464a511c9f798d56d6107ef0eb41dafac06037c8e04649f9ae2d9f2e67
+License: GPL-3+ 
+Copyright: 1990-2005, 2007-2009 Free Software / @{} 1990-2005, 2007-2009 Free Software / 2009 Free Software Foundation, Inc / &copy; 90,2005,2007-2009
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Test suite for update-copyright.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-vasnprintf-posix.c
+Hash: 4033ae875db9b7dec68ccfb88dc9e8ac872f79ccd3ff8c1bbf475994065a67a3
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vasnprintf() and asnprintf() functions.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vasnprintf-posix2.c
+Hash: 264ce034a6a0e2af38dd9a7f56d3fc621770b161c40e4868673d2197175d7e9d
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vasnprintf() and asnprintf() functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vasnprintf-posix2.sh
+Hash: a2853f3c4b9322d67eeb514a02f551027226143c613f10e2f07141cea27ef400
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test $LOCALE_FR_UTF8 != none; then
+#    testlocale=$LOCALE_FR_UTF8
+#  else
+#    if test -f /usr/bin/localedef; then
+#      echo "Skipping test: no french locale is installed"
+#    else
+#      echo "Skipping test: no french locale is supported"
+
+File: ./tests/test-vasnprintf.c
+Hash: 61a80e32eb8210bc664d982ac7156c97f5b068023f47eeef9b2712eaa0cf5358
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of vasnprintf() and asnprintf() functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vasprintf-posix.c
+Hash: ec33ca31cf67dba4a443c9cd11bebb34a58110f2c2c15ffb891f9d22b628f47a
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vasprintf() and asprintf() functions.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vasprintf.c
+Hash: 2bd69a93dc485bffe1c49f3d6e4b411651ed41f823fb47f163b9487c35df55e9
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of vasprintf() and asprintf() functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vc-list-files-cvs.sh
+Hash: 5592779105d6e3c84009c3743f19ba267e3c947df43bd05fce6250d51d38acd8
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Unit tests for vc-list-files
+## Copyright (C) 2008 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-vc-list-files-git.sh
+Hash: cba59ad2fc05be9c59e16bb50f191c185f4d87a147deb9477fab63dbeaba6169
+License: GPL-3+ 
+Copyright: 2008, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##!/bin/sh
+## Unit tests for vc-list-files
+## Copyright (C) 2008, 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-vdprintf-posix.c
+Hash: 8fc71c626ad4e8b2da0fb5b1661b55fc288ffc3242744e43fd24edf0b22d8d03
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vdprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vdprintf-posix.sh
+Hash: f3166adb33bacdb3b2da94ac726284ed8403a179c0f69b2e9490d82210ef3ed6
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-vdprintf-posix.tmp t-vdprintf-posix.out"
+#./test-vdprintf-posix${EXEEXT} > t-vdprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-vdprintf-posix.tmp > t-vdprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-vdprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+
+File: ./tests/test-verify.c
+Hash: 17fec5a9ababc4561b627d90f689ea9e12ae05c2cabf962750d3472bb98dcc3c
+License: GPL-3+ 
+Copyright: 2005 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the "verify" module.
+#
+#   Copyright (C) 2005 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/test-version-etc.c
+Hash: 166966c01aec43b6eea70f77889719b4ca98d4f9333c9e7b8ff9fb10235eaf2b
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test suite for version-etc.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#   This file is part of the GNUlib Library.
+#
+#   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
+
+File: ./tests/test-version-etc.sh
+Hash: c2dcff71edecfe89df84edb38bc7cf657c88b91a82456014937488b7eed9cf8c
+License: GPL-3+ 
+Copyright: Free Software Foundation, Inc / [0-9]\{4,4\}//' | / 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+##! /bin/sh
+## Test suite for version-etc.
+## Copyright (C) 2009 Free Software Foundation, Inc.
+## This file is part of the GNUlib Library.
+##
+## 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.
+##
+
+File: ./tests/test-vfprintf-posix.c
+Hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vfprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vfprintf-posix.sh
+Hash: 51b6714415c10dd04271db0038eb39b1bd3c5881b43025900606e5ae92334fc2
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-vfprintf-posix.tmp t-vfprintf-posix.out"
+#./test-vfprintf-posix${EXEEXT} > t-vfprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-vfprintf-posix.tmp > t-vfprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-vfprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+
+File: ./tests/test-vprintf-posix.c
+Hash: 5d5a15a85eb26d79e87f3c8cc92fbe8952b0b180ccba1adf8b979128bec9f60a
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vfprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vprintf-posix.sh
+Hash: a6ebb7e5988deb06cbc675b3be4c82c3366db7423e770607fdb9e5079331a9bc
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-vprintf-posix.tmp t-vprintf-posix.out"
+#./test-vprintf-posix${EXEEXT} > t-vprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-vprintf-posix.tmp > t-vprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-vprintf-posix.out
+#result=$?
+#
+#rm -fr $tmpfiles
+
+File: ./tests/test-vsnprintf-posix.c
+Hash: 08921df8083c6cf72f8107df0955a905c1cfc1a7639420651e479889b858372f
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vsnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vsnprintf.c
+Hash: 38a886365a5b7333bcddff2e6f7e078b4ccd8affc79c69d525fb628b81e77163
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of vsnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-vsprintf-posix.c
+Hash: 5ff40ad8122a4316b3880b33fa58711292cfe9daf80cf886bc3bf7b4c8b8f7b6
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of POSIX compatible vsprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-wchar.c
+Hash: b9f590d320dde15ebc89d1b241f7f1affa3e77afaf21eb72b9d0d848c666aa15
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <wchar.h> substitute.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-wcrtomb.c
+Hash: a7e09560f0d1bcf0d97e0961f8aea91e910f34af271cf323261f13ffa0ae7711
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion of wide character to multibyte character.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-wcrtomb.sh
+Hash: a44d114e1ecf5712c05a7280fb46e7eed4ba1d93c1afbd19f628ee14485c0f17
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  LC_ALL=$LOCALE_FR \
+#  ./test-wcrtomb${EXEEXT} 1 \
+#  || exit 1
+#fi
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  LC_ALL=$LOCALE_FR_UTF8 \
+#  ./test-wcrtomb${EXEEXT} 2 \
+
+File: ./tests/test-wcsnrtombs.c
+Hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion of wide string to string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-wcsnrtombs1.sh
+Hash: 33a1c921605c916d076531d447e2cd6371d22857bb403db1f372526fb35fa98f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-wcsnrtombs${EXEEXT} 1
+
+File: ./tests/test-wcsnrtombs2.sh
+Hash: 4ee200893e30f53de0d3366bbac9c7e8524cc201b1d9debd643ad7c3acb63aba
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-wcsnrtombs${EXEEXT} 2
+
+File: ./tests/test-wcsnrtombs3.sh
+Hash: a593e2317d40fa30cf64732ee7d952ddc68ef2f69e9d9130b17b10f28e8d3d6f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-wcsnrtombs${EXEEXT} 3
+
+File: ./tests/test-wcsnrtombs4.sh
+Hash: de5e3b2ff8be87faf053ba51d5846ac4e10322c76bc4b4f2a20357eae2a0489b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-wcsnrtombs${EXEEXT} 4
+
+File: ./tests/test-wcsrtombs.c
+Hash: 37b4cc2e441f42d13537cda4ca54023b9ed4282d26d402721caa7ca7298841a1
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion of wide string to string.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-wcsrtombs1.sh
+Hash: 7f6c7ca6878d2632a37f8f54060bcc41aa415a85487a76f7a374ba03a218e71a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-wcsrtombs${EXEEXT} 1
+
+File: ./tests/test-wcsrtombs2.sh
+Hash: 738099bbea2049911db3bee0ae7d1cba4043ff740759d77197cfca1f5743d55a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-wcsrtombs${EXEEXT} 2
+
+File: ./tests/test-wcsrtombs3.sh
+Hash: b5b4068a795461636f1fca1ce581a918e6298eb6d915f6fd5f9ec34597d9397f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific EUC-JP locale is installed.
+#: ${LOCALE_JA=ja_JP}
+#if test $LOCALE_JA = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional japanese locale is installed"
+#  else
+#    echo "Skipping test: no traditional japanese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_JA \
+#./test-wcsrtombs${EXEEXT} 3
+
+File: ./tests/test-wcsrtombs4.sh
+Hash: a3a4b7ceb64d8c8d819c6552cc46779e6264e5dd6bf3e0774d71504aeb22a135
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific GB18030 locale is installed.
+#: ${LOCALE_ZH_CN=zh_CN.GB18030}
+#if test $LOCALE_ZH_CN = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no transitional chinese locale is installed"
+#  else
+#    echo "Skipping test: no transitional chinese locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_ZH_CN \
+#./test-wcsrtombs${EXEEXT} 4
+
+File: ./tests/test-wctype.c
+Hash: 3913b2dadee190c3c7363a11f4698e6dc6e54e77ff0f6f815989f716687b8c66
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of <wctype.h> substitute.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-wcwidth.c
+Hash: 621775bd4bf289a67327498e46edf2e12d578a8ba977b62f871f1957de3e43c5
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of wcwidth() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-xfprintf-posix.c
+Hash: 2a603870f561fd13002c29e2de6553989048d747097638326de087abc5d9c70d
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of error-checking xfprintf() function with POSIX compatible formatting.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-xmemdup0.c
+Hash: 4b2575757caf38d863f415b5079c56fd838ffe4a807c81bc83bd296dcbfcaee6
+License: GPL 
+Copyright: 2008-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of xmemdup0() function.
+#   Copyright (C) 2008-2009 Free Software Foundation, Inc.
+#
+#   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, 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,
+
+File: ./tests/test-xprintf-posix.c
+Hash: a3af7c6b24629c4787aa5231313b8f64c3b33cf955dc694a5294ae299c3d0ca5
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of error-checking xprintf() function with POSIX compatible formatting.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-xprintf-posix.sh
+Hash: 1ce067e6f56dcb6a5a56ce1246d36be56fcc7f66b31106e803156fd220d3e1d0
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles t-xprintf-posix.tmp t-xprintf-posix.out"
+#./test-xprintf-posix${EXEEXT} > t-xprintf-posix.tmp || exit 1
+#LC_ALL=C tr -d '\r' < t-xprintf-posix.tmp > t-xprintf-posix.out || exit 1
+#
+#: ${DIFF=diff}
+#${DIFF} "${srcdir}/test-printf-posix.output" t-xprintf-posix.out
+#test $? = 0 || { rm -fr $tmpfiles; exit 1; }
+#
+#tmpfiles="$tmpfiles t-xfprintf-posix.tmp t-xfprintf-posix.out"
+#./test-xfprintf-posix${EXEEXT} > t-xfprintf-posix.tmp || exit 1
+
+File: ./tests/test-xstrtoimax.c
+Hash: c5c3852fa55a1f51008c37b7783d23de2f4d137cf90ff959870b62f6e59587ac
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define __xstrtol xstrtoimax
+##define __strtol_t intmax_t
+##define __spec PRIdMAX
+##include "test-xstrtol.c"
+
+File: ./tests/test-xstrtoimax.sh
+Hash: 5d15991c8b4c13c05fc12f220e26c34f702a317d8998b1d016379ce9e18b3565
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-xstrtoimax.tmp t-xstrtoimax.xo"
+#: > t-xstrtoimax.tmp
+#too_big=99999999999999999999999999999999999999999999999999999999999999999999
+#result=0
+#
+## test xstrtoimax
+#./test-xstrtoimax${EXEEXT} 1 >> t-xstrtoimax.tmp 2>&1 || result=1
+#./test-xstrtoimax${EXEEXT} -1 >> t-xstrtoimax.tmp 2>&1 || result=1
+#./test-xstrtoimax${EXEEXT} 1k >> t-xstrtoimax.tmp 2>&1 || result=1
+#./test-xstrtoimax${EXEEXT} ${too_big}h >> t-xstrtoimax.tmp 2>&1 && result=1
+
+File: ./tests/test-xstrtol.c
+Hash: de7b5c726b634ae4f59358f375b594790755ca1a9cc5ca12cd7192f7ad89d763
+License: GPL-3+ 
+Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005
+Licence-Text: 
+#Header: 
+#/* Test of xstrtol module.
+#   Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
+#   2006, 2007, 2008 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/test-xstrtol.sh
+Hash: 79873e8a91e9b9088083cb4ef4d0909822f0d7ba1ecbbc98bcb63322735abcbf
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-xstrtol.tmp t-xstrtol.xo"
+#: > t-xstrtol.tmp
+#too_big=99999999999999999999999999999999999999999999999999999999999999999999
+#result=0
+#
+## test xstrtol
+#./test-xstrtol${EXEEXT} 1 >> t-xstrtol.tmp 2>&1 || result=1
+#./test-xstrtol${EXEEXT} -1 >> t-xstrtol.tmp 2>&1 || result=1
+#./test-xstrtol${EXEEXT} 1k >> t-xstrtol.tmp 2>&1 || result=1
+#./test-xstrtol${EXEEXT} ${too_big}h >> t-xstrtol.tmp 2>&1 && result=1
+
+File: ./tests/test-xstrtoul.c
+Hash: 54c2b16099a222e6bc15d83a1911f4725f1e7ba22a3f302408dacfd3bd5c05a5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define __xstrtol xstrtoul
+##define __strtol_t unsigned long int
+##define __spec "lu"
+##include "test-xstrtol.c"
+
+File: ./tests/test-xstrtoumax.c
+Hash: 257441d9c0f1b24b0d758658b014fae6ae1c9f17a4453ccd246dde4897eaa45a
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##define __xstrtol xstrtoumax
+##define __strtol_t uintmax_t
+##define __spec PRIuMAX
+##include "test-xstrtol.c"
+
+File: ./tests/test-xstrtoumax.sh
+Hash: 4ad7ec4f7631fa5d7ab92d91e1ff3b565a3a8b6f75e0f1b86d89d8030d8252c8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="t-xstrtoumax.tmp t-xstrtoumax.xo"
+#: > t-xstrtoumax.tmp
+#too_big=99999999999999999999999999999999999999999999999999999999999999999999
+#result=0
+#
+## test xstrtoumax
+#./test-xstrtoumax${EXEEXT} 1 >> t-xstrtoumax.tmp 2>&1 || result=1
+#./test-xstrtoumax${EXEEXT} -1 >> t-xstrtoumax.tmp 2>&1 && result=1
+#./test-xstrtoumax${EXEEXT} 1k >> t-xstrtoumax.tmp 2>&1 || result=1
+#./test-xstrtoumax${EXEEXT} ${too_big}h >> t-xstrtoumax.tmp 2>&1 && result=1
+
+File: ./tests/test-xvasprintf.c
+Hash: ac9ad8e875af014830c20d9e09da1311639c83e409ad8db3f4ffebd240e713f4
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of xvasprintf() and xasprintf() functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/test-yesno.c
+Hash: 3f971eee932cdc6643afc7e82875800dbd694b7d7cce5e5898866d3838e5f8e6
+License: GPL 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of yesno module.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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, 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/>.
+
+File: ./tests/test-yesno.sh
+Hash: 6d197acd4b62c8295898322d0a74a7d9b6af375c6612d23e8c718d7d3e034d32
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#p=t-yesno-
+#tmpfiles="${p}in.tmp ${p}xout.tmp ${p}out1.tmp ${p}out.tmp ${p}err.tmp"
+#
+## For now, only test with C locale
+#LC_ALL=C
+#export LC_ALL
+#
+## Find out how to remove carriage returns from output. Solaris /usr/ucb/tr
+## does not understand '\r'.
+#if echo solaris | tr -d '\r' | grep solais > /dev/null; then
+
+File: ./tests/unicase/test-casecmp.h
+Hash: 087298e7ab0c96019fc4bbda3234ee52643b112a91685571bec731d121ff32a9
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case and normalization insensitive comparison of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-cased.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-ignorable.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-is-cased.h
+Hash: 77f0f5c8da18d68e55012ca31cd200ccaaf62ce13a0437f969525b324746cab9
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether case matters for a Unicode string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-is-casefolded.h
+Hash: 8a64df7d2b39cf72a790f65a4380a5257f3906c479a5c7ff2866e2caf521459e
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether a Unicode string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-is-lowercase.h
+Hash: e780f461c5ab26573a2f7a337d9dea72d1b535ce9b8c99aa74286904c35e5350
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether a Unicode string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-is-titlecase.h
+Hash: ed0e9f7db4df9c5e31d50ff099af7ffd491810832336d9a7b1fa2af8405d927b
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether a Unicode string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-is-uppercase.h
+Hash: c166575b45c29d58756309538901f3ca2bc4976a7afe7bc9d5c96c2a940702a6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether a Unicode string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-locale-language.c
+Hash: 7902cd50a3a989d21413e91019f1101ca387732e3a3549e9ee5142a2968122a2
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of language code determination.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-locale-language.sh
+Hash: 028ff70d75eaa2008146f1da86917178198eacf5cd2951201c91392e88636645
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#LC_ALL=C                       ./test-locale-language${EXEEXT} '' || exit 1
+#
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR_UTF8 != none; then
+#  LC_ALL=$LOCALE_FR_UTF8       ./test-locale-language${EXEEXT} fr || exit 1
+#fi
+#
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  LC_ALL=$LOCALE_FR_UTF8       ./test-locale-language${EXEEXT} fr || exit 1
+#fi
+#
+#: ${LOCALE_JA=ja_JP}
+
+File: ./tests/unicase/test-mapping-part1.h
+Hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of single character case mapping functions.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-mapping-part2.h
+Hash: d94069b7317bd4b0d2ee6c070d817fbf6eeb80367cede56f39e0cd77bc50d820
+License: GPL-3+ 
+Copyright: == c); / == mapping[i].value); / 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of single character case mapping functions.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-predicate-part1.h
+Hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-predicate-part2.h
+Hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-casecmp.c
+Hash: fbaf1cf87ef4e2cb6c22e345726fbeca61d4f4fde17fe328cd36f69e383210ff
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case and normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-casecoll.c
+Hash: a478780b48f6135ed858b897f9cd56b995fa2bea4331f359e845712e7a921b9b
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of locale dependent, case and normalization insensitive comparison of
+#   UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-u16-casefold.c
+Hash: 780d80975734f219ef2f735b4735e8977dca243032a3d46705d14bea69577b74
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of casefolding mapping for UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-is-cased.c
+Hash: 4234fb2ee9a3330beba45d579838054b73cb027a32343e6a5bfecb31cb63b5a0
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether case matters for an UTF-16 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-is-casefolded.c
+Hash: f43cf1df76813ed4ff41af0649ec88984148a1a58474b0510aaef5991f58e476
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-16 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-is-lowercase.c
+Hash: 41ab69760cda76f92490056f713aa78ab1fc91f29b6e85dc11364f4d52cea2cd
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-16 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-is-titlecase.c
+Hash: 7082f5c82633a0a232479102690aec07d560deb2fa2febf9433eb417b2893b6e
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-16 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-is-uppercase.c
+Hash: beeb3d8e2907686e31ae7bcacffa24dabd5b8341e95e71008118a27c965127a9
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-16 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-tolower.c
+Hash: ec459a8224c2ed7f817f50477cce68cd280caadf3f43fdc758e094ba738dad44
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of lowercase mapping for UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-totitle.c
+Hash: 364955699731118e15b5c015a5b0e2a0ca481108df690c7d2ca72113bdef9bbd
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of titlecase mapping for UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u16-toupper.c
+Hash: 256d31e7737c279ab0a7fe336bbc2d8a3b2f5c3646a923645408fb5cd647232f
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of uppercase mapping for UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-casecmp.c
+Hash: 9179bf8a4dd90067464a8a095910c5a6f53ff0c8b7d4d4d970fb9905caeccab6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case and normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-casecoll.c
+Hash: 46cde4ad2bde5e77ddf09650e34490837d03ffa5566c3665745417de0e7d3a1f
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of locale dependent, case and normalization insensitive comparison of
+#   UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-u32-casefold.c
+Hash: 4d907542dd3a62d941844298dfe70f36057246c130a8906db2071703fcc5ea26
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of casefolding mapping for UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-is-cased.c
+Hash: afdd64c3cbdb2db2a6d0a0385c23cadd7acde81fe68ef08c39d1af0e65c1c302
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether case matters for an UTF-32 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-is-casefolded.c
+Hash: 406ff64a31f1889065d2f75d3e1352d13da79827438f5af6f72920b26e01be5e
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-32 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-is-lowercase.c
+Hash: 925d3f074e4eba6fd371968cdf931e8f266dc18f42c4da065890ec4059e99eb9
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-32 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-is-titlecase.c
+Hash: 7093a37ec59985094b8e3315f0f3195d83b1656d652ebc113e5d419c996cf396
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-32 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-is-uppercase.c
+Hash: 1378c386b1283dfea9232ebf982922c37fc43e31aa750dbcae3a513d599a37f6
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-32 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-tolower.c
+Hash: d7cfcd257ced2d32004af0d357e3e5dfcd9299fdc83447b6fd59f2b0430cb2b9
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of lowercase mapping for UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-totitle.c
+Hash: 54ba07d46dd17204c8df179dae285eae06fc47dac38440471866ccfb285780b7
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of titlecase mapping for UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u32-toupper.c
+Hash: 9517acce3a3c32363be5998282902d14b76512c2d95007ae0426073b0ae3e66d
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of uppercase mapping for UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-casecmp.c
+Hash: e55c357f7afbc9a0cfe0f69c8736e09ac327cf0efa110bd54358b26552c15d91
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case and normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-casecoll.c
+Hash: cb8087d7a4cd6f72c7df00d9b74cbb14bbe7ff92f76de65ad5e2688c4008f1cc
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of locale dependent, case and normalization insensitive comparison of
+#   UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-u8-casefold.c
+Hash: 46aa95b956c978d68693a6a7d28e6119e702da6d5852b422cae8ac60feb56e7a
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of casefolding mapping for UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-is-cased.c
+Hash: d2e06421cfef63befc22d5867d91edcde0be66c6e5da6ab56407c62655210ad4
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether case matters for an UTF-8 string.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-is-casefolded.c
+Hash: 8847ed4d063cb5ef6b9ad3824c768719bf92ceb9dc999867a7e22fe80da46a62
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-8 string is already case-folded.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-is-lowercase.c
+Hash: 40b3b6176251c3ba3f01a9dfd5ad1e90fc294c6d2187e04c7623d12dbd036e75
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-8 string is entirely lower case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-is-titlecase.c
+Hash: 4addcc8d4a006652f4e0af349822acb9ceabab38e19f7bf45f2264ce526c734e
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-8 string is entirely title case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-is-uppercase.c
+Hash: d647fd8d839c47edffa85a2edc6a9b5f9d740295d42b861e2097069fc1d973cd
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of test whether an UTF-8 string is entirely upper case.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-tolower.c
+Hash: 40ee18dae3078615adcadd02bc1525436c511d80eb00a52c9c7e44cb0e260d19
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of lowercase mapping for UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-totitle.c
+Hash: daea8586484638f8dff9c0f3972a5e1cc4632eb4c26528f93972f8ba9f1c0435
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of titlecase mapping for UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-u8-toupper.c
+Hash: 92775e814bc7c28fd54cd36641f38bacbb6e32645a9901abb6d77a7dd3266e15
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of uppercase mapping for UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-uc_tolower.c
+Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+License: GPL-3+ GENERATED FILE
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character mapping functions.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-uc_totitle.c
+Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+License: GPL-3+ GENERATED FILE
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character mapping functions.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-uc_toupper.c
+Hash: c2a4263e856558e5d834ff3dfe49b5d3c58de269067e9a3b352162b896a1b27c
+License: GPL-3+ GENERATED FILE
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character mapping functions.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-ulc-casecmp.c
+Hash: a70362d42f608ae8519496f614eab7f6840506198a7b35a54688aae06f8ec537
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of case and normalization insensitive comparison of strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unicase/test-ulc-casecmp1.sh
+Hash: e11e26a26c3195042709f1c53297ff0ee32afb9250cee9144746a30ed82ac770
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-ulc-casecmp${EXEEXT} 1
+
+File: ./tests/unicase/test-ulc-casecmp2.sh
+Hash: c5f5915062ac34dd725d099fa932f794f216eb1ba89a42b3c10f1c017f83e698
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-ulc-casecmp${EXEEXT} 2
+
+File: ./tests/unicase/test-ulc-casecoll.c
+Hash: 4889e501871ae3a0ada5fb5a8099116bbf289c47ced06d26b7d1bcb98f805e51
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of locale dependent, case and normalization insensitive comparison of
+#   strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unicase/test-ulc-casecoll1.sh
+Hash: 60778acf09ad204d99a6e1e57b880e68d7f53c81bc1dc0473c865922ff99020b
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-ulc-casecoll${EXEEXT}
+
+File: ./tests/unicase/test-ulc-casecoll2.sh
+Hash: 085a2bd9d34dba3e6eb2f389ff01804bfde543909a631b591f44799a8632ce0c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a specific UTF-8 locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR_UTF8 \
+#./test-ulc-casecoll${EXEEXT}
+
+File: ./tests/uniconv/test-u16-conv-from-enc.c
+Hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion to UTF-16 from legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u16-conv-to-enc.c
+Hash: ee723fe33867bbe1788462de1e330317d6949f49144cabd6e8e38efca0d447cb
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion from UTF-16 to legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u16-strconv-from-enc.c
+Hash: 5334901c00ae1a449f18bb31d4c0c978f79a30d0cb6673480295af5a5ac067b1
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion to UTF-16 from legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u16-strconv-to-enc.c
+Hash: 7cc68dc5f7b4f76a27bf80ef26a988398dd0a4288934033f8e604467ebbbddc1
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion from UTF-16 to legacy encodings.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u32-conv-from-enc.c
+Hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion to UTF-32 from legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u32-conv-to-enc.c
+Hash: 9d55d78e2f579b4085948278faa02c153cf2889171a763786c40a320053fefb9
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion from UTF-32 to legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u32-strconv-from-enc.c
+Hash: d8df4ee62d144e51a363a58f8a7bc9b51372887757e6ae5f6e6c42c5b6a64ed9
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion to UTF-32 from legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u32-strconv-to-enc.c
+Hash: f046bf7ce16400906bfb439be832a1e91647af489a78820eb57d0b4ca94f0810
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion from UTF-32 to legacy encodings.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u8-conv-from-enc.c
+Hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion to UTF-8 from legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u8-conv-to-enc.c
+Hash: b699c5da15c5e1fdb4bf45482b3895de5a4bdf4febbf595cfe241f5eca8d335a
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion from UTF-8 to legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u8-strconv-from-enc.c
+Hash: 50fbf2a5ca6fa1aa3e8ed9121d28fdaafdeb1fdbcd58cc280fb64f76dc481401
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion to UTF-8 from legacy encodings.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniconv/test-u8-strconv-to-enc.c
+Hash: 92b274f28c6b1980e1ffc2bce550639bea47dd069072090dfbbf3db06ee6ab96
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of conversion from UTF-8 to legacy encodings.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-bidi_byname.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-bidi_name.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-bidi_of.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-bidi_test.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-block_list.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-block_of.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-block_test.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-categ_C.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Cc.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Cc) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Cf.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Cf) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Cn.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Co.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Co) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Cs.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Cs) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_L.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Ll.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Lm.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Lm) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Lo.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Lt.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Lt) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Lu.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_M.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Mc.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Me.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Me)
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Mn.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_N.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Nd.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Nd)
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Nl.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Nl) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_No.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_No)
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_P.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Pc.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Pc) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Pd.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pd)
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Pe.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Pf.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pf)
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Pi.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Pi) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Po.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Ps.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_S.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Sc.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Sc)
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Sk.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Sk) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Sm.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_So.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Z.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Z) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Zl.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Zl)
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Zp.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Zp) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_Zs.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_general_category (c, UC_CATEGORY_Zs) / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-categ_and.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-categ_and_not.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-categ_byname.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-categ_name.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-categ_none.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-categ_of.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-categ_or.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-categ_test_withtable.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-combining.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-ctype_alnum.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_alpha.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_blank.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_blank 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_cntrl.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_cntrl 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_digit 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_graph.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_lower.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_print.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_punct.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_space.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_space 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_upper.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-ctype_xdigit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_xdigit  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-decdigit.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: == mapping[i].value); / == -1); / 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-decdigit.h
+Hash: d15c2fbaf8a835d6cbc0c2da37cd84fba9905ba6199f021dd4def95e741aeb94
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Decimal digit values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#    { 0x0030, 0 },
+#    { 0x0031, 1 },
+#    { 0x0032, 2 },
+#    { 0x0033, 3 },
+#    { 0x0034, 4 },
+#    { 0x0035, 5 },
+#    { 0x0036, 6 },
+#    { 0x0037, 7 },
+#    { 0x0038, 8 },
+#    { 0x0039, 9 },
+#    { 0x0660, 0 },
+#    { 0x0661, 1 },
+
+File: ./tests/unictype/test-digit.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: == mapping[i].value); / == -1); / 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-digit.h
+Hash: 08530a09f8d458d98e4012b13ec2ab5df415027736aa50e44d5bce7643faffb1
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Digit values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#    { 0x0030, 0 },
+#    { 0x0031, 1 },
+#    { 0x0032, 2 },
+#    { 0x0033, 3 },
+#    { 0x0034, 4 },
+#    { 0x0035, 5 },
+#    { 0x0036, 6 },
+#    { 0x0037, 7 },
+#    { 0x0038, 8 },
+#    { 0x0039, 9 },
+#    { 0x00B2, 2 },
+#    { 0x00B3, 3 },
+
+File: ./tests/unictype/test-mirror.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-numeric.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-numeric.h
+Hash: d6f23324b218034f2f4c008b20dc43866a71580a56841aac37368dc517c0ea52
+License: *No copyright* GENERATED FILE
+Copyright: 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Numeric values of Unicode characters.  */
+#/* Generated automatically by gen-ctype.c for Unicode 5.1.0.  */
+#    { 0x0030, 0, 1 },
+#    { 0x0031, 1, 1 },
+#    { 0x0032, 2, 1 },
+#    { 0x0033, 3, 1 },
+#    { 0x0034, 4, 1 },
+#    { 0x0035, 5, 1 },
+#    { 0x0036, 6, 1 },
+#    { 0x0037, 7, 1 },
+#    { 0x0038, 8, 1 },
+#    { 0x0039, 9, 1 },
+#    { 0x00B2, 2, 1 },
+#    { 0x00B3, 3, 1 },
+
+File: ./tests/unictype/test-pr_alphabetic.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_ascii_hex_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_ascii_hex_digit  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_arabic_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_arabic_digit 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_arabic_right_to_left.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_bidi_arabic_right_to_left  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_block_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_block_separator 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_boundary_neutral.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_bidi_boundary_neutral  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_common_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_bidi_common_separator  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_bidi_control  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_embedding_or_override.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_bidi_embedding_or_override  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_eur_num_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_eur_num_separator 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_eur_num_terminator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_bidi_eur_num_terminator  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_european_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_bidi_european_digit  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_hebrew_right_to_left.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_hebrew_right_to_left 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_left_to_right.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_non_spacing_mark.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_other_neutral.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_pdf.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_pdf 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_segment_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_segment_separator 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_bidi_whitespace.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_whitespace 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_byname.c
+Hash: dbd7e2328e7e018057824c78f0dcdc4dda339f3ebb215181e461f0d562a24b0e
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-pr_combining.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_composite.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_currency_symbol.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_currency_symbol  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_dash.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_dash 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_decimal_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_decimal_digit 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_default_ignorable_code_point.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_deprecated.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_deprecated 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_diacritic.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_extender.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_extender 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_format_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_format_control 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_grapheme_base.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_grapheme_extend.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_grapheme_link.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_grapheme_link 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_hex_digit.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_hex_digit  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_hyphen.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_hyphen 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_id_continue.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_id_start.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_ideographic.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_ideographic  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_ids_binary_operator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_ids_binary_operator  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_ids_trinary_operator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_ids_trinary_operator 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_ignorable_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_ignorable_control  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_iso_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_iso_control 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_join_control.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_join_control  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_left_of_pair.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_line_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_line_separator 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_logical_order_exception.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_logical_order_exception  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_lowercase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_math.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_non_break.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_non_break  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_not_a_character.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_not_a_character  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_numeric.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_other_alphabetic.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_other_default_ignorable_code_point.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_other_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_other_grapheme_extend.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_other_grapheme_extend 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_other_id_continue.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_other_id_continue  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_other_id_start.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_other_id_start 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_other_lowercase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_other_lowercase  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_other_math.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_other_uppercase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_other_uppercase  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_paired_punctuation.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_paired_punctuation 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_paragraph_separator.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_paragraph_separator 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_pattern_syntax.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_pattern_syntax 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_pattern_white_space.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_pattern_white_space 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_private_use.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_private_use  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_punctuation.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_quotation_mark.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_quotation_mark 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_radical.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_radical  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_sentence_terminal.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_sentence_terminal  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_soft_dotted.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_soft_dotted  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_space.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_space 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_terminal_punctuation.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_test.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-pr_titlecase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_titlecase 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_unassigned_code_value.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_unified_ideograph.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_unified_ideograph  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_uppercase.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_variation_selector.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_property_variation_selector  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_white_space.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_white_space 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_xid_continue.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_xid_start.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-pr_zero_width.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_property_zero_width 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-predicate-part1.h
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-predicate-part2.h
+Hash: 777a2f9f28424e3cb85bb6e7c65b8fc4311d91b1d8e2c1382b9d007defff1286
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-scripts.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-sy_c_ident.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-sy_c_whitespace.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: 2007 Free Software Foundation, Inc / uc_is_c_whitespace 
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unictype/test-sy_java_ident.c
+Hash: a20a323abdbfa289c8ac6694f8b494cbe3c0a7f45989bcf2ad9cb009c8bd8122
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unictype/test-sy_java_whitespace.c
+Hash: 62bb326af42b34ad4602e7a6978de7422a8206d559c67df02ae3be4a6d7729af
+License: GPL-3+ GENERATED FILE
+Copyright: uc_is_java_whitespace  / 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
+#/* Test the Unicode character type functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/unilbrk/test-u16-possible-linebreaks.c
+Hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of line breaking of UTF-16 strings.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unilbrk/test-u16-width-linebreaks.c
+Hash: 7e1ab1d262741a939083a6489d857cad3b65e2208cf5590bf38f552aa035d30b
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of line breaking of UTF-16 strings.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unilbrk/test-u32-possible-linebreaks.c
+Hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of line breaking of UTF-32 strings.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unilbrk/test-u32-width-linebreaks.c
+Hash: 056d43429843f89f2c1ab0043fc518e79cd47a2af57b659d603ac379cee56e96
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of line breaking of UTF-32 strings.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unilbrk/test-u8-possible-linebreaks.c
+Hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of line breaking of UTF-8 strings.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unilbrk/test-u8-width-linebreaks.c
+Hash: db0f777bd10cf83e59c1b3d7a561e24c8ce86f11c4cf8d487f64c85566a5d557
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of line breaking of UTF-8 strings.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unilbrk/test-ulc-possible-linebreaks.c
+Hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of line breaking of strings.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unilbrk/test-ulc-width-linebreaks.c
+Hash: 5e1778a2c3765cd8814c66f53bc1ff0e04b8e18bf35ce247e8679b4b47d8c051
+License: GPL-3+ 
+Copyright: 2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of line breaking of strings.
+#   Copyright (C) 2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniname/UnicodeDataNames.txt
+Hash: a1676b8b73689618daa1662cabf719b5da50cf74a63224111534949d3e4297fb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#0020;SPACE;Zs;0;WS;;;;;N;;;;;
+#0021;EXCLAMATION MARK;Po;0;ON;;;;;N;;;;;
+#0022;QUOTATION MARK;Po;0;ON;;;;;N;;;;;
+#0023;NUMBER SIGN;Po;0;ET;;;;;N;;;;;
+#0024;DOLLAR SIGN;Sc;0;ET;;;;;N;;;;;
+#0025;PERCENT SIGN;Po;0;ET;;;;;N;;;;;
+#0026;AMPERSAND;Po;0;ON;;;;;N;;;;;
+#0027;APOSTROPHE;Po;0;ON;;;;;N;APOSTROPHE-QUOTE;;;;
+#0028;LEFT PARENTHESIS;Ps;0;ON;;;;;Y;OPENING PARENTHESIS;;;;
+#0029;RIGHT PARENTHESIS;Pe;0;ON;;;;;Y;CLOSING PARENTHESIS;;;;
+#002A;ASTERISK;Po;0;ON;;;;;N;;;;;
+#002B;PLUS SIGN;Sm;0;ES;;;;;N;;;;;
+#002C;COMMA;Po;0;CS;;;;;N;;;;;
+#002D;HYPHEN-MINUS;Pd;0;ES;;;;;N;;;;;
+#002E;FULL STOP;Po;0;CS;;;;;N;PERIOD;;;;
+
+File: ./tests/uniname/test-uninames.c
+Hash: 75aa6d9c3dd3d7292e5386895029004117b7bb082ce4f21227c105dc6af43b00
+License: GPL-3+ 
+Copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test the Unicode character name functions.
+#   Copyright (C) 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniname/test-uninames.sh
+Hash: 853dcc547f6774df0e14d3d22621c60a885132801e94352425dc0992f91b1fb4
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#exec ./test-uninames${EXEEXT} "$srcdir/uniname/UnicodeDataNames.txt"
+
+File: ./tests/uninorm/NormalizationTest.txt
+Hash: 886760af898381620a8980841c646ae70e894b5292c3138e6dfd75b6904deffb
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+
+
+File: ./tests/uninorm/test-canonical-decomposition.c
+Hash: a448e6e47900ce6ef19b5c003b18e330f376cd946cbd71d73028af86abe135dd
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-compat-decomposition.c
+Hash: 1a1be0d3a07610958181e24240ac9a5ecbf2ab378eee5f10e83361662f9c4846
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-composition.c
+Hash: a9cfc5518ecd4051f86fd4d69f17642c965db52574d6e05e7a6c48d910e863b8
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical composition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-decomposing-form.c
+Hash: 69576c1fa17d13a8886c698b7d02742d961e36583f54b708bbd69ad096c32a93
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of decomposing variant of a normalization form.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-decomposition.c
+Hash: e098c1a33862ac43c6a81a23842bcc036bc222abd16cabf7585b40c5ffa9f13b
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of decomposition of Unicode characters.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-nfc.c
+Hash: e9e561889a62796cb7a20a6a9044b31b813500f2a501e285020f9150b1bd8e9b
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical normalization of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-nfd.c
+Hash: 9e4d1ad511a5edfbe76247e671aeba2f3a2ccb7d048d408440d9d64a2b6bfd86
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical decomposition of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-nfkc.c
+Hash: f852f8cc0ef2cc1d6145b5040910d25bad300da7f4f217b441bf42f48c5b684f
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility normalization of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-nfkd.c
+Hash: 996838de5e25b4e10b7be70b8e0139e15b9852eec680d7813b7ac0e9cd4a4254
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility decomposition of Unicode strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u16-nfc.c
+Hash: b698b4d1c028fb6ecf50c5fbd520583195bbb1d0e55ad4b6e098487c6ad28d38
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical normalization of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u16-nfd.c
+Hash: 4c837d69f99444f70aa8a5a6b4ac325ffcca6a95ec60cb4fc052a53d8bbe2a44
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical decomposition of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u16-nfkc.c
+Hash: 498eacf1ec13365c3b4a66b32f14a6a10374555a75e6a3a68916446e76c2b146
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility normalization of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u16-nfkd.c
+Hash: 0b13b0dddc12354427fafcf78195149905174c48a77bdfea7de548c164de9ec8
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility decomposition of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u16-normcmp.c
+Hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u16-normcmp.h
+Hash: b0235b86ca665bda025ccf51560209c2d7d010bc51ac4148c25b2d783dfe6185
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of normalization insensitive comparison of UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u16-normcoll.c
+Hash: ceee340b1298ce1b06479da651ec2099f4356abfe07c42a2cf75b2f3ccc53855
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of locale dependent, normalization insensitive comparison of
+#   UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/uninorm/test-u32-nfc-big.c
+Hash: 0d2777874284fe0a8c91d2b3b2a5399b823cb2dad79d585383eb83c79b57c81c
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of Unicode compliance of canonical normalization of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-nfc-big.sh
+Hash: 756efd18ad52a52ef3c82289a3036f7c5fff9304a556162298fa05572b3ad8d5
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#exec ./test-u32-nfc-big${EXEEXT} "$srcdir/uninorm/NormalizationTest.txt"
+
+File: ./tests/uninorm/test-u32-nfc.c
+Hash: 1b33b266858f6f5526266ebd1602fa80e26475d58bdeb7e6c376bfb53ba04963
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical normalization of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-nfd-big.c
+Hash: 63854a2632b7cbc28cf0082fff71e81449b3459399888d8c59085994b440fbd1
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of Unicode compliance of canonical decomposition of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-nfd-big.sh
+Hash: 7df6600ba689632b1923565f4cea0c349205eb81ab54e48adbe2b4f19f1a0710
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#exec ./test-u32-nfd-big${EXEEXT} "$srcdir/uninorm/NormalizationTest.txt"
+
+File: ./tests/uninorm/test-u32-nfd.c
+Hash: 1d11efc667f9a1a96ae0c1cf7a7ff48efeb6343fd34d5bf65bc009926b652e1b
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical decomposition of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-nfkc-big.c
+Hash: 03584a064142db823aa30f198f34140a95768d7cb752d9bc2b4fd2b5064d9967
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of Unicode compliance of compatibility normalization of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-nfkc-big.sh
+Hash: 9c1bbb4dc3679b54e635a3f50ac29520d1bdf8fcff118b56b01b7760af61a802
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#exec ./test-u32-nfkc-big${EXEEXT} "$srcdir/uninorm/NormalizationTest.txt"
+
+File: ./tests/uninorm/test-u32-nfkc.c
+Hash: 4cb74b532545362c81ed6ff3a88bc7ae33d0663e9262942ee6c264d1190e1fbd
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility normalization of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-nfkd-big.c
+Hash: 12acb786931e36a2d9a6ba2d9807d967a72b06b659b6e37181b20b6168235f5f
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of Unicode compliance of compatibility decomposition of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-nfkd-big.sh
+Hash: 59c7882b0d8e4cb0a3f3b3d4deceaed6b01da8bcd5dcd430931782d394e9a581
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#exec ./test-u32-nfkd-big${EXEEXT} "$srcdir/uninorm/NormalizationTest.txt"
+
+File: ./tests/uninorm/test-u32-nfkd.c
+Hash: 35ed77ced7909ca500b2c08af6836d013992774deafe0846b72ecfa13d6f031c
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility decomposition of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-normalize-big.c
+Hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of Unicode compliance of normalization of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-normalize-big.h
+Hash: 80c2377529d4e80a2c9907bc104c8462bf2defc41e5e84df6e71d53d96dd6959
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of Unicode compliance of normalization of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-normcmp.c
+Hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-normcmp.h
+Hash: e12c9ff30dbb755251c96abd83503ef410cdc0a91673feeb1cd4d5b1c916bc39
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of normalization insensitive comparison of UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u32-normcoll.c
+Hash: 3b3591a744117db52df87ebfee1374c242580690a9d38dd72b9264d47d519b12
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of locale dependent, normalization insensitive comparison of
+#   UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/uninorm/test-u8-nfc.c
+Hash: 1cc025cec921d4f28a082455f5ee5c4c03ba8293305aa7b8c3b0c1fbba30c4fa
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical normalization of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u8-nfd.c
+Hash: ab1a65db2659f7732acdd205f0b1ea3117f4b85013e5c38a9f46d225ad2ae0f0
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical decomposition of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u8-nfkc.c
+Hash: d7082ba6f4b74e4554c6653e18151eb793cdda74f1b47770530230295d2e3e2e
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility normalization of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u8-nfkd.c
+Hash: a813ff37ff6161e75f5290a0fc5a2e80284c57f42d059e4ba9bd16159a1fdfc8
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of compatibility decomposition of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u8-normcmp.c
+Hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u8-normcmp.h
+Hash: c7bcb1213e510c547356430e856b5a1c370db281b2fb14d8c0e41b77e9f60e51
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of normalization insensitive comparison of UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uninorm/test-u8-normcoll.c
+Hash: d7aa94f225cc5310484036b430a51f201b05b9bc7784316c1d21f6a605a339ea
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of locale dependent, normalization insensitive comparison of
+#   UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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
+
+File: ./tests/uninorm/test-uninorm-filter-nfc.c
+Hash: b66d309ad83a237d8d0a247cedfab3884798bad886cc15f3a6ba1d9f5e13b9ad
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of canonical normalization of streams.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-asnprintf1.c
+Hash: 4cd1fc1c179cccfb1ae23beba8905574b7607b734ca02cb70a1267216322a5a4
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_asnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-asnprintf1.h
+Hash: 76a1f62bd7c8d5161add6df04b31cd91ada3814cc0ca69bd9753a73a17dfcea4
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_[v]asnprintf() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-printf1.h
+Hash: 909d6f0cefa405afb2e1072bb26eb4df9ba77e176f713b5f446a0c35b6b45ee7
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_v[a]s[n]printf() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-vasnprintf1.c
+Hash: 3d425ccab1f150ddf5f5b81607ce8bfcfdd0c2ccb574609fe36a93297b08258e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_vasnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-vasnprintf2.c
+Hash: c42edbef700ece3826498e7ec7562a528f72171d32e1dcadd5589aade0a62cc1
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_vasnprintf() function in an ISO-8859-1 locale.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-vasnprintf2.sh
+Hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a traditional french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+
+File: ./tests/unistdio/test-u16-vasnprintf3.c
+Hash: 6b80497faada59178ae32663d8cc7aac6607d31f69c43bd2ab2a411492bfa495
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_vasnprintf() function in an UTF-8 locale.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-vasnprintf3.sh
+Hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a french Unicode locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  testlocale=$LOCALE_FR_UTF8
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+
+File: ./tests/unistdio/test-u16-vasprintf1.c
+Hash: d559b3310501b16f524c4cf845f697c47b883582976b38184410d2f88971682c
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_vasprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-vsnprintf1.c
+Hash: bbea74e4dfbebb15cf5bdf3dae5d9e5b9c0fecf7b81cd5d597686a27b8e12570
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_vsnprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u16-vsprintf1.c
+Hash: 51f1b19e6f03063d8833db2914a0b59598e146143ff42eb5789564b39888d994
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_vsprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-asnprintf1.c
+Hash: d249b9b64091c3e4f41e6e9b0e7e856c278716eb4db6a989f603c9859fedf963
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_asnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-asnprintf1.h
+Hash: 8b746d35a6ed28682834e7bd2e553b62a12e899d022589df093e016b38fb03af
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_[v]asnprintf() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-printf1.h
+Hash: 2aa402941192f63adcad98959781ac2774070979f335f1332164a3863cc54404
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_v[a]s[n]printf() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-vasnprintf1.c
+Hash: 2d05aa67379ffb2f79eb2308a4bc06bfd43b048ee90b89ae18730279e363c524
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_vasnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-vasnprintf2.c
+Hash: b083a2377405a07fe51eb035ad09a0489bf65067207a0566910712abcb30726b
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_vasnprintf() function in an ISO-8859-1 locale.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-vasnprintf2.sh
+Hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a traditional french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+
+File: ./tests/unistdio/test-u32-vasnprintf3.c
+Hash: 4fcf74ce885ab101762032b20b3ad9f1cfbfb52430e736add8c65743ec40eade
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_vasnprintf() function in an UTF-8 locale.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-vasnprintf3.sh
+Hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a french Unicode locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  testlocale=$LOCALE_FR_UTF8
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+
+File: ./tests/unistdio/test-u32-vasprintf1.c
+Hash: eabc0bb1a9dbe71c93902c4a1490621caad6c67d3e03f4ac411b05807cb595e4
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_vasprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-vsnprintf1.c
+Hash: 2fb5c97c1868ff9f912aae2bc8784dbe759e65cfcb02ac8263da73868a208a49
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_vsnprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u32-vsprintf1.c
+Hash: 36cf2e191798aa14ab7c7a791b0d61357029ec015af3c1feb99aaf853e1b8803
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_vsprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-asnprintf1.c
+Hash: f2754ecea17ff7e997c7ba8312c71a022f600e49807de5f420c8bb62f0871cd8
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_asnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-asnprintf1.h
+Hash: 46bdc3f468fe19b87aaacbecbd84f662c90c6ab838125defd47e5412c9bd67c1
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_[v]asnprintf() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-printf1.h
+Hash: 1b1973376c0d8b5d5f884d50b7b1ab402e3e31243b03bc3f8e9c3251e39c66ec
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_v[a]s[n]printf() function.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-vasnprintf1.c
+Hash: feffbb7a585c58b542b866102777167000d487253536607fd7500a6f21c5a1d5
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_vasnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-vasnprintf2.c
+Hash: 6964834677d5fd9d5fcec4e56ebc23c309ef467f98ae1827e81e9739de99eaa2
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_vasnprintf() function in an ISO-8859-1 locale.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-vasnprintf2.sh
+Hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a traditional french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+
+File: ./tests/unistdio/test-u8-vasnprintf3.c
+Hash: 59c1d2cbfeabd9ca557c7c72f2f556faab45e78c6113db11244cbe00eafb4c91
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_vasnprintf() function in an UTF-8 locale.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-vasnprintf3.sh
+Hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a french Unicode locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  testlocale=$LOCALE_FR_UTF8
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+
+File: ./tests/unistdio/test-u8-vasprintf1.c
+Hash: 005e299ef65aa2dfd2c981e1fb5ae933957acfc190152132b9bd9da6b75afc68
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_vasprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-vsnprintf1.c
+Hash: f0f1a7e874f9cdb481d2920816076e14198c8279ed8878458668578ce82643d5
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_vsnprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-u8-vsprintf1.c
+Hash: ecfe8f24ee3cdd3323a0192f09dd50590f4201122e5b203aa84879ae682ff319
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_vsprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-asnprintf1.c
+Hash: f460de9dace19bfa0b9e79f25557bd411248db7e9c41ded07d1b450087c5e1cb
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_asnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-asnprintf1.h
+Hash: cd00792dc677501bacb09b04f578ee318c85955822b7e39b71f20ded701252f9
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_[v]asnprintf() functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-printf1.h
+Hash: 52719b059d0fe4592ec7de9c12156520eacdf740e6a9b43edaf32d1650a8c992
+License: GPL-3+ 
+Copyright: 2007 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_v[a]s[n]printf() functions.
+#   Copyright (C) 2007 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-vasnprintf1.c
+Hash: 38f11760c3832f5b714de061118c87e63e5e70c624e5f25bb835676b6055e6b4
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_vasnprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-vasnprintf2.c
+Hash: be7efc5b5cb950d1b005d9fe5af23b12c0eb89bc049db7294d999044a6329e1e
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_vasnprintf() function in an ISO-8859-1 locale.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-vasnprintf2.sh
+Hash: df3831fff8af1ca98b0314f8d96ba47ba9a39e4b5aaf770340ba99385ada5792
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a traditional french locale is installed.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR != none; then
+#  testlocale=$LOCALE_FR
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+
+File: ./tests/unistdio/test-ulc-vasnprintf3.c
+Hash: 90ffc7b3f6cb85309a0e342f0f768c7a4c2c729a08d2b831a0f549e8e01718d0
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_vasnprintf() function in an UTF-8 locale.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-vasnprintf3.sh
+Hash: f905d4a370e838d40e500c1d4fc9c76157059380250d1d1d8ebcded50f45a2d8
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test whether a french Unicode locale is installed.
+#: ${LOCALE_FR_UTF8=fr_FR.UTF-8}
+#if test $LOCALE_FR_UTF8 != none; then
+#  testlocale=$LOCALE_FR_UTF8
+#else
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no french Unicode locale is installed"
+#  else
+#    echo "Skipping test: no french Unicode locale is supported"
+#  fi
+#  exit 77
+#fi
+
+File: ./tests/unistdio/test-ulc-vasprintf1.c
+Hash: 0db7617d589e3703964119869d14691abb2498a1fc25d64a755eec64dfd07413
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_vasprintf() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-vsnprintf1.c
+Hash: bb840d45e39a1be31b0b4daad61d03d30d8376f10220704e06c94f655cc3a564
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_vsnprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/unistdio/test-ulc-vsprintf1.c
+Hash: d062894ca1aa3e3cc138093e10d57c39a38df1464ffcf75538249c801da83c35
+License: GPL-3+ 
+Copyright: 2007-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of ulc_vsprintf() function.
+#   Copyright (C) 2007-2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwbrk/test-u16-wordbreaks.c
+Hash: 11ab1e7ac1c6c7ba08cea587aadb03a6aa110a3169c7bf643d0ea2764e240537
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of word breaks in UTF-16 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwbrk/test-u32-wordbreaks.c
+Hash: f49f7bebcb1395a7fa915f963b4a677a3698fc1d2e5ff93f955be0299357baee
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of word breaks in UTF-32 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwbrk/test-u8-wordbreaks.c
+Hash: bb82bf9821127ceb2c7da498d0c101d05faef0dd319c018e41d56ed0f3ac1c31
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of word breaks in UTF-8 strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwbrk/test-ulc-wordbreaks.c
+Hash: 1609df8eadc7abda56ce3dec4a2ec747326360d74afb059c522331d5b242533c
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of word breaks in strings.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwbrk/test-ulc-wordbreaks.sh
+Hash: d1d3525c27882f7ded09b3b5fa177ebddcfb16a75b19ef3804ae6f4731f2962c
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+## Test in an ISO-8859-1 or ISO-8859-15 locale.
+#: ${LOCALE_FR=fr_FR}
+#if test $LOCALE_FR = none; then
+#  if test -f /usr/bin/localedef; then
+#    echo "Skipping test: no traditional french locale is installed"
+#  else
+#    echo "Skipping test: no traditional french locale is supported"
+#  fi
+#  exit 77
+#fi
+#
+#LC_ALL=$LOCALE_FR \
+#./test-ulc-wordbreaks${EXEEXT}
+
+File: ./tests/uniwidth/test-u16-strwidth.c
+Hash: e5c07a0d8d419dff0b836a33748dee1cc6e0f9d71808ca383caefda4c8f0d551
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_strwidth() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwidth/test-u16-width.c
+Hash: 6874b1458a692740482ff6e7172bf490f6dcc01985040b888e7bd2d7f7243261
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u16_width() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwidth/test-u32-strwidth.c
+Hash: a4d26a909a61a615cf5aa5b183b291ca10258e5123a9eea0aec24856da402b1d
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_strwidth() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwidth/test-u32-width.c
+Hash: e651f14a8b91f79e7b9cbf7403e88af982c9d37e0b1a5327c89da40f1bde988c
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u32_width() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwidth/test-u8-strwidth.c
+Hash: fcf5c6c2c481b0375772edb286bed88b0ca421d6736214ae4e0a64567beb75c7
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_strwidth() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwidth/test-u8-width.c
+Hash: 9e7db4127bec42b0e97fa3a07242099cb818e1e533c208c158bcc2969c7d7c31
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of u8_width() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwidth/test-uc_width.c
+Hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of uc_width() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwidth/test-uc_width2.c
+Hash: 09b9321c70d718fb5c73acf0d91db184090a2c5da32d696337904c743ccc21dd
+License: GPL-3+ 
+Copyright: 2007-2008 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Test of uc_width() function.
+#   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./tests/uniwidth/test-uc_width2.sh
+Hash: 26f58b4ef6788b773c28c79baabad9e1739f820166b24458450bfa7cd542370f
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+##!/bin/sh
+#
+#tmpfiles=""
+#trap 'rm -fr $tmpfiles' 1 2 3 15
+#
+#tmpfiles="$tmpfiles uc_width.out"
+#./test-uc_width2${EXEEXT} | LC_ALL=C tr -d '\r' > uc_width.out
+#
+#tmpfiles="$tmpfiles uc_width.ok"
+#cat > uc_width.ok <<\EOF
+#0000          0
+#0020..007E    1
+#00A0          1
+#00A1..00AC    A
+#00AD          0
+
+File: ./tests/zerosize-ptr.h
+Hash: f1e50a6aba1af63593fff7b9ec71317ade999e0e10d738a6594aa3de16536da7
+License: GPL-3+ 
+Copyright: 2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+#/* Return a pointer to a zero-size object in memory.
+#   Copyright (C) 2009 Free Software Foundation, Inc.
+#
+#   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/>.  */
+
+File: ./top/GNUmakefile
+Hash: 1db2e4a3959febe32d5c70280a5b28547600d854b8d1b61ec85d3a9b670a2b23
+License: GPL-3+ 
+Copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## Having a separate GNUmakefile lets me `include' the dynamically
+## generated rules created via cfg.mk (package-local configuration)
+## as well as maint.mk (generic maintainer rules).
+## This makefile is used only if you run GNU Make.
+## It is necessary if you want to build targets usually of interest
+## only to the maintainer.
+#
+## Copyright (C) 2001, 2003, 2006-2009 Free Software Foundation, Inc.
+#
+## 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,
+
+File: ./top/maint.mk
+Hash: eef091164cb5f26dc538fb6b3940b82d779d05390f32dffea43d1161be06adc1
+License: GPL-3+ 
+Copyright: 2001-2009 Free Software Foundation, Inc
+Licence-Text: 
+#Header: 
+## -*-Makefile-*-
+## This Makefile fragment tries to be general-purpose enough to be
+## used by many projects via the gnulib maintainer-makefile module.
+#
+### Copyright (C) 2001-2009 Free Software Foundation, Inc.
+###
+### 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.
+
+File: ./users.txt
+Hash: f5c05b7f2c33b93dcda0aa8f108195721e70410ef027614d4e342b00ccd15536
+License: 
+Copyright: 
+Licence-Text: 
+#Header: 
+#The following packages appear to be using gnulib and gnulib-tool:
+#
+#  Net::CDP        http://search.cpan.org/src/MCHAPMAN/Net-CDP-0.09/libcdp/
+#  OPeNDAP         http://scm.opendap.org:8090/svn/trunk/
+#  anubis          http://cvs.sv.gnu.org/viewcvs/anubis/anubis/
+#  autobuild       http://josefsson.org/autobuild/
+#  bison           http://git.sv.gnu.org/gitweb/?p=bison.git
+#  clisp           http://clisp.cvs.sourceforge.net/clisp/clisp/
+#  coreutils       http://git.sv.gnu.org/gitweb/?p=coreutils.git
+#  cpio            http://cvs.sv.gnu.org/viewcvs/cpio/cpio/
+#  cvs             http://cvs.sv.gnu.org/viewcvs/cvs/ccvs/
+#  diffutils       http://cvs.sv.gnu.org/viewcvs/diffutils/diffutils/
+#  findutils       http://cvs.sv.gnu.org/viewcvs/findutils/findutils/
+#  gettext         http://cvs.sv.gnu.org/viewcvs/gettext/gettext/
+#  gnuit           http://ftp.gnu.org/gnu/gnuit/gnuit-4.9.2.tar.gz
+
diff --git a/debian/copyright.new b/debian/copyright.new
deleted file mode 100644 (file)
index 628659f..0000000
+++ /dev/null
@@ -1,3286 +0,0 @@
-This package was debianized by Daniel Baumann <daniel@debian.org> on
-Thu,  1 Jun 2006 00:00:00 +0200.
-
-It was downloaded from <http://www.gnu.org/software/gnulib/>.
-
-> The files in here are mostly copyright (C) Free Software Foundation, and
-> are under assorted licenses.  Mostly, but not entirely, GPL.
->
-> Many modules are provided dual-license, either GPL or LGPL at your
-> option.  The headers of files in the lib directory (e.g., lib/error.c)
-> state GPL for convenience, since the bulk of current gnulib users are
-> GPL'd programs.  But the files in the modules directory (e.g.,
-> modules/error) state the true license of each file, and when you use
-> 'gnulib-tool --lgpl --import <modules>', gnulib-tool either rewrites
-> the files to have an LGPL header as part of copying them from gnulib
-> to your project directory, or fails because the modules you requested
-> were not licensed under LGPL.
->
-> Some of the source files in lib/ have different licenses.  Also, the
-> copy of maintain.texi in doc/ has a verbatim-copying license, and
-> doc/standards.texi and make-stds.texi are GFDL.
-
-On Debian systems, the complete text of the GNU General Public License
-can be found in /usr/share/common-licenses/GPL file,
-the GNU Lesser General Public License in /usr/share/common-licenses/LGPL,
-and the GNU Free Document License in /usr/share/common-licenses/GFDL.
-
-The Debian packaging is Copyright 2006-2008, Daniel Baumann <daniel@debian.org>
-and Copyright 2009 Ian Beckwith <ianb@debian.org>, and is licensed
-under the GPL-2, see `/usr/share/common-licenses/GPL-2'.
-
-Detailed copyright information follows, see debian/clscan/README
-in the gnulib source package for information on updating this.
-
-Files: ./m4/dos.m4
-Copyright: ( == '/' || == '\\') / 2000, 2001, 2004, 2005, 2006 Free Software Foundation, Inc / ( == '/')
-
-Files: ./doc/COPYINGv2
-Copyright: 1989, 1991 Free Software Foundation, Inc. / the software, and
-
-Files: ./doc/make-stds.texi
-Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001
-
-Files: ./m4/getloadavg.m4
-Copyright: 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002, 2003
-
-Files: ./lib/acosl.c, ./lib/asinl.c, ./lib/cosl.c, ./lib/sinl.c, ./lib/tanl.c
-Copyright: 1993 by Sun Microsystems, Inc. All rights reserved
-
-Files: ./doc/getdate.texi
-Copyright: 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
-
-Files: ./doc/INSTALL, ./doc/INSTALL.ISO, ./doc/INSTALL.UTF-8
-Copyright: 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005
-
-Files: ./doc/regexprops-generic.texi
-Copyright: 1994, 1996, 1998, 2000, 2001, 2003, 2004, 2005, 2006, 2007
-
-Files: ./build-aux/po/Makefile.in.in
-Copyright: 1995-1997, 2000-2007 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
-
-Files: ./m4/lcmessage.m4
-Copyright: 1995-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/nls.m4
-Copyright: 1995-2003, 2005-2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/intl.m4
-Copyright: 1995-2007 Free Software Foundation, Inc
-
-Files: ./m4/gettext.m4, ./m4/po.m4
-Copyright: 1995-2009 Free Software Foundation, Inc
-
-Files: ./m4/regex.m4
-Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
-
-Files: ./m4/error.m4
-Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software
-
-Files: ./m4/strftime.m4
-Copyright: 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
-
-Files: ./m4/jm-winsz2.m4
-Copyright: 1996, 1999, 2001, 2004, 2009 Free Software Foundation, Inc
-
-Files: ./m4/jm-winsz1.m4
-Copyright: 1996, 1999, 2001-2002, 2004, 2006, 2009
-
-Files: ./m4/uptime.m4
-Copyright: 1996, 1999-2001, 2004, 2009 Free Software Foundation, Inc
-
-Files: ./m4/getgroups.m4
-Copyright: 1996-1997, 1999-2004, 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/progtest.m4
-Copyright: 1996-2003, 2005, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/lib-ld.m4
-Copyright: 1996-2003, 2009 Free Software Foundation, Inc
-
-Files: ./build-aux/config.rpath
-Copyright: 1996-2008 Free Software Foundation, Inc
-
-Files: ./m4/d-ino.m4
-Copyright: 1997, 1999-2001, 2003-2004, 2006-2007, 2009 Free Software
-
-Files: ./m4/d-type.m4
-Copyright: 1997, 1999-2004, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/fsusage.m4
-Copyright: 1997-1998, 2000-2001, 2003-2009 Free Software Foundation, Inc
-
-Files: ./m4/chown.m4
-Copyright: 1997-2001, 2003-2005, 2007, 2009
-
-Files: ./m4/lstat.m4
-Copyright: 1997-2001, 2003-2009 Free Software Foundation, Inc
-
-Files: ./m4/inttypes-pri.m4
-Copyright: 1997-2002, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/inttypes_h.m4, ./m4/stdint_h.m4
-Copyright: 1997-2004, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/intmax_t.m4
-Copyright: 1997-2004, 2006-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/uintmax_t.m4
-Copyright: 1997-2004, 2007-2009 Free Software Foundation, Inc
-
-Files: ./m4/fstypename.m4
-Copyright: 1998, 1999, 2001, 2004, 2006 Free Software Foundation, Inc
-
-Files: ./m4/assert.m4
-Copyright: 1998, 1999, 2001, 2004, 2008 Free Software Foundation, Inc
-
-Files: ./m4/st_dm_mode.m4
-Copyright: 1998, 1999, 2001, 2009 Free Software Foundation, Inc
-
-Files: ./m4/utime.m4
-Copyright: 1998, 2000-2001, 2003-2004, 2009 Free Software Foundation, Inc
-
-Files: ./m4/lchown.m4
-Copyright: 1998, 2001, 2003-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/stat-time.m4
-Copyright: 1998-1999, 2001, 2003, 2005-2007, 2009 Free Software
-
-Files: ./m4/utimes-null.m4
-Copyright: 1998-1999, 2001, 2003-2004, 2006, 2009 Free Software
-
-Files: ./m4/utimbuf.m4
-Copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software
-
-Files: ./m4/perl.m4
-Copyright: 1998-2001, 2003-2004, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/getline.m4
-Copyright: 1998-2003, 2005-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/ls-mntd-fs.m4
-Copyright: 1998-2004, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/unlocked-io.m4
-Copyright: 1998-2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/group-member.m4
-Copyright: 1999-2001, 2003-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/nanosleep.m4
-Copyright: 1999-2001, 2003-2009 Free Software Foundation, Inc
-
-Files: ./m4/afs.m4
-Copyright: 1999-2001, 2004, 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/link-follow.m4
-Copyright: 1999-2001, 2004-2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/ulonglong.m4
-Copyright: 1999-2007 Free Software Foundation, Inc
-
-Files: ./m4/longlong.m4
-Copyright: 1999-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/timespec.m4
-Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2007 Free Software
-
-Files: ./m4/ftruncate.m4
-Copyright: 2000, 2001, 2003-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/unlink-busy.m4
-Copyright: 2000, 2001, 2004, 2007 Free Software Foundation, Inc
-
-Files: ./m4/rmdir-errno.m4
-Copyright: 2000, 2001, 2005, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/time_h.m4
-Copyright: 2000-2001, 2003-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/fpending.m4
-Copyright: 2000-2001, 2004-2009 Free Software Foundation, Inc
-
-Files: ./m4/mbswidth.m4
-Copyright: 2000-2002, 2004, 2006-2009 Free Software Foundation, Inc
-
-Files: ./m4/glibc2.m4, ./m4/glibc21.m4
-Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
-
-Files: ./m4/codeset.m4
-Copyright: 2000-2002, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/iconv.m4
-Copyright: 2000-2002, 2007-2009 Free Software Foundation, Inc
-
-Files: ./m4/mbstate_t.m4
-Copyright: 2000-2002, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/fnmatch.m4
-Copyright: 2000-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/getcwd.m4, ./m4/mkstemp.m4
-Copyright: 2001, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-
-Files: ./m4/host-os.m4
-Copyright: 2001, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/rename.m4
-Copyright: 2001, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/mkdir-slash.m4
-Copyright: 2001, 2003-2004, 2006, 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/vararrays.m4
-Copyright: 2001, 2009 Free Software Foundation, Inc
-
-Files: ./m4/mbrtowc.m4
-Copyright: 2001-2002, 2004-2005, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/tmpdir.m4
-Copyright: 2001-2002, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/signalblocking.m4
-Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
-
-Files: ./m4/gettimeofday.m4
-Copyright: 2001-2003, 2005, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/ssize_t.m4
-Copyright: 2001-2003, 2006 Free Software Foundation, Inc
-
-Files: ./m4/javaexec.m4
-Copyright: 2001-2003, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/javacomp.m4, ./m4/mkdtemp.m4
-Copyright: 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/environ.m4, ./m4/setenv.m4
-Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
-
-Files: ./m4/lib-prefix.m4
-Copyright: 2001-2005, 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/dirfd.m4
-Copyright: 2001-2006, 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/lib-link.m4, ./m4/stdint.m4
-Copyright: 2001-2009 Free Software Foundation, Inc
-
-Files: ./m4/isdir.m4
-Copyright: 2002 Free Software Foundation, Inc
-
-Files: ./m4/backupfile.m4, ./m4/hard-locale.m4, ./m4/human.m4, ./m4/md2.m4, ./m4/mkdir-p.m4, ./m4/read-file.m4, ./m4/xalloc.m4, ./m4/xgetcwd.m4
-Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-
-Files: ./m4/xstrtol.m4
-Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
-
-Files: ./m4/canon-host.m4
-Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-
-Files: ./m4/md4.m4, ./m4/md5.m4, ./m4/sha1.m4
-Copyright: 2002, 2003, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/strtoimax.m4, ./m4/strtoumax.m4
-Copyright: 2002, 2003, 2004, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/memmem.m4
-Copyright: 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/strsep.m4, ./m4/strtok_r.m4
-Copyright: 2002, 2003, 2004, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/c-stack.m4
-Copyright: 2002, 2003, 2004, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/memchr.m4
-Copyright: 2002, 2003, 2004, 2009 Free Software Foundation, Inc
-
-Files: ./m4/closeout.m4, ./m4/exclude.m4, ./m4/exitfail.m4, ./m4/getugroups.m4, ./m4/hash.m4, ./m4/idcache.m4, ./m4/long-options.m4, ./m4/memcoll.m4, ./m4/modechange.m4, ./m4/quote.m4, ./m4/readtokens.m4, ./m4/safe-read.m4, ./m4/same.m4, ./m4/savedir.m4, ./m4/xstrtod.m4, ./m4/yesno.m4
-Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-
-Files: ./m4/memrchr.m4
-Copyright: 2002, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/pathmax.m4
-Copyright: 2002, 2003, 2005, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/getusershell.m4
-Copyright: 2002, 2003, 2006, 2008 Free Software Foundation, Inc
-
-Files: ./m4/strtol.m4
-Copyright: 2002, 2003, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/gettime.m4, ./m4/settime.m4
-Copyright: 2002, 2004, 2005, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/strtoll.m4, ./m4/strtoull.m4
-Copyright: 2002, 2004, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/localcharset.m4
-Copyright: 2002, 2004, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/getpagesize.m4
-Copyright: 2002, 2004-2005, 2007 Free Software Foundation, Inc
-
-Files: ./m4/acl.m4, ./m4/quotearg.m4
-Copyright: 2002, 2004-2009 Free Software Foundation, Inc
-
-Files: ./m4/file-type.m4, ./m4/filemode.m4, ./m4/safe-write.m4, ./m4/unistd-safer.m4
-Copyright: 2002, 2005, 2006 Free Software Foundation, Inc
-
-Files: ./m4/fileblocks.m4, ./m4/sig2str.m4
-Copyright: 2002, 2005, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/dup2.m4
-Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/bison.m4, ./m4/rmdir.m4
-Copyright: 2002, 2005, 2009 Free Software Foundation, Inc
-
-Files: ./m4/stdio-safer.m4
-Copyright: 2002, 2005-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/strcase.m4, ./m4/strverscmp.m4
-Copyright: 2002, 2005-2009 Free Software Foundation, Inc
-
-Files: ./m4/strtoul.m4
-Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/stpcpy.m4
-Copyright: 2002, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/intdiv0.m4, ./m4/strerror.m4
-Copyright: 2002, 2007-2008 Free Software Foundation, Inc
-
-Files: ./m4/gethostname.m4
-Copyright: 2002, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/atexit.m4, ./m4/memcpy.m4, ./m4/memmove.m4, ./m4/memset.m4, ./m4/tm_gmtoff.m4
-Copyright: 2002, 2009 Free Software Foundation, Inc
-
-Files: ./m4/unicodeio.m4
-Copyright: 2002-2003 Free Software Foundation, Inc
-
-Files: ./m4/physmem.m4
-Copyright: 2002-2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/getpass.m4
-Copyright: 2002-2003, 2005-2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/mktime.m4, ./m4/posixtm.m4, ./m4/stpncpy.m4, ./m4/strnlen.m4
-Copyright: 2002-2003, 2005-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/strndup.m4
-Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
-
-Files: ./m4/vasprintf.m4
-Copyright: 2002-2003, 2006-2007 Free Software Foundation, Inc
-
-Files: ./m4/strtod.m4
-Copyright: 2002-2003, 2006-2009 Free Software Foundation, Inc
-
-Files: ./m4/strpbrk.m4
-Copyright: 2002-2003, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/rpmatch.m4
-Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
-
-Files: ./m4/getdomainname.m4, ./m4/libsigsegv.m4, ./m4/wchar_t.m4
-Copyright: 2002-2003, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/strcspn.m4
-Copyright: 2002-2003, 2009 Free Software Foundation, Inc
-
-Files: ./m4/alloca.m4
-Copyright: 2002-2004, 2006, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/vasnprintf.m4
-Copyright: 2002-2004, 2006-2009 Free Software Foundation, Inc
-
-Files: ./m4/snprintf.m4, ./m4/vsnprintf.m4
-Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
-
-Files: ./m4/memcmp.m4
-Copyright: 2002-2004, 2007-2009 Free Software Foundation, Inc
-
-Files: ./m4/intmax.m4
-Copyright: 2002-2005, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/dirname.m4
-Copyright: 2002-2006 Free Software Foundation, Inc
-
-Files: ./m4/getdate.m4
-Copyright: 2002-2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/getopt.m4
-Copyright: 2002-2006, 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/clock_time.m4, ./m4/filenamecat.m4, ./m4/mountlist.m4, ./m4/posixver.m4, ./m4/save-cwd.m4, ./m4/stdbool.m4, ./m4/userspec.m4
-Copyright: 2002-2006, 2009 Free Software Foundation, Inc
-
-Files: ./modules/README
-Copyright: 2002-2007 Free Software Foundation, Inc
-
-Files: ./m4/euidaccess.m4, ./m4/putenv.m4, ./m4/readutmp.m4, ./m4/strdup.m4
-Copyright: 2002-2009 Free Software Foundation, Inc
-
-Files: ./m4/getnline.m4, ./m4/xstrndup.m4
-Copyright: 2003 Free Software Foundation, Inc
-
-Files: ./m4/canonicalize.m4
-Copyright: 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-
-Files: ./m4/utimens.m4
-Copyright: 2003, 2004, 2005, 2006, 2007, 2008 Free Software
-
-Files: ./m4/free.m4, ./m4/utimes.m4
-Copyright: 2003, 2004, 2005, 2009 Free Software Foundation, Inc
-
-Files: ./doc/solaris-versions
-Copyright: 2003, 2005, 2006 Free Software Foundation, Inc
-
-Files: ./m4/poll.m4
-Copyright: 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/sysexits.m4
-Copyright: 2003, 2005, 2007 Free Software Foundation, Inc
-
-Files: ./m4/size_max.m4
-Copyright: 2003, 2005-2006, 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/relocatable-lib.m4, ./m4/relocatable.m4
-Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/locale-fr.m4, ./m4/locale-ja.m4, ./m4/locale-tr.m4, ./m4/locale-zh.m4
-Copyright: 2003, 2005-2009 Free Software Foundation, Inc
-
-Files: ./m4/time_r.m4
-Copyright: 2003, 2006, 2007, 2008 Free Software Foundation, Inc
-
-Files: ./m4/getndelim2.m4
-Copyright: 2003, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/canonicalize-lgpl.m4
-Copyright: 2003, 2006-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/extensions.m4
-Copyright: 2003, 2006-2009 Free Software Foundation, Inc
-
-Files: ./m4/rawmemchr.m4
-Copyright: 2003, 2007, 2008 Free Software Foundation, Inc
-
-Files: ./m4/mathl.m4, ./m4/printf-posix.m4, ./m4/readlink.m4, ./m4/strchrnul.m4, ./m4/timegm.m4, ./m4/tzset.m4
-Copyright: 2003, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/printf.m4, ./m4/wint_t.m4
-Copyright: 2003, 2007-2009 Free Software Foundation, Inc
-
-Files: ./m4/execute.m4, ./m4/wait-process.m4
-Copyright: 2003, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/copy-file.m4, ./m4/eaccess.m4, ./m4/eealloc.m4, ./m4/findprog.m4, ./m4/sig_atomic_t.m4
-Copyright: 2003, 2009 Free Software Foundation, Inc
-
-Files: ./m4/fatal-signal.m4
-Copyright: 2003-2004, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/malloca.m4
-Copyright: 2003-2004, 2006-2007 Free Software Foundation, Inc
-
-Files: ./m4/mempcpy.m4
-Copyright: 2003-2004, 2006-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/xsize.m4
-Copyright: 2003-2004, 2008 Free Software Foundation, Inc
-
-Files: ./m4/csharpcomp.m4
-Copyright: 2003-2005, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/csharpexec.m4
-Copyright: 2003-2005, 2009 Free Software Foundation, Inc
-
-Files: ./m4/argp.m4, ./m4/getcwd-path-max.m4
-Copyright: 2003-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/savewd.m4
-Copyright: 2004 Free Software Foundation, Inc
-
-Files: ./m4/cloexec.m4, ./m4/inttostr.m4
-Copyright: 2004, 2005, 2006 Free Software Foundation, Inc
-
-Files: ./m4/chdir-long.m4, ./m4/utimecmp.m4
-Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-
-Files: ./m4/c-strtod.m4
-Copyright: 2004, 2005, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/base64.m4
-Copyright: 2004, 2006 Free Software Foundation, Inc
-
-Files: ./m4/autobuild.m4
-Copyright: 2004, 2006, 2007, 2008 Free Software Foundation, Inc
-
-Files: ./m4/errno_h.m4
-Copyright: 2004, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/sockpfaf.m4
-Copyright: 2004, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./doc/Makefile
-Copyright: 2004, 2006-2009 Free Software Foundation, Inc
-
-Files: ./doc/alloca-opt.texi, ./doc/alloca.texi, ./m4/getsubopt.m4
-Copyright: 2004, 2007 Free Software Foundation, Inc
-
-Files: ./m4/pipe.m4
-Copyright: 2004, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/gnulib-tool.m4
-Copyright: 2004-2005 Free Software Foundation, Inc
-
-Files: ./m4/csharp.m4
-Copyright: 2004-2005, 2009 Free Software Foundation, Inc
-
-Files: ./m4/argz.m4, ./m4/calloc.m4, ./m4/getaddrinfo.m4, ./m4/intlmacosx.m4, ./m4/openat.m4
-Copyright: 2004-2009 Free Software Foundation, Inc
-
-Files: ./doc/ctime.texi, ./doc/inet_ntoa.texi, ./doc/quote.texi
-Copyright: 2005 Free Software Foundation, Inc
-
-Files: ./m4/arcfour.m4, ./m4/arctwo.m4, ./m4/argmatch.m4, ./m4/check-version.m4, ./m4/crc.m4, ./m4/des.m4, ./m4/fprintftime.m4, ./m4/gc-pbkdf2-sha1.m4, ./m4/hmac-md5.m4, ./m4/hmac-sha1.m4, ./m4/memcasecmp.m4, ./m4/rijndael.m4, ./m4/stat-macros.m4, ./m4/stdlib-safer.m4, ./m4/xnanosleep.m4
-Copyright: 2005, 2006 Free Software Foundation, Inc
-
-Files: ./m4/cycle-check.m4, ./m4/getlogin_r.m4, ./m4/pagealign_alloc.m4, ./m4/socklen.m4
-Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-
-Files: ./m4/getdelim.m4
-Copyright: 2005, 2006, 2007 Free Software dnl Foundation, Inc
-
-Files: ./m4/unlinkdir.m4
-Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/lchmod.m4
-Copyright: 2005, 2006, 2008 Free Software Foundation, Inc
-
-Files: ./m4/gethrxtime.m4, ./m4/inet_ntop.m4, ./m4/sha512.m4
-Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/chdir-safer.m4, ./m4/gc.m4, ./m4/readline.m4
-Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/gc-arcfour.m4, ./m4/gc-arctwo.m4, ./m4/gc-des.m4, ./m4/gc-hmac-md5.m4, ./m4/gc-hmac-sha1.m4, ./m4/gc-md2.m4, ./m4/gc-md4.m4, ./m4/gc-md5.m4, ./m4/gc-rijndael.m4, ./m4/gc-sha1.m4
-Copyright: 2005, 2007 Free Software Foundation, Inc
-
-Files: ./m4/strcasestr.m4
-Copyright: 2005, 2007, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/byteswap.m4, ./m4/mmap-anon.m4
-Copyright: 2005, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/mbfile.m4, ./m4/mbiter.m4, ./m4/tls.m4, ./m4/visibility.m4
-Copyright: 2005, 2008 Free Software Foundation, Inc
-
-Files: ./m4/sha256.m4
-Copyright: 2005, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/minmax.m4, ./m4/nocrash.m4
-Copyright: 2005, 2009 Free Software Foundation, Inc
-
-Files: ./doc/lib-symbol-visibility.texi, ./m4/bison-i18n.m4
-Copyright: 2005-2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/glob.m4, ./m4/mbchar.m4
-Copyright: 2005-2007 Free Software Foundation, Inc
-
-Files: ./m4/fcntl-safer.m4
-Copyright: 2005-2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/fts.m4
-Copyright: 2005-2008 Free Software Foundation, Inc
-
-Files: ./doc/gnulib-tool.texi, ./m4/gc-random.m4, ./m4/lock.m4, ./m4/sys_socket_h.m4, ./m4/threadlib.m4, ./m4/yield.m4
-Copyright: 2005-2009 Free Software Foundation, Inc
-
-Files: ./doc/gcd.texi, ./doc/verify.texi, ./m4/config-h.m4, ./m4/gl_list.m4, ./m4/i-ring.m4, ./m4/imaxabs.m4, ./m4/imaxdiv.m4, ./m4/ldd.m4, ./m4/lib-ignore.m4, ./m4/memxor.m4, ./m4/mkancesdirs.m4, ./m4/no-c++.m4, ./m4/xvasprintf.m4, ./modules/COPYING
-Copyright: 2006 Free Software Foundation, Inc
-
-Files: ./m4/selinux-context-h.m4
-Copyright: 2006, 2007 Free Software Foundation, Inc
-
-Files: ./m4/fcntl_h.m4, ./m4/selinux-selinux-h.m4
-Copyright: 2006, 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/arpa_inet_h.m4
-Copyright: 2006, 2008 Free Software Foundation, Inc
-
-Files: ./m4/double-slash-root.m4, ./m4/inet_pton.m4
-Copyright: 2006, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/stdarg.m4
-Copyright: 2006, 2008-2009 Free Software Foundation, Inc
-
-Files: ./Makefile, ./m4/flexmember.m4, ./m4/getcwd-abort-bug.m4, ./m4/inline.m4, ./m4/intldir.m4, ./m4/isapipe.m4, ./m4/rename-dest-slash.m4
-Copyright: 2006, 2009 Free Software Foundation, Inc
-
-Files: ./m4/close-stream.m4, ./m4/tempname.m4
-Copyright: 2006-2007 Free Software Foundation, Inc
-
-Files: ./m4/netinet_in_h.m4, ./m4/tsearch.m4, ./m4/wctype.m4
-Copyright: 2006-2008 Free Software Foundation, Inc
-
-Files: ./m4/absolute-header.m4, ./m4/fchdir.m4, ./m4/include_next.m4, ./m4/inttypes.m4, ./m4/openmp.m4, ./m4/sys_select_h.m4, ./m4/sys_stat_h.m4, ./m4/unistd_h.m4, ./m4/wcwidth.m4
-Copyright: 2006-2009 Free Software Foundation, Inc
-
-Files: ./doc/error.texi, ./m4/check-math-lib.m4, ./m4/closein.m4, ./m4/count-one-bits.m4, ./m4/fbufmode.m4, ./m4/float_h.m4, ./m4/fpieee.m4, ./m4/freadable.m4, ./m4/freading.m4, ./m4/fseek.m4, ./m4/ftell.m4, ./m4/fwritable.m4, ./m4/fwriting.m4, ./m4/gnu-make.m4, ./m4/localename.m4, ./m4/lseek.m4, ./m4/mpsort.m4, ./m4/round.m4, ./m4/strings_h.m4, ./m4/sys_time_h.m4, ./m4/trunc.m4, ./m4/truncf.m4
-Copyright: 2007 Free Software Foundation, Inc
-
-Files: ./doc/COPYING.LESSERv3
-Copyright: 2007 Free Software Foundation, Inc. <http://fsf.org/>
-
-Files: ./m4/ftello.m4
-Copyright: 2007, 2008 Free Software Foundation, Inc
-
-Files: ./m4/frexp.m4, ./m4/signal_h.m4, ./m4/string_h.m4
-Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-
-Files: ./m4/ceil.m4, ./m4/ceilf.m4, ./m4/ceill.m4, ./m4/floor.m4, ./m4/floorf.m4, ./m4/floorl.m4, ./m4/fpurge.m4, ./m4/gc-camellia.m4, ./m4/locale_h.m4, ./m4/malloc.m4, ./m4/printf-frexp.m4, ./m4/printf-frexpl.m4, ./m4/realloc.m4, ./m4/roundl.m4, ./m4/strptime.m4, ./m4/tmpfile.m4, ./m4/write-any-file.m4
-Copyright: 2007, 2009 Free Software Foundation, Inc
-
-Files: ./m4/exponentd.m4, ./m4/exponentf.m4, ./m4/freopen.m4, ./m4/fseeko.m4, ./m4/iconv_h.m4, ./m4/isnan.m4, ./m4/math_h.m4, ./m4/posix-shell.m4, ./m4/search_h.m4, ./m4/sleep.m4, ./m4/truncl.m4
-Copyright: 2007-2008 Free Software Foundation, Inc
-
-Files: ./m4/dprintf-posix.m4, ./m4/exponentl.m4, ./m4/fflush.m4, ./m4/fopen.m4, ./m4/fprintf-posix.m4, ./m4/frexpl.m4, ./m4/gnulib-common.m4, ./m4/iconv_open.m4, ./m4/isfinite.m4, ./m4/isinf.m4, ./m4/isnand.m4, ./m4/isnanf.m4, ./m4/isnanl.m4, ./m4/ldexpl.m4, ./m4/open.m4, ./m4/printf-posix-rpl.m4, ./m4/roundf.m4, ./m4/signbit.m4, ./m4/snprintf-posix.m4, ./m4/sprintf-posix.m4, ./m4/stdio_h.m4, ./m4/stdlib_h.m4, ./m4/vasnprintf-posix.m4, ./m4/vasprintf-posix.m4, ./m4/vdprintf-posix.m4, ./m4/vfprintf-posix.m4, ./m4/vprintf-posix.m4, ./m4/vsnprintf-posix.m4, ./m4/vsprintf-posix.m4, ./m4/wchar.m4
-Copyright: 2007-2009 Free Software Foundation, Inc
-
-Files: ./doc/c-ctype.texi, ./doc/c-strcase.texi, ./doc/c-strcaseeq.texi, ./doc/c-strcasestr.texi, ./doc/c-strstr.texi, ./doc/c-strtold.texi, ./m4/atoll.m4, ./m4/cond.m4, ./m4/flock.m4, ./m4/fsync.m4, ./m4/func.m4, ./m4/getdtablesize.m4, ./m4/hostent.m4, ./m4/mbrlen.m4, ./m4/mbsinit.m4, ./m4/mbsnrtowcs.m4, ./m4/netdb_h.m4, ./m4/obstack-printf.m4, ./m4/perror.m4, ./m4/posix_spawn.m4, ./m4/random_r.m4, ./m4/sched_h.m4, ./m4/servent.m4, ./m4/sigaction.m4, ./m4/spawn_h.m4, ./m4/strsignal.m4, ./m4/sys_file_h.m4, ./m4/sys_times_h.m4, ./m4/sys_wait_h.m4, ./m4/thread.m4, ./m4/warnings.m4, ./m4/write.m4
-Copyright: 2008 Free Software Foundation, Inc
-
-Files: ./doc/gnu-oids.texi, ./m4/ld-output-def.m4, ./m4/ld-version-script.m4, ./m4/manywarnings.m4, ./m4/multiarch.m4, ./m4/pmccabe2html.m4, ./m4/sigpipe.m4, ./m4/sockets.m4, ./m4/strstr.m4
-Copyright: 2008, 2009 Free Software Foundation, Inc
-
-Files: ./doc/c-strtod.texi, ./m4/btowc.m4, ./m4/close.m4, ./m4/dirent_h.m4, ./m4/fclose.m4, ./m4/mbsrtowcs.m4, ./m4/obstack-printf-posix.m4, ./m4/sys_ioctl_h.m4, ./m4/wcrtomb.m4, ./m4/wcsnrtombs.m4, ./m4/wcsrtombs.m4, ./m4/wctob.m4
-Copyright: 2008-2009 Free Software Foundation, Inc
-
-Files: ./m4/00gnulib.m4, ./m4/accept4.m4, ./m4/alphasort.m4, ./m4/dirent-safer.m4, ./m4/dprintf.m4, ./m4/dup3.m4, ./m4/faccessat.m4, ./m4/fdopendir.m4, ./m4/idpriv.m4, ./m4/libunistring.m4, ./m4/link.m4, ./m4/mkostemp.m4, ./m4/mode_t.m4, ./m4/pipe2.m4, ./m4/popen.m4, ./m4/priv-set.m4, ./m4/pthread.m4, ./m4/safe-alloc.m4, ./m4/scandir.m4, ./m4/select.m4, ./m4/stddef_h.m4, ./m4/symlinkat.m4, ./m4/sys_utsname_h.m4, ./m4/uname.m4, ./m4/ungetc.m4, ./m4/vdprintf.m4, ./m4/version-etc.m4
-Copyright: 2009 Free Software Foundation, Inc
-
-Files: ./doc/maintain.texi, ./doc/standards.texi
-Copyright: @{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
-
-Files: ./doc/install.texi
-Copyright: @{} 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004
-
-Files: ./doc/gnulib.texi
-Copyright: @{} 2004-2009 Free Software Foundation, Inc
-
-Files: ./doc/lgpl-3.0.texi
-Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/}
-
-Files: ./doc/agpl-3.0.texi
-Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer
-
-Files: ./doc/gpl-3.0.texi
-Copyright: @{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} / on the software, and (2) offer you this License
-
-Files: ./COPYING
-Copyright: Free Software Foundation, and
-
-Files: ./doc/Copyright/assign.changes.manual, ./doc/Copyright/assign.future.manual
-Copyright: holder so / to the Foundation is to sign an assignment / on the new version
-
-Files: ./doc/Copyright/conditions.text
-Copyright: holder, the Foundation can sue anyone who tries to / to the Free Software Foundation / laws, even though / means signing a contract that makes the Free / law for helping / to defend users' freedom, by means
-
-Files: ./doc/Copyright/disclaim.changes.manual
-Copyright: interest in my
-
-Files: ./doc/Copyright/disclaim.manual, ./doc/Copyright/disclaim.program
-Copyright: interest in my / interest
-
-Files: ./doc/fdl-1.3.texi, ./doc/fdl.texi
-Copyright: law / holder saying it can be / @{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc
-
-Files: ./doc/fdl-1.2.texi
-Copyright: law / holder saying it can be / @{} 2000,2001,2002 Free Software Foundation, Inc
-
-Files: ./doc/Copyright/assign.translation.manual
-Copyright: on the new version. I'm assuming that you / holder so that / to the Foundation is to sign an assignment
-
-Files: ./doc/COPYINGv3
-Copyright: on the software, and (2) offer you this License / 2007 Free Software Foundation, Inc. <http://fsf.org/>
-
-Files: ./doc/Copyright/assign.manual
-Copyright: on this manual to the Foundation is to / interest
-
-Files: ./doc/Copyright/request-assign.changes, ./doc/Copyright/request-assign.future
-Copyright: registration, what country are you a citizen of?]
-
-Files: ./doc/COPYING.LESSERv2
-Copyright: the / 1991, 1999 Free Software Foundation, Inc
-
-Files: ./doc/lgpl-2.1.texi
-Copyright: the / @{} 1991, 1999 Free Software Foundation, Inc
-
-Files: ./doc/gpl-2.0.texi
-Copyright: the software, and / @{} 1989, 1991 Free Software Foundation, Inc
-
-Files: ./modules/version-etc-fsf
-Copyright: variable for FSF projects
-
-Files: ./modules/update-copyright
-Copyright: year list to include the current year
-
-Files: ./lib/unicase/cased.h, ./lib/unicase/ignorable.h, ./lib/unicase/special-casing-table.gperf, ./lib/unicase/tocasefold.h, ./lib/unicase/tolower.h, ./lib/unicase/totitle.h, ./lib/unicase/toupper.h, ./lib/unictype/bidi_of.h, ./lib/unictype/blocks.h, ./lib/unictype/categ_C.h, ./lib/unictype/categ_Cc.h, ./lib/unictype/categ_Cf.h, ./lib/unictype/categ_Cn.h, ./lib/unictype/categ_Co.h, ./lib/unictype/categ_Cs.h, ./lib/unictype/categ_L.h, ./lib/unictype/categ_Ll.h, ./lib/unictype/categ_Lm.h, ./lib/unictype/categ_Lo.h, ./lib/unictype/categ_Lt.h, ./lib/unictype/categ_Lu.h, ./lib/unictype/categ_M.h, ./lib/unictype/categ_Mc.h, ./lib/unictype/categ_Me.h, ./lib/unictype/categ_Mn.h, ./lib/unictype/categ_N.h, ./lib/unictype/categ_Nd.h, ./lib/unictype/categ_Nl.h, ./lib/unictype/categ_No.h, ./lib/unictype/categ_P.h, ./lib/unictype/categ_Pc.h, ./lib/unictype/categ_Pd.h, ./lib/unictype/categ_Pe.h, ./lib/unictype/categ_Pf.h, ./lib/unictype/categ_Pi.h, ./lib/unictype/categ_Po.h, ./lib/unictype/categ_Ps.h, ./lib/unictype/categ_S.h, ./lib/unictype/categ_Sc.h, ./lib/unictype/categ_Sk.h, ./lib/unictype/categ_Sm.h, ./lib/unictype/categ_So.h, ./lib/unictype/categ_Z.h, ./lib/unictype/categ_Zl.h, ./lib/unictype/categ_Zp.h, ./lib/unictype/categ_Zs.h, ./lib/unictype/categ_of.h, ./lib/unictype/combining.h, ./lib/unictype/ctype_alnum.h, ./lib/unictype/ctype_alpha.h, ./lib/unictype/ctype_blank.h, ./lib/unictype/ctype_cntrl.h, ./lib/unictype/ctype_digit.h, ./lib/unictype/ctype_graph.h, ./lib/unictype/ctype_lower.h, ./lib/unictype/ctype_print.h, ./lib/unictype/ctype_punct.h, ./lib/unictype/ctype_space.h, ./lib/unictype/ctype_upper.h, ./lib/unictype/ctype_xdigit.h, ./lib/unictype/decdigit.h, ./lib/unictype/digit.h, ./lib/unictype/mirror.h, ./lib/unictype/numeric.h, ./lib/unictype/pr_alphabetic.h, ./lib/unictype/pr_ascii_hex_digit.h, ./lib/unictype/pr_bidi_arabic_digit.h, ./lib/unictype/pr_bidi_arabic_right_to_left.h, ./lib/unictype/pr_bidi_block_separator.h, ./lib/unictype/pr_bidi_boundary_neutral.h, ./lib/unictype/pr_bidi_common_separator.h, ./lib/unictype/pr_bidi_control.h, ./lib/unictype/pr_bidi_embedding_or_override.h, ./lib/unictype/pr_bidi_eur_num_separator.h, ./lib/unictype/pr_bidi_eur_num_terminator.h, ./lib/unictype/pr_bidi_european_digit.h, ./lib/unictype/pr_bidi_hebrew_right_to_left.h, ./lib/unictype/pr_bidi_left_to_right.h, ./lib/unictype/pr_bidi_non_spacing_mark.h, ./lib/unictype/pr_bidi_other_neutral.h, ./lib/unictype/pr_bidi_pdf.h, ./lib/unictype/pr_bidi_segment_separator.h, ./lib/unictype/pr_bidi_whitespace.h, ./lib/unictype/pr_combining.h, ./lib/unictype/pr_composite.h, ./lib/unictype/pr_currency_symbol.h, ./lib/unictype/pr_dash.h, ./lib/unictype/pr_decimal_digit.h, ./lib/unictype/pr_default_ignorable_code_point.h, ./lib/unictype/pr_deprecated.h, ./lib/unictype/pr_diacritic.h, ./lib/unictype/pr_extender.h, ./lib/unictype/pr_format_control.h, ./lib/unictype/pr_grapheme_base.h, ./lib/unictype/pr_grapheme_extend.h, ./lib/unictype/pr_grapheme_link.h, ./lib/unictype/pr_hex_digit.h, ./lib/unictype/pr_hyphen.h, ./lib/unictype/pr_id_continue.h, ./lib/unictype/pr_id_start.h, ./lib/unictype/pr_ideographic.h, ./lib/unictype/pr_ids_binary_operator.h, ./lib/unictype/pr_ids_trinary_operator.h, ./lib/unictype/pr_ignorable_control.h, ./lib/unictype/pr_iso_control.h, ./lib/unictype/pr_join_control.h, ./lib/unictype/pr_left_of_pair.h, ./lib/unictype/pr_line_separator.h, ./lib/unictype/pr_logical_order_exception.h, ./lib/unictype/pr_lowercase.h, ./lib/unictype/pr_math.h, ./lib/unictype/pr_non_break.h, ./lib/unictype/pr_not_a_character.h, ./lib/unictype/pr_numeric.h, ./lib/unictype/pr_other_alphabetic.h, ./lib/unictype/pr_other_default_ignorable_code_point.h, ./lib/unictype/pr_other_grapheme_extend.h, ./lib/unictype/pr_other_id_continue.h, ./lib/unictype/pr_other_id_start.h, ./lib/unictype/pr_other_lowercase.h, ./lib/unictype/pr_other_math.h, ./lib/unictype/pr_other_uppercase.h, ./lib/unictype/pr_paired_punctuation.h, ./lib/unictype/pr_paragraph_separator.h, ./lib/unictype/pr_pattern_syntax.h, ./lib/unictype/pr_pattern_white_space.h, ./lib/unictype/pr_private_use.h, ./lib/unictype/pr_punctuation.h, ./lib/unictype/pr_quotation_mark.h, ./lib/unictype/pr_radical.h, ./lib/unictype/pr_sentence_terminal.h, ./lib/unictype/pr_soft_dotted.h, ./lib/unictype/pr_space.h, ./lib/unictype/pr_terminal_punctuation.h, ./lib/unictype/pr_titlecase.h, ./lib/unictype/pr_unassigned_code_value.h, ./lib/unictype/pr_unified_ideograph.h, ./lib/unictype/pr_uppercase.h, ./lib/unictype/pr_variation_selector.h, ./lib/unictype/pr_white_space.h, ./lib/unictype/pr_xid_continue.h, ./lib/unictype/pr_xid_start.h, ./lib/unictype/pr_zero_width.h, ./lib/unictype/scripts.h, ./lib/unictype/scripts_byname.gperf, ./lib/unictype/sy_c_ident.h, ./lib/unictype/sy_c_whitespace.h, ./lib/unictype/sy_java_ident.h, ./lib/unictype/sy_java_whitespace.h, ./lib/uniname/uninames.h, ./lib/uninorm/decomposition-table1.h, ./lib/uninorm/decomposition-table2.h, ./modules/alloca-opt, ./modules/argz, ./modules/arpa_inet, ./modules/byteswap, ./modules/configmake, ./modules/dirent, ./modules/errno, ./modules/fcntl-h, ./modules/float, ./modules/fnmatch, ./modules/getopt-posix, ./modules/glob, ./modules/iconv_open, ./modules/inttypes, ./modules/locale, ./modules/math, ./modules/netdb, ./modules/netinet_in, ./modules/poll, ./modules/sched, ./modules/search, ./modules/signal, ./modules/spawn, ./modules/stdarg, ./modules/stdbool, ./modules/stddef, ./modules/stdint, ./modules/stdio, ./modules/stdlib, ./modules/string, ./modules/strings, ./modules/sys_file, ./modules/sys_ioctl, ./modules/sys_select, ./modules/sys_socket, ./modules/sys_stat, ./modules/sys_time, ./modules/sys_times, ./modules/sys_utsname, ./modules/sys_wait, ./modules/sysexits, ./modules/time, ./modules/unistd, ./modules/wchar, ./modules/wctype, ./tests/unictype/test-decdigit.h, ./tests/unictype/test-digit.h, ./tests/unictype/test-numeric.h
-License: *No copyright* GENERATED FILE
-
-Files: ./lib/atexit.c, ./lib/ftruncate.c
-License: *No copyright* Public domain
-
-Files: ./lib/fts_.h
-Copyright: 1989, 1993 / 2004-2009 Free Software Foundation, Inc
-License: BSD (3 clause) GPL-3+ 
-
-Files: ./lib/fts.c
-Copyright: 1990, 1993, 1994 / 2004-2009 Free Software Foundation, Inc
-License: BSD (3 clause) GPL-3+ 
-
-Files: ./lib/random_r.c
-Copyright: 1983 Regents of the University of California / 1995, 2005, 2008 Free Software Foundation
-License: BSD (3 clause) LGPL-2.1+ (with incorrect FSF address) 
-
-Files: ./lib/rijndael-alg-fst.h, ./lib/rijndael-api-fst.h
-Copyright: 2005 Free Software Foundation, Inc
-License: BSD GPL 
-
-Files: ./lib/rijndael-alg-fst.c, ./lib/rijndael-api-fst.c
-Copyright: 2005, 2006 Free Software Foundation, Inc
-License: BSD GPL 
-
-Files: ./m4/onceonly.m4
-Copyright: 2002-2003, 2005-2006, 2008 Free Software Foundation, Inc
-License: GENERATED FILE
-
-Files: ./lib/regex.h
-Copyright: 1985,1989-93,1995-98,2000,2001,2002,2003,2005,2006
-License: GPL 
-
-Files: ./lib/fnmatch.in.h
-Copyright: 1991, 1992, 1993, 1996, 1997, 1998, 1999, 2001, 2002, 2003
-License: GPL 
-
-Files: ./lib/strtol.c
-Copyright: 1991, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2003, 2005
-License: GPL 
-
-Files: ./lib/memcmp.c
-Copyright: 1991, 1993, 1995, 1997, 1998, 2003, 2006, 2009 Free Software
-License: GPL 
-
-Files: ./lib/memchr2.c
-Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006
-License: GPL 
-
-Files: ./lib/memchr.c
-Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2006, 2008
-License: GPL 
-
-Files: ./lib/strcspn.c
-Copyright: 1991, 1994, 1996-1997, 2002-2003, 2005-2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/putenv.c
-Copyright: 1991, 1994, 1997-1998, 2000, 2003-2008
-License: GPL 
-
-Files: ./lib/strpbrk.c
-Copyright: 1991, 1994, 2000, 2002-2003, 2006 Free Software
-License: GPL 
-
-Files: ./lib/strdup.c
-Copyright: 1991, 1996, 1997, 1998, 2002, 2003, 2004, 2006, 2007 Free
-License: GPL 
-
-Files: ./lib/memset.c
-Copyright: 1991, 2003 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/fnmatch_loop.c
-Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006
-License: GPL 
-
-Files: ./lib/fnmatch.c
-Copyright: 1991,1992,1993,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2009
-License: GPL 
-
-Files: ./lib/memmem.c, ./lib/strstr.c
-Copyright: 1991,92,93,94,96,97,98,2000,2004,2007,2008 Free Software
-License: GPL 
-
-Files: ./lib/stpcpy.c
-Copyright: 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/alphasort.c
-Copyright: 1992, 1997, 1998, 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/pathmax.h
-Copyright: 1992, 1999, 2001, 2003, 2005, 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/scandir.c
-Copyright: 1992-1998, 2000, 2002, 2003, 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/getpass.c
-Copyright: 1992-2001, 2003, 2004, 2005, 2006, 2007 Free Software
-License: GPL 
-
-Files: ./lib/stpncpy.c
-Copyright: 1993, 1995-1997, 2002-2003, 2005-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/mktime.c
-Copyright: 1993-1999, 2002-2005, 2006, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/getdelim.c
-Copyright: 1994, 1996, 1997, 1998, 2001, 2003, 2005, 2006, 2007
-License: GPL 
-
-Files: ./lib/timegm.c
-Copyright: 1994, 1997, 2003, 2004, 2006, 2007 Free Software
-License: GPL 
-
-Files: ./lib/strtoull.c
-Copyright: 1995, 1996, 1997, 1999 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/minmax.h
-Copyright: 1995, 1998, 2001, 2003, 2005 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/alloca.in.h
-Copyright: 1995, 1999, 2001-2004, 2006-2008 Free Software
-License: GPL 
-
-Files: ./lib/md2.c, ./lib/md4.c
-Copyright: 1995,1996,1997,1999,2000,2001,2002,2003,2005,2006,2008
-License: GPL 
-
-Files: ./lib/md5.c
-Copyright: 1995,1996,1997,1999,2000,2001,2005,2006,2008
-License: GPL 
-
-Files: ./lib/c-strcase.h
-Copyright: 1995-1996, 2001, 2003, 2005 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/string.in.h
-Copyright: 1995-1996, 2001-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/tsearch.c
-Copyright: 1995-1997, 2000, 2006-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/md5.h
-Copyright: 1995-1997,1999,2000,2001,2004,2005,2006,2008,2009
-License: GPL 
-
-Files: ./lib/gettext.h
-Copyright: 1995-1998, 2000-2002, 2004-2006, 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./config/argz.mk
-Copyright: 1995-1998, 2000-2002, 2006 Free Software Foundation, Inc."\
-License: GPL 
-
-Files: ./lib/argz.c
-Copyright: 1995-1998, 2000-2002, 2006, 2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/strndup.c
-Copyright: 1996, 1997, 1998, 2001, 2002, 2003, 2005, 2006, 2007
-License: GPL 
-
-Files: ./lib/malloc.c
-Copyright: 1997, 1998, 2006, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/strverscmp.c
-Copyright: 1997, 2000, 2002, 2004, 2006 Free Software Foundation, Inc / ((unsigned int) - '0' <= 9)
-License: GPL 
-
-Files: ./lib/getaddrinfo.c
-Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software
-License: GPL 
-
-Files: ./lib/gai_strerror.c
-Copyright: 1997, 2001, 2002, 2004, 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/check-version.c
-Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
-License: GPL 
-
-Files: ./lib/des.c
-Copyright: 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
-License: GPL 
-
-Files: ./lib/utime.c
-Copyright: 1998, 2001, 2002, 2003, 2004, 2006 Free Software
-License: GPL 
-
-Files: ./lib/c-strcasecmp.c, ./lib/c-strncasecmp.c
-Copyright: 1998-1999, 2005-2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/strcasecmp.c, ./lib/strncasecmp.c
-Copyright: 1998-1999, 2005-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/base64.c
-Copyright: 1999, 2000, 2001, 2004, 2005, 2006 Free Software
-License: GPL 
-
-Files: ./lib/asnprintf.c
-Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/asprintf.c
-Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/vasprintf.c
-Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/printf-parse.h
-Copyright: 1999, 2002-2003, 2005, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/printf-args.c
-Copyright: 1999, 2002-2003, 2005-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/printf-args.h
-Copyright: 1999, 2002-2003, 2006-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/vasnprintf.c
-Copyright: 1999, 2002-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/printf-parse.c
-Copyright: 1999-2000, 2002-2003, 2006-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/iconv.c
-Copyright: 1999-2001, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/ref-add.sin, ./lib/ref-del.sin
-Copyright: 2000 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/arcfour.h
-Copyright: 2000, 2001, 2002, 2003, 2004, 2005
-License: GPL 
-
-Files: ./lib/arctwo.h
-Copyright: 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/arcfour.c
-Copyright: 2000, 2001, 2002, 2003, 2005, 2006 Free Software
-License: GPL 
-
-Files: ./lib/sha1.c
-Copyright: 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free Software
-License: GPL 
-
-Files: ./lib/sha1.h
-Copyright: 2000, 2001, 2003, 2005, 2006, 2008, 2009
-License: GPL 
-
-Files: ./lib/md2.h, ./lib/md4.h
-Copyright: 2000, 2001, 2003, 2005, 2008, 2009 Free Software Foundation
-License: GPL 
-
-Files: ./lib/unictype/3level.h
-Copyright: 2000-2001 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/unictype/3levelbit.h
-Copyright: 2000-2002 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/localcharset.h
-Copyright: 2000-2003 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/config.charset
-Copyright: 2000-2004, 2006-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/localcharset.c
-Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/gettimeofday.c
-Copyright: 2001, 2002, 2003, 2005, 2006, 2007, 2009 Free Software
-License: GPL 
-
-Files: ./lib/poll.in.h
-Copyright: 2001, 2002, 2003, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/stdint.in.h
-Copyright: 2001-2002, 2004-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/sys_wait.in.h
-Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/stdbool.in.h
-Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/poll.c
-Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/striconv.h
-Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/concat-filename.c, ./lib/xconcat-filename.c
-Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/striconv.c
-Copyright: 2001-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/gc-pbkdf2-sha1.c
-Copyright: 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/regex_internal.c, ./lib/regex_internal.h, ./lib/regexec.c
-Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-License: GPL 
-
-Files: ./lib/gc-gnulib.c, ./lib/gc-libgcrypt.c
-Copyright: 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
-License: GPL 
-
-Files: ./tests/test-gc-pbkdf2-sha1.c
-Copyright: 2002, 2003, 2004, 2005, 2007 Free Software Foundation
-License: GPL 
-
-Files: ./lib/gc.h
-Copyright: 2002, 2003, 2004, 2005, 2007, 2008 Simon Josefsson
-License: GPL 
-
-Files: ./lib/regex.c
-Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/strptime.c
-Copyright: 2002, 2004, 2005, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/regcomp.c
-Copyright: 2002,2003,2004,2005,2006,2007,2008,2009
-License: GPL 
-
-Files: ./lib/vasnprintf.h
-Copyright: 2002-2004, 2007-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/utimens.c
-Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free
-License: GPL 
-
-Files: ./lib/arctwo.c
-Copyright: 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/time_r.c
-Copyright: 2003, 2006, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/malloca.c
-Copyright: 2003, 2006-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/mempcpy.c
-Copyright: 2003, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/xsize.h
-Copyright: 2003, 2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/alignof.h
-Copyright: 2003-2004, 2006, 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/malloca.h
-Copyright: 2003-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/unistd.in.h
-Copyright: 2003-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/getpass.h
-Copyright: 2004 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/base64.h
-Copyright: 2004, 2005, 2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./build-aux/gnupload
-Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation
-License: GPL 
-
-Files: ./lib/snprintf.c, ./lib/vsnprintf.c
-Copyright: 2004, 2006-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/strsep.c
-Copyright: 2004, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/stdio.in.h
-Copyright: 2004, 2007-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./tests/test-gc-arcfour.c, ./tests/test-gc-arctwo.c, ./tests/test-gc-des.c, ./tests/test-gc-hmac-md5.c, ./tests/test-gc-hmac-sha1.c, ./tests/test-gc-md2.c, ./tests/test-gc-md4.c, ./tests/test-gc-md5.c, ./tests/test-gc-rijndael.c, ./tests/test-gc-sha1.c, ./tests/test-md2.c, ./tests/test-md4.c
-Copyright: 2005 Free Software Foundation
-License: GPL 
-
-Files: ./lib/canon-host.h, ./lib/check-version.h, ./lib/hmac.h, ./lib/memxor.h
-Copyright: 2005 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./tests/test-gc.c
-Copyright: 2005, 2006 Free Software Foundation
-License: GPL 
-
-Files: ./lib/hmac-md5.c, ./lib/hmac-sha1.c, ./lib/memxor.c
-Copyright: 2005, 2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/getline.c, ./lib/getlogin_r.c, ./lib/strnlen.c
-Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/canon-host.c
-Copyright: 2005, 2006, 2007, 2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./tests/test-des.c
-Copyright: 2005, 2007 Free Software Foundation
-License: GPL 
-
-Files: ./lib/des.h
-Copyright: 2005, 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/size_max.h
-Copyright: 2005-2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/arpa_inet.in.h
-Copyright: 2005-2006, 2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/glob.in.h
-Copyright: 2005-2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/glthread/cond.h, ./lib/glthread/lock.c, ./lib/glthread/lock.h, ./lib/glthread/thread.c, ./lib/glthread/thread.h, ./lib/glthread/yield.h
-Copyright: 2005-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/strcasestr.c
-Copyright: 2005-2008 Free Software Foundation, Inc / TOLOWER 
-License: GPL 
-
-Files: ./lib/glthread/threadlib.c, ./lib/sys_socket.in.h, ./lib/sys_stat.in.h
-Copyright: 2005-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/read-file.c, ./lib/read-file.h
-Copyright: 2006 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/wctype.in.h
-Copyright: 2006-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/float+.h, ./lib/iconv_close.c, ./lib/lseek.c, ./lib/round.c, ./lib/roundf.c, ./lib/roundl.c
-Copyright: 2007 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./tests/test-closein.c, ./tests/test-roundf1.c
-Copyright: 2007, 2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/iconv_open.c
-Copyright: 2007, 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./build-aux/git-version-gen
-Copyright: 2007-2008 Free Software Foundation
-License: GPL 
-
-Files: ./lib/iconv.in.h, ./lib/isfinite.c, ./lib/isinf.c, ./lib/netinet_in.in.h, ./lib/strings.in.h, ./lib/sys_file.in.h, ./lib/sys_time.in.h, ./tests/test-getdelim.c, ./tests/test-getline.c, ./tests/test-round1.c, ./tests/test-strerror.c, ./tests/test-yesno.c
-Copyright: 2007-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/fseeko.c, ./lib/sys_select.in.h, ./lib/time.in.h, ./lib/wchar.in.h, ./tests/test-roundl.c
-Copyright: 2007-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/glthread/cond.c, ./lib/netdb.in.h, ./lib/obstack_printf.c, ./lib/stdarg.in.h, ./lib/sys_times.in.h, ./lib/times.c, ./tests/test-getndelim2.c, ./tests/test-perror.c, ./tests/test-sigpipe.c, ./tests/test-strsignal.c, ./tests/test-strverscmp.c
-Copyright: 2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/str-two-way.h
-Copyright: 2008 Free Software Foundation, Inc / A macro that canonicalizes an element right after
-License: GPL 
-
-Files: ./tests/test-getdate.c
-Copyright: 2008, 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/errno.in.h, ./lib/select.c, ./lib/sys_ioctl.in.h, ./tests/test-filevercmp.c, ./tests/test-poll.c, ./tests/test-quotearg.c, ./tests/test-xmemdup0.c
-Copyright: 2008-2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/accept4.c, ./lib/dup3.c, ./lib/link.c, ./lib/nproc.c, ./lib/nproc.h, ./lib/pipe2.c, ./lib/pthread.in.h, ./lib/stddef.in.h, ./lib/sys_utsname.in.h, ./tests/test-pipe.c, ./tests/test-pipe2.c
-Copyright: 2009 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./lib/str-kmp.h
-Copyright: A macro that canonicalizes an element right after / 2005-2008 Free Software Foundation, Inc
-License: GPL 
-
-Files: ./build-aux/update-copyright
-Copyright: target rule in maint.mk from gnulib's / 1990-2005, 2007-2009 Free Software / statement is not recognized because the / statements to be updated. For example, you might wish to / &copy; 90,2005,2007-2009 / statement must be formated correctly in / year list to include the current year / 2009 Free Software Foundation, Inc / year intervals. (See "Environment variables" / @{} 1990-2005, 2007-2009 Free Software / statement is recognized in a file and the final
-License: GPL 
-
-Files: ./build-aux/mdate-sh
-Copyright: 1995, 1996, 1997, 2003, 2004, 2005, 2007, 2009 Free
-License: GPL GENERATED FILE
-
-Files: ./build-aux/elisp-comp
-Copyright: 1995, 2000, 2003, 2004, 2005, 2009 Free Software
-License: GPL GENERATED FILE
-
-Files: ./build-aux/missing
-Copyright: 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006
-License: GPL GENERATED FILE
-
-Files: ./build-aux/depcomp
-Copyright: 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
-License: GPL GENERATED FILE
-
-Files: ./build-aux/compile
-Copyright: 1999, 2000, 2003, 2004, 2005, 2009 Free Software
-License: GPL GENERATED FILE
-
-Files: ./lib/crc.c
-Copyright: 2005, 2006 Free Software Foundation, Inc
-License: GPL GENERATED FILE
-
-Files: ./lib/c-ctype.c
-Copyright: 2000-2003, 2006 Free Software Foundation, Inc
-License: GPL-2+ 
-
-Files: ./lib/c-ctype.h
-Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
-License: GPL-2+ 
-
-Files: ./tests/test-flock.c, ./tests/test-fsync.c
-Copyright: 2008 Free Software Foundation, Inc
-License: GPL-2+ 
-
-Files: ./lib/git-merge-changelog.c
-Copyright: 2008-2009 Bruno Haible <bruno@clisp.org>
-License: GPL-2+ 
-
-Files: ./tests/test-link.c
-Copyright: 2009 Free Software Foundation, Inc
-License: GPL-2+ 
-
-Files: ./build-aux/config.sub
-Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
-License: GPL-2+ GENERATED FILE
-
-Files: ./build-aux/config.guess
-Copyright: 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999 / 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001
-License: GPL-2+ GENERATED FILE
-
-Files: ./tests/test-btowc.c
-Copyright: != WEOF); / 2008 Free Software Foundation, Inc / == c);
-License: GPL-3+ 
-
-Files: ./build-aux/vc-list-files
-Copyright: $year Free Software Foundation, Inc / 2006-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/version-etc-fsf.c
-Copyright: %s %d Free Software Foundation, Inc."; / 1999-2006 Free Software Foundation, Inc / goes to the FSF. */
-License: GPL-3+ 
-
-Files: ./lib/filename.h
-Copyright: ( == '/' || == '\\') / tests whether C is a directory separator character / 2001-2004, 2007-2008 Free Software Foundation, Inc / ( == '/')
-License: GPL-3+ 
-
-Files: ./lib/posixtm.c
-Copyright: ((unsigned int) - '0' <= 9) / 1989, 1990, 1991, 1998, 2000, 2001, 2002, 2003, 2004
-License: GPL-3+ 
-
-Files: ./lib/getloadavg.c
-Copyright: 1985, 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994
-License: GPL-3+ 
-
-Files: ./build-aux/texinfo.tex
-Copyright: 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995
-License: GPL-3+ 
-
-Files: ./lib/idcache.c
-Copyright: 1985, 1988, 1989, 1990, 1997, 1998, 2003, 2005-2007
-License: GPL-3+ 
-
-Files: ./lib/filemode.c
-Copyright: 1985, 1990, 1993, 1998-2000, 2004, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/linebuffer.c
-Copyright: 1986, 1991, 1998, 1999, 2001, 2003, 2004, 2006, 2007
-License: GPL-3+ 
-
-Files: ./lib/linebuffer.h
-Copyright: 1986, 1991, 1998, 1999, 2002, 2003, 2007 Free Software
-License: GPL-3+ 
-
-Files: ./lib/getopt.c
-Copyright: 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002,2003,2004,2006,2008
-License: GPL-3+ 
-
-Files: ./lib/getopt1.c
-Copyright: 1987,88,89,90,91,92,93,94,96,97,98,2004,2006,2009
-License: GPL-3+ 
-
-Files: ./lib/obstack.c
-Copyright: 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997
-License: GPL-3+ 
-
-Files: ./lib/rmdir.c
-Copyright: 1988, 1990, 1999, 2003, 2004, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/fstrcmp.c
-Copyright: 1988-1989, 1992-1993, 1995, 2001-2003, 2006, 2008
-License: GPL-3+ 
-
-Files: ./lib/diffseq.h
-Copyright: 1988-1989, 1992-1995, 2001-2004, 2006-2008 Free
-License: GPL-3+ 
-
-Files: ./lib/obstack.h
-Copyright: 1988-1994,1996-1999,2003,2004,2005,2006
-License: GPL-3+ 
-
-Files: ./lib/modechange.c
-Copyright: 1989, 1990, 1997, 1998, 1999, 2001, 2003, 2004, 2005
-License: GPL-3+ 
-
-Files: ./lib/modechange.h
-Copyright: 1989, 1990, 1997, 2003, 2004, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/userspec.c
-Copyright: 1989-1992, 1997-1998, 2000, 2002-2007 Free Software
-License: GPL-3+ 
-
-Files: ./lib/getopt_int.h
-Copyright: 1989-1994,1996-1999,2001,2003,2004
-License: GPL-3+ 
-
-Files: ./lib/getopt.in.h
-Copyright: 1989-1994,1996-1999,2001,2003,2004,2005,2006,2007
-License: GPL-3+ 
-
-Files: ./lib/diacrit.h
-Copyright: 1990, 1991, 1992, 1993 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/backupfile.c, ./lib/xalloc.h, ./lib/xmalloc.c
-Copyright: 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998
-License: GPL-3+ 
-
-Files: ./lib/diacrit.c
-Copyright: 1990, 1991, 1992, 1993, 2000, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/backupfile.h
-Copyright: 1990, 1991, 1992, 1997, 1998, 1999, 2003, 2004 Free
-License: GPL-3+ 
-
-Files: ./lib/euidaccess.c
-Copyright: 1990, 1991, 1995, 1998, 2000, 2003, 2004, 2005, 2006
-License: GPL-3+ 
-
-Files: ./lib/getugroups.c
-Copyright: 1990, 1991, 1998-2000, 2003-2009 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/readtokens.h
-Copyright: 1990, 1991, 1999, 2001-2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/savedir.c
-Copyright: 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
-License: GPL-3+ 
-
-Files: ./lib/mkdir-p.c
-Copyright: 1990, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005
-License: GPL-3+ 
-
-Files: ./lib/fileblocks.c
-Copyright: 1990, 1997, 1998, 1999, 2004, 2005, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/basename.c
-Copyright: 1990, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/argmatch.c
-Copyright: 1990, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007
-License: GPL-3+ 
-
-Files: ./lib/argmatch.h
-Copyright: 1990, 1998, 1999, 2001, 2002, 2004, 2005 Free Software
-License: GPL-3+ 
-
-Files: ./lib/dirname.c
-Copyright: 1990, 1998, 2000, 2001, 2003, 2004, 2005, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/yesno.c
-Copyright: 1990, 1998, 2001, 2003-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/isdir.c
-Copyright: 1990, 1998, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-argmatch.c
-Copyright: 1990, 1998-1999, 2001-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/stripslash.c
-Copyright: 1990, 2001, 2003-2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/readtokens.c
-Copyright: 1990-1991, 1999-2004, 2006, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/error.c
-Copyright: 1990-1998, 2000-2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-update-copyright.sh
-Copyright: 1990-2005, 2007-2009 Free Software / @{} 1990-2005, 2007-2009 Free Software / 2009 Free Software Foundation, Inc / &copy; 90,2005,2007-2009
-License: GPL-3+ 
-
-Files: ./lib/tempname.c
-Copyright: 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999
-License: GPL-3+ 
-
-Files: ./lib/strtod.c
-Copyright: 1991, 1992, 1997, 1999, 2003, 2006, 2008 Free
-License: GPL-3+ 
-
-Files: ./lib/fsusage.h
-Copyright: 1991, 1992, 1997, 2003, 2004, 2005, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/mountlist.c
-Copyright: 1991, 1992, 1997-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mountlist.h
-Copyright: 1991, 1992, 1998, 2000, 2001, 2002, 2003, 2004, 2005
-License: GPL-3+ 
-
-Files: ./lib/memrchr.c
-Copyright: 1991, 1993, 1996, 1997, 1999, 2000, 2003, 2004, 2005
-License: GPL-3+ 
-
-Files: ./lib/strtoul.c
-Copyright: 1991, 1997 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/getusershell.c
-Copyright: 1991, 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 Free
-License: GPL-3+ 
-
-Files: ./lib/cloexec.c
-Copyright: 1991, 2004, 2005, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/strtok_r.c
-Copyright: 1991,1996-1999,2001,2004,2007,2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fsusage.c
-Copyright: 1991-1992, 1996, 1998-1999, 2002-2006, 2009
-License: GPL-3+ 
-
-Files: ./lib/strftime.c
-Copyright: 1991-1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2009 Free Software
-License: GPL-3+ 
-
-Files: ./lib/getcwd.c
-Copyright: 1991-1999, 2004-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/exclude.c
-Copyright: 1992, 1993, 1994, 1997, 1999, 2000, 2001, 2002, 2003
-License: GPL-3+ 
-
-Files: ./lib/exclude.h
-Copyright: 1992, 1993, 1994, 1997, 1999, 2001, 2002, 2003, 2005
-License: GPL-3+ 
-
-Files: ./lib/xgetdomainname.h
-Copyright: 1992, 1996, 2000, 2001, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xgethostname.c
-Copyright: 1992, 1996, 2000, 2001, 2003, 2004, 2005, 2006, 2009
-License: GPL-3+ 
-
-Files: ./lib/xgetdomainname.c
-Copyright: 1992, 1996, 2000-2001, 2003-2004, 2006, 2008 Free Software
-License: GPL-3+ 
-
-Files: ./lib/gethostname.c
-Copyright: 1992, 2003, 2006, 2008, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/unsetenv.c
-Copyright: 1992,1995-1999,2000-2002,2005-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/setenv.c
-Copyright: 1992,1995-1999,2000-2003,2005-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/readutmp.c
-Copyright: 1992-2001, 2003, 2004, 2005, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/readutmp.h
-Copyright: 1992-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/full-write.c
-Copyright: 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-License: GPL-3+ 
-
-Files: ./lib/long-options.c
-Copyright: 1993, 1994, 1998, 1999, 2000, 2002, 2003, 2004, 2005
-License: GPL-3+ 
-
-Files: ./lib/long-options.h
-Copyright: 1993, 1994, 1998, 1999, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/safe-read.c
-Copyright: 1993, 1994, 1998, 2002, 2003, 2004, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/file-type.h
-Copyright: 1993, 1994, 2001, 2002, 2004, 2005 Free Software
-License: GPL-3+ 
-
-Files: ./lib/file-type.c
-Copyright: 1993, 1994, 2001, 2002, 2004, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/getndelim2.c
-Copyright: 1993, 1996, 1997, 1998, 2000, 2003, 2004, 2006, 2008 Free
-License: GPL-3+ 
-
-Files: ./lib/mkdir-p.h
-Copyright: 1994, 1995, 1996, 1997, 2000, 2003, 2004, 2005, 2006
-License: GPL-3+ 
-
-Files: ./lib/group-member.c
-Copyright: 1994, 1997, 1998, 2003, 2005, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/group-member.h
-Copyright: 1994, 1997, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/strtoll.c
-Copyright: 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/error.h
-Copyright: 1995, 1996, 1997, 2003, 2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xstrtol.c, ./tests/test-xstrtol.c
-Copyright: 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2005
-License: GPL-3+ 
-
-Files: ./lib/xstrtol.h
-Copyright: 1995, 1996, 1998, 1999, 2001, 2002, 2003, 2004, 2006, 2007
-License: GPL-3+ 
-
-Files: ./lib/xstrtol-error.c
-Copyright: 1995, 1996, 1998, 1999, 2001-2004, 2006-2008
-License: GPL-3+ 
-
-Files: ./lib/save-cwd.h
-Copyright: 1995, 1997, 1998, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/save-cwd.c
-Copyright: 1995, 1997, 1998, 2003, 2004, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/getdate.h
-Copyright: 1995, 1997, 1998, 2003, 2004, 2007 Free Software
-License: GPL-3+ 
-
-Files: ./lib/memcpy.c
-Copyright: 1995, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fstrcmp.h
-Copyright: 1995, 2000, 2002-2003, 2006, 2008 Free Software
-License: GPL-3+ 
-
-Files: ./lib/xgetcwd.h
-Copyright: 1995, 2001, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/stdlib.in.h
-Copyright: 1995, 2001-2004, 2006-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp.h
-Copyright: 1995-1999,2003-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-parse.c
-Copyright: 1995-2000, 2002, 2003, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-help.c
-Copyright: 1995-2005, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/human.c, ./lib/human.h
-Copyright: 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
-License: GPL-3+ 
-
-Files: ./lib/argp-pvh.c
-Copyright: 1996, 1997, 1999, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/getsubopt.c
-Copyright: 1996, 1997, 1999, 2004, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-pv.c
-Copyright: 1996, 1997, 1999, 2006, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-ba.c
-Copyright: 1996, 1997, 1999, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/memcasecmp.c
-Copyright: 1996, 1997, 2000, 2003, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/filenamecat.h
-Copyright: 1996, 1997, 2003, 2005, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/rpmatch.c
-Copyright: 1996, 1998, 2000, 2002, 2003, 2006-2008 Free Software
-License: GPL-3+ 
-
-Files: ./lib/memcasecmp.h
-Copyright: 1996, 1998, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xstrtod.h
-Copyright: 1996, 1998, 2003, 2004, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xstrtod.c
-Copyright: 1996, 1999, 2000, 2003, 2004, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/getgroups.c
-Copyright: 1996, 1999, 2003, 2006, 2007, 2008 Free Software
-License: GPL-3+ 
-
-Files: ./lib/canonicalize-lgpl.c
-Copyright: 1996-2003, 2005-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/canonicalize.h, ./lib/filenamecat.c
-Copyright: 1996-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-filenamecat.c
-Copyright: 1996-2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/canonicalize.c
-Copyright: 1996-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-eexst.c
-Copyright: 1997 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/same.c
-Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/xalloc-die.c
-Copyright: 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/same.h
-Copyright: 1997, 1998, 1999, 2000, 2003, 2004 Free Software
-License: GPL-3+ 
-
-Files: ./lib/hard-locale.c
-Copyright: 1997, 1998, 1999, 2002, 2003, 2004, 2006, 2007 Free
-License: GPL-3+ 
-
-Files: ./lib/argp-xinl.c
-Copyright: 1997, 1998, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/savedir.h
-Copyright: 1997, 1999, 2001, 2003, 2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-fs-xinl.c
-Copyright: 1997, 2003, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/realloc.c
-Copyright: 1997, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-namefrob.h
-Copyright: 1997, 2003, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/chown.c
-Copyright: 1997, 2004-2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-fmtstream.h
-Copyright: 1997, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/lstat.c
-Copyright: 1997-1999, 2000-2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/argp-fmtstream.c
-Copyright: 1997-1999,2001,2002,2003,2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/hash.c
-Copyright: 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007
-License: GPL-3+ 
-
-Files: ./lib/quotearg.c
-Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007
-License: GPL-3+ 
-
-Files: ./lib/close-stream.c
-Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2007, 2008 Free
-License: GPL-3+ 
-
-Files: ./lib/closeout.c, ./lib/quotearg.h
-Copyright: 1998, 1999, 2000, 2001, 2002, 2004, 2006, 2008 Free
-License: GPL-3+ 
-
-Files: ./lib/quote.h
-Copyright: 1998, 1999, 2000, 2001, 2003 Free Software
-License: GPL-3+ 
-
-Files: ./lib/quote.c
-Copyright: 1998, 1999, 2000, 2001, 2003, 2005, 2006 Free
-License: GPL-3+ 
-
-Files: ./lib/hash.h
-Copyright: 1998, 1999, 2001, 2003, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mkostemp.c, ./lib/mkstemp.c
-Copyright: 1998, 1999, 2001, 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/lchown.c
-Copyright: 1998, 1999, 2002, 2004, 2006, 2007, 2009 Free
-License: GPL-3+ 
-
-Files: ./lib/filemode.h
-Copyright: 1998, 1999, 2003, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/closeout.h
-Copyright: 1998, 2000, 2003, 2004, 2006, 2008 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/dirname.h
-Copyright: 1998, 2001, 2003-2006 Free Software Foundation, Inc / (((unsigned int) | ('a' - 'A')) - 'a' \ / ( == DIRECTORY_SEPARATOR)
-License: GPL-3+ 
-
-Files: ./lib/posixtm.h
-Copyright: 1998, 2003, 2005, 2007 Free Software Foundation Inc
-License: GPL-3+ 
-
-Files: ./lib/mbscasecmp.c, ./lib/mbsncasecmp.c, ./lib/mbspcasecmp.c
-Copyright: 1998-1999, 2005-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbmemcasecmp.c
-Copyright: 1998-1999, 2005-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/getdate.y
-Copyright: 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-License: GPL-3+ 
-
-Files: ./lib/nanosleep.c
-Copyright: 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2008 Free
-License: GPL-3+ 
-
-Files: ./lib/strtoimax.c
-Copyright: 1999, 2001, 2002, 2003, 2004, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/tmpdir.c
-Copyright: 1999, 2001-2002, 2006 Free Software Foundation, Inc / ( == '/' || == '\\') / tests whether C is a directory separator character / ( == '/')
-License: GPL-3+ 
-
-Files: ./lib/mkdtemp.c
-Copyright: 1999, 2001-2003, 2006-2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/memcoll.c
-Copyright: 1999, 2002, 2003, 2004, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbscspn.c, ./lib/mbspbrk.c, ./lib/mbsspn.c, ./lib/mbstok_r.c
-Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xasprintf.c
-Copyright: 1999, 2002-2004, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xvasprintf.c
-Copyright: 1999, 2002-2004, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/memcoll.h
-Copyright: 1999, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/hard-locale.h
-Copyright: 1999, 2003, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/version-etc.h
-Copyright: 1999, 2003, 2005, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/dup2.c
-Copyright: 1999, 2004, 2005, 2006, 2007, 2009 Free Software
-License: GPL-3+ 
-
-Files: ./lib/sincosl.c
-Copyright: 1999, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/trigl.c
-Copyright: 1999, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbrlen.c
-Copyright: 1999-2000, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbrtowc.c
-Copyright: 1999-2002, 2005-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/version-etc.c
-Copyright: 1999-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/spawn.c, ./lib/spawn_faction_addclose.c, ./lib/spawn_faction_adddup2.c, ./lib/spawn_faction_addopen.c, ./lib/spawn_faction_destroy.c, ./lib/spawn_faction_init.c, ./lib/spawnattr_destroy.c, ./lib/spawnattr_getdefault.c, ./lib/spawnattr_getflags.c, ./lib/spawnattr_getpgroup.c, ./lib/spawnattr_getschedpolicy.c, ./lib/spawnattr_getsigmask.c, ./lib/spawnattr_init.c, ./lib/spawnattr_setdefault.c, ./lib/spawnattr_setpgroup.c, ./lib/spawnattr_setschedparam.c, ./lib/spawnattr_setschedpolicy.c, ./lib/spawnattr_setsigmask.c, ./lib/spawnp.c
-Copyright: 2000 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/physmem.c
-Copyright: 2000, 2001, 2003, 2005, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/timespec.h
-Copyright: 2000, 2002, 2004, 2005, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/physmem.h
-Copyright: 2000, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/spawn.in.h
-Copyright: 2000, 2003, 2004, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fpending.h
-Copyright: 2000, 2003, 2005, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/spawnattr_setflags.c
-Copyright: 2000, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fpending.c
-Copyright: 2000, 2004, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/spawn_int.h, ./lib/spawnattr_getschedparam.c
-Copyright: 2000, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/gen-uni-tables.c
-Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/uniname/test-uninames.c
-Copyright: 2000-2003, 2005, 2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/unicodeio.h
-Copyright: 2000-2003, 2005, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/unicodeio.c
-Copyright: 2000-2003, 2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbswidth.h
-Copyright: 2000-2004, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/spawni.c
-Copyright: 2000-2006, 2008-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbswidth.c
-Copyright: 2000-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/atanl.c, ./lib/logl.c
-Copyright: 2001 by Stephen L. Moshier <moshier@na-net.ornl.gov>
-License: GPL-3+ 
-
-Files: ./lib/unlocked-io.h
-Copyright: 2001, 2002, 2003, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/intprops.h
-Copyright: 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/inttostr.h
-Copyright: 2001, 2002, 2003, 2004, 2005, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/rename.c
-Copyright: 2001, 2002, 2003, 2005, 2006, 2009 Free Software
-License: GPL-3+ 
-
-Files: ./lib/hash-pjw.h
-Copyright: 2001, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xgetcwd.c
-Copyright: 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/areadlink.h, ./lib/xreadlink.h
-Copyright: 2001, 2003, 2004, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/w32spawn.h
-Copyright: 2001, 2003, 2004-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/unistd-safer.h
-Copyright: 2001, 2003, 2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/binary-io.h
-Copyright: 2001, 2003, 2005, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/x-to-1.in, ./lib/hash-pjw.c
-Copyright: 2001, 2003, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mkdir.c
-Copyright: 2001, 2003, 2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/stdio-safer.h
-Copyright: 2001, 2003, 2006, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/clean-temp.c
-Copyright: 2001, 2003, 2006-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./top/GNUmakefile
-Copyright: 2001, 2003, 2006-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/areadlink-with-size.c, ./lib/areadlink.c, ./lib/xreadlink.c
-Copyright: 2001, 2003-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/dup-safer.c, ./lib/fopen-safer.c
-Copyright: 2001, 2004, 2005, 2006, 2009 Free Software
-License: GPL-3+ 
-
-Files: ./lib/mbfile.h
-Copyright: 2001, 2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbiter.h, ./lib/mbuiter.h
-Copyright: 2001, 2005, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbchar.h
-Copyright: 2001, 2005-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/javaexec.sh.in, ./lib/mbchar.c
-Copyright: 2001, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/inttostr.c
-Copyright: 2001, 2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/dirfd.c
-Copyright: 2001, 2006, 2008-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/javaexec.h, ./lib/tmpdir.h
-Copyright: 2001-2002 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/sh-quote.h
-Copyright: 2001-2002, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xsetenv.c
-Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/javacomp.sh.in, ./lib/gcd.c, ./lib/gcd.h, ./lib/javacomp.h
-Copyright: 2001-2002, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xsetenv.h
-Copyright: 2001-2002, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/copy-file.h, ./lib/findprog.h
-Copyright: 2001-2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/progname.c, ./lib/wait-process.c
-Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/c-strstr.h, ./lib/classpath.c
-Copyright: 2001-2003, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/pipe.h, ./lib/wait-process.h
-Copyright: 2001-2003, 2006, 2008-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/copy-file.c
-Copyright: 2001-2003, 2006-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/javacomp.c, ./lib/javaexec.c
-Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/execute.h
-Copyright: 2001-2003, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/pipe-filter-aux.h, ./lib/pipe-filter-gi.c, ./lib/pipe-filter-ii.c
-Copyright: 2001-2003, 2008-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/progname.h, ./lib/sh-quote.c, ./lib/xstriconv.c
-Copyright: 2001-2004, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xstriconv.h
-Copyright: 2001-2004, 2006-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/findprog-lgpl.c, ./lib/findprog.c
-Copyright: 2001-2004, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/execute.c, ./lib/pipe.c
-Copyright: 2001-2004, 2006-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/concat-filename.h
-Copyright: 2001-2004, 2007-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/iconveh.h, ./lib/striconveh.h, ./lib/xstriconveh.h
-Copyright: 2001-2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/striconveh.c, ./top/maint.mk
-Copyright: 2001-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/exitfail.h, ./lib/full-read.h, ./lib/safe-write.c, ./lib/safe-write.h
-Copyright: 2002 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/full-read.c, ./lib/trigl.h
-Copyright: 2002, 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./config/srclistvars.sh
-Copyright: 2002, 2003, 2004 2005, 2006, 2008
-License: GPL-3+ 
-
-Files: ./lib/posixver.c
-Copyright: 2002, 2003, 2004, 2005, 2006 Free Software
-License: GPL-3+ 
-
-Files: ./lib/xnanosleep.c
-Copyright: 2002, 2003, 2004, 2005, 2006, 2007 Free Software
-License: GPL-3+ 
-
-Files: ./lib/xmemcoll.c
-Copyright: 2002, 2003, 2004, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/raise.c
-Copyright: 2002, 2003, 2005, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/exitfail.c
-Copyright: 2002, 2003, 2005, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./config/srclist-update
-Copyright: 2002, 2003, 2005, 2007, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/expl.c, ./lib/sqrtl.c
-Copyright: 2002, 2003, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/ldexpl.c
-Copyright: 2002, 2003, 2007, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/gettime.c
-Copyright: 2002, 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/settime.c
-Copyright: 2002, 2004, 2005, 2006, 2007, 2009 Free Software
-License: GPL-3+ 
-
-Files: ./lib/sig2str.c
-Copyright: 2002, 2004, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-c-stack.c
-Copyright: 2002, 2004, 2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/c-stack.c
-Copyright: 2002, 2004, 2006, 2008, 2009 Free Software
-License: GPL-3+ 
-
-Files: ./lib/c-stack.h, ./lib/strftime.h
-Copyright: 2002, 2004, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/sig2str.h
-Copyright: 2002, 2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/striconveha.c
-Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/striconveha.h
-Copyright: 2002, 2005, 2007-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/safe-read.h
-Copyright: 2002, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/acl.h
-Copyright: 2002, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/full-write.h
-Copyright: 2002-2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/copy-acl.c
-Copyright: 2002-2003, 2005-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/acl-internal.h, ./lib/acl_entries.c, ./lib/file-has-acl.c, ./lib/set-mode-acl.c
-Copyright: 2002-2003, 2005-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/math.in.h
-Copyright: 2002-2003, 2007-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xvasprintf.h
-Copyright: 2002-2004, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-stdbool.c
-Copyright: 2002-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./posix-modules
-Copyright: 2002-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./MODULES.html.sh, ./build-aux/announce-gen, ./gnulib-tool
-Copyright: 2002-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/classpath.h, ./lib/csharpcomp.h, ./lib/csharpexec.h, ./lib/xstrndup.h
-Copyright: 2003 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/getnline.h
-Copyright: 2003, 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/cycle-check.c, ./lib/fts-cycle.c
-Copyright: 2003, 2004, 2005, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/cycle-check.h, ./lib/getndelim2.h, ./lib/getnline.c
-Copyright: 2003, 2004, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/c-strtod.c
-Copyright: 2003, 2004, 2006, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/csharpexec.sh.in
-Copyright: 2003, 2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xmalloca.h
-Copyright: 2003, 2005, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fwriteerror.h
-Copyright: 2003, 2005-2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/relocatable.sh.in, ./lib/relocwrapper.c
-Copyright: 2003, 2005-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/install-reloc
-Copyright: 2003, 2005-2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/free.c
-Copyright: 2003, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xstrndup.c
-Copyright: 2003, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/getdomainname.c
-Copyright: 2003, 2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/xmalloca.c
-Copyright: 2003, 2006-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/sysexits.in.h
-Copyright: 2003, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/strchrnul.c
-Copyright: 2003, 2007, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/eealloc.h, ./tests/test-stpncpy.c
-Copyright: 2003, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fatal-signal.h
-Copyright: 2003-2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fatal-signal.c
-Copyright: 2003-2004, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/c-strtod.h
-Copyright: 2003-2004, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/csharpcomp.sh.in
-Copyright: 2003-2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fwriteerror.c
-Copyright: 2003-2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/readlink.c
-Copyright: 2003-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/csharpcomp.c, ./lib/csharpexec.c
-Copyright: 2003-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/bootstrap, ./lib/progreloc.c
-Copyright: 2003-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/readtokens0.h, ./lib/utimecmp.h, ./lib/yesno.h
-Copyright: 2004 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/chdir-long.h, ./tests/test-iconvme.c
-Copyright: 2004, 2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/calloc.c, ./lib/utimecmp.c
-Copyright: 2004, 2005, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/readtokens0.c
-Copyright: 2004, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fprintf.c, ./lib/sprintf.c, ./lib/unistdio/ulc-fprintf.c, ./lib/unistdio/ulc-vfprintf.c, ./lib/vfprintf.c, ./lib/vsprintf.c
-Copyright: 2004, 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/dummy.c
-Copyright: 2004, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-strstr.c
-Copyright: 2004, 2007, 2008, 2009 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./tests/test-fpending.c
-Copyright: 2004, 2007-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-memmem.c
-Copyright: 2004, 2007-2009 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./tests/test-base64.c
-Copyright: 2004, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/openat.h
-Copyright: 2004-2006, 2008-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/chdir-long.c, ./lib/fdopendir.c, ./lib/openat.c
-Copyright: 2004-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-arcfour.c, ./tests/test-arctwo.c, ./tests/test-hmac-md5.c, ./tests/test-hmac-sha1.c, ./tests/test-md5.c, ./tests/test-rijndael.c
-Copyright: 2005 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/argp-pin.c, ./lib/c-strcasestr.h, ./lib/chdir-safer.h, ./lib/crc.h, ./lib/fprintftime.h, ./lib/gethrxtime.h, ./lib/readline.h, ./lib/stdlib-safer.h, ./lib/strnlen1.h, ./lib/unistd--.h, ./lib/unlinkdir.h, ./tests/test-getpass.c, ./tests/test-verify.c
-Copyright: 2005 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/creat-safer.c, ./lib/pipe-safer.c, ./lib/verify.h, ./lib/xtime.h
-Copyright: 2005, 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-crc.c
-Copyright: 2005, 2006, 2007 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/gethrxtime.c, ./lib/mkstemp-safer.c, ./lib/pagealign_alloc.c, ./lib/stdlib--.h, ./tests/test-dirname.c
-Copyright: 2005, 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/readline.c
-Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./check-module
-Copyright: 2005, 2006, 2007, 2009 Free Software Foundation, Inc / 2006 Free Software Foundation, Inc.\n"
-License: GPL-3+ 
-
-Files: ./lib/sha256.c, ./lib/sha512.c
-Copyright: 2005, 2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/sha256.h, ./lib/sha512.h
-Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/open-safer.c, ./lib/openat-die.c, ./lib/openat-safer.c
-Copyright: 2005, 2006, 2008-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fd-safer.c, ./lib/mkdirat.c, ./lib/openat-priv.h, ./lib/stdio--.h
-Copyright: 2005, 2006, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-gettimeofday.c
-Copyright: 2005, 2007 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/byteswap.in.h, ./lib/stat-time.h, ./tests/test-alloca-opt.c, ./tests/test-malloca.c
-Copyright: 2005, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/glthread/tls.h, ./tests/test-binary-io.c
-Copyright: 2005, 2007-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-c-ctype.c
-Copyright: 2005, 2007-2008 Free Software Foundation, Inc / == (c >= 0 && c < 0x80));
-License: GPL-3+ 
-
-Files: ./lib/pagealign_alloc.h, ./tests/test-lock.c, ./tests/test-tls.c
-Copyright: 2005, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-sha1.c
-Copyright: 2005, 2008, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fcntl--.h, ./lib/fcntl-safer.h
-Copyright: 2005, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/strnlen1.c
-Copyright: 2005-2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/chdir-safer.c
-Copyright: 2005-2006, 2008-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/unlinkdir.c
-Copyright: 2005-2006, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/c-strcasestr.c, ./lib/c-strstr.c, ./lib/glthread/tls.c
-Copyright: 2005-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbscasestr.c
-Copyright: 2005-2008 Free Software Foundation, Inc / TOLOWER 
-License: GPL-3+ 
-
-Files: ./build-aux/ldd.sh.in, ./lib/clean-temp.h, ./lib/gl_anyavltree_list1.h, ./lib/gl_anyhash_list1.h, ./lib/gl_anyhash_list2.h, ./lib/gl_anylinked_list1.h, ./lib/gl_anyrbtree_list1.h, ./lib/gl_anytree_list1.h, ./lib/gl_array_list.h, ./lib/gl_array_oset.h, ./lib/gl_avltree_list.h, ./lib/gl_avltree_oset.h, ./lib/gl_avltreehash_list.h, ./lib/gl_carray_list.h, ./lib/gl_linked_list.h, ./lib/gl_linkedhash_list.h, ./lib/gl_rbtree_list.h, ./lib/gl_rbtree_oset.h, ./lib/gl_rbtreehash_list.h, ./lib/gl_sublist.h, ./lib/i-ring.c, ./lib/i-ring.h, ./lib/imaxabs.c, ./lib/imaxdiv.c, ./lib/javaversion.h, ./lib/javaversion.java, ./lib/mkancesdirs.c, ./lib/rename-dest-slash.c, ./lib/same-inode.h, ./lib/savewd.h, ./lib/trim.h, ./lib/u64.h
-Copyright: 2006 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/bootstrap.conf, ./lib/wcwidth.c
-Copyright: 2006, 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/dirchownmod.c
-Copyright: 2006, 2007, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/savewd.c
-Copyright: 2006, 2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/gl_avltree_list.c, ./lib/gl_avltreehash_list.c, ./lib/gl_linked_list.c, ./lib/gl_linkedhash_list.c, ./lib/gl_rbtree_list.c, ./lib/gl_rbtreehash_list.c, ./lib/isapipe.c, ./lib/propername.h
-Copyright: 2006, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/at-func.c, ./lib/fchmodat.c, ./lib/fstatat.c, ./lib/openat-proc.c, ./lib/tempname.h, ./lib/tmpfile-safer.c
-Copyright: 2006, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-read-file.c
-Copyright: 2006-2007 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/gl_anyavltree_list2.h, ./lib/gl_anyrbtree_list2.h, ./lib/gl_anytree_oset.h, ./lib/gl_anytreehash_list1.h, ./lib/gl_anytreehash_list2.h, ./lib/gl_array_oset.c, ./lib/gl_avltree_oset.c, ./lib/gl_oset.c, ./lib/gl_oset.h, ./lib/gl_rbtree_oset.c, ./lib/verror.c, ./lib/verror.h, ./tests/test-argp.c, ./tests/test-inttypes.c
-Copyright: 2006-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fchownat.c
-Copyright: 2006-2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/gl_anylinked_list2.h, ./lib/gl_anytree_list2.h, ./lib/gl_array_list.c, ./lib/gl_carray_list.c, ./lib/gl_list.c, ./lib/gl_list.h, ./lib/gl_sublist.c, ./lib/javaversion.c, ./lib/sigprocmask.c, ./lib/trim.c, ./tests/test-argp-2.sh, ./tests/test-array_list.c, ./tests/test-array_oset.c, ./tests/test-avltreehash_list.c, ./tests/test-carray_list.c, ./tests/test-i-ring.c, ./tests/test-linked_list.c, ./tests/test-linkedhash_list.c, ./tests/test-rbtree_list.c, ./tests/test-rbtree_oset.c, ./tests/test-rbtreehash_list.c, ./tests/test-stdint.c
-Copyright: 2006-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/dirent.in.h, ./lib/fchdir.c, ./lib/fcntl.in.h, ./lib/inttypes.in.h, ./lib/propername.c, ./lib/signal.in.h, ./tests/test-avltree_list.c, ./tests/test-avltree_oset.c, ./tests/test-getaddrinfo.c
-Copyright: 2006-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/ceil.c, ./lib/ceilf.c, ./lib/ceill.c, ./lib/closein.c, ./lib/closein.h, ./lib/fbufmode.h, ./lib/file-set.c, ./lib/floor.c, ./lib/floorf.c, ./lib/floorl.c, ./lib/freadable.h, ./lib/frexpl.c, ./lib/fseek.c, ./lib/fseterr.h, ./lib/ftello.c, ./lib/fwritable.h, ./lib/fwriting.h, ./lib/getpagesize.c, ./lib/getugroups.h, ./lib/hash-triple.c, ./lib/isnanf.c, ./lib/isnanl.c, ./lib/mpsort.c, ./lib/printf-frexp.c, ./lib/printf-frexp.h, ./lib/printf-frexpl.c, ./lib/printf-frexpl.h, ./lib/printf.c, ./lib/sleep.c, ./lib/tmpfile.c, ./lib/trunc.c, ./lib/truncf.c, ./lib/truncl.c, ./lib/vprintf.c, ./lib/write-any-file.c, ./lib/xprintf.c, ./tests/test-arpa_inet.c, ./tests/test-atexit.c, ./tests/test-fflush.c, ./tests/test-fprintf-posix2.c, ./tests/test-fseterr.c, ./tests/test-isnanl-nolibm.c, ./tests/test-netinet_in.c, ./tests/test-printf-posix2.c, ./tests/test-search.c, ./tests/test-strings.c, ./tests/test-sys_time.c, ./tests/test-sysexits.c, ./tests/unicase/test-predicate-part2.h, ./tests/unictype/test-predicate-part2.h, ./tests/unistdio/test-u16-asnprintf1.h, ./tests/unistdio/test-u16-printf1.h, ./tests/unistdio/test-u32-asnprintf1.h, ./tests/unistdio/test-u32-printf1.h, ./tests/unistdio/test-u8-asnprintf1.h, ./tests/unistdio/test-u8-printf1.h, ./tests/unistdio/test-ulc-asnprintf1.h, ./tests/unistdio/test-ulc-printf1.h
-Copyright: 2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/move-if-change
-Copyright: 2007 Free Software Foundation, Inc / 2002-2007 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/pmccabe2html, ./lib/ftell.c, ./tests/test-c-strcasestr.c, ./tests/test-localename.c, ./tests/test-math.c, ./tests/test-strcasestr.c
-Copyright: 2007, 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-fseek.c, ./tests/test-fseeko.c, ./tests/test-ftell.c, ./tests/test-ftello.c, ./tests/test-signbit.c
-Copyright: 2007, 2008, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/selinux-at.c, ./lib/selinux-at.h, ./lib/signbitf.c, ./lib/signbitl.c, ./tests/test-fcntl-h.c, ./tests/test-locale.c, ./tests/test-stdio.c, ./tests/test-stdlib.c, ./tests/test-string.c, ./tests/test-sys_socket.c, ./tests/test-time.c, ./tests/test-unistd.c
-Copyright: 2007, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-count-one-bits.c
-Copyright: 2007-2008 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./build-aux/mktempd, ./lib/count-one-bits.h, ./lib/float.in.h, ./lib/fpucw.h, ./lib/freadahead.h, ./lib/freading.h, ./lib/freadptr.h, ./lib/freadseek.h, ./lib/freopen.c, ./lib/frexp.c, ./lib/isnan.c, ./lib/isnand-nolibm.h, ./lib/isnanf-nolibm.h, ./lib/isnanl-nolibm.h, ./lib/mbschr.c, ./lib/mbslen.c, ./lib/mbsnlen.c, ./lib/mbsrchr.c, ./lib/mbssep.c, ./lib/search.in.h, ./lib/stdio-impl.h, ./lib/xprintf.h, ./tests/test-byteswap.c, ./tests/test-c-strcasecmp.c, ./tests/test-c-strncasecmp.c, ./tests/test-c-strstr.c, ./tests/test-canonicalize-lgpl.c, ./tests/test-canonicalize.c, ./tests/test-ceilf1.c, ./tests/test-ceilf2.c, ./tests/test-fbufmode.c, ./tests/test-floorf1.c, ./tests/test-floorf2.c, ./tests/test-fprintf-posix.c, ./tests/test-fprintf-posix.h, ./tests/test-freadable.c, ./tests/test-freadahead.c, ./tests/test-freading.c, ./tests/test-freadptr.c, ./tests/test-freadptr2.c, ./tests/test-freopen.c, ./tests/test-frexp.c, ./tests/test-fwritable.c, ./tests/test-fwriting.c, ./tests/test-iconv-utf.c, ./tests/test-iconv.c, ./tests/test-isfinite.c, ./tests/test-isinf.c, ./tests/test-isnand-nolibm.c, ./tests/test-isnand.c, ./tests/test-isnand.h, ./tests/test-isnanf-nolibm.c, ./tests/test-isnanf.c, ./tests/test-isnanf.h, ./tests/test-isnanl.c, ./tests/test-lseek.c, ./tests/test-mbscasecmp.c, ./tests/test-mbscasestr1.c, ./tests/test-mbscasestr2.c, ./tests/test-mbscasestr3.c, ./tests/test-mbscasestr4.c, ./tests/test-mbschr.c, ./tests/test-mbscspn.c, ./tests/test-mbsncasecmp.c, ./tests/test-mbspbrk.c, ./tests/test-mbspcasecmp.c, ./tests/test-mbsrchr.c, ./tests/test-mbsspn.c, ./tests/test-mbsstr1.c, ./tests/test-mbsstr2.c, ./tests/test-mbsstr3.c, ./tests/test-netdb.c, ./tests/test-printf-frexp.c, ./tests/test-printf-frexpl.c, ./tests/test-printf-posix.c, ./tests/test-printf-posix.h, ./tests/test-round2.c, ./tests/test-sleep.c, ./tests/test-snprintf-posix.c, ./tests/test-snprintf.c, ./tests/test-sprintf-posix.c, ./tests/test-stat-time.c, ./tests/test-striconv.c, ./tests/test-striconveha.c, ./tests/test-sys_stat.c, ./tests/test-trunc1.c, ./tests/test-trunc2.c, ./tests/test-truncf1.c, ./tests/test-truncf2.c, ./tests/test-vasnprintf-posix2.c, ./tests/test-vasnprintf.c, ./tests/test-vasprintf.c, ./tests/test-vfprintf-posix.c, ./tests/test-vprintf-posix.c, ./tests/test-vsnprintf-posix.c, ./tests/test-vsnprintf.c, ./tests/test-vsprintf-posix.c, ./tests/test-wcwidth.c, ./tests/test-xfprintf-posix.c, ./tests/test-xprintf-posix.c, ./tests/test-xvasprintf.c, ./tests/uniconv/test-u16-strconv-to-enc.c, ./tests/uniconv/test-u32-strconv-to-enc.c, ./tests/uniconv/test-u8-strconv-to-enc.c, ./tests/unictype/test-bidi_byname.c, ./tests/unictype/test-bidi_name.c, ./tests/unictype/test-bidi_of.c, ./tests/unictype/test-bidi_test.c, ./tests/unictype/test-block_list.c, ./tests/unictype/test-block_of.c, ./tests/unictype/test-block_test.c, ./tests/unictype/test-categ_and.c, ./tests/unictype/test-categ_and_not.c, ./tests/unictype/test-categ_byname.c, ./tests/unictype/test-categ_name.c, ./tests/unictype/test-categ_none.c, ./tests/unictype/test-categ_of.c, ./tests/unictype/test-categ_or.c, ./tests/unictype/test-categ_test_withtable.c, ./tests/unictype/test-combining.c, ./tests/unictype/test-mirror.c, ./tests/unictype/test-numeric.c, ./tests/unictype/test-pr_test.c, ./tests/unictype/test-predicate-part1.h, ./tests/unictype/test-scripts.c, ./tests/unictype/test-sy_c_ident.c, ./tests/unictype/test-sy_java_ident.c, ./tests/unistdio/test-u16-asnprintf1.c, ./tests/unistdio/test-u16-vasnprintf1.c, ./tests/unistdio/test-u16-vasnprintf2.c, ./tests/unistdio/test-u16-vasnprintf3.c, ./tests/unistdio/test-u16-vasprintf1.c, ./tests/unistdio/test-u32-asnprintf1.c, ./tests/unistdio/test-u32-vasnprintf1.c, ./tests/unistdio/test-u32-vasnprintf2.c, ./tests/unistdio/test-u32-vasnprintf3.c, ./tests/unistdio/test-u32-vasprintf1.c, ./tests/unistdio/test-u8-asnprintf1.c, ./tests/unistdio/test-u8-vasnprintf1.c, ./tests/unistdio/test-u8-vasnprintf2.c, ./tests/unistdio/test-u8-vasnprintf3.c, ./tests/unistdio/test-u8-vasprintf1.c, ./tests/unistdio/test-ulc-asnprintf1.c, ./tests/unistdio/test-ulc-vasnprintf1.c, ./tests/unistdio/test-ulc-vasnprintf2.c, ./tests/unistdio/test-ulc-vasnprintf3.c, ./tests/unistdio/test-ulc-vasprintf1.c, ./tests/uniwidth/test-u16-strwidth.c, ./tests/uniwidth/test-u16-width.c, ./tests/uniwidth/test-u32-strwidth.c, ./tests/uniwidth/test-u32-width.c, ./tests/uniwidth/test-u8-strwidth.c, ./tests/uniwidth/test-u8-width.c, ./tests/uniwidth/test-uc_width.c, ./tests/uniwidth/test-uc_width2.c
-Copyright: 2007-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/fbufmode.c, ./lib/fflush.c, ./lib/fopen.c, ./lib/fpurge.c, ./lib/freadable.c, ./lib/freadahead.c, ./lib/freading.c, ./lib/freadptr.c, ./lib/freadseek.c, ./lib/fseterr.c, ./lib/fwritable.c, ./lib/fwriting.c, ./lib/locale.in.h, ./lib/open.c, ./lib/signbitd.c, ./lib/strerror.c, ./tests/nan.h, ./tests/test-bitrotate.c, ./tests/test-ceill.c, ./tests/test-dprintf-posix.c, ./tests/test-fcntl-safer.c, ./tests/test-floorl.c, ./tests/test-fopen-safer.c, ./tests/test-fopen.c, ./tests/test-fopen.h, ./tests/test-fpurge.c, ./tests/test-freadseek.c, ./tests/test-frexpl.c, ./tests/test-fstrcmp.c, ./tests/test-isnan.c, ./tests/test-isnanl.h, ./tests/test-ldexpl.c, ./tests/test-mbmemcasecmp.c, ./tests/test-mbmemcasecmp.h, ./tests/test-mbmemcasecoll.c, ./tests/test-open.c, ./tests/test-open.h, ./tests/test-snprintf-posix.h, ./tests/test-sprintf-posix.h, ./tests/test-striconveh.c, ./tests/test-sys_select.c, ./tests/test-truncl.c, ./tests/test-vasnprintf-posix.c, ./tests/test-vasprintf-posix.c, ./tests/test-vdprintf-posix.c, ./tests/test-wchar.c, ./tests/test-wctype.c, ./tests/unicase/test-locale-language.c, ./tests/unicase/test-mapping-part1.h, ./tests/unicase/test-predicate-part1.h, ./tests/uniconv/test-u16-conv-from-enc.c, ./tests/uniconv/test-u16-conv-to-enc.c, ./tests/uniconv/test-u16-strconv-from-enc.c, ./tests/uniconv/test-u32-conv-from-enc.c, ./tests/uniconv/test-u32-conv-to-enc.c, ./tests/uniconv/test-u32-strconv-from-enc.c, ./tests/uniconv/test-u8-conv-from-enc.c, ./tests/uniconv/test-u8-conv-to-enc.c, ./tests/uniconv/test-u8-strconv-from-enc.c, ./tests/unictype/test-pr_byname.c, ./tests/unistdio/test-u16-vsnprintf1.c, ./tests/unistdio/test-u16-vsprintf1.c, ./tests/unistdio/test-u32-vsnprintf1.c, ./tests/unistdio/test-u32-vsprintf1.c, ./tests/unistdio/test-u8-vsnprintf1.c, ./tests/unistdio/test-u8-vsprintf1.c, ./tests/unistdio/test-ulc-vsnprintf1.c, ./tests/unistdio/test-ulc-vsprintf1.c
-Copyright: 2007-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/ncftpput-ftp, ./tests/test-rawmemchr.c, ./tests/test-strchrnul.c, ./tests/test-strtod.c
-Copyright: 2008 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/accept.c, ./lib/bind.c, ./lib/btowc.c, ./lib/connect.c, ./lib/fclose.c, ./lib/getpeername.c, ./lib/getsockname.c, ./lib/isnand.c, ./lib/listen.c, ./lib/mbsinit.c, ./lib/mbsnrtowcs.c, ./lib/mbsrtowcs.c, ./lib/memchr2.h, ./lib/parse-duration.c, ./lib/parse-duration.h, ./lib/perror.c, ./lib/rawmemchr.c, ./lib/recv.c, ./lib/recvfrom.c, ./lib/sched.in.h, ./lib/send.c, ./lib/sendto.c, ./lib/shutdown.c, ./lib/sig-handler.h, ./lib/sigaction.c, ./lib/sigpipe-die.c, ./lib/sigpipe-die.h, ./lib/w32sock.h, ./lib/wcrtomb.c, ./lib/wcsnrtombs.c, ./lib/wcsrtombs.c, ./lib/wctob.c, ./lib/xmemdup0.c, ./lib/xmemdup0.h, ./tests/test-cond.c, ./tests/test-copy-acl.c, ./tests/test-copy-file.c, ./tests/test-environ.c, ./tests/test-errno.c, ./tests/test-getdtablesize.c, ./tests/test-lstat.c, ./tests/test-mbrtowc.c, ./tests/test-mbsinit.c, ./tests/test-mbsnrtowcs.c, ./tests/test-mbsrtowcs.c, ./tests/test-random_r.c, ./tests/test-sameacls.c, ./tests/test-select-fd.c, ./tests/test-select-stdin.c, ./tests/test-set-mode-acl.c, ./tests/test-sigaction.c, ./tests/test-sys_times.c, ./tests/test-times.c, ./tests/test-vc-list-files-cvs.sh, ./tests/test-wcrtomb.c, ./tests/test-wcsnrtombs.c, ./tests/test-wcsrtombs.c, ./tests/unilbrk/test-u16-possible-linebreaks.c, ./tests/unilbrk/test-u16-width-linebreaks.c, ./tests/unilbrk/test-u32-possible-linebreaks.c, ./tests/unilbrk/test-u32-width-linebreaks.c, ./tests/unilbrk/test-u8-possible-linebreaks.c, ./tests/unilbrk/test-u8-width-linebreaks.c, ./tests/unilbrk/test-ulc-possible-linebreaks.c, ./tests/unilbrk/test-ulc-width-linebreaks.c
-Copyright: 2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-gethostname.c, ./tests/test-sockets.c
-Copyright: 2008, 2009 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./build-aux/gitlog-to-changelog, ./build-aux/useless-if-before-free, ./lib/bitrotate.h, ./lib/ioctl.c, ./lib/sockets.h, ./tests/test-posix_spawn1.c, ./tests/test-posix_spawn2.c, ./tests/test-posix_spawn3.c, ./tests/test-vc-list-files-git.sh
-Copyright: 2008, 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-memchr.c, ./tests/test-memchr2.c, ./tests/test-memcmp.c, ./tests/test-memrchr.c
-Copyright: 2008-2009 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/argv-iter.c, ./lib/argv-iter.h, ./lib/close.c, ./lib/getdtablesize.c, ./lib/getsockopt.c, ./lib/ignore-value.h, ./lib/mbsrtowcs-state.c, ./lib/setsockopt.c, ./lib/socket.c, ./lib/sockets.c, ./lib/stdio-write.c, ./lib/wcsrtombs-state.c, ./lib/write.c, ./tests/test-argv-iter.c, ./tests/test-fflush2.c, ./tests/test-file-has-acl.c, ./tests/test-func.c, ./tests/test-obstack-printf.c, ./tests/test-parse-duration.c, ./tests/test-sched.c, ./tests/test-select.c
-Copyright: 2008-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/filevercmp.c, ./lib/filevercmp.h
-Copyright: 2008-2009 Free Software Foundation, Inc / 1995 Ian Jackson <iwj10@cus.cam.ac.uk> / 2001 Anthony Towns <aj@azure.humbug.org.au>
-License: GPL-3+ 
-
-Files: ./tests/test-hash.c
-Copyright: 2009 Free Software Foundation
-License: GPL-3+ 
-
-Files: ./lib/argp-version-etc.c, ./lib/argp-version-etc.h, ./lib/dirent--.h, ./lib/dirent-safer.h, ./lib/dprintf.c, ./lib/faccessat.c, ./lib/idpriv-drop.c, ./lib/idpriv-droptemp.c, ./lib/idpriv.h, ./lib/opendir-safer.c, ./lib/pipe-filter.h, ./lib/popen-safer.c, ./lib/popen.c, ./lib/priv-set.c, ./lib/priv-set.h, ./lib/symlinkat.c, ./lib/uname.c, ./lib/vdprintf.c, ./lib/xstriconveh.c, ./tests/test-alignof.c, ./tests/test-argp-version-etc.c, ./tests/test-dirent-safer.c, ./tests/test-dup2.c, ./tests/test-dup3.c, ./tests/test-exclude.c, ./tests/test-exclude1.sh, ./tests/test-exclude2.sh, ./tests/test-exclude3.sh, ./tests/test-exclude4.sh, ./tests/test-exclude5.sh, ./tests/test-exclude6.sh, ./tests/test-exclude7.sh, ./tests/test-fchdir.c, ./tests/test-fdopendir.c, ./tests/test-fnmatch.c, ./tests/test-getopt.c, ./tests/test-getopt.h, ./tests/test-getopt_long.h, ./tests/test-glob.c, ./tests/test-idpriv-drop.c, ./tests/test-idpriv-droptemp.c, ./tests/test-openat-safer.c, ./tests/test-pipe-filter-gi1.c, ./tests/test-pipe-filter-gi2-child.c, ./tests/test-pipe-filter-gi2-main.c, ./tests/test-pipe-filter-gi2.sh, ./tests/test-pipe-filter-ii1.c, ./tests/test-pipe-filter-ii2-child.c, ./tests/test-pipe-filter-ii2-main.c, ./tests/test-pipe-filter-ii2.sh, ./tests/test-popen-safer.c, ./tests/test-popen-safer2.c, ./tests/test-popen.c, ./tests/test-popen.h, ./tests/test-priv-set.c, ./tests/test-signal.c, ./tests/test-stddef.c, ./tests/test-symlinkat.c, ./tests/test-sys_utsname.c, ./tests/test-u64.c, ./tests/test-uname.c, ./tests/test-version-etc.c, ./tests/unicase/test-casecmp.h, ./tests/unicase/test-is-cased.h, ./tests/unicase/test-is-casefolded.h, ./tests/unicase/test-is-lowercase.h, ./tests/unicase/test-is-titlecase.h, ./tests/unicase/test-is-uppercase.h, ./tests/unicase/test-u16-casecmp.c, ./tests/unicase/test-u16-casecoll.c, ./tests/unicase/test-u16-casefold.c, ./tests/unicase/test-u16-is-cased.c, ./tests/unicase/test-u16-is-casefolded.c, ./tests/unicase/test-u16-is-lowercase.c, ./tests/unicase/test-u16-is-titlecase.c, ./tests/unicase/test-u16-is-uppercase.c, ./tests/unicase/test-u16-tolower.c, ./tests/unicase/test-u16-totitle.c, ./tests/unicase/test-u16-toupper.c, ./tests/unicase/test-u32-casecmp.c, ./tests/unicase/test-u32-casecoll.c, ./tests/unicase/test-u32-casefold.c, ./tests/unicase/test-u32-is-cased.c, ./tests/unicase/test-u32-is-casefolded.c, ./tests/unicase/test-u32-is-lowercase.c, ./tests/unicase/test-u32-is-titlecase.c, ./tests/unicase/test-u32-is-uppercase.c, ./tests/unicase/test-u32-tolower.c, ./tests/unicase/test-u32-totitle.c, ./tests/unicase/test-u32-toupper.c, ./tests/unicase/test-u8-casecmp.c, ./tests/unicase/test-u8-casecoll.c, ./tests/unicase/test-u8-casefold.c, ./tests/unicase/test-u8-is-cased.c, ./tests/unicase/test-u8-is-casefolded.c, ./tests/unicase/test-u8-is-lowercase.c, ./tests/unicase/test-u8-is-titlecase.c, ./tests/unicase/test-u8-is-uppercase.c, ./tests/unicase/test-u8-tolower.c, ./tests/unicase/test-u8-totitle.c, ./tests/unicase/test-u8-toupper.c, ./tests/unicase/test-ulc-casecmp.c, ./tests/unicase/test-ulc-casecoll.c, ./tests/uninorm/test-canonical-decomposition.c, ./tests/uninorm/test-compat-decomposition.c, ./tests/uninorm/test-composition.c, ./tests/uninorm/test-decomposing-form.c, ./tests/uninorm/test-decomposition.c, ./tests/uninorm/test-nfc.c, ./tests/uninorm/test-nfd.c, ./tests/uninorm/test-nfkc.c, ./tests/uninorm/test-nfkd.c, ./tests/uninorm/test-u16-nfc.c, ./tests/uninorm/test-u16-nfd.c, ./tests/uninorm/test-u16-nfkc.c, ./tests/uninorm/test-u16-nfkd.c, ./tests/uninorm/test-u16-normcmp.c, ./tests/uninorm/test-u16-normcmp.h, ./tests/uninorm/test-u16-normcoll.c, ./tests/uninorm/test-u32-nfc-big.c, ./tests/uninorm/test-u32-nfc.c, ./tests/uninorm/test-u32-nfd-big.c, ./tests/uninorm/test-u32-nfd.c, ./tests/uninorm/test-u32-nfkc-big.c, ./tests/uninorm/test-u32-nfkc.c, ./tests/uninorm/test-u32-nfkd-big.c, ./tests/uninorm/test-u32-nfkd.c, ./tests/uninorm/test-u32-normalize-big.c, ./tests/uninorm/test-u32-normalize-big.h, ./tests/uninorm/test-u32-normcmp.c, ./tests/uninorm/test-u32-normcmp.h, ./tests/uninorm/test-u32-normcoll.c, ./tests/uninorm/test-u8-nfc.c, ./tests/uninorm/test-u8-nfd.c, ./tests/uninorm/test-u8-nfkc.c, ./tests/uninorm/test-u8-nfkd.c, ./tests/uninorm/test-u8-normcmp.c, ./tests/uninorm/test-u8-normcmp.h, ./tests/uninorm/test-u8-normcoll.c, ./tests/uninorm/test-uninorm-filter-nfc.c, ./tests/uniwbrk/test-u16-wordbreaks.c, ./tests/uniwbrk/test-u32-wordbreaks.c, ./tests/uniwbrk/test-u8-wordbreaks.c, ./tests/uniwbrk/test-ulc-wordbreaks.c, ./tests/zerosize-ptr.h
-Copyright: 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/gendocs.sh
-Copyright: 2009 Free Software Foundation, Inc / 2003, 2004, 2005, 2006, 2007, 2008, 2009
-License: GPL-3+ 
-
-Files: ./tests/unicase/test-mapping-part2.h
-Copyright: == c); / == mapping[i].value); / 2007-2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/unictype/test-decdigit.c, ./tests/unictype/test-digit.c
-Copyright: == mapping[i].value); / == -1); / 2007-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./tests/test-argp-version-etc-1.sh, ./tests/test-version-etc.sh
-Copyright: Free Software Foundation, Inc / [0-9]\{4,4\}//' | / 2009 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./lib/mbsstr.c
-Copyright: c / 2005-2008 Free Software Foundation, Inc
-License: GPL-3+ 
-
-Files: ./build-aux/config.libpath
-Copyright: 1996-2008 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./lib/uniwbrk/wbrkprop.h
-Copyright: 2000-2002, 2004, 2007-2009 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./lib/unilbrk/lbrkprop1.h, ./lib/unilbrk/lbrkprop2.h
-Copyright: 2000-2002, 2004, 2008 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./build-aux/reloc-ldflags
-Copyright: 2003 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unicase/test-cased.c, ./tests/unicase/test-ignorable.c, ./tests/unictype/test-categ_C.c, ./tests/unictype/test-categ_Cn.c, ./tests/unictype/test-categ_L.c, ./tests/unictype/test-categ_Ll.c, ./tests/unictype/test-categ_Lo.c, ./tests/unictype/test-categ_Lu.c, ./tests/unictype/test-categ_M.c, ./tests/unictype/test-categ_Mc.c, ./tests/unictype/test-categ_Mn.c, ./tests/unictype/test-categ_N.c, ./tests/unictype/test-categ_P.c, ./tests/unictype/test-categ_Pe.c, ./tests/unictype/test-categ_Po.c, ./tests/unictype/test-categ_Ps.c, ./tests/unictype/test-categ_S.c, ./tests/unictype/test-categ_Sm.c, ./tests/unictype/test-categ_So.c, ./tests/unictype/test-ctype_alnum.c, ./tests/unictype/test-ctype_alpha.c, ./tests/unictype/test-ctype_graph.c, ./tests/unictype/test-ctype_lower.c, ./tests/unictype/test-ctype_print.c, ./tests/unictype/test-ctype_punct.c, ./tests/unictype/test-ctype_upper.c, ./tests/unictype/test-pr_alphabetic.c, ./tests/unictype/test-pr_bidi_left_to_right.c, ./tests/unictype/test-pr_bidi_non_spacing_mark.c, ./tests/unictype/test-pr_bidi_other_neutral.c, ./tests/unictype/test-pr_combining.c, ./tests/unictype/test-pr_composite.c, ./tests/unictype/test-pr_diacritic.c, ./tests/unictype/test-pr_grapheme_base.c, ./tests/unictype/test-pr_grapheme_extend.c, ./tests/unictype/test-pr_id_continue.c, ./tests/unictype/test-pr_id_start.c, ./tests/unictype/test-pr_left_of_pair.c, ./tests/unictype/test-pr_lowercase.c, ./tests/unictype/test-pr_math.c, ./tests/unictype/test-pr_numeric.c, ./tests/unictype/test-pr_other_alphabetic.c, ./tests/unictype/test-pr_other_math.c, ./tests/unictype/test-pr_punctuation.c, ./tests/unictype/test-pr_terminal_punctuation.c, ./tests/unictype/test-pr_unassigned_code_value.c, ./tests/unictype/test-pr_uppercase.c, ./tests/unictype/test-pr_xid_continue.c, ./tests/unictype/test-pr_xid_start.c
-Copyright: 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-ctype_blank.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_blank 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-sy_c_whitespace.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_c_whitespace 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-ctype_cntrl.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_cntrl 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-ctype_digit.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_digit 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Me.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Me)
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Nd.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Nd)
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_No.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_No)
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Pd.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pd)
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Pf.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Pf)
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Sc.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Sc)
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Zl.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_general_category (c, UC_CATEGORY_Zl)
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_arabic_digit.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_arabic_digit 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_block_separator.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_block_separator 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_eur_num_separator.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_eur_num_separator 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_hebrew_right_to_left.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_hebrew_right_to_left 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_pdf.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_pdf 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_segment_separator.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_segment_separator 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_whitespace.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_bidi_whitespace 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_dash.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_dash 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_decimal_digit.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_decimal_digit 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_deprecated.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_deprecated 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_extender.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_extender 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_format_control.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_format_control 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_grapheme_link.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_grapheme_link 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_hyphen.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_hyphen 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_ids_trinary_operator.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_ids_trinary_operator 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_iso_control.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_iso_control 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_line_separator.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_line_separator 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_other_grapheme_extend.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_other_grapheme_extend 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_other_id_start.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_other_id_start 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_paired_punctuation.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_paired_punctuation 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_paragraph_separator.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_paragraph_separator 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_pattern_syntax.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_pattern_syntax 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_pattern_white_space.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_pattern_white_space 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_quotation_mark.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_quotation_mark 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_space.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_space 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_titlecase.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_titlecase 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_white_space.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_white_space 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_zero_width.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_property_zero_width 
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-ctype_space.c
-Copyright: 2007 Free Software Foundation, Inc / uc_is_space 
-License: GPL-3+ GENERATED FILE
-
-Files: ./lib/uninorm/composition-table.gperf, ./tests/unicase/test-uc_tolower.c, ./tests/unicase/test-uc_totitle.c, ./tests/unicase/test-uc_toupper.c
-Copyright: 2009 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Cc.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Cc) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Cf.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Cf) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Co.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Co) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Cs.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Cs) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Lm.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Lm) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Lt.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Lt) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Nl.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Nl) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Pc.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Pc) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Pi.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Pi) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Sk.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Sk) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Z.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Z) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Zp.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Zp) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-categ_Zs.c
-Copyright: uc_is_general_category (c, UC_CATEGORY_Zs) / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-sy_java_whitespace.c
-Copyright: uc_is_java_whitespace  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_ascii_hex_digit.c
-Copyright: uc_is_property_ascii_hex_digit  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_arabic_right_to_left.c
-Copyright: uc_is_property_bidi_arabic_right_to_left  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_boundary_neutral.c
-Copyright: uc_is_property_bidi_boundary_neutral  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_common_separator.c
-Copyright: uc_is_property_bidi_common_separator  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_control.c
-Copyright: uc_is_property_bidi_control  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_embedding_or_override.c
-Copyright: uc_is_property_bidi_embedding_or_override  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_eur_num_terminator.c
-Copyright: uc_is_property_bidi_eur_num_terminator  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_bidi_european_digit.c
-Copyright: uc_is_property_bidi_european_digit  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_currency_symbol.c
-Copyright: uc_is_property_currency_symbol  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_default_ignorable_code_point.c
-Copyright: uc_is_property_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_hex_digit.c
-Copyright: uc_is_property_hex_digit  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_ideographic.c
-Copyright: uc_is_property_ideographic  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_ids_binary_operator.c
-Copyright: uc_is_property_ids_binary_operator  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_ignorable_control.c
-Copyright: uc_is_property_ignorable_control  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_join_control.c
-Copyright: uc_is_property_join_control  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_logical_order_exception.c
-Copyright: uc_is_property_logical_order_exception  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_non_break.c
-Copyright: uc_is_property_non_break  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_not_a_character.c
-Copyright: uc_is_property_not_a_character  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_other_default_ignorable_code_point.c
-Copyright: uc_is_property_other_default_ignorable_code_point  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_other_id_continue.c
-Copyright: uc_is_property_other_id_continue  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_other_lowercase.c
-Copyright: uc_is_property_other_lowercase  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_other_uppercase.c
-Copyright: uc_is_property_other_uppercase  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_private_use.c
-Copyright: uc_is_property_private_use  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_radical.c
-Copyright: uc_is_property_radical  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_sentence_terminal.c
-Copyright: uc_is_property_sentence_terminal  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_soft_dotted.c
-Copyright: uc_is_property_soft_dotted  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_unified_ideograph.c
-Copyright: uc_is_property_unified_ideograph  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-pr_variation_selector.c
-Copyright: uc_is_property_variation_selector  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./tests/unictype/test-ctype_xdigit.c
-Copyright: uc_is_xdigit  / 2007 Free Software Foundation, Inc
-License: GPL-3+ GENERATED FILE
-
-Files: ./lib/inet_ntop.c
-Copyright: 2005, 2006, 2008, 2009 Free Software Foundation, Inc / 1996-1999 by Internet Software Consortium
-License: ISC GPL 
-
-Files: ./lib/inet_pton.c
-Copyright: 1996,1999 by Internet Software Consortium / 2006, 2008, 2009 Free Software Foundation, Inc
-License: ISC GPL-3+ 
-
-Files: ./lib/localename.c
-Copyright: 1995-1999, 2000-2008 Free Software Foundation, Inc
-License: LGPL 
-
-Files: ./lib/relocatable.h
-Copyright: 2003, 2005, 2008 Free Software Foundation, Inc
-License: LGPL 
-
-Files: ./lib/relocatable.c
-Copyright: 2003-2006, 2008 Free Software Foundation, Inc
-License: LGPL 
-
-Files: ./lib/localename.h
-Copyright: 2007 Free Software Foundation, Inc
-License: LGPL 
-
-Files: ./lib/flock.c, ./lib/fsync.c
-Copyright: 2008 Free Software Foundation, Inc
-License: LGPL-2.1+ 
-
-Files: ./lib/strsignal.c
-Copyright: 1991, 1994-2002, 2005, 2008 Free Software Foundation, Inc
-License: LGPL-2.1+ (with incorrect FSF address) 
-
-Files: ./lib/atoll.c
-Copyright: 1991, 1997, 1998, 2008 Free Software Foundation, Inc
-License: LGPL-2.1+ (with incorrect FSF address) 
-
-Files: ./lib/glob-libc.h
-Copyright: 1991,92,95-98,2000,2001,2004-2007 Free Software Foundation, Inc
-License: LGPL-2.1+ (with incorrect FSF address) 
-
-Files: ./lib/glob.c
-Copyright: 1991-2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-License: LGPL-2.1+ (with incorrect FSF address) 
-
-Files: ./lib/argz.in.h
-Copyright: 1995,96,97,98,99,2000,2004,2007 Free Software Foundation, Inc
-License: LGPL-2.1+ (with incorrect FSF address) 
-
-Files: ./lib/siglist.h
-Copyright: 1996,97,98,99,2008 Free Software Foundation, Inc
-License: LGPL-2.1+ (with incorrect FSF address) 
-
-Files: ./lib/safe-alloc.c, ./lib/safe-alloc.h, ./tests/test-safe-alloc.c
-Copyright: 2009 Free Software Foundation, Inc
-License: LGPL-2.1+ (with incorrect FSF address) 
-
-Files: ./tests/test-tsearch.c
-Copyright: 1997, 2000-2001, 2007-2008 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistdio/u-printf-parse.h
-Copyright: 1999, 2002, 2005, 2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistdio/u-asnprintf.h, ./lib/unistdio/u-asprintf.h, ./lib/unistdio/u-printf-args.h, ./lib/unistdio/u-snprintf.h, ./lib/unistdio/u-sprintf.h, ./lib/unistdio/u16-asnprintf.c, ./lib/unistdio/u16-asprintf.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/u32-asnprintf.c, ./lib/unistdio/u32-asprintf.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/u8-asnprintf.c, ./lib/unistdio/u8-asprintf.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/ulc-asnprintf.c, ./lib/unistdio/ulc-snprintf.c, ./lib/unistdio/ulc-sprintf.c
-Copyright: 1999, 2002, 2005-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistr/u-cpy.h, ./lib/unistr/u-move.h, ./lib/unistr/u-set.h, ./lib/unistr/u-stpcpy.h, ./lib/unistr/u-stpncpy.h, ./lib/unistr/u-strcat.h, ./lib/unistr/u-strcpy.h, ./lib/unistr/u-strcspn.h, ./lib/unistr/u-strlen.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-strstr.h, ./lib/unistr/u-strtok.h, ./lib/unistr/u16-cmp.c, ./lib/unistr/u16-cpy-alloc.c, ./lib/unistr/u16-cpy.c, ./lib/unistr/u16-move.c, ./lib/unistr/u16-set.c, ./lib/unistr/u16-stpncpy.c, ./lib/unistr/u16-strcat.c, ./lib/unistr/u16-strcmp.c, ./lib/unistr/u16-strcpy.c, ./lib/unistr/u16-strcspn.c, ./lib/unistr/u16-strdup.c, ./lib/unistr/u16-strlen.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-strspn.c, ./lib/unistr/u16-strstr.c, ./lib/unistr/u16-strtok.c, ./lib/unistr/u32-chr.c, ./lib/unistr/u32-cmp.c, ./lib/unistr/u32-cpy-alloc.c, ./lib/unistr/u32-cpy.c, ./lib/unistr/u32-move.c, ./lib/unistr/u32-set.c, ./lib/unistr/u32-stpcpy.c, ./lib/unistr/u32-stpncpy.c, ./lib/unistr/u32-strcat.c, ./lib/unistr/u32-strchr.c, ./lib/unistr/u32-strcmp.c, ./lib/unistr/u32-strcpy.c, ./lib/unistr/u32-strcspn.c, ./lib/unistr/u32-strdup.c, ./lib/unistr/u32-strlen.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/u8-stpcpy.c, ./lib/unistr/u8-stpncpy.c, ./lib/unistr/u8-strcspn.c, ./lib/unistr/u8-strnlen.c, ./lib/unistr/u8-strpbrk.c, ./lib/unistr/u8-strspn.c, ./lib/unistr/u8-strstr.c, ./lib/unistr/u8-strtok.c
-Copyright: 1999, 2002, 2006 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistdio/u-printf-args.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-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-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/ulc-asprintf.c, ./lib/unistdio/ulc-vasnprintf.c, ./lib/unistdio/ulc-vasprintf.c, ./lib/unistdio/ulc-vsnprintf.c, ./lib/unistdio/ulc-vsprintf.c, ./lib/unistr/u-strdup.h, ./lib/unistr/u16-chr.c, ./lib/unistr/u16-stpcpy.c, ./lib/unistr/u16-strchr.c, ./lib/unistr/u16-strrchr.c, ./lib/unistr/u8-chr.c, ./lib/unistr/u8-strchr.c, ./lib/unistr/u8-strrchr.c
-Copyright: 1999, 2002, 2006-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistr/u-cpy-alloc.h
-Copyright: 1999, 2002, 2006-2007, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistdio/u-vasprintf.h, ./lib/unistdio/u-vsnprintf.h, ./lib/unistdio/u-vsprintf.h
-Copyright: 1999, 2002, 2006-2008 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistdio/u16-printf-parse.c, ./lib/unistdio/u32-printf-parse.c, ./lib/unistdio/u8-printf-parse.c, ./lib/unistdio/ulc-printf-parse.c, ./lib/unistr/u16-mblen.c, ./lib/unistr/u16-strmblen.c, ./lib/unistr/u16-strmbtouc.c, ./lib/unistr/u8-mblen.c, ./lib/unistr/u8-strmblen.c, ./lib/unistr/u8-strmbtouc.c
-Copyright: 1999-2000, 2002, 2006-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistr/u16-mbtoucr.c, ./lib/unistr/u8-mbtoucr.c
-Copyright: 1999-2002, 2006-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistr/u16-mbtouc-unsafe.c, ./lib/unistr/u16-mbtouc.c, ./lib/unistr/u8-mbtouc-unsafe.c, ./lib/unistr/u8-mbtouc.c
-Copyright: 1999-2002, 2006-2007, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniname.h
-Copyright: 2000-2002, 2005, 2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unictype/bitmap.h, ./lib/unictype/identsyntaxmap.h
-Copyright: 2000-2002, 2005-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniname/uniname.c
-Copyright: 2000-2002, 2005-2007, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/mbmemcasecoll.c, ./lib/mbmemcasecoll.h
-Copyright: 2001, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniwidth.h
-Copyright: 2001-2002, 2005, 2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniwidth/cjk.h
-Copyright: 2001-2002, 2005-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistr.h
-Copyright: 2001-2002, 2005-2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniwidth/u16-strwidth.c, ./lib/uniwidth/u32-strwidth.c, ./lib/uniwidth/u32-width.c, ./lib/uniwidth/u8-strwidth.c
-Copyright: 2001-2002, 2006 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniwidth/u16-width.c, ./lib/uniwidth/u8-width.c
-Copyright: 2001-2002, 2006-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistr/u16-mbtouc-aux.c, ./lib/unistr/u16-mbtouc-unsafe-aux.c, ./lib/unistr/u8-mbtouc-aux.c, ./lib/unistr/u8-mbtouc-unsafe-aux.c
-Copyright: 2001-2002, 2006-2007, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniwidth/width.c
-Copyright: 2001-2002, 2006-2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/c-strcaseeq.h, ./lib/streq.h
-Copyright: 2001-2002, 2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uninorm.h
-Copyright: 2001-2002, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unilbrk.h
-Copyright: 2001-2003, 2005-2008 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniwbrk.h
-Copyright: 2001-2003, 2005-2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unilbrk/lbrktables.h, ./lib/unilbrk/u16-width-linebreaks.c, ./lib/unilbrk/u32-width-linebreaks.c, ./lib/unilbrk/u8-width-linebreaks.c, ./lib/unilbrk/ulc-common.h
-Copyright: 2001-2003, 2006-2008 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unilbrk/lbrktables.c, ./lib/unilbrk/u16-possible-linebreaks.c, ./lib/unilbrk/u32-possible-linebreaks.c, ./lib/unilbrk/u8-possible-linebreaks.c, ./lib/unilbrk/ulc-possible-linebreaks.c, ./lib/unilbrk/ulc-width-linebreaks.c, ./lib/uniwbrk/ulc-wordbreaks.c, ./lib/uniwbrk/wordbreak-property.c
-Copyright: 2001-2003, 2006-2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uninorm/decomposition-table.h
-Copyright: 2001-2003, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniconv.h
-Copyright: 2002, 2005, 2007, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unitypes.h
-Copyright: 2002, 2005-2006 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unistr/u16-uctomb.c, ./lib/unistr/u32-uctomb.c, ./lib/unistr/u8-uctomb.c
-Copyright: 2002, 2005-2006, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unictype/pr_test.c, ./lib/unistdio.h
-Copyright: 2002, 2005-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unictype.h
-Copyright: 2002, 2005-2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unictype/bidi_byname.c, ./lib/unictype/bidi_name.c, ./lib/unictype/bidi_of.c, ./lib/unictype/bidi_test.c, ./lib/unictype/combining.c, ./lib/unictype/decdigit.c, ./lib/unictype/digit.c, ./lib/unictype/mirror.c, ./lib/unistr/u-endswith.h, ./lib/unistr/u-startswith.h, ./lib/unistr/u16-endswith.c, ./lib/unistr/u16-next.c, ./lib/unistr/u16-startswith.c, ./lib/unistr/u32-check.c, ./lib/unistr/u32-endswith.c, ./lib/unistr/u32-startswith.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-move.c, ./lib/unistr/u8-next.c, ./lib/unistr/u8-set.c, ./lib/unistr/u8-startswith.c, ./lib/unistr/u8-strcat.c, ./lib/unistr/u8-strcmp.c, ./lib/unistr/u8-strcpy.c, ./lib/unistr/u8-strdup.c, ./lib/unistr/u8-strlen.c, ./lib/unistr/u8-strncat.c, ./lib/unistr/u8-strncmp.c, ./lib/unistr/u8-strncpy.c
-Copyright: 2002, 2006 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unicase/simple-mapping.h, ./lib/unicase/tocasefold.c, ./lib/unicase/tolower.c, ./lib/unicase/totitle.c, ./lib/unicase/toupper.c, ./lib/uninorm/composition.c
-Copyright: 2002, 2006, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniconv/u-strconv-to-enc.h, ./lib/uniconv/u16-conv-from-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-strconv-from-enc.c, ./lib/uniconv/u8-strconv-from-locale.c, ./lib/uniconv/u8-strconv-to-enc.c, ./lib/uniconv/u8-strconv-to-locale.c, ./lib/unictype/categ_C.c, ./lib/unictype/categ_Cc.c, ./lib/unictype/categ_Cf.c, ./lib/unictype/categ_Cn.c, ./lib/unictype/categ_Co.c, ./lib/unictype/categ_Cs.c, ./lib/unictype/categ_L.c, ./lib/unictype/categ_Ll.c, ./lib/unictype/categ_Lm.c, ./lib/unictype/categ_Lo.c, ./lib/unictype/categ_Lt.c, ./lib/unictype/categ_Lu.c, ./lib/unictype/categ_M.c, ./lib/unictype/categ_Mc.c, ./lib/unictype/categ_Me.c, ./lib/unictype/categ_Mn.c, ./lib/unictype/categ_N.c, ./lib/unictype/categ_Nd.c, ./lib/unictype/categ_Nl.c, ./lib/unictype/categ_No.c, ./lib/unictype/categ_P.c, ./lib/unictype/categ_Pc.c, ./lib/unictype/categ_Pd.c, ./lib/unictype/categ_Pe.c, ./lib/unictype/categ_Pf.c, ./lib/unictype/categ_Pi.c, ./lib/unictype/categ_Po.c, ./lib/unictype/categ_Ps.c, ./lib/unictype/categ_S.c, ./lib/unictype/categ_Sc.c, ./lib/unictype/categ_Sk.c, ./lib/unictype/categ_Sm.c, ./lib/unictype/categ_So.c, ./lib/unictype/categ_Z.c, ./lib/unictype/categ_Zl.c, ./lib/unictype/categ_Zp.c, ./lib/unictype/categ_Zs.c, ./lib/unictype/categ_byname.c, ./lib/unictype/categ_name.c, ./lib/unictype/categ_of.c, ./lib/unictype/categ_test.c, ./lib/unictype/ctype_alnum.c, ./lib/unictype/ctype_alpha.c, ./lib/unictype/ctype_blank.c, ./lib/unictype/ctype_cntrl.c, ./lib/unictype/ctype_digit.c, ./lib/unictype/ctype_graph.c, ./lib/unictype/ctype_lower.c, ./lib/unictype/ctype_print.c, ./lib/unictype/ctype_punct.c, ./lib/unictype/ctype_space.c, ./lib/unictype/ctype_upper.c, ./lib/unictype/ctype_xdigit.c, ./lib/unictype/numeric.c, ./lib/unictype/pr_alphabetic.c, ./lib/unictype/pr_ascii_hex_digit.c, ./lib/unictype/pr_bidi_arabic_digit.c, ./lib/unictype/pr_bidi_arabic_right_to_left.c, ./lib/unictype/pr_bidi_block_separator.c, ./lib/unictype/pr_bidi_boundary_neutral.c, ./lib/unictype/pr_bidi_common_separator.c, ./lib/unictype/pr_bidi_control.c, ./lib/unictype/pr_bidi_embedding_or_override.c, ./lib/unictype/pr_bidi_eur_num_separator.c, ./lib/unictype/pr_bidi_eur_num_terminator.c, ./lib/unictype/pr_bidi_european_digit.c, ./lib/unictype/pr_bidi_hebrew_right_to_left.c, ./lib/unictype/pr_bidi_left_to_right.c, ./lib/unictype/pr_bidi_non_spacing_mark.c, ./lib/unictype/pr_bidi_other_neutral.c, ./lib/unictype/pr_bidi_pdf.c, ./lib/unictype/pr_bidi_segment_separator.c, ./lib/unictype/pr_bidi_whitespace.c, ./lib/unictype/pr_combining.c, ./lib/unictype/pr_composite.c, ./lib/unictype/pr_currency_symbol.c, ./lib/unictype/pr_dash.c, ./lib/unictype/pr_decimal_digit.c, ./lib/unictype/pr_default_ignorable_code_point.c, ./lib/unictype/pr_deprecated.c, ./lib/unictype/pr_diacritic.c, ./lib/unictype/pr_extender.c, ./lib/unictype/pr_format_control.c, ./lib/unictype/pr_grapheme_base.c, ./lib/unictype/pr_grapheme_extend.c, ./lib/unictype/pr_grapheme_link.c, ./lib/unictype/pr_hex_digit.c, ./lib/unictype/pr_hyphen.c, ./lib/unictype/pr_id_continue.c, ./lib/unictype/pr_id_start.c, ./lib/unictype/pr_ideographic.c, ./lib/unictype/pr_ids_binary_operator.c, ./lib/unictype/pr_ids_trinary_operator.c, ./lib/unictype/pr_ignorable_control.c, ./lib/unictype/pr_iso_control.c, ./lib/unictype/pr_join_control.c, ./lib/unictype/pr_left_of_pair.c, ./lib/unictype/pr_line_separator.c, ./lib/unictype/pr_logical_order_exception.c, ./lib/unictype/pr_lowercase.c, ./lib/unictype/pr_math.c, ./lib/unictype/pr_non_break.c, ./lib/unictype/pr_not_a_character.c, ./lib/unictype/pr_numeric.c, ./lib/unictype/pr_other_alphabetic.c, ./lib/unictype/pr_other_default_ignorable_code_point.c, ./lib/unictype/pr_other_grapheme_extend.c, ./lib/unictype/pr_other_id_continue.c, ./lib/unictype/pr_other_id_start.c, ./lib/unictype/pr_other_lowercase.c, ./lib/unictype/pr_other_math.c, ./lib/unictype/pr_other_uppercase.c, ./lib/unictype/pr_paired_punctuation.c, ./lib/unictype/pr_paragraph_separator.c, ./lib/unictype/pr_pattern_syntax.c, ./lib/unictype/pr_pattern_white_space.c, ./lib/unictype/pr_private_use.c, ./lib/unictype/pr_punctuation.c, ./lib/unictype/pr_quotation_mark.c, ./lib/unictype/pr_radical.c, ./lib/unictype/pr_sentence_terminal.c, ./lib/unictype/pr_soft_dotted.c, ./lib/unictype/pr_space.c, ./lib/unictype/pr_terminal_punctuation.c, ./lib/unictype/pr_titlecase.c, ./lib/unictype/pr_unassigned_code_value.c, ./lib/unictype/pr_unified_ideograph.c, ./lib/unictype/pr_uppercase.c, ./lib/unictype/pr_variation_selector.c, ./lib/unictype/pr_white_space.c, ./lib/unictype/pr_xid_continue.c, ./lib/unictype/pr_xid_start.c, ./lib/unictype/pr_zero_width.c, ./lib/unistr/u16-check.c, ./lib/unistr/u16-prev.c, ./lib/unistr/u16-to-u32.c, ./lib/unistr/u16-to-u8.c, ./lib/unistr/u16-uctomb-aux.c, ./lib/unistr/u32-mblen.c, ./lib/unistr/u32-mbtoucr.c, ./lib/unistr/u32-next.c, ./lib/unistr/u32-prev.c, ./lib/unistr/u32-strmblen.c, ./lib/unistr/u32-strmbtouc.c, ./lib/unistr/u32-to-u16.c, ./lib/unistr/u32-to-u8.c, ./lib/unistr/u8-check.c, ./lib/unistr/u8-prev.c, ./lib/unistr/u8-to-u16.c, ./lib/unistr/u8-to-u32.c, ./lib/unistr/u8-uctomb-aux.c
-Copyright: 2002, 2006-2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unicase/cased.c, ./lib/unicase/ignorable.c, ./lib/uniconv/u-conv-from-enc.h, ./lib/uniconv/u-strconv-from-enc.h, ./lib/uniconv/u8-conv-from-enc.c, ./lib/uniconv/u8-conv-to-enc.c, ./lib/unistr/u32-mbtouc-unsafe.c, ./lib/unistr/u32-mbtouc.c
-Copyright: 2002, 2006-2007, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniconv/u16-conv-to-enc.c
-Copyright: 2002, 2006-2008 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/uniconv/u-conv-to-enc.h
-Copyright: 2002, 2006-2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unicase.h
-Copyright: 2002, 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unictype/block_test.c, ./lib/unictype/blocks.c, ./lib/unictype/categ_and.c, ./lib/unictype/categ_and_not.c, ./lib/unictype/categ_none.c, ./lib/unictype/categ_or.c, ./lib/unictype/pr_byname.c, ./lib/unictype/scripts.c, ./lib/unictype/sy_c_ident.c, ./lib/unictype/sy_c_whitespace.c, ./lib/unictype/sy_java_ident.c, ./lib/unictype/sy_java_whitespace.c, ./lib/unistr/u16-mbsnlen.c, ./lib/unistr/u32-mbsnlen.c, ./lib/unistr/u8-mbsnlen.c
-Copyright: 2007 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/array-mergesort.h, ./lib/close-hook.c, ./lib/close-hook.h, ./lib/mbmemcasecmp.h, ./lib/memcmp2.c, ./lib/memcmp2.h, ./lib/memxfrm.c, ./lib/memxfrm.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/invariant.h, ./lib/unicase/locale-language.c, ./lib/unicase/special-casing.c, ./lib/unicase/special-casing.h, ./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/u-prefix-context.h, ./lib/unicase/u-suffix-context.h, ./lib/unicase/u-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/ulc-casecmp.c, ./lib/unicase/ulc-casecoll.c, ./lib/unicase/ulc-casexfrm.c, ./lib/unicase/unicasemap.h, ./lib/uninorm/canonical-decomposition.c, ./lib/uninorm/compat-decomposition.c, ./lib/uninorm/decompose-internal.c, ./lib/uninorm/decompose-internal.h, ./lib/uninorm/decomposing-form.c, ./lib/uninorm/decomposition-table.c, ./lib/uninorm/decomposition.c, ./lib/uninorm/nfc.c, ./lib/uninorm/nfd.c, ./lib/uninorm/nfkc.c, ./lib/uninorm/nfkd.c, ./lib/uninorm/normalize-internal.h, ./lib/uninorm/u-normalize-internal.h, ./lib/uninorm/u-normcmp.h, ./lib/uninorm/u-normcoll.h, ./lib/uninorm/u-normxfrm.h, ./lib/uninorm/u16-normalize.c, ./lib/uninorm/u16-normcmp.c, ./lib/uninorm/u16-normcoll.c, ./lib/uninorm/u16-normxfrm.c, ./lib/uninorm/u32-normalize.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/unistr/u-cmp2.h, ./lib/unistr/u-strcoll.h, ./lib/unistr/u16-cmp2.c, ./lib/unistr/u16-strcoll.c, ./lib/unistr/u32-cmp2.c, ./lib/unistr/u32-strcoll.c, ./lib/unistr/u8-cmp2.c, ./lib/unistr/u8-strcoll.c, ./lib/uniwbrk/u-wordbreaks.h, ./lib/uniwbrk/u16-wordbreaks.c, ./lib/uniwbrk/u32-wordbreaks.c, ./lib/uniwbrk/u8-wordbreaks.c, ./lib/uniwbrk/wbrktable.c, ./lib/uniwbrk/wbrktable.h, ./tests/test-array-mergesort.c
-Copyright: 2009 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./lib/unilbrk/ulc-common.c
-Copyright: || c_isspace )) / 2001-2003, 2006-2008 Free Software Foundation, Inc
-License: LGPL-3+ 
-
-Files: ./build-aux/install-sh
-Copyright: 1994 X Consortium
-License: MIT/X11 (BSD like) 
-
-
-The complete text of the GNU General Public License can be
-found in /usr/share/common-licenses/GPL
-The complete text of the GNU General Public License Version 2 can be
-found in /usr/share/common-licenses/GPL-2
-The complete text of the GNU General Public License Version 3 can be
-found in /usr/share/common-licenses/GPL-3
-The complete text of the GNU Lesser General Public License can be
-found in /usr/share/common-licenses/LGPL
-The complete text of the GNU Library General Public License Version 2 can be
-found in /usr/share/common-licenses/LGPL-2
-The complete text of the GNU Lesser General Public License Version 2.1 can be
-found in /usr/share/common-licenses/LGPL-2.1
-The complete text of the GNU Lesser General Public License Version 3 can be
-found in /usr/share/common-licenses/LGPL-3