commoninter.h

来自「压缩包里面的都是精致的基本C语言小程序」· C头文件 代码 · 共 32 行

H
32
字号
#ifndef COMMONINTER_H#define COMMONINTER_H#include "poly.h"#include "plist.h"#include "str.h"typedef int (*tyEquals) (poly, poly);typedef plist (*tyPlist) (poly);typedef int (*tyHashCode) (poly);typedef str (*tyToString) (poly);typedef struct commonInter *commonInter;typedef struct tyVft *tyVft;struct tyVft{  tyEquals equals;  tyPlist getPlist;  tyHashCode hashCode;  tyToString toString;};struct commonInter{  tyVft vft;};tyVft getVft (poly data);#endif

⌨️ 快捷键说明

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