htrdr

Solving radiative transfer in heterogeneous media
git clone git://git.meso-star.fr/htrdr.git
Log | Files | Refs | README | LICENSE

commit b13cc3656ee087f72f85f387798b00225575a69d
parent 72b1f3ba5a1cabce398fd7f082ab1a261bd6e6d0
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Mon, 12 Dec 2022 14:31:20 +0100

core: add the HTRDR_RAN_WLEN_DISCRETE_CREATE_ARGS_NULL constant

Diffstat:
Msrc/core/htrdr_ran_wlen_discrete.h | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/core/htrdr_ran_wlen_discrete.h b/src/core/htrdr_ran_wlen_discrete.h @@ -30,6 +30,10 @@ struct htrdr_ran_wlen_discrete_create_args { size_t nwavelengths; void* context; /* User defined data */ }; +#define HTRDR_RAN_WLEN_DISCRETE_CREATE_ARGS_NULL__ {NULL, 0, NULL} +static const struct htrdr_ran_wlen_discrete_create_args +HTRDR_RAN_WLEN_DISCRETE_CREATE_ARGS_NULL = + HTRDR_RAN_WLEN_DISCRETE_CREATE_ARGS_NULL__; /* Forware declarations */ struct htrdr;