hoster 0.1.1

Small parser and lexer library for Hosts file format
Documentation
use crate::cst::CstNode;


pub trait CstVisitor {
    fn visit(&mut self, i: usize, node: &CstNode) -> Option<()>;
}