xyarray.c 603 字节
Newer Older
1 2
#include "xyarray.h"
#include "util.h"
3 4
#include <stdlib.h>
#include <string.h>
5 6 7 8 9 10 11 12 13

struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size)
{
	size_t row_size = ylen * entry_size;
	struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size);

	if (xy != NULL) {
		xy->entry_size = entry_size;
		xy->row_size   = row_size;
14
		xy->entries    = xlen * ylen;
A
Andi Kleen 已提交
15 16
		xy->max_x      = xlen;
		xy->max_y      = ylen;
17 18 19 20 21
	}

	return xy;
}

22 23 24 25 26 27 28
void xyarray__reset(struct xyarray *xy)
{
	size_t n = xy->entries * xy->entry_size;

	memset(xy->contents, 0, n);
}

29 30 31 32
void xyarray__delete(struct xyarray *xy)
{
	free(xy);
}