Skip to content

cdecl-8.2

Compare
Choose a tag to compare
@paul-j-lucas paul-j-lucas released this 21 Nov 14:38
· 5794 commits to master since this release

Added align
Pseudo-English now allows align as a synonym for aligned.

Multiple set options
The set command can now take multiple options.

Show abbreviated form
When showing types in pseudo-English, the abbreviated form is used, e.g.:

cdecl> show
struct S;           // instead of: typedef struct S S;

Type-qualified arrays of unspecified size
C99 type-qualified array function arguments can now have a size omitted, e.g.:

void f( int a[const] );