Next: Defining Alien Types
Up: Alien Objects
Previous: Introduction to Aliens
  Contents
  Index
Alien types have a description language based on nested list structure. For
example:
struct foo {
int a;
struct foo *b[100];
};
has the corresponding Alien type:
(struct foo
(a int)
(b (array (* (struct foo)) 100)))
Subsections
Peter Van Eynde
2000-02-08