cudl

A data language as simple as JSON but as readable as YAML or TOML.
git clone http://shtanton.xyz/git/repo/cudl
Log | Files | Refs | README

commit fbcba2f689348fb723f8d33f3d8e2010e4864e85
parent ca1c6cbf8e262e715805c065ea6ff165faa13ee8
Author: Charlie Stanton <charlie@shtanton.xyz>
Date:   Tue,  5 Oct 2021 16:09:16 +0100

Add necessary includes to cudl.h

Diffstat:
Mcudl.h | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/cudl.h b/cudl.h @@ -1,6 +1,9 @@ #ifndef cudl_h_INCLUDED #define cudl_h_INCLUDED +#include <stdio.h> +#include <stddef.h> + struct cudl_array_value { struct cudl_value *values; size_t length;