首页 > 代码库 > list的遍历

list的遍历

    uf_list_p_t objects;
    while(objects!=NULL_TAG)
    {
        objects=objects->next;
    }

list的遍历