Module Cookie_lexer


module Cookie_lexer: sig .. end

type cookie_token = [ `ASSIGN | `EOF | `QSTRING of string | `SEP | `TOKEN of string ] 
val token : Lexing.lexbuf -> cookie_token