Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/src/cmd/ssh2/funclen

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#!/bin/rc
# funclen [file]... - print lengths of C functions in file(s)
#	assumes the one true brace style (V7 kernel style).
#	added some slight tolerance for bogus styles.
exec awk '
/^(#|\/\/)|;[\t ]*$|\\$|"\)|^[\t ]*\*/	{ next }
/^((static|void|unsigned|int|u?v?long|double|char|struct[\t ]+[a-z_0-9]+)[\t ]*)*(\*[\t ]*)*[a-zA-Z0-9_µμ]+( +__P)? *\(/ {
	# function name
	paren = index($0, "(")
	prelude = substr($0, 1, paren-1)
	n = split(prelude, fields)
	funcname = fields[n]
}
/^{/ {						# function or struct start
	if (funcname == "")
		next
	if (start != 0)
		print "unclosed function " funcname " at " FILENAME ":" FNR \
			>"/fd/2"
	start = FNR
	file = FILENAME
}
/^}[^();]*($|\/\*|\/\/)/ && $0 !~ "^}[^*/]*[;={]" {
	# function end, not struct end
	if (start == 0 || file != FILENAME || funcname == "")
		print "unopened function or macro end at " \
			FILENAME ":" FNR >"/fd/2"
	else
		print FNR - start "\t" FILENAME ":" start "," FNR "\t" \
			funcname "()"
	start = 0				# function has ended
	funcname = ""
}
END {
	if (start != 0)
		print "unclosed function " funcname " at " FILENAME ":" FNR \
			>"/fd/2"
}
' $*

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.