xref: /dflybsd-src/contrib/libpcap/charconv.h (revision e75ef36f1332e115895388cede9dfd24ca1a806c)
1*ea16f64eSAntonio Huete Jimenez /* -*- Mode: c; tab-width: 8; indent-tabs-mode: 1; c-basic-offset: 8; -*- */
2*ea16f64eSAntonio Huete Jimenez /*
3*ea16f64eSAntonio Huete Jimenez  * Copyright (c) 1993, 1994, 1995, 1996, 1997
4*ea16f64eSAntonio Huete Jimenez  *	The Regents of the University of California.  All rights reserved.
5*ea16f64eSAntonio Huete Jimenez  *
6*ea16f64eSAntonio Huete Jimenez  * Redistribution and use in source and binary forms, with or without
7*ea16f64eSAntonio Huete Jimenez  * modification, are permitted provided that the following conditions
8*ea16f64eSAntonio Huete Jimenez  * are met:
9*ea16f64eSAntonio Huete Jimenez  * 1. Redistributions of source code must retain the above copyright
10*ea16f64eSAntonio Huete Jimenez  *    notice, this list of conditions and the following disclaimer.
11*ea16f64eSAntonio Huete Jimenez  * 2. Redistributions in binary form must reproduce the above copyright
12*ea16f64eSAntonio Huete Jimenez  *    notice, this list of conditions and the following disclaimer in the
13*ea16f64eSAntonio Huete Jimenez  *    documentation and/or other materials provided with the distribution.
14*ea16f64eSAntonio Huete Jimenez  * 3. All advertising materials mentioning features or use of this software
15*ea16f64eSAntonio Huete Jimenez  *    must display the following acknowledgement:
16*ea16f64eSAntonio Huete Jimenez  *	This product includes software developed by the Computer Systems
17*ea16f64eSAntonio Huete Jimenez  *	Engineering Group at Lawrence Berkeley Laboratory.
18*ea16f64eSAntonio Huete Jimenez  * 4. Neither the name of the University nor of the Laboratory may be used
19*ea16f64eSAntonio Huete Jimenez  *    to endorse or promote products derived from this software without
20*ea16f64eSAntonio Huete Jimenez  *    specific prior written permission.
21*ea16f64eSAntonio Huete Jimenez  *
22*ea16f64eSAntonio Huete Jimenez  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23*ea16f64eSAntonio Huete Jimenez  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24*ea16f64eSAntonio Huete Jimenez  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25*ea16f64eSAntonio Huete Jimenez  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26*ea16f64eSAntonio Huete Jimenez  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27*ea16f64eSAntonio Huete Jimenez  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28*ea16f64eSAntonio Huete Jimenez  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29*ea16f64eSAntonio Huete Jimenez  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30*ea16f64eSAntonio Huete Jimenez  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31*ea16f64eSAntonio Huete Jimenez  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32*ea16f64eSAntonio Huete Jimenez  * SUCH DAMAGE.
33*ea16f64eSAntonio Huete Jimenez  */
34*ea16f64eSAntonio Huete Jimenez 
35*ea16f64eSAntonio Huete Jimenez #ifndef charonv_h
36*ea16f64eSAntonio Huete Jimenez #define charonv_h
37*ea16f64eSAntonio Huete Jimenez 
38*ea16f64eSAntonio Huete Jimenez #ifdef _WIN32
39*ea16f64eSAntonio Huete Jimenez extern wchar_t *cp_to_utf_16le(UINT codepage, const char *cp_string, DWORD flags);
40*ea16f64eSAntonio Huete Jimenez extern char *utf_16le_to_cp(UINT codepage, const wchar_t *utf16le_string);
41*ea16f64eSAntonio Huete Jimenez extern void utf_8_to_acp_truncated(char *);
42*ea16f64eSAntonio Huete Jimenez #endif
43*ea16f64eSAntonio Huete Jimenez 
44*ea16f64eSAntonio Huete Jimenez #endif
45