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

📄 vector1.c

📁 开源投影系统 Cartographic Projections library originally written by Gerald Evenden then of the USGS. The
💻 C
字号:
/* make storage for one and two dimensional matricies */#ifndef lintstatic const char SCCSID[]="@(#)vector1.c	4.4	94/03/22	GIE	REL";#endif#include <stdlib.h>#include <projects.h>	void * /* one dimension array */vector1(int nvals, int size) { return((void *)pj_malloc(size * nvals)); }	void /* free 2D array */freev2(void **v, int nrows) {	if (v) {		for (v += nrows; nrows > 0; --nrows)			pj_dalloc(*--v);		pj_dalloc(v);	}}	void ** /* two dimension array */vector2(int nrows, int ncols, int size) {	void **s;	if (s = (void **)pj_malloc(sizeof(void *) * nrows)) {		int rsize, i;		rsize = size * ncols;		for (i = 0; i < nrows; ++i)			if (!(s[i] = pj_malloc(rsize))) {				freev2(s, i);				return (void **)0;			}	}	return s;}

⌨️ 快捷键说明

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