In the C code we define string literals for the delimiters and then utilise strncmp() during parsing. Would there be much benefit to using chars instead? The comparison could then just use ==. I'm not sure of best practice here so leaving as an issue for future pondering.
In the C code we define string literals for the delimiters and then utilise `strncmp()` during parsing. Would there be much benefit to using chars instead? The comparison could then just use `==`. I'm not sure of best practice here so leaving as an issue for future pondering.