summaryrefslogtreecommitdiff
path: root/otherlibs/labltk/support/cltkUtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/labltk/support/cltkUtf.c')
-rw-r--r--otherlibs/labltk/support/cltkUtf.c89
1 files changed, 0 insertions, 89 deletions
diff --git a/otherlibs/labltk/support/cltkUtf.c b/otherlibs/labltk/support/cltkUtf.c
deleted file mode 100644
index fd01bd15a4..0000000000
--- a/otherlibs/labltk/support/cltkUtf.c
+++ /dev/null
@@ -1,89 +0,0 @@
-/***********************************************************************/
-/* */
-/* MLTk, Tcl/Tk interface of Objective Caml */
-/* */
-/* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis */
-/* projet Cristal, INRIA Rocquencourt */
-/* Jacques Garrigue, Kyoto University RIMS */
-/* */
-/* Copyright 2002 Institut National de Recherche en Informatique et */
-/* en Automatique and Kyoto University. All rights reserved. */
-/* This file is distributed under the terms of the GNU Library */
-/* General Public License, with the special exception on linking */
-/* described in file LICENSE found in the Objective Caml source tree. */
-/* */
-/***********************************************************************/
-
-/* $Id$ */
-
-#include <stdlib.h>
-#include <string.h>
-
-#include <tcl.h>
-#include <tk.h>
-#include <mlvalues.h>
-#include <alloc.h>
-#include <memory.h>
-#ifdef HAS_UNISTD
-#include <unistd.h>
-#endif
-#include "camltk.h"
-
-#if (TCL_MAJOR_VERSION > 8 || \
- (TCL_MAJOR_VERSION == 8 && TCL_MINOR_VERSION >= 1)) /* 8.1 */
-# define UTFCONVERSION
-#endif
-
-#ifdef UTFCONVERSION
-
-char *external_to_utf( char *str ){
- char *res;
- Tcl_DString dstr;
- int length;
-
- Tcl_ExternalToUtfDString(NULL, str, strlen(str), &dstr);
- length = Tcl_DStringLength(&dstr);
- res = stat_alloc(length + 1);
- memmove( res, Tcl_DStringValue(&dstr), length+1);
- Tcl_DStringFree(&dstr);
-
- return res;
-}
-
-char *utf_to_external( char *str ){
- char *res;
- Tcl_DString dstr;
- int length;
-
- Tcl_UtfToExternalDString(NULL, str, strlen(str), &dstr);
- length = Tcl_DStringLength(&dstr);
- res = stat_alloc(length + 1);
- memmove( res, Tcl_DStringValue(&dstr), length+1);
- Tcl_DStringFree(&dstr);
-
- return res;
-}
-
-char *caml_string_to_tcl( value s )
-{
- return external_to_utf( String_val(s) );
-}
-
-value tcl_string_to_caml( char *s )
-{
- CAMLparam0();
- CAMLlocal1(res);
- char *str;
-
- str = utf_to_external( s );
- res = copy_string(str);
- stat_free(str);
- CAMLreturn(res);
-}
-
-#else
-
-char *caml_string_to_tcl(value s){ return string_to_c(s); }
-value tcl_string_to_caml(char *s){ return copy_string(s); }
-
-#endif