Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tool to explain C code [closed]

Tags:

c

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

like image 999
Karolis Avatar asked Mar 20 '09 18:03

Karolis


1 Answers

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
like image 130
sigjuice Avatar answered Nov 04 '22 08:11

sigjuice