summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/summarize
blob: 397676c97d355abd5fb262899133c14bfbd2901b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#! /bin/sh
#
#  Generate the summary chapter
#
#  $Id$
#

echo "@c"
echo "@c DO NOT EDIT -- AUTOMATICALLY GENERATED!!!"
echo "@c"
echo
echo "@chapter Compliance Summary"
echo

summarize_chapter()
{
  grep "^@chapter" $1 | sed -e "s/^.chapter/@section/"
  echo
  num_functions=`grep "()" $1 | wc -l`
  echo "Functions: ${num_functions}"
  echo
}

chapters="ch01.t ch02.t ch03.t ch04.t ch05.t ch06.t ch07.t ch08.t \
    ch09.t ch10.t ch11.t ch12.t ch13.t ch14.t ch15.t ch16.t ch17.t ch18.t"
for chapter in ${chapters}
do
  summarize_chapter $chapter
done