From da93259175d3efafc7175ef0279f62fcc3335169 Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Wed, 23 Nov 2005 07:16:55 +0000 Subject: [PATCH] added CHUNK_INITIALIZER --- Source/charon/types.c | 1 + Source/charon/types.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Source/charon/types.c b/Source/charon/types.c index 175be0571..7072d846d 100644 --- a/Source/charon/types.c +++ b/Source/charon/types.c @@ -38,3 +38,4 @@ mapping_t status_m[] = { {MAPPING_END, NULL} }; +chunk_t CHUNK_INITIALIZER = {NULL,0}; diff --git a/Source/charon/types.h b/Source/charon/types.h index d6d3c979e..07778101e 100644 --- a/Source/charon/types.h +++ b/Source/charon/types.h @@ -61,6 +61,8 @@ struct chunk_s { size_t len; }; +extern chunk_t CHUNK_INITIALIZER; + /** * General purpose boolean type */