vector1.c

来自「开源投影系统 Cartographic Projections library」· C语言 代码 · 共 33 行

C
33
字号
/* 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 + =
减小字号Ctrl + -
显示快捷键?