Module Sexp_lex

module Sexp_lex: sig .. end

type token = 
| ATOM of string
| LIST_OPEN
| LIST_CLOSE
| EOI
exception Error of Location.t * string
val remove_quotes : string -> string
val __ocaml_lex_tables : Lexing.lex_tables
val token : Lexing.lexbuf -> token
val __ocaml_lex_token_rec : Lexing.lexbuf -> int -> token