1package ansiterm
2
3type ansiContext struct {
4	currentChar byte
5	paramBuffer []byte
6	interBuffer []byte
7}
8