buffer.cpp

来源:互联网 发布:广西网络电视台直播 编辑:程序博客网 时间:2024/06/04 17:43
//对结构体buff_node进行初始化void bufferInit(void){head = (buff_node *)malloc(sizeof(buff_node));head->node_id = 0;head->next = head;tail = head;//实现循环链表形式 return;}

原创粉丝点击