2008-01-11 11:57:08 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2004 Iwata <iwata@quasiquote.org>
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef SJ_STRING_H
|
|
|
|
|
#define SJ_STRING_H
|
|
|
|
|
|
|
|
|
|
/* string.c */
|
2026-06-19 01:49:53 +09:00
|
|
|
int sj3_str_sjistoeuc(unsigned char*, int, unsigned char*, unsigned char*, int*);
|
|
|
|
|
int sj3_str_euctosjis(unsigned char*, int, unsigned char*, unsigned char*, int*);
|
|
|
|
|
int sj3_sjistoeuclen(unsigned char*, int);
|
2008-01-11 11:57:08 +00:00
|
|
|
|
2026-06-19 01:49:53 +09:00
|
|
|
int sj3_sjistoeuc(unsigned char* s, int, unsigned char*, int);
|
|
|
|
|
int sj3_euctosjis(unsigned char* s, int, unsigned char*, int);
|
|
|
|
|
void sj_euc2sjis(unsigned char*);
|
|
|
|
|
void sj_jis2sjis(unsigned char*);
|
|
|
|
|
void sj_sjis2euc(unsigned char*);
|
|
|
|
|
void sj_sjis2jis(unsigned char*);
|
2008-01-11 11:57:08 +00:00
|
|
|
unsigned short sj3_jis2sjis(unsigned short);
|
|
|
|
|
unsigned short sj3_jis2euc(unsigned short);
|
|
|
|
|
unsigned short sj3_sjis2jis(unsigned short);
|
|
|
|
|
unsigned short sj3_euc2sjis(unsigned short);
|
|
|
|
|
unsigned short sj3_sjis2euc(unsigned short);
|
|
|
|
|
|
|
|
|
|
#endif /* SJ3INTERN_H */
|