~ubuntu-branches/debian/sid/ocaml/sid

« back to all changes in this revision

Viewing changes to ocamldoc/odoc_text.mli

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2011-04-21 21:35:08 UTC
  • mfrom: (1.1.11 upstream) (12.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110421213508-kg34453aqmb0moha
* Fixes related to -output-obj with g++ (in debian/patches):
  - add Declare-primitive-name-table-as-const-char
  - add Avoid-multiple-declarations-in-generated-.c-files-in
  - fix Embed-bytecode-in-C-object-when-using-custom: the closing
    brace for extern "C" { ... } was missing in some cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
(*                                                                     *)
10
10
(***********************************************************************)
11
11
 
12
 
(* $Id: odoc_text.mli 5974 2003-11-24 21:20:51Z guesdon $ *)
 
12
(* $Id: odoc_text.mli 9547 2010-01-22 12:48:24Z doligez $ *)
13
13
 
14
14
(** A module with a function to parse strings to obtain a [Odoc_types.text] value. *)
15
15
 
17
17
exception Text_syntax of int * int * string (* line, char, string *)
18
18
 
19
19
(** Transformation of strings to text structures. *)
20
 
module Texter : 
21
 
    sig 
22
 
      val text_of_string : string -> Odoc_types.text 
 
20
module Texter :
 
21
    sig
 
22
      val text_of_string : string -> Odoc_types.text
23
23
      val string_of_text : Odoc_types.text -> string
24
24
    end