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

📄 commoninter.h

📁 压缩包里面的都是精致的基本C语言小程序
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -