0e3d540892
This contains the full eti (panel, form, menu) extensions. bmake glue to follow. Obtained from: ftp://ftp.clark.net/pub/dickey/ncurses
15 lines
358 B
Bash
Executable File
15 lines
358 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# MKhashsize.sh --- generate size include for hash functions
|
|
#
|
|
echo "/*"
|
|
echo " * hashsize.h -- hash and token table constants"
|
|
echo " */"
|
|
|
|
CAPS="${1-Caps}"
|
|
TABSIZE=`grep -v '^[ #]' $CAPS | grep -v "^$" | grep -v "^capalias"| grep -v "^infoalias" | wc -l`
|
|
|
|
echo ""
|
|
echo "#define CAPTABSIZE ${TABSIZE}"
|
|
echo "#define HASHTABSIZE (${TABSIZE} * 2)"
|