mte/unikernel/duniverse/ocaml-dns/resolvconf/resolvconf_state.ml
2025-11-11 02:07:51 +01:00

11 lines
161 B
OCaml

(* State variables for the parser & lexer *)
type parserstate = {
mutable lineno : int ;
}
let state = {
lineno = 1 ;
}
let reset () =
state.lineno <- 1