1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>
#include "clog.h"
#include "json.h"

int main(int argc, char* argv[]) {
    Node* head = malloc(sizeof(*head));
    *head = (Node) { .element = (Element) { .type = ELEMENT_INT, .as_int = 2 },
                     .next = NULL };

    Element element = (Element) { .type = ELEMENT_LIST, .as_list = head };

    assert(element.type == ELEMENT_LIST);
    assert(element.as_list != NULL);          // list is not empty
    assert(element.as_list -> next == NULL);  // list has size == 1
    assert(element.as_list -> element.type == ELEMENT_INT);
    assert(element.as_list -> element.as_int == 2);

    free(head);
    return EXIT_SUCCESS;
}
/*
    char const* input = "[2]";
    char const* pos   = input;
    Element element;
    parse_element(&element, &pos);
    free_element(element);
*/
/* vim: set tabstop=4 shiftwidth=4 fileencoding=utf-8 noexpandtab: */

© Copyright 2022 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.