Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7084 → Rev 7085

/programs/develop/libraries/iconv/iconv.c
26,6 → 26,7
#define ISO8859_5 4
#define UTF_8 5
#define KOI8_R 6
#define ISO8859_1 7
 
#include "cp866.h"
#include "cp1251.h"
32,6 → 33,7
#include "cp1252.h"
#include "koi8_r.h"
#include "koi8_ru.h"
#include "iso8859_1.h"
#include "iso8859_5.h"
#include "utf8.h"
 
54,6 → 56,7
if (!strcasecmp(what,"windows-1252")) return CP1252;
if (!strcasecmp(what,"KOI8-R")) return KOI8_R;
if (!strcasecmp(what,"KOI8-RU")) return KOI8_RU;
if (!strcasecmp(what,"ISO8859-1")) return ISO8859_1;
if (!strcasecmp(what,"ISO8859-5")) return ISO8859_5;
if (!strcasecmp(what,"UTF-8")) return UTF_8;
return -1;
94,6 → 97,7
case CP866: mbtowc=cp866_mbtowc; break;
case CP1251: mbtowc=cp1251_mbtowc; break;
case CP1252: mbtowc=cp1252_mbtowc; break;
case ISO8859_1: mbtowc=iso8859_1_mbtowc; break;
case ISO8859_5: mbtowc=iso8859_5_mbtowc; break;
case KOI8_R: mbtowc=koi8_r_mbtowc; break;
case KOI8_RU: mbtowc=koi8_ru_mbtowc; break;
106,6 → 110,7
case CP866: wctomb=cp866_wctomb; break;
case CP1251: wctomb=cp1251_wctomb; break;
case CP1252: wctomb=cp1252_wctomb; break;
case ISO8859_1: wctomb=iso8859_1_wctomb; break;
case ISO8859_5: wctomb=iso8859_5_wctomb; break;
case KOI8_R: wctomb=koi8_r_wctomb; break;
case KOI8_RU: wctomb=koi8_ru_wctomb; break;
/programs/develop/libraries/iconv/iso8859_1.h
0,0 → 1,41
/*
* Copyright (C) 1999-2001 Free Software Foundation, Inc.
* This file is part of the GNU LIBICONV Library.
*
* The GNU LIBICONV Library is free software; you can redistribute it
* and/or modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* The GNU LIBICONV Library is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with the GNU LIBICONV Library; see the file COPYING.LIB.
* If not, write to the Free Software Foundation, Inc., 59 Temple Place -
* Suite 330, Boston, MA 02111-1307, USA.
*/
 
/*
* ISO-8859-1
*/
 
static int
iso8859_1_mbtowc (conv_t conv, ucs4_t *pwc, const unsigned char *s, int n)
{
unsigned char c = *s;
*pwc = (ucs4_t) c;
return 1;
}
 
static int
iso8859_1_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
{
if (wc < 0x0100) {
*r = wc;
return 1;
}
return RET_ILUNI;
}