~ubuntu-branches/ubuntu/hardy/pxp/hardy

« back to all changes in this revision

Viewing changes to src/pxp-engine/pxp_lexing.mli

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli
  • Date: 2005-03-29 11:06:39 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050329110639-5p39hz1d4aq3r2ec
Tags: 1.1.95-6
* Rebuilt against ocaml 3.08.3
* No longer built with wlex support (since wlex is no longer supported
  upstream and corresponding package has been removed from the debian
  archive)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
(* $Id: pxp_lexing.mli,v 1.1 2002/03/13 22:25:51 gerd Exp $
 
1
(* $Id: pxp_lexing.mli 662 2004-05-25 20:57:28Z gerd $
2
2
 * ----------------------------------------------------------------------
3
3
 *
4
4
 *)
20
20
 
21
21
val lexeme_char : lexbuf -> int -> char
22
22
 
23
 
val lexeme_start : lexbuf -> int
 
23
(* val lexeme_start : lexbuf -> int *)   (* Removed because of wlex problems *)
24
24
 
25
 
val lexeme_end : lexbuf -> int
 
25
(* val lexeme_end : lexbuf -> int *)     (* Removed because of wlex problems *)
26
26
 
27
27
(* Extensions: *)
28
28
 
 
29
val lexeme_len : lexbuf -> int
 
30
  (* = String.length(lexeme lexbuf) *)
 
31
 
29
32
val from_string_inplace : string -> Lexing.lexbuf
30
33
  (* Similar to Lexing.from_string, but does not copy the passed string
31
34
   * intially
43
46
   *)
44
47
 
45
48
 
46
 
(* ======================================================================
47
 
 * History:
48
 
 * 
49
 
 * $Log: pxp_lexing.mli,v $
50
 
 * Revision 1.1  2002/03/13 22:25:51  gerd
51
 
 *      Initial revision.
52
 
 *
53
 
 * 
54
 
 *)