⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cgi-llist.h

📁 这是又一个C语言解释器, 我们可以方便地扩展其功能, 并将其用于我们的工作中
💻 H
字号:
/* llist.h - Header file for llist.c   Eugene Kim, eekim@fas.harvard.edu   $Id: cgi-llist.h,v 1.2 1998/05/05 19:42:57 edb Exp $   Copyright (C) 1995 Eugene Eric Kim   All Rights Reserved*/typedef struct {  char *name;  char *value;} entrytype;typedef struct _node {  entrytype entry;  struct _node* next;} node;typedef struct {  node* head;} llist;void list_create(llist *l);node* list_next(node* w);short on_list(llist *l, node* w);short on_list_debug(llist *l, node* w);void list_traverse(llist *l, void (*visit)(entrytype item));node* list_insafter(llist* l, node* w, entrytype item);void list_clear(llist* l);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -