mallocbis.h
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:0k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #define newItem(item,list,type)
  2. if (list == NULL)
  3. item = (type *) malloc(sizeof(type));
  4. else
  5. {
  6. item = list;
  7. list = list->next;
  8. }
  9. #define freeItem(item,list)
  10. item->next = list;
  11. list = item;