#!/bin/csh -f

set noglob

set argv = \
( cbf cbf_alloc cbf_ascii cbf_binary cbf_byte_offset cbf_canonical \
cbf_codes cbf_compress cbf_context cbf_file cbf_lex cbf_packed \
cbf_predictor cbf_read_binary cbf_read_mime cbf_string cbf_stx \
cbf_tree cbf_uncompressed cbf_write cbf_write_binary \
md5c )

set argw = \
( cbf_alloc cbf_ascii cbf_binary cbf_byte_offset cbf_canonical \
cbf_codes cbf_compress cbf_context cbf_file cbf_lex cbf_packed \
cbf_predictor cbf_read_binary cbf_read_mime cbf_string cbf_stx \
cbf_tree cbf_uncompressed cbf_write cbf_write_binary \
md5c )

foreach I ($argv)
echo calls in ${I}.c
echo ===============
	foreach J ($argw)
	grep $J ${I}.c | grep -v include
	end
echo *******************************************************************
echo
end
