Completed first pass at function status.

Added most data types without status information.
This commit is contained in:
Joel Sherrill
1998-03-17 16:37:57 +00:00
parent 2a087f30a4
commit 3cffce87d6
9 changed files with 117 additions and 96 deletions

View File

@@ -72,6 +72,7 @@ summarize_chapter()
datatypes_unmplementable=`wc3 "Type," "Unimplementable" $*`
datatypes_partial=` wc3 "Type," "Partial Implementation" $*`
datatypes_dummy=` wc3 "Type," "Dummy Implementation" $*`
datatypes_untested=` wc3 "Type," "Untested Implementation" $*`
datatypes_sum=`addit ${datatypes_implemented} \
${datatypes_unimplemented} ${datatypes_unmplementable} \
@@ -103,6 +104,7 @@ summarize_chapter()
echo " Unimplementable : ${datatypes_unmplementable}"
echo " Partial : ${datatypes_partial}"
echo " Dummy : ${datatypes_dummy}"
echo " Untested : ${datatypes_untested}"
echo "@end example"
echo
if [ ${datatypes_sum} -ne ${datatypes_total} ] ; then