mte/unikernel/duniverse/ocaml-dns/resolvconf/resolvconf_state.ml

12 lines
161 B
OCaml
Raw Normal View History

2025-11-11 02:07:51 +01:00
(* State variables for the parser & lexer *)
type parserstate = {
mutable lineno : int ;
}
let state = {
lineno = 1 ;
}
let reset () =
state.lineno <- 1