In sed source I saw often
func(...) int b; char c; { ... }
Why put variables there? Does it change the scope?
Like here: http://ww
That's just old style, pre-ANSI C. The whole notion of function declarations with type parameters wasn't introduced until later!