From ac71169f3318334073f67ab6e6791a07cb571799 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Sun, 28 Aug 2005 01:17:16 +0000 Subject: [PATCH] Hiding types details --- include/array.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/array.h b/include/array.h index 1913d9e..582f4ff 100644 --- a/include/array.h +++ b/include/array.h @@ -12,12 +12,7 @@ /* types */ -typedef struct _Array -{ - void * data; - unsigned int cnt; - unsigned int size; -} Array; +typedef struct _Array Array; typedef void (*ArrayApplyFunc)(void * data, void * userdata);