shithub: plan9front

ref: 17ebe55031ae6945ad1f671b69267a672328e4b1
dir: /rc/bin/Bfn/

View raw version
#!/bin/rc
rfork e
if(! ~ $#* 1){
	echo usage: $0 fn >[2=1]
	exit usage
}
if(~ $#srcpath 0) srcpath=.
res=`{grep -n '^'$1'\(' $srcpath/*.c /dev/null | sed -n 's/^([^:]*:[^:]*).*$/\1/gp' }
ifs='
'
for(i in $res)
	echo $i
switch($#res){
case 0
	echo $1: not found >[2=1]
case 1
	plumb $res
}