Import SJ3 2.0.1.20
Signed-off-by: Masanori Ogino <mogino@acm.org>
This commit is contained in:
commit
b568905e51
208 changed files with 89304 additions and 0 deletions
55
sj3lib/Imakefile
Normal file
55
sj3lib/Imakefile
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
* Copyright (c) 1991-1994 Sony Corporation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject to
|
||||
* the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
* IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM,
|
||||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
||||
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of Sony Corporation
|
||||
* shall not be used in advertising or otherwise to promote the sale, use
|
||||
* or other dealings in this Software without prior written authorization
|
||||
* from Sony Corporation.
|
||||
*/
|
||||
|
||||
/*
|
||||
* $SonyRCSfile: Imakefile,v $
|
||||
* $SonyRevision: 1.3 $
|
||||
* $SonyDate: 1997/01/23 11:20:55 $
|
||||
*/
|
||||
|
||||
#include "../sj3.tmpl"
|
||||
|
||||
#if SystemV4 || SystemV
|
||||
DEFINES = $(USETLI)
|
||||
#endif
|
||||
INCLUDES = -I../include -I../sj3h
|
||||
SRCS = \
|
||||
level1.c \
|
||||
sj.c \
|
||||
string.c
|
||||
|
||||
OBJS = \
|
||||
level1.o \
|
||||
sj.o \
|
||||
string.o
|
||||
|
||||
NormalLibraryObjectRule()
|
||||
NormalLibraryTarget(sj3lib,$(OBJS))
|
||||
DependTarget()
|
||||
InstallLibrary(sj3lib,$(SJ3LIBDIR))
|
||||
InstallNonExecFile(sj3lib.h,$(SJ3HDRDIR))
|
||||
1384
sj3lib/level1.c
Normal file
1384
sj3lib/level1.c
Normal file
File diff suppressed because it is too large
Load diff
1132
sj3lib/sj.c
Normal file
1132
sj3lib/sj.c
Normal file
File diff suppressed because it is too large
Load diff
152
sj3lib/sj3lib.h
Normal file
152
sj3lib/sj3lib.h
Normal file
|
|
@ -0,0 +1,152 @@
|
|||
/*
|
||||
* Copyright (c) 1991-1994 Sony Corporation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject to
|
||||
* the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
* IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM,
|
||||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
||||
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of Sony Corporation
|
||||
* shall not be used in advertising or otherwise to promote the sale, use
|
||||
* or other dealings in this Software without prior written authorization
|
||||
* from Sony Corporation.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* $SonyRCSfile: sj3lib.h,v $
|
||||
* $SonyRevision: 1.1 $
|
||||
* $SonyDate: 1994/06/03 08:03:57 $
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#define SJ3_NORMAL_END 0
|
||||
#define SJ3_SERVER_DEAD (1 << 0)
|
||||
|
||||
|
||||
|
||||
#define SJ3_CONNECT_ERROR (1 << 1)
|
||||
#define SJ3_ALREADY_CONNECTED (1 << 2)
|
||||
#define SJ3_CANNOT_OPEN_MDICT (1 << 3)
|
||||
#define SJ3_CANNOT_OPEN_UDICT (1 << 4)
|
||||
#define SJ3_CANNOT_OPEN_STUDY (1 << 5)
|
||||
#define SJ3_CANNOT_MAKE_UDIR (1 << 6)
|
||||
#define SJ3_CANNOT_MAKE_UDICT (1 << 7)
|
||||
#define SJ3_CANNOT_MAKE_STUDY (1 << 8)
|
||||
|
||||
|
||||
|
||||
#define SJ3_DISCONNECT_ERROR (1 << 1)
|
||||
#define SJ3_NOT_CONNECTED (1 << 2)
|
||||
#define SJ3_NOT_OPENED_MDICT (1 << 3)
|
||||
#define SJ3_NOT_OPENED_UDICT (1 << 4)
|
||||
#define SJ3_NOT_OPENED_STUDY (1 << 5)
|
||||
#define SJ3_CLOSE_MDICT_ERROR (1 << 6)
|
||||
#define SJ3_CLOSE_UDICT_ERROR (1 << 7)
|
||||
#define SJ3_CLOSE_STUDY_ERROR (1 << 8)
|
||||
|
||||
|
||||
|
||||
#define SJ3_DICT_ERROR 1
|
||||
#define SJ3_DICT_LOCKED 2
|
||||
#define SJ3_BAD_YOMI_STR 3
|
||||
#define SJ3_BAD_KANJI_STR 4
|
||||
#define SJ3_BAD_HINSI_CODE 5
|
||||
|
||||
#define SJ3_WORD_EXIST 6
|
||||
#define SJ3_DOUON_FULL 7
|
||||
#define SJ3_DICT_FULL 8
|
||||
#define SJ3_INDEX_FULL 9
|
||||
#define SJ3_TOUROKU_FAILED 10
|
||||
|
||||
#define SJ3_WORD_NOT_EXIST 6
|
||||
#define SJ3_SYOUKYO_FAILED 10
|
||||
|
||||
|
||||
|
||||
|
||||
#define SJ3_IKKATU_YOMI 512
|
||||
|
||||
|
||||
|
||||
|
||||
#define SJ3_BUNSETU_YOMI 128
|
||||
#define SJ3_BUNSETU_KANJI 512
|
||||
|
||||
|
||||
|
||||
|
||||
#ifndef SJ3_WORD_ID_SIZE
|
||||
# define SJ3_WORD_ID_SIZE 32
|
||||
#endif
|
||||
|
||||
typedef struct studyrec {
|
||||
unsigned char dummy[SJ3_WORD_ID_SIZE];
|
||||
} SJ3_STUDYREC;
|
||||
|
||||
|
||||
|
||||
|
||||
typedef struct bunsetu {
|
||||
int srclen;
|
||||
int destlen;
|
||||
unsigned char *srcstr;
|
||||
unsigned char *deststr;
|
||||
struct studyrec dcid;
|
||||
} SJ3_BUNSETU;
|
||||
|
||||
|
||||
|
||||
typedef struct douon {
|
||||
unsigned char ddata[SJ3_BUNSETU_KANJI];
|
||||
int dlen;
|
||||
SJ3_STUDYREC dcid;
|
||||
} SJ3_DOUON;
|
||||
|
||||
|
||||
|
||||
#define SJ3_H_NRMNOUN 1
|
||||
#define SJ3_H_PRONOUN 12
|
||||
#define SJ3_H_LNAME 21
|
||||
#define SJ3_H_FNAME 22
|
||||
#define SJ3_H_LOCNAME 24
|
||||
#define SJ3_H_PREFIC 25
|
||||
#define SJ3_H_RENTAI 26
|
||||
#define SJ3_H_CONJUNC 27
|
||||
#define SJ3_H_SUBNUM 29
|
||||
#define SJ3_H_NUMERAL 30
|
||||
#define SJ3_H_PREFIX 31
|
||||
#define SJ3_H_POSTFIX 36
|
||||
#define SJ3_H_ADVERB 45
|
||||
#define SJ3_H_ADJECT 60
|
||||
#define SJ3_H_ADJVERB 71
|
||||
#define SJ3_H_SILVERB 80
|
||||
#define SJ3_H_ZILVERB 81
|
||||
#define SJ3_H_ONEVERB 90
|
||||
#define SJ3_H_KAVERB 91
|
||||
#define SJ3_H_GAVERB 92
|
||||
#define SJ3_H_SAVERB 93
|
||||
#define SJ3_H_TAVERB 94
|
||||
#define SJ3_H_NAVERB 95
|
||||
#define SJ3_H_BAVERB 96
|
||||
#define SJ3_H_MAVERB 97
|
||||
#define SJ3_H_RAVERB 98
|
||||
#define SJ3_H_WAVERB 99
|
||||
#define SJ3_H_SINGLE 189
|
||||
383
sj3lib/string.c
Normal file
383
sj3lib/string.c
Normal file
|
|
@ -0,0 +1,383 @@
|
|||
/*
|
||||
* Copyright (c) 1994 Sony Corporation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining
|
||||
* a copy of this software and associated documentation files (the
|
||||
* "Software"), to deal in the Software without restriction, including
|
||||
* without limitation the rights to use, copy, modify, merge, publish,
|
||||
* distribute, sublicense, and/or sell copies of the Software, and to
|
||||
* permit persons to whom the Software is furnished to do so, subject to
|
||||
* the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be
|
||||
* included in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
* IN NO EVENT SHALL SONY CORPORATION BE LIABLE FOR ANY CLAIM,
|
||||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
||||
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
||||
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of Sony Corporation
|
||||
* shall not be used in advertising or otherwise to promote the sale, use
|
||||
* or other dealings in this Software without prior written authorization
|
||||
* from Sony Corporation.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* $SonyRCSfile: string.c,v $
|
||||
* $SonyRevision: 1.1 $
|
||||
* $SonyDate: 1994/06/03 08:03:58 $
|
||||
*/
|
||||
|
||||
|
||||
|
||||
|
||||
#include "sj_sysvdef.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <locale.h>
|
||||
#include "sj_euc.h"
|
||||
#if defined(__sony_news) && defined(SVR4)
|
||||
#include <sonyils.h>
|
||||
#endif
|
||||
#include <ctype.h>
|
||||
|
||||
#ifndef TRUE
|
||||
#define TRUE (1)
|
||||
#define FALSE (0)
|
||||
#endif
|
||||
|
||||
#ifndef __sony_news
|
||||
#define sjis2euc sj3_sjis2euc
|
||||
#define euc2sjis sj3_euc2sjis
|
||||
|
||||
#define issjis1(c) (((0x81 <= (c)) && ((c) <= 0x9f)) || \
|
||||
((0xe0 <= (c)) && ((c) <= 0xfc)))
|
||||
#define iseuc(c) ((0xa1 <= (c)) && ((c) <= 0xfe))
|
||||
#define iskana(c) ((0xa1 <= (c)) && ((c) <= 0xdf))
|
||||
|
||||
unsigned short sjis2euc(), euc2sjis();
|
||||
#endif
|
||||
|
||||
int
|
||||
sj3_str_sjistoeuc(out, outlen, in, sjis_default, useflag)
|
||||
unsigned char *out, *in, *sjis_default;
|
||||
int outlen, *useflag;
|
||||
{
|
||||
unsigned char *sjis = in, *euc = out;
|
||||
int n = 0;
|
||||
unsigned short code, default_code;
|
||||
|
||||
euc[0] = '\0';
|
||||
*useflag = 0;
|
||||
|
||||
if (!sjis) return 0;
|
||||
|
||||
while (*sjis && n < outlen) {
|
||||
if (issjis1(*sjis)) {
|
||||
code = sjis2euc( (*sjis << 8) | *(sjis+1) );
|
||||
if (n + 2 > outlen) return -1;
|
||||
if (code == 0) {
|
||||
default_code = sjis2euc((sjis_default[0] << 8)
|
||||
| sjis_default[1]);
|
||||
euc[n++] = default_code >> 8;
|
||||
euc[n++] = default_code & 0xff;
|
||||
(*useflag)++;
|
||||
} else {
|
||||
euc[n++] = code >> 8;
|
||||
euc[n++] = code & 0xff;
|
||||
}
|
||||
sjis += 2;
|
||||
} else {
|
||||
if( *sjis >= 0xa1 && *sjis <= 0xdf ) {
|
||||
if (n + 2 > outlen) return -1;
|
||||
euc[n++] = SS2;
|
||||
}
|
||||
euc[n++] = *sjis;
|
||||
sjis++;
|
||||
}
|
||||
|
||||
}
|
||||
if (n > outlen) return -1;
|
||||
|
||||
euc[n] = '\0';
|
||||
return n;
|
||||
}
|
||||
|
||||
|
||||
int
|
||||
sj3_str_euctosjis(out, outlen, in, sjis_default, useflag)
|
||||
unsigned char *out, *in, *sjis_default;
|
||||
int outlen, *useflag;
|
||||
{
|
||||
unsigned char *euc = in, *sjis = out;
|
||||
int n = 0;
|
||||
unsigned short code, default_code;
|
||||
|
||||
sjis[0] = '\0';
|
||||
*useflag = 0;
|
||||
|
||||
if (!euc) return 0;
|
||||
|
||||
while (*euc && n < outlen) {
|
||||
if (iseuc(*euc)) {
|
||||
code = euc2sjis( (*euc << 8) | *(euc+1) );
|
||||
if (n + 2 > outlen) return -1;
|
||||
if (code == 0) {
|
||||
sjis[n++] = sjis_default[0];
|
||||
sjis[n++] = sjis_default[1];
|
||||
(*useflag)++;
|
||||
} else {
|
||||
sjis[n++] = code >> 8;
|
||||
sjis[n++] = code & 0xff;
|
||||
}
|
||||
euc += 2;
|
||||
} else if (*euc == SS3) {
|
||||
if (n + 2 > outlen) return -1;
|
||||
sjis[n++] = sjis_default[0];
|
||||
sjis[n++] = sjis_default[1];
|
||||
euc += 3;
|
||||
(*useflag)++;
|
||||
} else if (*euc == SS2) {
|
||||
sjis[n++] = *(euc + 1);
|
||||
euc += 2;
|
||||
} else {
|
||||
sjis[n++] = *euc;
|
||||
euc++;
|
||||
}
|
||||
}
|
||||
if (n > outlen) return -1;
|
||||
|
||||
sjis[n] = '\0';
|
||||
return n;
|
||||
}
|
||||
|
||||
int
|
||||
sj3_sjistoeuclen(str, max)
|
||||
unsigned char *str;
|
||||
int max;
|
||||
{
|
||||
register int len = 0, bytes = 1;
|
||||
|
||||
if (!max) return 0;
|
||||
while ((bytes <= max) && *str) {
|
||||
if (issjis1(*str)) {
|
||||
str++;
|
||||
bytes++;
|
||||
if (!*str) break;
|
||||
len += 2;
|
||||
} else if (*str & 0x80) {
|
||||
len += 2;
|
||||
} else {
|
||||
len++;
|
||||
}
|
||||
str++;
|
||||
bytes++;
|
||||
}
|
||||
return len;
|
||||
}
|
||||
|
||||
#define MASK 0x7f
|
||||
#define MSB 0x80
|
||||
|
||||
#if !defined(__sony_news) || (defined(__sony_news) && !defined(SVR4))
|
||||
static unsigned char def_char[] = {0x81, 0x40};
|
||||
|
||||
int
|
||||
sj3_sjistoeuc(e, elen, s, slen)
|
||||
unsigned char *s, *e;
|
||||
int slen, elen;
|
||||
{
|
||||
int dummy;
|
||||
|
||||
return sj3_str_sjistoeuc(e, elen, s, def_char, &dummy);
|
||||
}
|
||||
|
||||
int
|
||||
sj3_euctosjis(s, slen, e, elen)
|
||||
unsigned char *s, *e;
|
||||
int slen, elen;
|
||||
{
|
||||
int dummy;
|
||||
|
||||
return sj3_str_euctosjis(s, slen, e, def_char, &dummy);
|
||||
}
|
||||
|
||||
sj_euc2sjis (s)
|
||||
unsigned char *s;
|
||||
{
|
||||
s[0] &= MASK;
|
||||
s[1] &= MASK;
|
||||
sj_jis2sjis (s);
|
||||
}
|
||||
|
||||
sj_jis2sjis (s)
|
||||
unsigned char *s;
|
||||
{
|
||||
register int high, low;
|
||||
register int nh, nl;
|
||||
|
||||
high = s[0];
|
||||
low = s[1];
|
||||
nh = ((high - 0x21) >> 1) + 0x81;
|
||||
if (nh > 0x9f)
|
||||
nh += 0x40;
|
||||
if (high & 1) {
|
||||
nl = low + 0x1f;
|
||||
if (low > 0x5f)
|
||||
nl ++;
|
||||
}
|
||||
else
|
||||
nl = low + 0x7e;
|
||||
s[0] = nh;
|
||||
s[1] = nl;
|
||||
}
|
||||
|
||||
sj_sjis2euc (s)
|
||||
unsigned char *s;
|
||||
{
|
||||
sj_sjis2jis (s);
|
||||
s[0] |= MSB;
|
||||
s[1] |= MSB;
|
||||
}
|
||||
|
||||
sj_sjis2jis (s)
|
||||
unsigned char *s;
|
||||
{
|
||||
register int byte1, byte2;
|
||||
register unsigned char *sp;
|
||||
|
||||
sp = s;
|
||||
byte1 = *sp++;
|
||||
byte2 = *sp--;
|
||||
|
||||
if (byte1 <= 0x80 || byte1 >= 0xf0
|
||||
|| ( byte1>=0xa0 && byte1<=0xdf )
|
||||
|| byte2 <= 0x3f || byte2 >= 0xfe || byte2==0x7f ) {
|
||||
byte1 = 0x81;
|
||||
byte2 = 0x40;
|
||||
}
|
||||
byte1 -= (byte1 >= 0xa0) ? 0xc1 : 0x81;
|
||||
if (byte2 >= 0x9f) {
|
||||
*sp++ = (byte1 << 1) + 0x22;
|
||||
*sp = byte2 - 0x7e;
|
||||
}
|
||||
else {
|
||||
*sp++ = (byte1 << 1) + 0x21;
|
||||
*sp = byte2 - ((byte2 <= 0x7e) ? 0x1f : 0x20 );
|
||||
}
|
||||
}
|
||||
|
||||
unsigned short
|
||||
sj3_jis2sjis(code)
|
||||
unsigned short code;
|
||||
{
|
||||
unsigned char tmp[3];
|
||||
|
||||
tmp[0] = (code >> 8) & 0xff;
|
||||
tmp[1] = code & 0xff;
|
||||
tmp[2] = '\0';
|
||||
|
||||
sj_jis2sjis((unsigned char *) tmp);
|
||||
|
||||
code = (tmp[0] << 8) + tmp[1];
|
||||
|
||||
return(code);
|
||||
}
|
||||
|
||||
unsigned short
|
||||
sj3_jis2euc(code)
|
||||
unsigned short code;
|
||||
{
|
||||
unsigned char tmp[3];
|
||||
|
||||
tmp[0] = (code >> 8) & 0xff;
|
||||
tmp[1] = code & 0xff;
|
||||
tmp[2] = '\0';
|
||||
|
||||
code = ((tmp[0] | 0x80) << 8) + (tmp[1] | 0x80);
|
||||
|
||||
return(code);
|
||||
}
|
||||
|
||||
unsigned short
|
||||
sj3_sjis2jis(code)
|
||||
unsigned short code;
|
||||
{
|
||||
unsigned char tmp[3];
|
||||
|
||||
tmp[0] = (code >> 8) & 0xff;
|
||||
tmp[1] = code & 0xff;
|
||||
tmp[2] = '\0';
|
||||
|
||||
sj_sjis2jis((unsigned char *) tmp);
|
||||
|
||||
code = (tmp[0] << 8) + tmp[1];
|
||||
|
||||
return(code);
|
||||
}
|
||||
|
||||
unsigned short
|
||||
sj3_euc2sjis(code)
|
||||
unsigned short code;
|
||||
{
|
||||
unsigned char tmp[3];
|
||||
|
||||
tmp[0] = (code >> 8) & 0xff;
|
||||
tmp[1] = code & 0xff;
|
||||
tmp[2] = '\0';
|
||||
|
||||
sj_euc2sjis((unsigned char *) tmp);
|
||||
|
||||
code = (tmp[0] << 8) + tmp[1];
|
||||
|
||||
return(code);
|
||||
}
|
||||
|
||||
unsigned short
|
||||
sj3_sjis2euc(code)
|
||||
unsigned short code;
|
||||
{
|
||||
unsigned char tmp[3];
|
||||
|
||||
tmp[0] = (code >> 8) & 0xff;
|
||||
tmp[1] = code & 0xff;
|
||||
tmp[2] = '\0';
|
||||
|
||||
sj_sjis2euc((unsigned char *) tmp);
|
||||
|
||||
code = (tmp[0] << 8) + tmp[1];
|
||||
|
||||
return(code);
|
||||
}
|
||||
#else
|
||||
#ifndef SVR4
|
||||
static unsigned char def_char[] = {0x81, 0x40};
|
||||
|
||||
int
|
||||
sj3_sjistoeuc(e, elen, s, slen)
|
||||
unsigned char *s, *e;
|
||||
int slen, elen;
|
||||
{
|
||||
int dummy;
|
||||
|
||||
return sj3_str_sjistoeuc(e, elen, s, def_char, &dummy);
|
||||
}
|
||||
|
||||
int
|
||||
sj3_euctosjis(s, slen, e, elen)
|
||||
unsigned char *s, *e;
|
||||
int slen, elen;
|
||||
{
|
||||
int dummy;
|
||||
|
||||
return sj3_str_euctosjis(s, slen, e, def_char, &dummy);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue