blob: 4b367bc8b9a9be91a07fc1bc7282f636da508bba (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "../tag.h"
#include "../stream.h"
bool snbt_read(tag_t *tag, const stream_t *stream);
bool snbt_print(const tag_t *tag, const stream_t *stream);
bool snbt_allowed_ident(char c);
|