typedef struct
{
  long double l;
} ld;

ld a (ld x, ld y)
{
  ld b;
  b.l = x.l + y.l;
}


syntax highlighted by Code2HTML, v. 0.9.1