6.7.3 `struct_type'
-------------------

struct_type(NAME|OBJECT)
     :: Get an identity number of the structure of OBJECT and NAME.

RETURN
     an integer

NAME
     string

OBJECT
     a structure

   * `struct_type()' returns an identity number of the structure or -1
     (if an error occurs).

     [10] struct list {h,t};
     0
     [11] A=newstruct(list);
     {0,0}
     [12] struct_type(A);
     3
     [13] struct_type("list");
     3

References
     *Note `newstruct': newstruct, *Note `structure definition':
     structure definition.

