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

📄 coord.h

📁 数字水印在linux下面运行的代码
💻 H
字号:
#ifndef COORD_H#define COORD_Hstruct coord {  int x;  int y;};struct coords {  int count;  int max;  struct coord *values;};struct coords *alloc_coords(int n);void free_coords(struct coords *c);int init_coords(struct coords *c, int n);int add_coord(struct coords *c, int x, int y);#endif

⌨️ 快捷键说明

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