blob: 07359f86c28e2ae053b93fcde7934119c71b2921 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2004-2005 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26/* Routines for various UTF conversions */
27
28#ifndef _UTF_H
29#define _UTF_H
30
31#include <stdio.h>
32
33#include "jni.h"
34#include "utf_md.h"
35
36/* Error and assert macros */
37#define UTF_ERROR(m) utfError(__FILE__, __LINE__, m)
38#define UTF_ASSERT(x) ( (x)==0 ? UTF_ERROR("ASSERT ERROR " #x) : (void)0 )
39
40void utfError(char *file, int line, char *message);
41
42struct UtfInst* JNICALL utfInitialize
43 (char *options);
44void JNICALL utfTerminate
45 (struct UtfInst *ui, char *options);
46int JNICALL utf8ToPlatform
47 (struct UtfInst *ui, jbyte *utf8,
48 int len, char *output, int outputMaxLen);
49int JNICALL utf8FromPlatform
50 (struct UtfInst *ui, char *str, int len,
51 jbyte *output, int outputMaxLen);
52int JNICALL utf8ToUtf16
53 (struct UtfInst *ui, jbyte *utf8, int len,
54 jchar *output, int outputMaxLen);
55int JNICALL utf16ToUtf8m
56 (struct UtfInst *ui, jchar *utf16, int len,
57 jbyte *output, int outputMaxLen);
58int JNICALL utf16ToUtf8s
59 (struct UtfInst *ui, jchar *utf16, int len,
60 jbyte *output, int outputMaxLen);
61int JNICALL utf8sToUtf8mLength
62 (struct UtfInst *ui, jbyte *string, int length);
63void JNICALL utf8sToUtf8m
64 (struct UtfInst *ui, jbyte *string, int length,
65 jbyte *new_string, int new_length);
66int JNICALL utf8mToUtf8sLength
67 (struct UtfInst *ui, jbyte *string, int length);
68void JNICALL utf8mToUtf8s
69 (struct UtfInst *ui, jbyte *string, int length,
70 jbyte *new_string, int new_length);
71
72#endif