1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
** Copyright 2000-2003 Double Precision, Inc.
** See COPYING for distribution information.
**
** $Id: ibm864convert.c,v 1.2 2003/03/07 00:47:31 mrsam Exp $
*/
#include "unicode_config.h"
#include "unicode.h"
#include <string.h>
#include <stdlib.h>
/* IBM864 has this pesky 0x25 mapping charsets all share the same functions */
unicode_char *unicode_ibm864_c2u(const char *str, int *err,
const unicode_char *table)
{
size_t l=strlen(str);
unicode_char *p=(unicode_char *)malloc((l+1) * sizeof(unicode_char));
if (err)
*err= -1;
if (!p)
return (0);
for (l=0; str[l]; l++)
{
unicode_char c=table[(unsigned char)str[l]];
if (!c)
{
if (err)
{
*err=l;
free(p);
return (0);
}
c=(int)(unsigned char)str[l];
}
p[l]=c;
}
p[l]=0;
return (p);
}
char *unicode_ibm864_u2c(const unicode_char *uc, int *errflag,
const unicode_char *tab)
{
size_t l;
char *p;
for (l=0; uc[l]; l++)
;
if (errflag) *errflag= -1;
p=malloc(l+1);
if (!p)
return (0);
for (l=0; uc[l]; l++)
{
int c;
unicode_char ucc=uc[l];
/* First, guess */
if (tab[ ucc & 0xFF ] == uc[l])
c=(int)(ucc & 0xFF);
else
{
for (c=0; c<256; c++)
if (tab[c] == uc[l])
break;
if (c >= 256)
{
if (errflag)
{
*errflag=l;
free(p);
return (0);
}
c=uc[l];
}
}
if (c == 0)
c=255;
p[l]=(char)c;
}
p[l]=0;
return (p);
}
|