set.h

来自「Object-Oriented Programming With ANSI-C这」· C头文件 代码 · 共 13 行

H
13
字号
#ifndef	SET_H#define	SET_Hextern const void * Set;void * add (void * set, const void * element);void * find (const void * set, const void * element);void * drop (void * set, const void * element);int contains (const void * set, const void * element);unsigned count (const void * set);#endif

⌨️ 快捷键说明

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