Tool to explain C code

c++

I remember from some time ago reading about a commandline tool that explains C code, does anyone know what it might be named?

Best Solution

Perhaps you mean cdecl, a program that can translate complicated declarations to English and back?

e.g.

cdecl> explain int (*(*foo)(int ))(float )
declare foo as pointer to function (int) returning pointer to function (float) returning int