• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/netatalk-3.0.5/libatalk/unicode/charsets/
1/*
2   Unix SMB/CIFS implementation.
3   minimal iconv implementation
4   Copyright (C) Andrew Tridgell 2001
5   Copyright (C) Jelmer Vernooij 2002,2003
6
7   This program is free software; you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation; either version 2 of the License, or
10   (at your option) any later version.
11
12   This program is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program; if not, write to the Free Software
19   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21   From samba 3.0 beta and GNU libiconv-1.8
22   It's bad but most of the time we can't use libc iconv service:
23   - it doesn't round trip for most encoding
24   - it doesn't know about Apple extension
25*/
26
27#ifdef HAVE_CONFIG_H
28#include "config.h"
29#endif /* HAVE_CONFIG_H */
30#include <stdlib.h>
31#include <arpa/inet.h>
32
33#include <atalk/unicode.h>
34
35#include "mac_turkish.h"
36#include "generic_mb.h"
37
38static size_t   mac_turkish_pull(void *,char **, size_t *, char **, size_t *);
39static size_t   mac_turkish_push(void *,char **, size_t *, char **, size_t *);
40
41struct charset_functions charset_mac_turkish =
42{
43	"MAC_TURKISH",
44	35,
45	mac_turkish_pull,
46	mac_turkish_push,
47	CHARSET_CLIENT | CHARSET_MULTIBYTE,
48	NULL,
49	NULL, NULL
50};
51
52static size_t mac_turkish_push( void *cd, char **inbuf, size_t *inbytesleft,
53                         char **outbuf, size_t *outbytesleft)
54{
55	return (size_t) mb_generic_push( char_ucs2_to_mac_turkish, cd, inbuf, inbytesleft, outbuf, outbytesleft);
56}
57
58/* ------------------------ */
59
60static size_t mac_turkish_pull ( void *cd, char **inbuf, size_t *inbytesleft,
61                         char **outbuf, size_t *outbytesleft)
62{
63	return (size_t) mb_generic_pull( char_mac_turkish_to_ucs2, cd, inbuf, inbytesleft, outbuf, outbytesleft);
64
65}
66