LIST.H
上传用户:hlzzc88
上传日期:2007-01-06
资源大小:220k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

  1. #ifndef _LIST_H
  2. #define _LIST_H
  3. /*
  4.  * Linked list type.  Used for filenames, module number list, segment lists
  5.  */
  6. typedef struct _list_ {
  7.     struct _list_ *link; /* Link to next element */
  8.     void *data; /* Generic data */
  9. } LIST;
  10. #include "list.p"
  11. #endif /* _LIST_H */