#!/usr/bin/env bash vers="0.9.15" dir="functions" dirx="functions2" output_copyright() { echo '' echo '' echo '
The documentation, source code, and derived compilations are
' echo 'Copyright © 2000 by Philip Howard.' echo '
'
echo 'This library is free software; you can redistribute it and/or'
echo -n 'modify it under the terms of the GNU'
echo ' Lesser General Public'
echo 'License as published by the Free Software Foundation; either'
echo 'version 2.1 of the License, or (at your option) any later version.'
echo ''
echo 'This library is distributed in the hope that it will be useful,'
echo 'but WITHOUT ANY WARRANTY; without even the implied warranty of'
echo -n 'MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.'
echo '  See the GNU'
echo 'Lesser General Public License for more details.'
echo ''
echo -n 'You should have received a copy of the GNU'
echo ' Lesser General Public'
echo 'License along with this library; if not, write to the Free Software'
echo 'Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA'
echo '
' echo '' echo '' echo '' } output_commands() { td='double'; cd='scalar'; tld='long double'; cld='scalar'; tsi='signed int'; csi='scalar'; tui='unsigned int'; cui='scalar'; tsl='signed long'; csl='scalar'; tul='unsigned long'; cul='scalar'; tsll='signed long long'; csll='scalar'; tull='unsigned long long'; cull='scalar'; tptr='void *'; cptr='scalar'; tca='char'; cca='array'; tcs='char'; ccs='string'; tstr='char'; cstr='string'; tsca='signed char'; csca='array'; tscs='signed char'; cscs='string'; tuca='unsigned char'; cuca='array'; tucs='unsigned char'; cucs='string'; tssa='signed short'; cssa='array'; tsss='signed short'; csss='string'; tusa='unsigned short'; cusa='array'; tuss='unsigned short'; cuss='string'; tsia='signed int'; csia='array'; tsis='signed int'; csis='string'; tuia='unsigned int'; cuia='array'; tuis='unsigned int'; cuis='string'; tsla='signed long'; csla='array'; tsls='signed long'; csls='string'; tula='unsigned long'; cula='array'; tuls='unsigned long'; culs='string'; tslla='signed long long'; cslla='array'; tslls='signed long long'; cslls='string'; tulla='unsigned long long'; culla='array'; tulls='unsigned long long'; culls='string'; echo '#!/usr/bin/env bash' echo "rm -f functions/data_functions.html functions/key_functions.html functions/keydata_functions.html" echo "rm -fr ${dirx}" echo "mkdir ${dirx}" echo "chmod 755 ${dirx}" echo "cat <index2.html" echo "" echo "avlmap-${vers} documentation: function index" echo '' echo -n '' echo '' echo -n '' echo -n '' echo '
function index' echo 'library: avlmap

' echo '
' output_copyright echo 'EOF' echo "ls -ld index2.html" } output_commands | sh exit $?