cudl

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

test.c (182B)


      1 #include <stdio.h>
      2 #include "cudl.h"
      3 
      4 int main() {
      5 	struct cudl_value value;
      6 	cudl_parse_from_file(stdin, &value);
      7 	if (cudl_err)
      8 		return cudl_err;
      9 	cudl_debug(value);
     10 	return 0;
     11 }