📄 list.h
字号:
/* snap-1.0. Copyright (C) 2000 by Jonathan T. Moore and Michael Hicks. * * list.h : routines for manipulating SNAP lists * * $Id: list.h,v 1.2 2003/09/17 11:26:10 tmoerlan Exp $ */#ifndef _SNAP_LIST_H#define _SNAP_LIST_H#ifndef _SNAP_LIST_Ttypedef struct l { void *v; struct l *next;} list_t;#define _SNAP_LIST_T#endif /* !_SNAP_LIST_T */extern list_t *cons(void *v, list_t *next);extern void free_list(list_t *list);extern int length_list(list_t *list);#endif /* !_SNAP_LIST_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -