LIST.H
Upload User: hlzzc88
Upload Date: 2007-01-06
Package Size: 220k
Code Size: 0k
Development Platform:

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 */