Holds a linked list of names. This is used by other structures requiring lists of names.
typedef struct a_name { struct a_name *next; char name[1]; } a_name, * p_name; |
Member | Description |
---|---|
next | Pointer to the next a_name structure in the list. |
name | The name. |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |