1 /**************************************************************************/
2 /*                                                                        */
3 /*                                OCaml                                   */
4 /*                                                                        */
5 /*             Xavier Leroy, projet Cristal, INRIA Rocquencourt           */
6 /*                                                                        */
7 /*   Copyright 2001 Institut National de Recherche en Informatique et     */
8 /*     en Automatique.                                                    */
9 /*                                                                        */
10 /*   All rights reserved.  This file is distributed under the terms of    */
11 /*   the GNU Lesser General Public License version 2.1, with the          */
12 /*   special exception on linking described in the file LICENSE.          */
13 /*                                                                        */
14 /**************************************************************************/
15 
16 #include <caml/mlvalues.h>
17 #include <caml/intext.h>
18 
19 #define CAML_INTERNALS
20 
marshal_to_block(value vbuf,value vlen,value v,value vflags)21 value marshal_to_block(value vbuf, value vlen, value v, value vflags)
22 {
23   return Val_long(caml_output_value_to_block(v, vflags,
24                                         (char *) vbuf, Long_val(vlen)));
25 }
26 
marshal_from_block(value vbuf,value vlen)27 value marshal_from_block(value vbuf, value vlen)
28 {
29   return caml_input_value_from_block((char *) vbuf, Long_val(vlen));
30 }
31