blob: 516b171ba710b2d4128ea5f453b77fc1f4ae236d (
plain)
1
2
3
4
5
6
7
|
#include "leven.h"
// Chunk offsets for each node in the tree
// chunks[nodeId] = start position of the tag in the original string
// The end position is implicitly the start of the next tag or the end of the string
int parse_string(char *str, struct Tree *tree, size_t **chunks);
|