cdecl
Es un programa que convierte frases de programación en C++ a frases similares del inglés.
$ cdecl "void (*foo[3])(int)"
se traducirá como "array of pointers to functions taking an integer parameter"
$ cdecl "struct foo { int x; char y; }"
se traducirá como "structure containing an integer and a character"
$ cdecl "int *x[10]"
resultará en "array of 10 pointers to integers"
$ cdecl "typedef struct { int (*f)(char); double d; } S;"
se traducirá como "typedef structure containing a pointer to function taking a character parameter and returning an integer, and a double"