Ruby  2.0.0p648(2015-12-16revision53162)
Data Structures | Macros | Enumerations | Functions | Variables
nkf.c File Reference
#include "config.h"
#include "nkf.h"
#include "utf8tbl.h"
#include <assert.h>

Go to the source code of this file.

Data Structures

struct  nkf_native_encoding
 
struct  nkf_encoding
 
struct  input_code
 
struct  nkf_buf_t
 
struct  nkf_state_t
 

Macros

#define NKF_VERSION   "2.1.3"
 
#define NKF_RELEASE_DATE   "2012-11-22"
 
#define COPY_RIGHT
 
#define FIXED_MIME   7
 
#define STRICT_MIME   8
 
#define BS   0x08
 
#define TAB   0x09
 
#define LF   0x0a
 
#define CR   0x0d
 
#define ESC   0x1b
 
#define SP   0x20
 
#define DEL   0x7f
 
#define SI   0x0f
 
#define SO   0x0e
 
#define SS2   0x8e
 
#define SS3   0x8f
 
#define CRLF   0x0D0A
 
#define is_alnum(c)   (('a'<=c && c<='z')||('A'<= c && c<='Z')||('0'<=c && c<='9'))
 
#define nkf_toupper(c)   (('a'<=c && c<='z')?(c-('a'-'A')):c)
 
#define nkf_isoctal(c)   ('0'<=c && c<='7')
 
#define nkf_isdigit(c)   ('0'<=c && c<='9')
 
#define nkf_isxdigit(c)   (nkf_isdigit(c) || ('a'<=c && c<='f') || ('A'<=c && c <= 'F'))
 
#define nkf_isblank(c)   (c == SP || c == TAB)
 
#define nkf_isspace(c)   (nkf_isblank(c) || c == CR || c == LF)
 
#define nkf_isalpha(c)   (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z'))
 
#define nkf_isalnum(c)   (nkf_isdigit(c) || nkf_isalpha(c))
 
#define nkf_isprint(c)   (SP<=c && c<='~')
 
#define nkf_isgraph(c)   ('!'<=c && c<='~')
 
#define hex2bin(c)
 
#define bin2hex(c)   ("0123456789ABCDEF"[c&15])
 
#define is_eucg3(c2)   (((unsigned short)c2 >> 8) == SS3)
 
#define nkf_noescape_mime(c)
 
#define is_ibmext_in_sjis(c2)   (CP932_TABLE_BEGIN <= c2 && c2 <= CP932_TABLE_END)
 
#define nkf_byte_jisx0201_katakana_p(c)   (SP <= c && c <= 0x5F)
 
#define HOLD_SIZE   1024
 
#define IOBUF_SIZE   16384
 
#define DEFAULT_J   'B'
 
#define DEFAULT_R   'B'
 
#define GETA1   0x22
 
#define GETA2   0x2e
 
#define UCS_MAP_ASCII   0
 
#define UCS_MAP_MS   1
 
#define UCS_MAP_CP932   2
 
#define UCS_MAP_CP10001   3
 
#define NKF_UNSPECIFIED   (-TRUE)
 
#define PREFIX_EUCG3   NKF_INT32_C(0x8F00)
 
#define CLASS_MASK   NKF_INT32_C(0xFF000000)
 
#define CLASS_UNICODE   NKF_INT32_C(0x01000000)
 
#define VALUE_MASK   NKF_INT32_C(0x00FFFFFF)
 
#define UNICODE_BMP_MAX   NKF_INT32_C(0x0000FFFF)
 
#define UNICODE_MAX   NKF_INT32_C(0x0010FFFF)
 
#define nkf_char_euc3_new(c)   ((c) | PREFIX_EUCG3)
 
#define nkf_char_unicode_new(c)   ((c) | CLASS_UNICODE)
 
#define nkf_char_unicode_p(c)   ((c & CLASS_MASK) == CLASS_UNICODE)
 
#define nkf_char_unicode_bmp_p(c)   ((c & VALUE_MASK) <= UNICODE_BMP_MAX)
 
#define nkf_char_unicode_value_p(c)   ((c & VALUE_MASK) <= UNICODE_MAX)
 
#define UTF16_TO_UTF32(lead, trail)   (((lead) << 10) + (trail) - NKF_INT32_C(0x35FDC00))
 
#define FOLD_MARGIN   10
 
#define DEFAULT_FOLD   60
 
#define nkf_xfree(ptr)   free(ptr)
 
#define nkf_enc_name(enc)   (enc)->name
 
#define nkf_enc_to_index(enc)   (enc)->id
 
#define nkf_enc_to_base_encoding(enc)   (enc)->base_encoding
 
#define nkf_enc_to_iconv(enc)   nkf_enc_to_base_encoding(enc)->iconv
 
#define nkf_enc_to_oconv(enc)   nkf_enc_to_base_encoding(enc)->oconv
 
#define nkf_enc_asciicompat(enc)
 
#define nkf_enc_unicode_p(enc)
 
#define nkf_enc_cp5022x_p(enc)
 
#define nkf_buf_length(buf)   ((buf)->len)
 
#define nkf_buf_empty_p(buf)   ((buf)->len == 0)
 
#define SJ0162   0x00e1 /* 01 - 62 ku offset */
 
#define SJ6394   0x0161 /* 63 - 94 ku offset */
 
#define X0213_SURROGATE_FIND(tbl, size, euc)
 
#define NKF_ICONV_INVALID_CODE_RANGE   -13
 
#define NKF_ICONV_WAIT_COMBINING_CHAR   -14
 
#define NKF_ICONV_NOT_COMBINED   -15
 
#define NKF_ICONV_NEED_ONE_MORE_BYTE   (size_t)-1
 
#define NKF_ICONV_NEED_TWO_MORE_BYTES   (size_t)-2
 
#define output_ascii_escape_sequence(mode)
 
#define OUTPUT_UTF8(val)
 
#define OUTPUT_UTF16_BYTES(c1, c2)
 
#define OUTPUT_UTF16(val)
 
#define OUTPUT_UTF32(c)
 
#define SCORE_L2   (1) /* Kanji Level 2 */
 
#define SCORE_KANA   (SCORE_L2 << 1) /* Halfwidth Katakana */
 
#define SCORE_DEPEND   (SCORE_KANA << 1) /* MD Characters */
 
#define SCORE_CP932   (SCORE_DEPEND << 1) /* IBM extended characters */
 
#define SCORE_X0212   (SCORE_CP932 << 1) /* JIS X 0212 */
 
#define SCORE_X0213   (SCORE_X0212 << 1) /* JIS X 0213 */
 
#define SCORE_NO_EXIST   (SCORE_X0213 << 1) /* Undefined Characters */
 
#define SCORE_iMIME   (SCORE_NO_EXIST << 1) /* MIME selected */
 
#define SCORE_ERROR   (SCORE_iMIME << 1) /* Error */
 
#define SCORE_INIT   (SCORE_iMIME)
 
#define STD_GC_BUFSIZE   (256)
 
#define char_size(c2, c1)   (c2?2:1)
 
#define rot13(c)
 
#define rot47(c)
 
#define RANGE_NUM_MAX   18
 
#define MIME_BUF_SIZE   (1024) /* 2^n ring buffer */
 
#define MIME_BUF_MASK   (MIME_BUF_SIZE-1)
 
#define mime_input_buf(n)   mime_input_state.buf[(n)&MIME_BUF_MASK]
 
#define MAXRECOVER   20
 
#define MIMEOUT_BUF_LENGTH   74
 
#define NEXT   continue /* no output, get next */
 
#define SKIP   c2=0;continue /* no output, get next */
 
#define MORE   c2=c1;continue /* need one more byte */
 
#define SEND   (void)0 /* output c1 and c2, get next */
 
#define LAST   break /* end of loop, go closing */
 
#define set_input_mode(mode)
 

Enumerations

enum  byte_order { ENDIAN_BIG = 1, ENDIAN_LITTLE = 2, ENDIAN_2143 = 3, ENDIAN_3412 = 4 }
 
enum  nkf_encodings {
  ASCII, ISO_8859_1, ISO_2022_JP, CP50220,
  CP50221, CP50222, ISO_2022_JP_1, ISO_2022_JP_3,
  ISO_2022_JP_2004, SHIFT_JIS, WINDOWS_31J, CP10001,
  EUC_JP, EUCJP_NKF, CP51932, EUCJP_MS,
  EUCJP_ASCII, SHIFT_JISX0213, SHIFT_JIS_2004, EUC_JISX0213,
  EUC_JIS_2004, UTF_8, UTF_8N, UTF_8_BOM,
  UTF8_MAC, UTF_16, UTF_16BE, UTF_16BE_BOM,
  UTF_16LE, UTF_16LE_BOM, UTF_32, UTF_32BE,
  UTF_32BE_BOM, UTF_32LE, UTF_32LE_BOM, BINARY,
  NKF_ENCODING_TABLE_SIZE, JIS_X_0201_1976_K = 0x1013, JIS_X_0208 = 0x1168, JIS_X_0212 = 0x1159,
  JIS_X_0213_2 = 0x1229, JIS_X_0213_1 = 0x1233
}
 

Functions

static nkf_char s_iconv (nkf_char c2, nkf_char c1, nkf_char c0)
 
static nkf_char e_iconv (nkf_char c2, nkf_char c1, nkf_char c0)
 
static nkf_char w_iconv (nkf_char c2, nkf_char c1, nkf_char c0)
 
static nkf_char w_iconv16 (nkf_char c2, nkf_char c1, nkf_char c0)
 
static nkf_char w_iconv32 (nkf_char c2, nkf_char c1, nkf_char c0)
 
static void j_oconv (nkf_char c2, nkf_char c1)
 
static void s_oconv (nkf_char c2, nkf_char c1)
 
static void e_oconv (nkf_char c2, nkf_char c1)
 
static void w_oconv (nkf_char c2, nkf_char c1)
 
static void w_oconv16 (nkf_char c2, nkf_char c1)
 
static void w_oconv32 (nkf_char c2, nkf_char c1)
 
static void w_status (struct input_code *, nkf_char)
 
static void std_putc (nkf_char c)
 
static nkf_char std_getc (FILE *f)
 
static nkf_char std_ungetc (nkf_char c, FILE *f)
 
static nkf_char broken_getc (FILE *f)
 
static nkf_char broken_ungetc (nkf_char c, FILE *f)
 
static nkf_char mime_getc (FILE *f)
 
static void mime_putc (nkf_char c)
 
static void no_putc (nkf_char c)
 
static void debug (const char *str)
 
static void set_input_codename (const char *codename)
 
static void e_status (struct input_code *, nkf_char)
 
static void s_status (struct input_code *, nkf_char)
 
static nkf_char no_connection2 (ARG_UNUSED nkf_char c2, ARG_UNUSED nkf_char c1, ARG_UNUSED nkf_char c0)
 
static void no_connection (nkf_char c2, nkf_char c1)
 
static void * nkf_xmalloc (size_t size)
 
static void * nkf_xrealloc (void *ptr, size_t size)
 
static int nkf_str_caseeql (const char *src, const char *target)
 
static nkf_encodingnkf_enc_from_index (int idx)
 
static int nkf_enc_find_index (const char *name)
 
static nkf_encodingnkf_enc_find (const char *name)
 
static const char * nkf_locale_charmap ()
 
static nkf_encodingnkf_locale_encoding ()
 
static nkf_encodingnkf_utf8_encoding ()
 
static nkf_encodingnkf_default_encoding ()
 
static nkf_buf_tnkf_buf_new (int length)
 
static nkf_char nkf_buf_at (nkf_buf_t *buf, int index)
 
static void nkf_buf_clear (nkf_buf_t *buf)
 
static void nkf_buf_push (nkf_buf_t *buf, nkf_char c)
 
static nkf_char nkf_buf_pop (nkf_buf_t *buf)
 
static void version (void)
 
static void usage (void)
 
static void show_configuration (void)
 
static char * get_backup_filename (const char *suffix, const char *filename)
 
static void nkf_each_char_to_hex (void(*f)(nkf_char c2, nkf_char c1), nkf_char c)
 
static void encode_fallback_html (nkf_char c)
 
static void encode_fallback_xml (nkf_char c)
 
static void encode_fallback_java (nkf_char c)
 
static void encode_fallback_perl (nkf_char c)
 
static void encode_fallback_subchar (nkf_char c)
 
static void set_input_encoding (nkf_encoding *enc)
 
static void set_output_encoding (nkf_encoding *enc)
 
static struct input_codefind_inputcode_byfunc (nkf_char(*iconv_func)(nkf_char c2, nkf_char c1, nkf_char c0))
 
static void set_iconv (nkf_char f, nkf_char(*iconv_func)(nkf_char c2, nkf_char c1, nkf_char c0))
 
static nkf_char x0212_shift (nkf_char c)
 
static nkf_char x0212_unshift (nkf_char c)
 
static int is_x0213_2_in_x0212 (nkf_char c1)
 
static nkf_char e2s_conv (nkf_char c2, nkf_char c1, nkf_char *p2, nkf_char *p1)
 
static nkf_char s2e_conv (nkf_char c2, nkf_char c1, nkf_char *p2, nkf_char *p1)
 
static void nkf_unicode_to_utf8 (nkf_char val, nkf_char *p1, nkf_char *p2, nkf_char *p3, nkf_char *p4)
 
static nkf_char nkf_utf8_to_unicode (nkf_char c1, nkf_char c2, nkf_char c3, nkf_char c4)
 
static int unicode_to_jis_common2 (nkf_char c1, nkf_char c0, const unsigned short *const *pp, nkf_char psize, nkf_char *p2, nkf_char *p1)
 
static int unicode_to_jis_common (nkf_char c2, nkf_char c1, nkf_char c0, nkf_char *p2, nkf_char *p1)
 
static nkf_char e2w_conv (nkf_char c2, nkf_char c1)
 
static nkf_char e2w_combining (nkf_char comb, nkf_char c2, nkf_char c1)
 
static nkf_char w2e_conv (nkf_char c2, nkf_char c1, nkf_char c0, nkf_char *p2, nkf_char *p1)
 
static nkf_char w16e_conv (nkf_char val, nkf_char *p2, nkf_char *p1)
 
static nkf_char s_iconv (ARG_UNUSED nkf_char c2, nkf_char c1, ARG_UNUSED nkf_char c0)
 
static int x0213_wait_combining_p (nkf_char wc)
 
static int x0213_combining_p (nkf_char wc)
 
static nkf_char w_iconv_nocombine (nkf_char c1, nkf_char c2, nkf_char c3)
 
static size_t unicode_iconv (nkf_char wc, int nocombine)
 
static nkf_char unicode_iconv_combine (nkf_char wc, nkf_char wc2)
 
static nkf_char w_iconv_combine (nkf_char c1, nkf_char c2, nkf_char c3, nkf_char c4, nkf_char c5, nkf_char c6)
 
static size_t nkf_iconv_utf_16 (nkf_char c1, nkf_char c2, nkf_char c3, nkf_char c4)
 
static size_t nkf_iconv_utf_16_combine (nkf_char c1, nkf_char c2, nkf_char c3, nkf_char c4)
 
static size_t nkf_iconv_utf_16_nocombine (nkf_char c1, nkf_char c2)
 
static nkf_char w_iconv16 (nkf_char c2, nkf_char c1, ARG_UNUSED nkf_char c0)
 
static nkf_char w_iconv32 (nkf_char c2, nkf_char c1, ARG_UNUSED nkf_char c0)
 
static nkf_char utf32_to_nkf_char (nkf_char c1, nkf_char c2, nkf_char c3, nkf_char c4)
 
static size_t nkf_iconv_utf_32 (nkf_char c1, nkf_char c2, nkf_char c3, nkf_char c4)
 
static nkf_char nkf_iconv_utf_32_combine (nkf_char c1, nkf_char c2, nkf_char c3, nkf_char c4, nkf_char c5, nkf_char c6, nkf_char c7, nkf_char c8)
 
static size_t nkf_iconv_utf_32_nocombine (nkf_char c1, nkf_char c2, nkf_char c3, nkf_char c4)
 
static void output_escape_sequence (int mode)
 
static void set_code_score (struct input_code *ptr, nkf_char score)
 
static void clr_code_score (struct input_code *ptr, nkf_char score)
 
static void code_score (struct input_code *ptr)
 
static void status_disable (struct input_code *ptr)
 
static void status_push_ch (struct input_code *ptr, nkf_char c)
 
static void status_clear (struct input_code *ptr)
 
static void status_reset (struct input_code *ptr)
 
static void status_reinit (struct input_code *ptr)
 
static void status_check (struct input_code *ptr, nkf_char c)
 
static void code_status (nkf_char c)
 
static void nkf_state_init (void)
 
static nkf_char std_ungetc (nkf_char c, ARG_UNUSED FILE *f)
 
static nkf_char push_hold_buf (nkf_char c2)
 
static int h_conv (FILE *f, nkf_char c1, nkf_char c2)
 
static void check_bom (FILE *f)
 
static nkf_char broken_ungetc (nkf_char c, ARG_UNUSED FILE *f)
 
static void eol_conv (nkf_char c2, nkf_char c1)
 
static void put_newline (void(*func)(nkf_char))
 
static void oconv_newline (void(*func)(nkf_char, nkf_char))
 
static void fold_conv (nkf_char c2, nkf_char c1)
 
static void z_conv (nkf_char c2, nkf_char c1)
 
static void rot_conv (nkf_char c2, nkf_char c1)
 
static void hira_conv (nkf_char c2, nkf_char c1)
 
static void iso2022jp_check_conv (nkf_char c2, nkf_char c1)
 
static void mime_input_buf_unshift (nkf_char c)
 
static nkf_char mime_ungetc (nkf_char c, ARG_UNUSED FILE *f)
 
static nkf_char mime_ungetc_buf (nkf_char c, FILE *f)
 
static nkf_char mime_getc_buf (FILE *f)
 
static void switch_mime_getc (void)
 
static void unswitch_mime_getc (void)
 
static nkf_char mime_integrity (FILE *f, const unsigned char *p)
 
static nkf_char mime_begin_strict (FILE *f)
 
static nkf_char mime_begin (FILE *f)
 
static void no_putc (ARG_UNUSED nkf_char c)
 
static const char * get_guessed_code (void)
 
static void print_guessed_code (char *filename)
 
static nkf_char hex_getc (nkf_char ch, FILE *f, nkf_char(*g)(FILE *f), nkf_char(*u)(nkf_char c, FILE *f))
 
static nkf_char cap_getc (FILE *f)
 
static nkf_char cap_ungetc (nkf_char c, FILE *f)
 
static nkf_char url_getc (FILE *f)
 
static nkf_char url_ungetc (nkf_char c, FILE *f)
 
static nkf_char numchar_getc (FILE *f)
 
static nkf_char numchar_ungetc (nkf_char c, FILE *f)
 
static nkf_char nfc_getc (FILE *f)
 
static nkf_char nfc_ungetc (nkf_char c, FILE *f)
 
static nkf_char base64decode (nkf_char c)
 
static void open_mime (nkf_char mode)
 
static void mime_prechar (nkf_char c2, nkf_char c1)
 
static void close_mime (void)
 
static void eof_mime (void)
 
static void mimeout_addchar (nkf_char c)
 
static void base64_conv (nkf_char c2, nkf_char c1)
 
static void reinit (void)
 
static int module_connection (void)
 
static nkf_char noconvert (FILE *f)
 
static int kanji_convert (FILE *f)
 
static int options (unsigned char *cp)
 
int main (int argc, char **argv)
 

Variables

nkf_native_encoding NkfEncodingASCII = { "ASCII", e_iconv, e_oconv }
 
nkf_native_encoding NkfEncodingISO_2022_JP = { "ISO-2022-JP", e_iconv, j_oconv }
 
nkf_native_encoding NkfEncodingShift_JIS = { "Shift_JIS", s_iconv, s_oconv }
 
nkf_native_encoding NkfEncodingEUC_JP = { "EUC-JP", e_iconv, e_oconv }
 
nkf_native_encoding NkfEncodingUTF_8 = { "UTF-8", w_iconv, w_oconv }
 
nkf_native_encoding NkfEncodingUTF_16 = { "UTF-16", w_iconv16, w_oconv16 }
 
nkf_native_encoding NkfEncodingUTF_32 = { "UTF-32", w_iconv32, w_oconv32 }
 
nkf_encoding nkf_encoding_table []
 
struct {
   const char *   name
 
   const int   id
 
encoding_name_to_id_table []
 
static const char * input_codename = NULL
 
static nkf_encodinginput_encoding = NULL
 
static nkf_encodingoutput_encoding = NULL
 
static int ms_ucs_map_f = UCS_MAP_ASCII
 
static int no_cp932ext_f = FALSE
 
static int no_best_fit_chars_f = FALSE
 
static int input_endian = ENDIAN_BIG
 
static int input_bom_f = FALSE
 
static nkf_char unicode_subchar = '?'
 
static void(* encode_fallback )(nkf_char c) = NULL
 
static int output_bom_f = FALSE
 
static int output_endian = ENDIAN_BIG
 
static unsigned char stdibuf [IOBUF_SIZE]
 
static unsigned char stdobuf [IOBUF_SIZE]
 
static int unbuf_f = FALSE
 
static int estab_f = FALSE
 
static int nop_f = FALSE
 
static int binmode_f = TRUE
 
static int rot_f = FALSE
 
static int hira_f = FALSE
 
static int alpha_f = FALSE
 
static int mime_f = MIME_DECODE_DEFAULT
 
static int mime_decode_f = FALSE
 
static int mimebuf_f = FALSE
 
static int broken_f = FALSE
 
static int iso8859_f = FALSE
 
static int mimeout_f = FALSE
 
static int x0201_f = NKF_UNSPECIFIED
 
static int iso2022jp_f = FALSE
 
static int nfc_f = FALSE
 
static nkf_char(* i_nfc_getc )(FILE *) = std_getc
 
static nkf_char(* i_nfc_ungetc )(nkf_char c, FILE *f) = std_ungetc
 
static int cap_f = FALSE
 
static nkf_char(* i_cgetc )(FILE *) = std_getc
 
static nkf_char(* i_cungetc )(nkf_char c, FILE *f) = std_ungetc
 
static int url_f = FALSE
 
static nkf_char(* i_ugetc )(FILE *) = std_getc
 
static nkf_char(* i_uungetc )(nkf_char c, FILE *f) = std_ungetc
 
static int numchar_f = FALSE
 
static nkf_char(* i_ngetc )(FILE *) = std_getc
 
static nkf_char(* i_nungetc )(nkf_char c, FILE *f) = std_ungetc
 
static int noout_f = FALSE
 
static int debug_f = FALSE
 
static nkf_char(* iconv_for_check )(nkf_char c2, nkf_char c1, nkf_char c0)=0
 
static int guess_f = 0
 
static int cp51932_f = FALSE
 
static int cp932inv_f = TRUE
 
static int x0212_f = FALSE
 
static int x0213_f = FALSE
 
static unsigned char prefix_table [256]
 
struct input_code input_code_list []
 
static int mimeout_mode = 0
 
static int base64_count = 0
 
static int f_line = 0
 
static int f_prev = 0
 
static int fold_preserve_f = FALSE
 
static int fold_f = FALSE
 
static int fold_len = 0
 
static unsigned char kanji_intro = DEFAULT_J
 
static unsigned char ascii_intro = DEFAULT_R
 
static int fold_margin = FOLD_MARGIN
 
static nkf_char(* iconv )(nkf_char c2, nkf_char c1, nkf_char c0) = no_connection2
 
static void(* oconv )(nkf_char c2, nkf_char c1) = no_connection
 
static void(* o_zconv )(nkf_char c2, nkf_char c1) = no_connection
 
static void(* o_fconv )(nkf_char c2, nkf_char c1) = no_connection
 
static void(* o_eol_conv )(nkf_char c2, nkf_char c1) = no_connection
 
static void(* o_rot_conv )(nkf_char c2, nkf_char c1) = no_connection
 
static void(* o_hira_conv )(nkf_char c2, nkf_char c1) = no_connection
 
static void(* o_base64conv )(nkf_char c2, nkf_char c1) = no_connection
 
static void(* o_iso2022jp_check_conv )(nkf_char c2, nkf_char c1) = no_connection
 
static void(* o_putc )(nkf_char c) = std_putc
 
static nkf_char(* i_getc )(FILE *f) = std_getc
 
static nkf_char(* i_ungetc )(nkf_char c, FILE *f) =std_ungetc
 
static nkf_char(* i_bgetc )(FILE *) = std_getc
 
static nkf_char(* i_bungetc )(nkf_char c, FILE *f) = std_ungetc
 
static void(* o_mputc )(nkf_char c) = std_putc
 
static nkf_char(* i_mgetc )(FILE *) = std_getc
 
static nkf_char(* i_mungetc )(nkf_char c, FILE *f) = std_ungetc
 
static nkf_char(* i_mgetc_buf )(FILE *) = std_getc
 
static nkf_char(* i_mungetc_buf )(nkf_char c, FILE *f) = std_ungetc
 
static int output_mode = ASCII
 
static int input_mode = ASCII
 
static int mime_decode_mode = FALSE
 
static const unsigned char cv []
 
static const unsigned char dv []
 
static const unsigned char ev []
 
static const unsigned char ev_x0213 []
 
static const unsigned char fv []
 
static int option_mode = 0
 
static int file_out_f = FALSE
 
static int overwrite_f = FALSE
 
static int preserve_time_f = FALSE
 
static int backup_f = FALSE
 
static char * backup_suffix = ""
 
static int eolmode_f = 0
 
static int input_eol = 0
 
static nkf_char prev_cr = 0
 
struct {
   const char *   name
 
   const char *   alias
 
long_option []
 
static const nkf_char score_table_A0 []
 
static const nkf_char score_table_F0 []
 
static const nkf_char score_table_8FA0 []
 
static const nkf_char score_table_8FE0 []
 
static const nkf_char score_table_8FF0 []
 
static nkf_state_tnkf_state = NULL
 
static nkf_char hold_buf [HOLD_SIZE *2]
 
static int hold_count = 0
 
static nkf_char z_prev2 =0
 
static nkf_char z_prev1 =0
 
static const unsigned char * mime_pattern []
 
nkf_char(* mime_priority_func [])(nkf_char c2, nkf_char c1, nkf_char c0)
 
static const nkf_char mime_encode []
 
static const nkf_char mime_encode_method []
 
struct {
   unsigned char   buf [MIME_BUF_SIZE]
 
   unsigned int   top
 
   unsigned int   last
 
   unsigned int   input
 
mime_input_state
 
static nkf_char(* mime_iconv_back )(nkf_char c2, nkf_char c1, nkf_char c0) = NULL
 
static const char basis_64 []
 
struct {
   unsigned char   buf [MIMEOUT_BUF_LENGTH+1]
 
   int   count
 
mimeout_state
 

Macro Definition Documentation

◆ bin2hex

#define bin2hex (   c)    ("0123456789ABCDEF"[c&15])

Definition at line 295 of file nkf.c.

Referenced by encode_fallback_java(), mimeout_addchar(), and nkf_each_char_to_hex().

◆ BS

#define BS   0x08

Definition at line 70 of file nkf.c.

Referenced by fold_conv().

◆ char_size

#define char_size (   c2,
  c1 
)    (c2?2:1)

Definition at line 3810 of file nkf.c.

Referenced by fold_conv().

◆ CLASS_MASK

#define CLASS_MASK   NKF_INT32_C(0xFF000000)

Definition at line 423 of file nkf.c.

◆ CLASS_UNICODE

#define CLASS_UNICODE   NKF_INT32_C(0x01000000)

Definition at line 424 of file nkf.c.

◆ COPY_RIGHT

#define COPY_RIGHT
Value:
"Copyright (C) 1987, FUJITSU LTD. (I.Ichikawa).\n" \
"Copyright (C) 1996-2012, The nkf Project."

Definition at line 25 of file nkf.c.

Referenced by version().

◆ CR

#define CR   0x0d

◆ CRLF

#define CRLF   0x0D0A

◆ DEFAULT_FOLD

#define DEFAULT_FOLD   60

Definition at line 505 of file nkf.c.

Referenced by options().

◆ DEFAULT_J

#define DEFAULT_J   'B'

Definition at line 311 of file nkf.c.

Referenced by reinit().

◆ DEFAULT_R

#define DEFAULT_R   'B'

Definition at line 312 of file nkf.c.

Referenced by reinit().

◆ DEL

#define DEL   0x7f

◆ ESC

#define ESC   0x1b

Definition at line 74 of file nkf.c.

Referenced by broken_getc(), h_conv(), kanji_convert(), and output_escape_sequence().

◆ FIXED_MIME

#define FIXED_MIME   7

Definition at line 57 of file nkf.c.

Referenced by eof_mime(), mime_getc(), mime_putc(), module_connection(), and options().

◆ FOLD_MARGIN

#define FOLD_MARGIN   10

Definition at line 504 of file nkf.c.

Referenced by reinit().

◆ GETA1

#define GETA1   0x22

Definition at line 315 of file nkf.c.

Referenced by e_iconv(), iso2022jp_check_conv(), and s_iconv().

◆ GETA2

#define GETA2   0x2e

Definition at line 316 of file nkf.c.

Referenced by e_iconv(), iso2022jp_check_conv(), and s_iconv().

◆ hex2bin

#define hex2bin (   c)
Value:
(('0'<=c&&c<='9') ? (c-'0') : \
('A'<=c&&c<='F') ? (c-'A'+10) : \
('a'<=c&&c<='f') ? (c-'a'+10) : 0)

Definition at line 292 of file nkf.c.

Referenced by hex_getc(), mime_getc(), numchar_getc(), and options().

◆ HOLD_SIZE

#define HOLD_SIZE   1024

Definition at line 304 of file nkf.c.

Referenced by push_hold_buf().

◆ IOBUF_SIZE

#define IOBUF_SIZE   16384

Definition at line 308 of file nkf.c.

Referenced by main().

◆ is_alnum

#define is_alnum (   c)    (('a'<=c && c<='z')||('A'<= c && c<='Z')||('0'<=c && c<='9'))

Definition at line 278 of file nkf.c.

Referenced by fold_conv(), mime_begin(), and mime_integrity().

◆ is_eucg3

#define is_eucg3 (   c2)    (((unsigned short)c2 >> 8) == SS3)

Definition at line 296 of file nkf.c.

Referenced by e2s_conv(), e2w_conv(), e_oconv(), j_oconv(), s_oconv(), unicode_to_jis_common(), and x0212_shift().

◆ is_ibmext_in_sjis

#define is_ibmext_in_sjis (   c2)    (CP932_TABLE_BEGIN <= c2 && c2 <= CP932_TABLE_END)

Definition at line 301 of file nkf.c.

Referenced by s2e_conv(), and s_status().

◆ LAST

#define LAST   break /* end of loop, go closing */

Definition at line 5824 of file nkf.c.

Referenced by kanji_convert().

◆ LF

#define LF   0x0a

◆ MAXRECOVER

#define MAXRECOVER   20

Definition at line 4315 of file nkf.c.

Referenced by mime_begin(), and mime_begin_strict().

◆ MIME_BUF_MASK

#define MIME_BUF_MASK   (MIME_BUF_SIZE-1)

Definition at line 4305 of file nkf.c.

Referenced by mime_integrity().

◆ MIME_BUF_SIZE

#define MIME_BUF_SIZE   (1024) /* 2^n ring buffer */

Definition at line 4304 of file nkf.c.

◆ mime_input_buf

#define mime_input_buf (   n)    mime_input_state.buf[(n)&MIME_BUF_MASK]

◆ MIMEOUT_BUF_LENGTH

#define MIMEOUT_BUF_LENGTH   74

Definition at line 5038 of file nkf.c.

Referenced by mime_putc().

◆ MORE

#define MORE   c2=c1;continue /* need one more byte */

Definition at line 5822 of file nkf.c.

Referenced by kanji_convert().

◆ NEXT

#define NEXT   continue /* no output, get next */

Definition at line 5820 of file nkf.c.

Referenced by kanji_convert().

◆ nkf_buf_empty_p

#define nkf_buf_empty_p (   buf)    ((buf)->len == 0)

Definition at line 860 of file nkf.c.

Referenced by broken_getc(), nkf_buf_pop(), and std_getc().

◆ nkf_buf_length

#define nkf_buf_length (   buf)    ((buf)->len)

Definition at line 859 of file nkf.c.

Referenced by broken_ungetc(), and nfc_getc().

◆ nkf_byte_jisx0201_katakana_p

#define nkf_byte_jisx0201_katakana_p (   c)    (SP <= c && c <= 0x5F)

Definition at line 302 of file nkf.c.

Referenced by kanji_convert().

◆ nkf_char_euc3_new

#define nkf_char_euc3_new (   c)    ((c) | PREFIX_EUCG3)

Definition at line 428 of file nkf.c.

◆ nkf_char_unicode_bmp_p

#define nkf_char_unicode_bmp_p (   c)    ((c & VALUE_MASK) <= UNICODE_BMP_MAX)

Definition at line 431 of file nkf.c.

Referenced by encode_fallback_java(), nkf_unicode_to_utf8(), and w16e_conv().

◆ nkf_char_unicode_new

#define nkf_char_unicode_new (   c)    ((c) | CLASS_UNICODE)

◆ nkf_char_unicode_p

#define nkf_char_unicode_p (   c)    ((c & CLASS_MASK) == CLASS_UNICODE)

◆ nkf_char_unicode_value_p

#define nkf_char_unicode_value_p (   c)    ((c & VALUE_MASK) <= UNICODE_MAX)

Definition at line 432 of file nkf.c.

Referenced by nkf_unicode_to_utf8().

◆ nkf_enc_asciicompat

#define nkf_enc_asciicompat (   enc)
Value:
(\
nkf_enc_to_base_encoding(enc) == &NkfEncodingASCII ||\
nkf_enc_to_base_encoding(enc) == &NkfEncodingISO_2022_JP)
nkf_native_encoding NkfEncodingASCII
Definition: nkf.c:153
nkf_native_encoding NkfEncodingISO_2022_JP
Definition: nkf.c:154

Definition at line 763 of file nkf.c.

Referenced by kanji_convert().

◆ nkf_enc_cp5022x_p

#define nkf_enc_cp5022x_p (   enc)
Value:
(\
nkf_enc_to_index(enc) == CP50220 ||\
nkf_enc_to_index(enc) == CP50221 ||\
nkf_enc_to_index(enc) == CP50222)
Definition: nkf.c:90
Definition: nkf.c:91
Definition: nkf.c:92

Definition at line 770 of file nkf.c.

Referenced by kanji_convert().

◆ nkf_enc_name

#define nkf_enc_name (   enc)    (enc)->name

Definition at line 758 of file nkf.c.

Referenced by rb_nkf_convert(), rb_nkf_enc_get(), and show_configuration().

◆ nkf_enc_to_base_encoding

#define nkf_enc_to_base_encoding (   enc)    (enc)->base_encoding

Definition at line 760 of file nkf.c.

Referenced by rb_nkf_enc_get().

◆ nkf_enc_to_iconv

#define nkf_enc_to_iconv (   enc)    nkf_enc_to_base_encoding(enc)->iconv

Definition at line 761 of file nkf.c.

Referenced by module_connection().

◆ nkf_enc_to_index

#define nkf_enc_to_index (   enc)    (enc)->id

Definition at line 759 of file nkf.c.

Referenced by rb_nkf_convert(), set_input_encoding(), and set_output_encoding().

◆ nkf_enc_to_oconv

#define nkf_enc_to_oconv (   enc)    nkf_enc_to_base_encoding(enc)->oconv

Definition at line 762 of file nkf.c.

Referenced by module_connection().

◆ nkf_enc_unicode_p

#define nkf_enc_unicode_p (   enc)
Value:
(\
nkf_enc_to_base_encoding(enc) == &NkfEncodingUTF_8 ||\
nkf_enc_to_base_encoding(enc) == &NkfEncodingUTF_16 ||\
nkf_enc_to_base_encoding(enc) == &NkfEncodingUTF_32)
nkf_native_encoding NkfEncodingUTF_32
Definition: nkf.c:159
nkf_native_encoding NkfEncodingUTF_16
Definition: nkf.c:158
nkf_native_encoding NkfEncodingUTF_8
Definition: nkf.c:157

Definition at line 766 of file nkf.c.

Referenced by hira_conv(), and module_connection().

◆ NKF_ICONV_INVALID_CODE_RANGE

#define NKF_ICONV_INVALID_CODE_RANGE   -13

Definition at line 2319 of file nkf.c.

Referenced by unicode_iconv(), unicode_iconv_combine(), and utf32_to_nkf_char().

◆ NKF_ICONV_NEED_ONE_MORE_BYTE

#define NKF_ICONV_NEED_ONE_MORE_BYTE   (size_t)-1

Definition at line 2391 of file nkf.c.

◆ NKF_ICONV_NEED_TWO_MORE_BYTES

#define NKF_ICONV_NEED_TWO_MORE_BYTES   (size_t)-2

Definition at line 2392 of file nkf.c.

Referenced by kanji_convert(), and nkf_iconv_utf_16().

◆ NKF_ICONV_NOT_COMBINED

#define NKF_ICONV_NOT_COMBINED   -15

Definition at line 2321 of file nkf.c.

Referenced by nkf_iconv_utf_16_combine(), and unicode_iconv_combine().

◆ NKF_ICONV_WAIT_COMBINING_CHAR

#define NKF_ICONV_WAIT_COMBINING_CHAR   -14

Definition at line 2320 of file nkf.c.

Referenced by kanji_convert(), and unicode_iconv().

◆ nkf_isalnum

#define nkf_isalnum (   c)    (nkf_isdigit(c) || nkf_isalpha(c))

Definition at line 289 of file nkf.c.

Referenced by mimeout_addchar().

◆ nkf_isalpha

#define nkf_isalpha (   c)    (('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z'))

Definition at line 288 of file nkf.c.

◆ nkf_isblank

#define nkf_isblank (   c)    (c == SP || c == TAB)

Definition at line 286 of file nkf.c.

Referenced by fold_conv(), mime_getc(), mime_putc(), and open_mime().

◆ nkf_isdigit

#define nkf_isdigit (   c)    ('0'<=c && c<='9')

Definition at line 284 of file nkf.c.

Referenced by numchar_getc(), and options().

◆ nkf_isgraph

#define nkf_isgraph (   c)    ('!'<=c && c<='~')

Definition at line 291 of file nkf.c.

Referenced by e2s_conv(), e_oconv(), and options().

◆ nkf_isoctal

#define nkf_isoctal (   c)    ('0'<=c && c<='7')

Definition at line 283 of file nkf.c.

Referenced by options().

◆ nkf_isprint

#define nkf_isprint (   c)    (SP<=c && c<='~')

Definition at line 290 of file nkf.c.

Referenced by s_oconv().

◆ nkf_isspace

#define nkf_isspace (   c)    (nkf_isblank(c) || c == CR || c == LF)

Definition at line 287 of file nkf.c.

Referenced by mime_putc(), and open_mime().

◆ nkf_isxdigit

#define nkf_isxdigit (   c)    (nkf_isdigit(c) || ('a'<=c && c<='f') || ('A'<=c && c <= 'F'))

Definition at line 285 of file nkf.c.

Referenced by hex_getc(), numchar_getc(), and options().

◆ nkf_noescape_mime

#define nkf_noescape_mime (   c)
Value:
((c == CR) || (c == LF) || \
((c > SP) && (c < DEL) && (c != '?') && (c != '=') && (c != '_') \
&& (c != '(') && (c != ')') && (c != '.') && (c != 0x22)))
#define SP
Definition: nkf.c:75
#define LF
Definition: nkf.c:72
#define CR
Definition: nkf.c:73
#define DEL
Definition: nkf.c:76

Definition at line 297 of file nkf.c.

Referenced by mime_putc().

◆ NKF_RELEASE_DATE

#define NKF_RELEASE_DATE   "2012-11-22"

Definition at line 24 of file nkf.c.

Referenced by Init_nkf(), show_configuration(), and version().

◆ nkf_toupper

#define nkf_toupper (   c)    (('a'<=c && c<='z')?(c-('a'-'A')):c)

Definition at line 282 of file nkf.c.

Referenced by mime_begin_strict(), and nkf_str_caseeql().

◆ NKF_UNSPECIFIED

#define NKF_UNSPECIFIED   (-TRUE)

Definition at line 387 of file nkf.c.

Referenced by module_connection(), reinit(), set_input_encoding(), and set_output_encoding().

◆ NKF_VERSION

#define NKF_VERSION   "2.1.3"

Definition at line 23 of file nkf.c.

Referenced by Init_nkf(), show_configuration(), and version().

◆ nkf_xfree

#define nkf_xfree (   ptr)    free(ptr)

Definition at line 714 of file nkf.c.

Referenced by main(), and mime_getc().

◆ output_ascii_escape_sequence

#define output_ascii_escape_sequence (   mode)
Value:
do { \
(*o_putc)(ESC); \
(*o_putc)('('); \
(*o_putc)(ascii_intro); \
output_mode = mode; \
} \
} while (0)
static unsigned char ascii_intro
Definition: nkf.c:500
Definition: nkf.c:87
static int output_mode
Definition: nkf.c:556
#define ESC
Definition: nkf.c:74
Definition: nkf.c:88

Definition at line 2539 of file nkf.c.

Referenced by j_oconv().

◆ OUTPUT_UTF16

#define OUTPUT_UTF16 (   val)
Value:
do { \
c2 = (val >> 8) & 0xff; \
c1 = val & 0xff; \
OUTPUT_UTF16_BYTES(c1, c2); \
} else { \
val &= VALUE_MASK; \
if (val <= UNICODE_MAX) { \
c2 = (val >> 10) + NKF_INT32_C(0xD7C0); /* high surrogate */ \
c1 = (val & 0x3FF) + NKF_INT32_C(0xDC00); /* low surrogate */ \
OUTPUT_UTF16_BYTES(c2 & 0xff, (c2 >> 8) & 0xff); \
OUTPUT_UTF16_BYTES(c1 & 0xff, (c1 >> 8) & 0xff); \
} \
} \
} while (0)
#define nkf_char_unicode_bmp_p(c)
Definition: nkf.c:431
#define VALUE_MASK
Definition: nkf.c:425
#define UNICODE_MAX
Definition: nkf.c:427
#define val
#define NKF_INT32_C(n)
Definition: nkf.h:40

Definition at line 2845 of file nkf.c.

Referenced by w_oconv16().

◆ OUTPUT_UTF16_BYTES

#define OUTPUT_UTF16_BYTES (   c1,
  c2 
)
Value:
do { \
(*o_putc)(c1); \
(*o_putc)(c2); \
}else{ \
(*o_putc)(c2); \
(*o_putc)(c1); \
} \
} while (0)
static int output_endian
Definition: nkf.c:366

Definition at line 2835 of file nkf.c.

Referenced by w_oconv16().

◆ OUTPUT_UTF32

#define OUTPUT_UTF32 (   c)
Value:
do { \
(*o_putc)( (c) & 0xFF); \
(*o_putc)(((c) >> 8) & 0xFF); \
(*o_putc)(((c) >> 16) & 0xFF); \
(*o_putc)(0); \
}else{ \
(*o_putc)(0); \
(*o_putc)(((c) >> 16) & 0xFF); \
(*o_putc)(((c) >> 8) & 0xFF); \
(*o_putc)( (c) & 0xFF); \
} \
} while (0)
static int output_endian
Definition: nkf.c:366

Definition at line 2889 of file nkf.c.

Referenced by w_oconv32().

◆ OUTPUT_UTF8

#define OUTPUT_UTF8 (   val)
Value:
do { \
nkf_unicode_to_utf8(val, &c1, &c2, &c3, &c4); \
(*o_putc)(c1); \
if (c2) (*o_putc)(c2); \
if (c3) (*o_putc)(c3); \
if (c4) (*o_putc)(c4); \
} while (0)
#define val

Definition at line 2790 of file nkf.c.

Referenced by w_oconv().

◆ PREFIX_EUCG3

#define PREFIX_EUCG3   NKF_INT32_C(0x8F00)

Definition at line 422 of file nkf.c.

Referenced by kanji_convert(), s2e_conv(), unicode_to_jis_common2(), w16e_conv(), and x0212_unshift().

◆ RANGE_NUM_MAX

#define RANGE_NUM_MAX   18

Referenced by iso2022jp_check_conv().

◆ rot13

#define rot13 (   c)
Value:
( \
( c < 'A') ? c: \
(c <= 'M') ? (c + 13): \
(c <= 'Z') ? (c - 13): \
(c < 'a') ? (c): \
(c <= 'm') ? (c + 13): \
(c <= 'z') ? (c - 13): \
(c) \
)

Definition at line 4142 of file nkf.c.

Referenced by rot_conv().

◆ rot47

#define rot47 (   c)
Value:
( \
( c < '!') ? c: \
( c <= 'O') ? (c + 47) : \
( c <= '~') ? (c - 47) : \
c \
)

Definition at line 4152 of file nkf.c.

Referenced by rot_conv().

◆ SCORE_CP932

#define SCORE_CP932   (SCORE_DEPEND << 1) /* IBM extended characters */

Definition at line 2946 of file nkf.c.

Referenced by get_guessed_code(), and s_status().

◆ SCORE_DEPEND

#define SCORE_DEPEND   (SCORE_KANA << 1) /* MD Characters */

Definition at line 2945 of file nkf.c.

Referenced by get_guessed_code().

◆ SCORE_ERROR

#define SCORE_ERROR   (SCORE_iMIME << 1) /* Error */

Definition at line 2951 of file nkf.c.

Referenced by code_score().

◆ SCORE_iMIME

#define SCORE_iMIME   (SCORE_NO_EXIST << 1) /* MIME selected */

Definition at line 2950 of file nkf.c.

Referenced by mime_begin_strict().

◆ SCORE_INIT

#define SCORE_INIT   (SCORE_iMIME)

Definition at line 2953 of file nkf.c.

Referenced by status_reset().

◆ SCORE_KANA

#define SCORE_KANA   (SCORE_L2 << 1) /* Halfwidth Katakana */

Definition at line 2944 of file nkf.c.

Referenced by code_score(), and get_guessed_code().

◆ SCORE_L2

#define SCORE_L2   (1) /* Kanji Level 2 */

Definition at line 2943 of file nkf.c.

Referenced by code_score().

◆ SCORE_NO_EXIST

#define SCORE_NO_EXIST   (SCORE_X0213 << 1) /* Undefined Characters */

Definition at line 2949 of file nkf.c.

Referenced by code_score().

◆ SCORE_X0212

#define SCORE_X0212   (SCORE_CP932 << 1) /* JIS X 0212 */

Definition at line 2947 of file nkf.c.

Referenced by code_score(), and get_guessed_code().

◆ SCORE_X0213

#define SCORE_X0213   (SCORE_X0212 << 1) /* JIS X 0213 */

Definition at line 2948 of file nkf.c.

Referenced by get_guessed_code().

◆ SEND

#define SEND   (void)0 /* output c1 and c2, get next */

Definition at line 5823 of file nkf.c.

Referenced by kanji_convert().

◆ set_input_mode

#define set_input_mode (   mode)
Value:
do { \
input_mode = mode; \
shift_mode = 0; \
set_input_codename("ISO-2022-JP"); \
debug("ISO-2022-JP"); \
} while (0)

Definition at line 5825 of file nkf.c.

Referenced by kanji_convert().

◆ SI

#define SI   0x0f

Definition at line 77 of file nkf.c.

Referenced by kanji_convert().

◆ SJ0162

#define SJ0162   0x00e1 /* 01 - 62 ku offset */

Referenced by s2e_conv().

◆ SJ6394

#define SJ6394   0x0161 /* 63 - 94 ku offset */

Referenced by s2e_conv().

◆ SKIP

#define SKIP   c2=0;continue /* no output, get next */

Definition at line 5821 of file nkf.c.

Referenced by kanji_convert().

◆ SO

#define SO   0x0e

Definition at line 78 of file nkf.c.

Referenced by kanji_convert(), and unicode_to_jis_common2().

◆ SP

#define SP   0x20

◆ SS2

#define SS2   0x8e

Definition at line 79 of file nkf.c.

Referenced by code_score(), e_iconv(), e_oconv(), e_status(), and s_status().

◆ SS3

#define SS3   0x8f

Definition at line 80 of file nkf.c.

◆ STD_GC_BUFSIZE

#define STD_GC_BUFSIZE   (256)

Definition at line 3308 of file nkf.c.

Referenced by nkf_state_init().

◆ STRICT_MIME

#define STRICT_MIME   8

Definition at line 58 of file nkf.c.

Referenced by kanji_convert(), mime_getc(), options(), switch_mime_getc(), and unswitch_mime_getc().

◆ TAB

#define TAB   0x09

Definition at line 71 of file nkf.c.

Referenced by fold_conv(), and mime_getc().

◆ UCS_MAP_ASCII

#define UCS_MAP_ASCII   0

Definition at line 347 of file nkf.c.

Referenced by e2w_conv(), options(), reinit(), set_input_encoding(), and set_output_encoding().

◆ UCS_MAP_CP10001

#define UCS_MAP_CP10001   3

◆ UCS_MAP_CP932

#define UCS_MAP_CP932   2

Definition at line 349 of file nkf.c.

Referenced by options(), set_input_encoding(), set_output_encoding(), and unicode_to_jis_common().

◆ UCS_MAP_MS

#define UCS_MAP_MS   1

Definition at line 348 of file nkf.c.

Referenced by options(), set_input_encoding(), set_output_encoding(), and unicode_to_jis_common().

◆ UNICODE_BMP_MAX

#define UNICODE_BMP_MAX   NKF_INT32_C(0x0000FFFF)

Definition at line 426 of file nkf.c.

◆ UNICODE_MAX

#define UNICODE_MAX   NKF_INT32_C(0x0010FFFF)

Definition at line 427 of file nkf.c.

◆ UTF16_TO_UTF32

#define UTF16_TO_UTF32 (   lead,
  trail 
)    (((lead) << 10) + (trail) - NKF_INT32_C(0x35FDC00))

Definition at line 434 of file nkf.c.

Referenced by e2w_conv(), and nkf_iconv_utf_16().

◆ VALUE_MASK

#define VALUE_MASK   NKF_INT32_C(0x00FFFFFF)

◆ X0213_SURROGATE_FIND

#define X0213_SURROGATE_FIND (   tbl,
  size,
  euc 
)
Value:
do { \
int i; \
for (i = 0; i < size; i++) \
if (tbl[i][0] == euc) { \
low = tbl[i][2]; \
break; \
} \
} while (0)
int i
Definition: win32ole.c:784
int size
Definition: encoding.c:52

Definition at line 1963 of file nkf.c.

Referenced by e2w_conv().

Enumeration Type Documentation

◆ byte_order

enum byte_order
Enumerator
ENDIAN_BIG 
ENDIAN_LITTLE 
ENDIAN_2143 
ENDIAN_3412 

Definition at line 61 of file nkf.c.

◆ nkf_encodings

Enumerator
ASCII 
ISO_8859_1 
ISO_2022_JP 
CP50220 
CP50221 
CP50222 
ISO_2022_JP_1 
ISO_2022_JP_3 
ISO_2022_JP_2004 
SHIFT_JIS 
WINDOWS_31J 
CP10001 
EUC_JP 
EUCJP_NKF 
CP51932 
EUCJP_MS 
EUCJP_ASCII 
SHIFT_JISX0213 
SHIFT_JIS_2004 
EUC_JISX0213 
EUC_JIS_2004 
UTF_8 
UTF_8N 
UTF_8_BOM 
UTF8_MAC 
UTF_16 
UTF_16BE 
UTF_16BE_BOM 
UTF_16LE 
UTF_16LE_BOM 
UTF_32 
UTF_32BE 
UTF_32BE_BOM 
UTF_32LE 
UTF_32LE_BOM 
BINARY 
NKF_ENCODING_TABLE_SIZE 
JIS_X_0201_1976_K 
JIS_X_0208 
JIS_X_0212 
JIS_X_0213_2 
JIS_X_0213_1 

Definition at line 86 of file nkf.c.

Function Documentation

◆ base64_conv()

static void base64_conv ( nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 5480 of file nkf.c.

References mime_prechar().

Referenced by module_connection().

◆ base64decode()

static nkf_char base64decode ( nkf_char  c)
static

Definition at line 4781 of file nkf.c.

References i.

Referenced by mime_getc().

◆ broken_getc()

static nkf_char broken_getc ( FILE f)
static

◆ broken_ungetc() [1/2]

static nkf_char broken_ungetc ( nkf_char  c,
FILE f 
)
static

Referenced by module_connection().

◆ broken_ungetc() [2/2]

static nkf_char broken_ungetc ( nkf_char  c,
ARG_UNUSED FILE f 
)
static

Definition at line 3728 of file nkf.c.

References nkf_state_t::broken_buf, nkf_buf_length, nkf_buf_push(), and nkf_state.

◆ cap_getc()

static nkf_char cap_getc ( FILE f)
static

Definition at line 4632 of file nkf.c.

References f, hex_getc(), i_cgetc, and i_cungetc.

Referenced by module_connection().

◆ cap_ungetc()

static nkf_char cap_ungetc ( nkf_char  c,
FILE f 
)
static

Definition at line 4638 of file nkf.c.

References f, and i_cungetc.

Referenced by module_connection().

◆ check_bom()

static void check_bom ( FILE f)
static

◆ close_mime()

static void close_mime ( void  )
static

Definition at line 5126 of file nkf.c.

References base64_count, and mimeout_mode.

Referenced by eof_mime(), and mime_putc().

◆ clr_code_score()

static void clr_code_score ( struct input_code ptr,
nkf_char  score 
)
static

Definition at line 2999 of file nkf.c.

References input_code::score.

Referenced by mime_begin_strict().

◆ code_score()

static void code_score ( struct input_code ptr)
static

◆ code_status()

static void code_status ( nkf_char  c)
static

Definition at line 3260 of file nkf.c.

References DEL, estab_f, input_code_list, input_code::name, p, result, set_iconv(), status_reset(), and TRUE.

Referenced by h_conv(), and kanji_convert().

◆ debug()

static void debug ( const char *  str)
static

Definition at line 4531 of file nkf.c.

References debug_f.

Referenced by kanji_convert(), and set_iconv().

◆ e2s_conv()

static nkf_char e2s_conv ( nkf_char  c2,
nkf_char  c1,
nkf_char p2,
nkf_char p1 
)
static

◆ e2w_combining()

static nkf_char e2w_combining ( nkf_char  comb,
nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 2034 of file nkf.c.

References i, x0213_combining_chars, and x0213_combining_table.

Referenced by w_oconv(), w_oconv16(), and w_oconv32().

◆ e2w_conv()

static nkf_char e2w_conv ( nkf_char  c2,
nkf_char  c1 
)
static

◆ e_iconv()

static nkf_char e_iconv ( nkf_char  c2,
nkf_char  c1,
nkf_char  c0 
)
static

◆ e_oconv()

static void e_oconv ( nkf_char  c2,
nkf_char  c1 
)
static

◆ e_status()

static void e_status ( struct input_code ptr,
nkf_char  c 
)
static

◆ encode_fallback_html()

static void encode_fallback_html ( nkf_char  c)
static

Definition at line 1074 of file nkf.c.

References NKF_INT32_C, oconv, and VALUE_MASK.

Referenced by options().

◆ encode_fallback_java()

static void encode_fallback_java ( nkf_char  c)
static

Definition at line 1109 of file nkf.c.

References bin2hex, nkf_char_unicode_bmp_p, and VALUE_MASK.

Referenced by options().

◆ encode_fallback_perl()

static void encode_fallback_perl ( nkf_char  c)
static

Definition at line 1130 of file nkf.c.

References nkf_each_char_to_hex(), and oconv.

Referenced by options().

◆ encode_fallback_subchar()

static void encode_fallback_subchar ( nkf_char  c)
static

Definition at line 1141 of file nkf.c.

References unicode_subchar.

Referenced by options().

◆ encode_fallback_xml()

static void encode_fallback_xml ( nkf_char  c)
static

Definition at line 1098 of file nkf.c.

References nkf_each_char_to_hex(), and oconv.

Referenced by options().

◆ eof_mime()

static void eof_mime ( void  )
static

◆ eol_conv()

static void eol_conv ( nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 3736 of file nkf.c.

References CR, CRLF, EOF, eolmode_f, guess_f, input_eol, LF, and prev_cr.

Referenced by module_connection().

◆ find_inputcode_byfunc()

static struct input_code* find_inputcode_byfunc ( nkf_char(*)(nkf_char c2, nkf_char c1, nkf_char c0)  iconv_func)
static

Definition at line 1494 of file nkf.c.

References input_code::iconv_func, input_code_list, and p.

Referenced by get_guessed_code(), mime_begin_strict(), and set_iconv().

◆ fold_conv()

static void fold_conv ( nkf_char  c2,
nkf_char  c1 
)
static

◆ get_backup_filename()

static char* get_backup_filename ( const char *  suffix,
const char *  filename 
)
static

Definition at line 1019 of file nkf.c.

References i, nkf_xmalloc(), and strlen().

Referenced by main().

◆ get_guessed_code()

static const char* get_guessed_code ( void  )
static

◆ h_conv()

static int h_conv ( FILE f,
nkf_char  c1,
nkf_char  c2 
)
static

◆ hex_getc()

static nkf_char hex_getc ( nkf_char  ch,
FILE f,
nkf_char(*)(FILE *f g,
nkf_char(*)(nkf_char c, FILE *f u 
)
static

Definition at line 4610 of file nkf.c.

References f, hex2bin, and nkf_isxdigit.

Referenced by cap_getc(), and url_getc().

◆ hira_conv()

static void hira_conv ( nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 4172 of file nkf.c.

References hira_f, nkf_char_unicode_new, nkf_enc_unicode_p, and output_encoding.

Referenced by module_connection().

◆ is_x0213_2_in_x0212()

static int is_x0213_2_in_x0212 ( nkf_char  c1)
static

Definition at line 1570 of file nkf.c.

Referenced by e2s_conv().

◆ iso2022jp_check_conv()

static void iso2022jp_check_conv ( nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 4207 of file nkf.c.

References GETA1, GETA2, i, range, and RANGE_NUM_MAX.

Referenced by module_connection().

◆ j_oconv()

static void j_oconv ( nkf_char  c2,
nkf_char  c1 
)
static

◆ kanji_convert()

static int kanji_convert ( FILE f)
static

◆ main()

int main ( int  argc,
char **  argv 
)

Definition at line 6918 of file nkf.c.

Referenced by iseq_data_to_ary().

◆ mime_begin()

static nkf_char mime_begin ( FILE f)
static

Definition at line 4467 of file nkf.c.

References CR, EOF, f, FALSE, i, is_alnum, LF, MAXRECOVER, mime_decode_mode, mime_input_buf, mime_input_state, SP, and switch_mime_getc().

Referenced by kanji_convert().

◆ mime_begin_strict()

static nkf_char mime_begin_strict ( FILE f)
static

◆ mime_getc()

static nkf_char mime_getc ( FILE f)
static

◆ mime_getc_buf()

static nkf_char mime_getc_buf ( FILE f)
static

Definition at line 4341 of file nkf.c.

References f, i_mgetc_buf, mime_input_buf, mime_input_state, and mimebuf_f.

Referenced by switch_mime_getc().

◆ mime_input_buf_unshift()

static void mime_input_buf_unshift ( nkf_char  c)
static

Definition at line 4318 of file nkf.c.

References mime_input_buf, and mime_input_state.

Referenced by mime_ungetc().

◆ mime_integrity()

static nkf_char mime_integrity ( FILE f,
const unsigned char *  p 
)
static

◆ mime_prechar()

static void mime_prechar ( nkf_char  c2,
nkf_char  c1 
)
static

◆ mime_putc()

static void mime_putc ( nkf_char  c)
static

◆ mime_ungetc()

static nkf_char mime_ungetc ( nkf_char  c,
ARG_UNUSED FILE f 
)
static

Definition at line 4324 of file nkf.c.

References mime_input_buf_unshift().

Referenced by module_connection(), and switch_mime_getc().

◆ mime_ungetc_buf()

static nkf_char mime_ungetc_buf ( nkf_char  c,
FILE f 
)
static

Definition at line 4331 of file nkf.c.

References f, mime_input_buf, mime_input_state, and mimebuf_f.

Referenced by switch_mime_getc().

◆ mimeout_addchar()

static void mimeout_addchar ( nkf_char  c)
static

Definition at line 5162 of file nkf.c.

References base64_count, basis_64, bin2hex, CR, LF, mimeout_mode, nkf_state_t::mimeout_state, nkf_isalnum, and nkf_state.

Referenced by mime_putc().

◆ module_connection()

static int module_connection ( void  )
static

◆ nfc_getc()

static nkf_char nfc_getc ( FILE f)
static

◆ nfc_ungetc()

static nkf_char nfc_ungetc ( nkf_char  c,
FILE f 
)
static

Definition at line 4773 of file nkf.c.

References f, and i_nfc_ungetc.

Referenced by module_connection().

◆ nkf_buf_at()

static nkf_char nkf_buf_at ( nkf_buf_t buf,
int  index 
)
static

Definition at line 863 of file nkf.c.

References assert, and buf.

Referenced by nfc_getc().

◆ nkf_buf_clear()

static void nkf_buf_clear ( nkf_buf_t buf)
static

Definition at line 870 of file nkf.c.

References buf.

Referenced by nfc_getc(), and nkf_state_init().

◆ nkf_buf_new()

static nkf_buf_t* nkf_buf_new ( int  length)
static

Definition at line 841 of file nkf.c.

References buf, and nkf_xmalloc().

Referenced by nkf_state_init().

◆ nkf_buf_pop()

static nkf_char nkf_buf_pop ( nkf_buf_t buf)
static

Definition at line 885 of file nkf.c.

References assert, buf, and nkf_buf_empty_p.

Referenced by broken_getc(), nfc_getc(), and std_getc().

◆ nkf_buf_push()

static void nkf_buf_push ( nkf_buf_t buf,
nkf_char  c 
)
static

Definition at line 876 of file nkf.c.

References buf, and EXIT_FAILURE.

Referenced by broken_getc(), broken_ungetc(), nfc_getc(), and std_ungetc().

◆ nkf_default_encoding()

static nkf_encoding* nkf_default_encoding ( )
static

Definition at line 822 of file nkf.c.

References nkf_enc_from_index(), nkf_locale_encoding(), and nkf_utf8_encoding().

Referenced by module_connection(), and show_configuration().

◆ nkf_each_char_to_hex()

static void nkf_each_char_to_hex ( void(*)(nkf_char c2, nkf_char c1)  f,
nkf_char  c 
)
static

Definition at line 1056 of file nkf.c.

References bin2hex, NKF_INT32_C, shift(), and VALUE_MASK.

Referenced by encode_fallback_perl(), and encode_fallback_xml().

◆ nkf_enc_find()

static nkf_encoding* nkf_enc_find ( const char *  name)
static

Definition at line 750 of file nkf.c.

References name, nkf_enc_find_index(), and nkf_enc_from_index().

Referenced by nkf_locale_encoding(), options(), and rb_nkf_enc_get().

◆ nkf_enc_find_index()

static int nkf_enc_find_index ( const char *  name)
static

Definition at line 737 of file nkf.c.

References encoding_name_to_id_table, i, name, and nkf_str_caseeql().

Referenced by nkf_enc_find().

◆ nkf_enc_from_index()

static nkf_encoding* nkf_enc_from_index ( int  idx)
static

◆ nkf_iconv_utf_16()

static size_t nkf_iconv_utf_16 ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3,
nkf_char  c4 
)
static

Definition at line 2394 of file nkf.c.

References ENDIAN_BIG, EOF, FALSE, input_endian, NKF_ICONV_NEED_TWO_MORE_BYTES, unicode_iconv(), and UTF16_TO_UTF32.

Referenced by kanji_convert().

◆ nkf_iconv_utf_16_combine()

static size_t nkf_iconv_utf_16_combine ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3,
nkf_char  c4 
)
static

Definition at line 2425 of file nkf.c.

References ENDIAN_BIG, input_endian, NKF_ICONV_NOT_COMBINED, and unicode_iconv_combine().

Referenced by kanji_convert().

◆ nkf_iconv_utf_16_nocombine()

static size_t nkf_iconv_utf_16_nocombine ( nkf_char  c1,
nkf_char  c2 
)
static

Definition at line 2449 of file nkf.c.

References ENDIAN_BIG, input_endian, TRUE, and unicode_iconv().

Referenced by kanji_convert().

◆ nkf_iconv_utf_32()

static size_t nkf_iconv_utf_32 ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3,
nkf_char  c4 
)
static

Definition at line 2498 of file nkf.c.

References EOF, FALSE, unicode_iconv(), and utf32_to_nkf_char().

Referenced by kanji_convert().

◆ nkf_iconv_utf_32_combine()

static nkf_char nkf_iconv_utf_32_combine ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3,
nkf_char  c4,
nkf_char  c5,
nkf_char  c6,
nkf_char  c7,
nkf_char  c8 
)
static

Definition at line 2515 of file nkf.c.

References unicode_iconv_combine(), and utf32_to_nkf_char().

Referenced by kanji_convert().

◆ nkf_iconv_utf_32_nocombine()

static size_t nkf_iconv_utf_32_nocombine ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3,
nkf_char  c4 
)
static

Definition at line 2530 of file nkf.c.

References TRUE, unicode_iconv(), and utf32_to_nkf_char().

Referenced by kanji_convert().

◆ nkf_locale_charmap()

static const char* nkf_locale_charmap ( )
static

Definition at line 777 of file nkf.c.

References buf, NULL, and ULONG().

Referenced by nkf_locale_encoding().

◆ nkf_locale_encoding()

static nkf_encoding* nkf_locale_encoding ( )
static

Definition at line 805 of file nkf.c.

References nkf_enc_find(), and nkf_locale_charmap().

Referenced by nkf_default_encoding().

◆ nkf_state_init()

static void nkf_state_init ( void  )
static

◆ nkf_str_caseeql()

static int nkf_str_caseeql ( const char *  src,
const char *  target 
)
static

Definition at line 717 of file nkf.c.

References FALSE, i, nkf_toupper, and TRUE.

Referenced by nkf_enc_find_index().

◆ nkf_unicode_to_utf8()

static void nkf_unicode_to_utf8 ( nkf_char  val,
nkf_char p1,
nkf_char p2,
nkf_char p3,
nkf_char p4 
)
static

Definition at line 1698 of file nkf.c.

References nkf_char_unicode_bmp_p, nkf_char_unicode_value_p, val, and VALUE_MASK.

Referenced by w16e_conv().

◆ nkf_utf8_encoding()

static nkf_encoding* nkf_utf8_encoding ( )
static

Definition at line 816 of file nkf.c.

References nkf_encoding_table, and UTF_8.

Referenced by nkf_default_encoding().

◆ nkf_utf8_to_unicode()

static nkf_char nkf_utf8_to_unicode ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3,
nkf_char  c4 
)
static

Definition at line 1730 of file nkf.c.

Referenced by w2e_conv(), w_iconv(), and w_iconv_combine().

◆ nkf_xmalloc()

static void* nkf_xmalloc ( size_t  size)
static

Definition at line 685 of file nkf.c.

References EXIT_FAILURE, malloc, NULL, and size.

Referenced by get_backup_filename(), main(), mime_getc(), nkf_buf_new(), and nkf_state_init().

◆ nkf_xrealloc()

static void* nkf_xrealloc ( void *  ptr,
size_t  size 
)
static

Definition at line 701 of file nkf.c.

References EXIT_FAILURE, NULL, realloc, and size.

Referenced by mime_getc().

◆ no_connection()

static void no_connection ( nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 520 of file nkf.c.

References no_connection2().

Referenced by reinit().

◆ no_connection2()

static nkf_char no_connection2 ( ARG_UNUSED nkf_char  c2,
ARG_UNUSED nkf_char  c1,
ARG_UNUSED nkf_char  c0 
)
static

Definition at line 512 of file nkf.c.

References EXIT_FAILURE.

Referenced by no_connection().

◆ no_putc() [1/2]

static void no_putc ( nkf_char  c)
static

Referenced by module_connection().

◆ no_putc() [2/2]

static void no_putc ( ARG_UNUSED nkf_char  c)
static

Definition at line 4525 of file nkf.c.

◆ noconvert()

static nkf_char noconvert ( FILE f)
static

Definition at line 5807 of file nkf.c.

References EOF, f, i_getc, module_connection(), and nop_f.

Referenced by main().

◆ numchar_getc()

static nkf_char numchar_getc ( FILE f)
static

Definition at line 4658 of file nkf.c.

References buf, f, hex2bin, i, i_ngetc, i_nungetc, nkf_char_unicode_new, nkf_isdigit, and nkf_isxdigit.

Referenced by module_connection().

◆ numchar_ungetc()

static nkf_char numchar_ungetc ( nkf_char  c,
FILE f 
)
static

Definition at line 4712 of file nkf.c.

References f, and i_nungetc.

Referenced by module_connection().

◆ oconv_newline()

static void oconv_newline ( void(*)(nkf_char, nkf_char func)
static

Definition at line 3774 of file nkf.c.

References CR, CRLF, DEFAULT_NEWLINE, eolmode_f, and LF.

Referenced by fold_conv(), and mime_prechar().

◆ open_mime()

static void open_mime ( nkf_char  mode)
static

◆ options()

static int options ( unsigned char *  cp)
static

Definition at line 6355 of file nkf.c.

References alias, alpha_f, ascii_intro, backup_f, backup_suffix, binmode_f, broken_f, cap_f, cp51932_f, cp932inv_f, CR, CRLF, debug_f, DEFAULT_FOLD, encode_fallback, encode_fallback_html(), encode_fallback_java(), encode_fallback_perl(), encode_fallback_subchar(), encode_fallback_xml(), ENDIAN_BIG, ENDIAN_LITTLE, eolmode_f, EUCJP_NKF, EXIT_SUCCESS, FALSE, file_out_f, FIXED_MIME, fold_f, fold_len, fold_margin, fold_preserve_f, guess_f, hex2bin, hira_f, i, input_encoding, input_endian, iso2022jp_f, iso8859_f, ISO_2022_JP, ISO_8859_1, kanji_intro, LF, long_option, mime_decode_f, mime_decode_mode, mime_f, mimebuf_f, mimeout_f, mimeout_mode, ms_ucs_map_f, name, nfc_f, nkf_enc_find(), nkf_enc_from_index(), nkf_isdigit, nkf_isgraph, nkf_isoctal, nkf_isxdigit, no_best_fit_chars_f, no_cp932ext_f, noout_f, nop_f, NULL, numchar_f, option_mode, output_bom_f, output_encoding, output_endian, overwrite_f, p, prefix_table, preserve_time_f, rot_f, SHIFT_JIS, show_configuration(), SP, STRICT_MIME, TRUE, UCS_MAP_ASCII, UCS_MAP_CP932, UCS_MAP_MS, unbuf_f, unicode_subchar, url_f, usage(), UTF_16, UTF_16BE, UTF_16BE_BOM, UTF_16LE, UTF_16LE_BOM, UTF_32, UTF_32BE, UTF_32BE_BOM, UTF_32LE, UTF_32LE_BOM, UTF_8, UTF_8_BOM, UTF_8N, version(), w16e_conv(), x0201_f, and x0212_f.

Referenced by get_head_value_node(), initialize(), ip_rb_threadTkWaitCommand(), ip_rbTkWaitCommand(), main(), nkf_split_options(), onig_reg_init(), onig_set_syntax_options(), option_to_str(), parser_regx_options(), r_object0(), rb_enc_reg_error_desc(), rb_enc_reg_new(), rb_enc_reg_raise(), rb_reg_compile(), rb_reg_error_desc(), rb_reg_init_str(), rb_reg_initialize(), rb_reg_initialize_str(), rb_reg_new(), rb_reg_new_str(), rb_reg_options(), rb_reg_options_m(), rb_reg_preprocess_dregexp(), rb_reg_raise_str(), rb_reg_to_s(), reg_compile_gen(), reg_fragment_check_gen(), reg_fragment_setenc_gen(), setup_tree(), waitpid(), and yyparse().

◆ output_escape_sequence()

static void output_escape_sequence ( int  mode)
static

Definition at line 2549 of file nkf.c.

References ESC, ISO_8859_1, JIS_X_0201_1976_K, JIS_X_0208, JIS_X_0212, JIS_X_0213_1, JIS_X_0213_2, kanji_intro, and output_mode.

Referenced by j_oconv().

◆ print_guessed_code()

static void print_guessed_code ( char *  filename)
static

◆ push_hold_buf()

static nkf_char push_hold_buf ( nkf_char  c2)
static

Definition at line 3358 of file nkf.c.

References EOF, hold_buf, hold_count, and HOLD_SIZE.

Referenced by h_conv().

◆ put_newline()

static void put_newline ( void(*)(nkf_char func)
static

Definition at line 3757 of file nkf.c.

References CR, CRLF, DEFAULT_NEWLINE, eolmode_f, and LF.

Referenced by mime_putc(), and open_mime().

◆ reinit()

static void reinit ( void  )
static

◆ rot_conv()

static void rot_conv ( nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 4160 of file nkf.c.

References ISO_8859_1, JIS_X_0201_1976_K, rot13, and rot47.

Referenced by module_connection().

◆ s2e_conv()

static nkf_char s2e_conv ( nkf_char  c2,
nkf_char  c1,
nkf_char p2,
nkf_char p1 
)
static

◆ s_iconv() [1/2]

static nkf_char s_iconv ( nkf_char  c2,
nkf_char  c1,
nkf_char  c0 
)
static

Referenced by h_conv(), and kanji_convert().

◆ s_iconv() [2/2]

static nkf_char s_iconv ( ARG_UNUSED nkf_char  c2,
nkf_char  c1,
ARG_UNUSED nkf_char  c0 
)
static

Definition at line 2184 of file nkf.c.

References EOF, GETA1, GETA2, iso2022jp_f, JIS_X_0201_1976_K, nkf_char_unicode_new, s2e_conv(), SP, x0201_f, and x0213_f.

◆ s_oconv()

static void s_oconv ( nkf_char  c2,
nkf_char  c1 
)
static

◆ s_status()

static void s_status ( struct input_code ptr,
nkf_char  c 
)
static

◆ set_code_score()

static void set_code_score ( struct input_code ptr,
nkf_char  score 
)
static

Definition at line 2991 of file nkf.c.

References input_code::score.

Referenced by code_score(), and s_status().

◆ set_iconv()

static void set_iconv ( nkf_char  f,
nkf_char(*)(nkf_char c2, nkf_char c1, nkf_char c0)  iconv_func 
)
static

◆ set_input_codename()

static void set_input_codename ( const char *  codename)
static

Definition at line 4540 of file nkf.c.

References input_codename.

Referenced by kanji_convert(), and set_iconv().

◆ set_input_encoding()

static void set_input_encoding ( nkf_encoding enc)
static

◆ set_output_encoding()

static void set_output_encoding ( nkf_encoding enc)
static

◆ show_configuration()

static void show_configuration ( void  )
static

◆ status_check()

static void status_check ( struct input_code ptr,
nkf_char  c 
)
static

Definition at line 3075 of file nkf.c.

References DEL, estab_f, and status_reset().

Referenced by e_status(), s_status(), and w_status().

◆ status_clear()

static void status_clear ( struct input_code ptr)
static

Definition at line 3054 of file nkf.c.

References input_code::index, and input_code::stat.

Referenced by e_status(), s_status(), status_reset(), and w_status().

◆ status_disable()

static void status_disable ( struct input_code ptr)
static

Definition at line 3039 of file nkf.c.

References input_code::buf, code_score(), FALSE, iconv, input_code::iconv_func, set_iconv(), and input_code::stat.

Referenced by e_status(), s_status(), and w_status().

◆ status_push_ch()

static void status_push_ch ( struct input_code ptr,
nkf_char  c 
)
static

Definition at line 3048 of file nkf.c.

References input_code::buf, and input_code::index.

Referenced by e_status(), s_status(), and w_status().

◆ status_reinit()

static void status_reinit ( struct input_code ptr)
static

Definition at line 3068 of file nkf.c.

References input_code::_file_stat, and status_reset().

Referenced by module_connection(), and reinit().

◆ status_reset()

static void status_reset ( struct input_code ptr)
static

Definition at line 3061 of file nkf.c.

References input_code::score, SCORE_INIT, and status_clear().

Referenced by code_status(), status_check(), and status_reinit().

◆ std_getc()

static nkf_char std_getc ( FILE f)
static

Definition at line 3330 of file nkf.c.

References f, getc, nkf_buf_empty_p, nkf_buf_pop(), nkf_state, and nkf_state_t::std_gc_buf.

Referenced by module_connection(), and reinit().

◆ std_putc()

static void std_putc ( nkf_char  c)
static

Definition at line 3348 of file nkf.c.

References EOF, and putchar.

Referenced by module_connection(), and reinit().

◆ std_ungetc() [1/2]

static nkf_char std_ungetc ( nkf_char  c,
FILE f 
)
static

Referenced by module_connection(), and reinit().

◆ std_ungetc() [2/2]

static nkf_char std_ungetc ( nkf_char  c,
ARG_UNUSED FILE f 
)
static

Definition at line 3340 of file nkf.c.

References nkf_buf_push(), nkf_state, and nkf_state_t::std_gc_buf.

◆ switch_mime_getc()

static void switch_mime_getc ( void  )
static

◆ unicode_iconv()

static size_t unicode_iconv ( nkf_char  wc,
int  nocombine 
)
static

◆ unicode_iconv_combine()

static nkf_char unicode_iconv_combine ( nkf_char  wc,
nkf_char  wc2 
)
static

◆ unicode_to_jis_common()

static int unicode_to_jis_common ( nkf_char  c2,
nkf_char  c1,
nkf_char  c0,
nkf_char p2,
nkf_char p1 
)
static

◆ unicode_to_jis_common2()

static int unicode_to_jis_common2 ( nkf_char  c1,
nkf_char  c0,
const unsigned short *const pp,
nkf_char  psize,
nkf_char p2,
nkf_char p1 
)
static

Definition at line 1768 of file nkf.c.

References JIS_X_0201_1976_K, NKF_INT32_C, no_cp932ext_f, p, PREFIX_EUCG3, SO, and val.

Referenced by unicode_to_jis_common().

◆ unswitch_mime_getc()

static void unswitch_mime_getc ( void  )
static

Definition at line 4363 of file nkf.c.

References FALSE, i_getc, i_mgetc, i_mgetc_buf, i_mungetc, i_mungetc_buf, i_ungetc, mime_f, mime_iconv_back, NULL, set_iconv(), and STRICT_MIME.

Referenced by mime_getc().

◆ url_getc()

static nkf_char url_getc ( FILE f)
static

Definition at line 4644 of file nkf.c.

References f, hex_getc(), i_ugetc, and i_uungetc.

Referenced by module_connection().

◆ url_ungetc()

static nkf_char url_ungetc ( nkf_char  c,
FILE f 
)
static

Definition at line 4650 of file nkf.c.

References f, and i_uungetc.

Referenced by module_connection().

◆ usage()

static void usage ( void  )
static

Definition at line 904 of file nkf.c.

References HELP_OUTPUT, INPUT_OPTION, NUMCHAR_OPTION, OVERWRITE, UTF8_INPUT_ENABLE, UTF8_OUTPUT_ENABLE, and version().

Referenced by getrusage_time(), and options().

◆ utf32_to_nkf_char()

static nkf_char utf32_to_nkf_char ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3,
nkf_char  c4 
)
static

◆ version()

static void version ( void  )
static

◆ w16e_conv()

static nkf_char w16e_conv ( nkf_char  val,
nkf_char p2,
nkf_char p1 
)
static

◆ w2e_conv()

static nkf_char w2e_conv ( nkf_char  c2,
nkf_char  c1,
nkf_char  c0,
nkf_char p2,
nkf_char p1 
)
static

Definition at line 2052 of file nkf.c.

References nkf_char_unicode_new, nkf_utf8_to_unicode(), and unicode_to_jis_common().

Referenced by w_iconv(), w_iconv_nocombine(), and w_status().

◆ w_iconv()

static nkf_char w_iconv ( nkf_char  c2,
nkf_char  c1,
nkf_char  c0 
)
static

Definition at line 2232 of file nkf.c.

References EOF, nkf_char_unicode_new, nkf_utf8_to_unicode(), w2e_conv(), x0213_f, and x0213_wait_combining_p().

Referenced by check_bom().

◆ w_iconv16() [1/2]

static nkf_char w_iconv16 ( nkf_char  c2,
nkf_char  c1,
nkf_char  c0 
)
static

◆ w_iconv16() [2/2]

static nkf_char w_iconv16 ( nkf_char  c2,
nkf_char  c1,
ARG_UNUSED nkf_char  c0 
)
static

Definition at line 2460 of file nkf.c.

◆ w_iconv32() [1/2]

static nkf_char w_iconv32 ( nkf_char  c2,
nkf_char  c1,
nkf_char  c0 
)
static

◆ w_iconv32() [2/2]

static nkf_char w_iconv32 ( nkf_char  c2,
nkf_char  c1,
ARG_UNUSED nkf_char  c0 
)
static

Definition at line 2467 of file nkf.c.

◆ w_iconv_combine()

static nkf_char w_iconv_combine ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3,
nkf_char  c4,
nkf_char  c5,
nkf_char  c6 
)
static

Definition at line 2381 of file nkf.c.

References nkf_utf8_to_unicode(), and unicode_iconv_combine().

Referenced by h_conv(), and kanji_convert().

◆ w_iconv_nocombine()

static nkf_char w_iconv_nocombine ( nkf_char  c1,
nkf_char  c2,
nkf_char  c3 
)
static

Definition at line 2309 of file nkf.c.

References w2e_conv().

Referenced by h_conv(), and kanji_convert().

◆ w_oconv()

static void w_oconv ( nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 2799 of file nkf.c.

References e2w_combining(), e2w_conv(), EOF, FALSE, nkf_char_unicode_p, output_bom_f, OUTPUT_UTF8, val, and VALUE_MASK.

◆ w_oconv16()

static void w_oconv16 ( nkf_char  c2,
nkf_char  c1 
)
static

◆ w_oconv32()

static void w_oconv32 ( nkf_char  c2,
nkf_char  c1 
)
static

◆ w_status()

static void w_status ( struct input_code ptr,
nkf_char  c 
)
static

◆ x0212_shift()

static nkf_char x0212_shift ( nkf_char  c)
static

Definition at line 1539 of file nkf.c.

References is_eucg3.

Referenced by e2s_conv().

◆ x0212_unshift()

static nkf_char x0212_unshift ( nkf_char  c)
static

Definition at line 1557 of file nkf.c.

References PREFIX_EUCG3.

Referenced by s2e_conv().

◆ x0213_combining_p()

static int x0213_combining_p ( nkf_char  wc)
static

Definition at line 2220 of file nkf.c.

References FALSE, i, TRUE, and x0213_combining_chars.

Referenced by unicode_iconv_combine().

◆ x0213_wait_combining_p()

static int x0213_wait_combining_p ( nkf_char  wc)
static

Definition at line 2208 of file nkf.c.

References FALSE, i, TRUE, and x0213_combining_table.

Referenced by unicode_iconv(), and w_iconv().

◆ z_conv()

static void z_conv ( nkf_char  c2,
nkf_char  c1 
)
static

Definition at line 3982 of file nkf.c.

References alpha_f, cv, dv, EOF, ev, ev_x0213, fv, JIS_X_0201_1976_K, nkf_char_unicode_p, SP, VALUE_MASK, x0201_f, x0213_f, z_prev1, and z_prev2.

Referenced by module_connection().

Variable Documentation

◆ alias

const char* alias

◆ alpha_f

int alpha_f = FALSE
static

Definition at line 396 of file nkf.c.

Referenced by module_connection(), options(), reinit(), and z_conv().

◆ ascii_intro

unsigned char ascii_intro = DEFAULT_R
static

Definition at line 500 of file nkf.c.

Referenced by options(), and reinit().

◆ backup_f

int backup_f = FALSE
static

Definition at line 673 of file nkf.c.

Referenced by main(), and options().

◆ backup_suffix

char* backup_suffix = ""
static

Definition at line 674 of file nkf.c.

Referenced by main(), and options().

◆ base64_count

int base64_count = 0
static

Definition at line 487 of file nkf.c.

Referenced by close_mime(), eof_mime(), mime_prechar(), mime_putc(), mimeout_addchar(), open_mime(), and reinit().

◆ basis_64

const char basis_64[]
static
Initial value:
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"

Definition at line 5035 of file nkf.c.

Referenced by eof_mime(), and mimeout_addchar().

◆ binmode_f

int binmode_f = TRUE
static

Definition at line 393 of file nkf.c.

Referenced by main(), options(), and reinit().

◆ broken_f

int broken_f = FALSE
static

Definition at line 400 of file nkf.c.

Referenced by kanji_convert(), module_connection(), options(), and reinit().

◆ buf

unsigned char buf[MIMEOUT_BUF_LENGTH+1]

Definition at line 4308 of file nkf.c.

Referenced by add_char_amb_opt_map_info(), append_fspath(), append_utf8(), BigDecimal_to_f(), BigMath_s_log(), BSD_vfprintf(), bsock_getpeername(), bsock_getsockname(), bsock_getsockopt(), bsock_local_address(), bsock_remote_address(), cbsubst_get_all_subst_keys(), cbsubst_get_subst_arg(), cbsubst_get_subst_key(), cbsubst_sym_to_subst(), cmdglob(), cont_restore_1(), convert_UTF32_to_UTF8(), convert_UTF8_to_JSON(), convert_UTF8_to_JSON_ASCII(), copy_stream_fallback_body(), date_strftime_alloc(), date_strftime_internal(), dln_find_exe_r(), dln_find_file_r(), dln_load(), enum_sort_by(), err_position_0(), expand_case_fold_string_alt(), fill_standard_fds(), finish_writeconv(), flo_to_s(), fmt_setup(), glob_helper(), glob_make_pattern(), global_id(), gzfile_getc(), gzfile_make_footer(), gzfile_make_header(), hmac_final(), i_apply_case_fold(), io_reader(), ip_ruby_cmd_receiver_get(), ip_ruby_eval(), ip_set_exc_message(), join_path(), json_string_unescape(), lib_fromUTF8_core(), lib_toUTF8_core(), local_tbl_gen(), localtime_with_gmtoff_zone(), make_inetaddr(), make_ipaddr0(), match_at(), maygvl_copy_stream_read(), maygvl_read(), nfc_getc(), nkf_buf_at(), nkf_buf_clear(), nkf_buf_new(), nkf_buf_pop(), nkf_buf_push(), nkf_locale_charmap(), node_linebreak(), node_str_cat_codepoint(), nogvl_copy_stream_read_write(), nogvl_copy_stream_write(), numchar_getc(), ole_cp2encoding(), onig_bbuf_init(), onig_node_free(), onig_node_str_cat(), onig_node_str_clear(), onig_snprintf_with_pattern(), onig_syntax_warn(), onig_vsnprintf_with_pattern(), onigenc_mb2_code_to_mbc(), onigenc_mb4_code_to_mbc(), onigenc_single_byte_code_to_mbc(), ossl_asn1obj_get_oid(), ossl_asn1prim_to_der(), ossl_bn_to_s(), ossl_buf2str(), ossl_hmac_digest(), ossl_hmac_hexdigest(), ossl_hmac_s_digest(), ossl_hmac_s_hexdigest(), ossl_membio2str0(), ossl_pem_passwd_cb(), ossl_pkcs7_add_data(), ossl_spki_print(), ossl_ssl_session_to_pem(), ossl_ssl_session_to_text(), ossl_sslctx_initialize(), ossl_sslctx_session_get_cb(), ossl_x509crl_get_signature_algorithm(), ossl_x509crl_to_der(), ossl_x509crl_to_pem(), ossl_x509crl_to_text(), ossl_x509name_to_s_old(), ossl_x509req_get_signature_algorithm(), ossl_x509req_to_pem(), ossl_x509req_to_text(), overlapped_socket_io(), pack_pack(), pack_unpack(), parse_char_class(), parse_comp(), parser_yyerror(), path_check_0(), PEM_def_callback(), quad_buf_complement(), rand_init(), random_seed(), rb_big_pack(), rb_big_unpack(), rb_cstr_to_dbl(), rb_econv_insert_output(), rb_f_global_variables(), rb_feature_p(), rb_file_expand_path_internal(), rb_fix2str(), rb_home_dir(), rb_if_indextoname(), rb_io_bufread(), rb_io_bufwrite(), rb_num2long(), rb_num2ulong(), rb_parser_dump_tree(), rb_quad_pack(), rb_quad_unpack(), rb_read_internal(), rb_reg_check_preprocess(), rb_reg_preprocess(), rb_reg_preprocess_dregexp(), rb_str_buf_cat_ascii(), rb_str_buf_cat_escaped_char(), rb_str_concat(), rb_str_format(), rb_str_inspect(), rb_str_slice_bang(), rb_strftime_alloc(), rb_sys_warning(), rb_update_max_fd(), rb_uv_to_utf8(), rb_w32_read(), rb_w32_recv(), rb_w32_recvfrom(), rb_w32_send(), rb_w32_sendto(), rb_w32_write(), rb_write_internal(), rb_write_internal2(), reg_enum_key(), replace_to_long_name(), report_bug(), RMD160_Finish(), rsock_s_recvfrom_nonblock(), ruby__sfvwrite(), ruby_brace_expand(), ruby_getcwd(), ruby_glob0(), ruby_setenv(), s3e(), set_bm_skip(), SHA1_Finish(), sock_accept(), sock_accept_nonblock(), sock_sysaccept(), str_transcode0(), strftimev(), string2hex(), strio_ungetbyte(), strio_ungetc(), swallow(), tcl_eval(), tcl_global_eval(), tcl_protect_core(), time_mdump(), time_mload(), time_strftime(), to_ascii(), tr_setup_table(), tr_trans(), unescape_escaped_nonascii(), unescape_nonascii(), unescape_unicode_bmp(), unescape_unicode_list(), unicode_escape(), unicode_escape_to_buffer(), update_string_node_case_fold(), VpAlloc(), w_float(), w_long(), w_nbyte(), wsplit_p(), and yyparse().

◆ cap_f

int cap_f = FALSE
static

Definition at line 413 of file nkf.c.

Referenced by module_connection(), options(), and reinit().

◆ count

int count

Definition at line 5041 of file nkf.c.

Referenced by nkf_split_options().

◆ cp51932_f

int cp51932_f = FALSE
static

Definition at line 459 of file nkf.c.

Referenced by e_iconv(), options(), reinit(), and set_input_encoding().

◆ cp932inv_f

int cp932inv_f = TRUE
static

◆ cv

const unsigned char cv[]
static
Initial value:
= {
0x21,0x21,0x21,0x23,0x21,0x56,0x21,0x57,
0x21,0x22,0x21,0x26,0x25,0x72,0x25,0x21,
0x25,0x23,0x25,0x25,0x25,0x27,0x25,0x29,
0x25,0x63,0x25,0x65,0x25,0x67,0x25,0x43,
0x21,0x3c,0x25,0x22,0x25,0x24,0x25,0x26,
0x25,0x28,0x25,0x2a,0x25,0x2b,0x25,0x2d,
0x25,0x2f,0x25,0x31,0x25,0x33,0x25,0x35,
0x25,0x37,0x25,0x39,0x25,0x3b,0x25,0x3d,
0x25,0x3f,0x25,0x41,0x25,0x44,0x25,0x46,
0x25,0x48,0x25,0x4a,0x25,0x4b,0x25,0x4c,
0x25,0x4d,0x25,0x4e,0x25,0x4f,0x25,0x52,
0x25,0x55,0x25,0x58,0x25,0x5b,0x25,0x5e,
0x25,0x5f,0x25,0x60,0x25,0x61,0x25,0x62,
0x25,0x64,0x25,0x66,0x25,0x68,0x25,0x69,
0x25,0x6a,0x25,0x6b,0x25,0x6c,0x25,0x6d,
0x25,0x6f,0x25,0x73,0x21,0x2b,0x21,0x2c,
0x00,0x00}

Definition at line 564 of file nkf.c.

Referenced by BigDecimal_add2(), BigDecimal_div2(), BigDecimal_mult2(), BigDecimal_sub2(), and z_conv().

◆ debug_f

int debug_f = FALSE
static

Definition at line 445 of file nkf.c.

Referenced by debug(), main(), options(), and reinit().

◆ dv

const unsigned char dv[]
static
Initial value:
= {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x25,0x74,
0x00,0x00,0x00,0x00,0x25,0x2c,0x25,0x2e,
0x25,0x30,0x25,0x32,0x25,0x34,0x25,0x36,
0x25,0x38,0x25,0x3a,0x25,0x3c,0x25,0x3e,
0x25,0x40,0x25,0x42,0x25,0x45,0x25,0x47,
0x25,0x49,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x25,0x50,0x25,0x53,
0x25,0x56,0x25,0x59,0x25,0x5c,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00}

Definition at line 586 of file nkf.c.

Referenced by BigDecimal_divremain(), setup_domain_and_type(), and z_conv().

◆ encode_fallback

void(* encode_fallback) (nkf_char c) = NULL
static

Definition at line 361 of file nkf.c.

Referenced by e_oconv(), j_oconv(), options(), reinit(), and s_oconv().

◆ encoding_name_to_id_table

struct { ... } encoding_name_to_id_table[]

Referenced by nkf_enc_find_index().

◆ eolmode_f

int eolmode_f = 0
static

Definition at line 677 of file nkf.c.

Referenced by eol_conv(), module_connection(), oconv_newline(), options(), put_newline(), and reinit().

◆ estab_f

int estab_f = FALSE
static

Definition at line 391 of file nkf.c.

Referenced by code_status(), h_conv(), kanji_convert(), reinit(), set_iconv(), and status_check().

◆ ev

const unsigned char ev[]
static
Initial value:
= {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x25,0x51,0x25,0x54,
0x25,0x57,0x25,0x5a,0x25,0x5d,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00}

Definition at line 607 of file nkf.c.

Referenced by EVENTSINK_Invoke(), evs_push(), ole_delete_event(), ole_search_event(), ole_search_event_at(), ole_search_handler_method(), and z_conv().

◆ ev_x0213

const unsigned char ev_x0213[]
static
Initial value:
= {
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x25,0x77,0x25,0x78,
0x25,0x79,0x25,0x7a,0x25,0x7b,0x00,0x00,
0x00,0x00,0x00,0x00,0x25,0x7c,0x00,0x00,
0x00,0x00,0x00,0x00,0x25,0x7d,0x00,0x00,
0x25,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00}

Definition at line 628 of file nkf.c.

Referenced by z_conv().

◆ f_line

int f_line = 0
static

Definition at line 492 of file nkf.c.

Referenced by fold_conv(), module_connection(), and reinit().

◆ f_prev

int f_prev = 0
static

Definition at line 493 of file nkf.c.

Referenced by fold_conv(), and reinit().

◆ file_out_f

int file_out_f = FALSE
static

Definition at line 669 of file nkf.c.

Referenced by main(), options(), and reinit().

◆ fold_f

int fold_f = FALSE
static

Definition at line 495 of file nkf.c.

Referenced by module_connection(), options(), and reinit().

◆ fold_len

int fold_len = 0
static

Definition at line 496 of file nkf.c.

Referenced by fold_conv(), options(), and reinit().

◆ fold_margin

int fold_margin = FOLD_MARGIN
static

Definition at line 507 of file nkf.c.

Referenced by fold_conv(), options(), and reinit().

◆ fold_preserve_f

int fold_preserve_f = FALSE
static

Definition at line 494 of file nkf.c.

Referenced by fold_conv(), options(), and reinit().

◆ fv

const unsigned char fv[]
static
Initial value:
= {
0x00,0x00,0x00,0x00,0x2c,0x2e,0x00,0x3a,
0x3b,0x3f,0x21,0x00,0x00,0x27,0x60,0x00,
0x5e,0x00,0x5f,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x2d,0x00,0x2f,
0x5c,0x00,0x00,0x7c,0x00,0x00,0x60,0x27,
0x22,0x22,0x28,0x29,0x00,0x00,0x5b,0x5d,
0x7b,0x7d,0x3c,0x3e,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x2b,0x2d,0x00,0x00,
0x00,0x3d,0x00,0x3c,0x3e,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x24,0x00,0x00,0x25,0x23,0x26,0x2a,0x40,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
}

Definition at line 650 of file nkf.c.

Referenced by z_conv().

◆ guess_f

int guess_f = 0
static

Definition at line 450 of file nkf.c.

Referenced by eol_conv(), main(), module_connection(), options(), print_guessed_code(), rb_nkf_guess(), and reinit().

◆ hira_f

int hira_f = FALSE
static

Definition at line 395 of file nkf.c.

Referenced by hira_conv(), module_connection(), options(), and reinit().

◆ hold_buf

nkf_char hold_buf[HOLD_SIZE *2]
static

Definition at line 3355 of file nkf.c.

Referenced by h_conv(), and push_hold_buf().

◆ hold_count

int hold_count = 0
static

Definition at line 3356 of file nkf.c.

Referenced by h_conv(), push_hold_buf(), and reinit().

◆ i_bgetc

nkf_char(* i_bgetc) (FILE *) = std_getc
static

Definition at line 543 of file nkf.c.

Referenced by module_connection(), and reinit().

◆ i_bungetc

nkf_char(* i_bungetc) (nkf_char c,FILE *f) = std_ungetc
static

Definition at line 544 of file nkf.c.

Referenced by module_connection(), and reinit().

◆ i_cgetc

nkf_char(* i_cgetc) (FILE *) = std_getc
static

Definition at line 414 of file nkf.c.

Referenced by cap_getc(), and module_connection().

◆ i_cungetc

nkf_char(* i_cungetc) (nkf_char c,FILE *f) = std_ungetc
static

Definition at line 415 of file nkf.c.

Referenced by cap_getc(), cap_ungetc(), and module_connection().

◆ i_getc

nkf_char(* i_getc) (FILE *f) = std_getc
static

◆ i_mgetc

nkf_char(* i_mgetc) (FILE *) = std_getc
static

Definition at line 548 of file nkf.c.

Referenced by mime_getc(), module_connection(), reinit(), switch_mime_getc(), and unswitch_mime_getc().

◆ i_mgetc_buf

nkf_char(* i_mgetc_buf) (FILE *) = std_getc
static

Definition at line 552 of file nkf.c.

Referenced by mime_getc_buf(), reinit(), switch_mime_getc(), and unswitch_mime_getc().

◆ i_mungetc

nkf_char(* i_mungetc) (nkf_char c,FILE *f) = std_ungetc
static

Definition at line 549 of file nkf.c.

Referenced by module_connection(), reinit(), switch_mime_getc(), and unswitch_mime_getc().

◆ i_mungetc_buf

nkf_char(* i_mungetc_buf) (nkf_char c, FILE *f) = std_ungetc
static

Definition at line 553 of file nkf.c.

Referenced by reinit(), switch_mime_getc(), and unswitch_mime_getc().

◆ i_nfc_getc

nkf_char(* i_nfc_getc) (FILE *) = std_getc
static

Definition at line 408 of file nkf.c.

Referenced by module_connection(), and nfc_getc().

◆ i_nfc_ungetc

nkf_char(* i_nfc_ungetc) (nkf_char c,FILE *f) = std_ungetc
static

Definition at line 409 of file nkf.c.

Referenced by module_connection(), nfc_getc(), and nfc_ungetc().

◆ i_ngetc

nkf_char(* i_ngetc) (FILE *) = std_getc
static

Definition at line 438 of file nkf.c.

Referenced by module_connection(), and numchar_getc().

◆ i_nungetc

nkf_char(* i_nungetc) (nkf_char c,FILE *f) = std_ungetc
static

Definition at line 439 of file nkf.c.

Referenced by module_connection(), numchar_getc(), and numchar_ungetc().

◆ i_ugetc

nkf_char(* i_ugetc) (FILE *) = std_getc
static

Definition at line 418 of file nkf.c.

Referenced by module_connection(), and url_getc().

◆ i_ungetc

nkf_char(* i_ungetc) (nkf_char c, FILE *f) =std_ungetc
static

◆ i_uungetc

nkf_char(* i_uungetc) (nkf_char c,FILE *f) = std_ungetc
static

Definition at line 419 of file nkf.c.

Referenced by module_connection(), url_getc(), and url_ungetc().

◆ iconv

nkf_char(* iconv) (nkf_char c2, nkf_char c1, nkf_char c0) = no_connection2
static

◆ iconv_for_check

nkf_char(* iconv_for_check) (nkf_char c2, nkf_char c1, nkf_char c0)=0
static

Definition at line 447 of file nkf.c.

Referenced by main(), reinit(), and set_iconv().

◆ id

const int id

◆ input

unsigned int input

◆ input_bom_f

int input_bom_f = FALSE
static

Definition at line 359 of file nkf.c.

Referenced by check_bom(), and print_guessed_code().

◆ input_code_list

struct input_code input_code_list[]
Initial value:
= {
{"EUC-JP", 0, 0, 0, {0, 0, 0}, e_status, e_iconv, 0},
{"Shift_JIS", 0, 0, 0, {0, 0, 0}, s_status, s_iconv, 0},
{"UTF-8", 0, 0, 0, {0, 0, 0}, w_status, w_iconv, 0},
{"UTF-16", 0, 0, 0, {0, 0, 0}, NULL, w_iconv16, 0},
{"UTF-32", 0, 0, 0, {0, 0, 0}, NULL, w_iconv32, 0},
{NULL, 0, 0, 0, {0, 0, 0}, NULL, NULL, 0}
}
static void s_status(struct input_code *, nkf_char)
Definition: nkf.c:3083
static nkf_char w_iconv16(nkf_char c2, nkf_char c1, nkf_char c0)
static nkf_char w_iconv32(nkf_char c2, nkf_char c1, nkf_char c0)
static nkf_char s_iconv(nkf_char c2, nkf_char c1, nkf_char c0)
static nkf_char w_iconv(nkf_char c2, nkf_char c1, nkf_char c0)
Definition: nkf.c:2232
static nkf_char e_iconv(nkf_char c2, nkf_char c1, nkf_char c0)
Definition: nkf.c:2120
static void w_status(struct input_code *, nkf_char)
Definition: nkf.c:3202
static void e_status(struct input_code *, nkf_char)
Definition: nkf.c:3156
#define NULL
Definition: _sdbm.c:102

Definition at line 475 of file nkf.c.

Referenced by code_status(), find_inputcode_byfunc(), h_conv(), kanji_convert(), module_connection(), and reinit().

◆ input_codename

const char* input_codename = NULL
static

◆ input_encoding

nkf_encoding* input_encoding = NULL
static

Definition at line 337 of file nkf.c.

Referenced by check_bom(), kanji_convert(), module_connection(), options(), reinit(), and set_iconv().

◆ input_endian

int input_endian = ENDIAN_BIG
static

◆ input_eol

int input_eol = 0
static

Definition at line 678 of file nkf.c.

Referenced by eol_conv(), main(), print_guessed_code(), and reinit().

◆ input_mode

int input_mode = ASCII
static

Definition at line 557 of file nkf.c.

Referenced by broken_getc(), kanji_convert(), mime_getc(), and reinit().

◆ iso2022jp_f

int iso2022jp_f = FALSE
static

Definition at line 404 of file nkf.c.

Referenced by e_iconv(), module_connection(), options(), reinit(), and s_iconv().

◆ iso8859_f

int iso8859_f = FALSE
static

Definition at line 401 of file nkf.c.

Referenced by kanji_convert(), options(), reinit(), and set_input_encoding().

◆ kanji_intro

unsigned char kanji_intro = DEFAULT_J
static

Definition at line 499 of file nkf.c.

Referenced by options(), output_escape_sequence(), and reinit().

◆ last

unsigned int last

◆ long_option

const { ... } long_option[]

Referenced by options().

◆ mime_decode_f

int mime_decode_f = FALSE
static

Definition at line 398 of file nkf.c.

Referenced by kanji_convert(), options(), and reinit().

◆ mime_decode_mode

int mime_decode_mode = FALSE
static

◆ mime_encode

const nkf_char mime_encode[]
static
Initial value:

Definition at line 4283 of file nkf.c.

Referenced by open_mime().

◆ mime_encode_method

const nkf_char mime_encode_method[]
static
Initial value:
= {
'B', 'B','Q', 'B', 'B', 'B', 'Q',
'B', 'Q',
'Q',
0
}

Definition at line 4292 of file nkf.c.

Referenced by open_mime().

◆ mime_f

int mime_f = MIME_DECODE_DEFAULT
static

◆ mime_iconv_back

nkf_char(* mime_iconv_back) (nkf_char c2, nkf_char c1, nkf_char c0) = NULL
static

Definition at line 4313 of file nkf.c.

Referenced by mime_begin_strict(), and unswitch_mime_getc().

◆ mime_input_state

struct { ... } mime_input_state

◆ mime_pattern

const unsigned char* mime_pattern[]
static
Initial value:
= {
(const unsigned char *)"\075?EUC-JP?B?",
(const unsigned char *)"\075?SHIFT_JIS?B?",
(const unsigned char *)"\075?ISO-8859-1?Q?",
(const unsigned char *)"\075?ISO-8859-1?B?",
(const unsigned char *)"\075?ISO-2022-JP?B?",
(const unsigned char *)"\075?ISO-2022-JP?B?",
(const unsigned char *)"\075?ISO-2022-JP?Q?",
(const unsigned char *)"\075?UTF-8?B?",
(const unsigned char *)"\075?UTF-8?Q?",
(const unsigned char *)"\075?US-ASCII?Q?",
}
#define NULL
Definition: _sdbm.c:102

Definition at line 4257 of file nkf.c.

Referenced by mime_begin_strict(), and open_mime().

◆ mime_priority_func

nkf_char(* mime_priority_func[])(nkf_char c2, nkf_char c1, nkf_char c0)
Initial value:
= {
e_iconv, s_iconv, 0, 0, 0, 0, 0,
0,
}
static nkf_char s_iconv(nkf_char c2, nkf_char c1, nkf_char c0)
static nkf_char w_iconv(nkf_char c2, nkf_char c1, nkf_char c0)
Definition: nkf.c:2232
static nkf_char e_iconv(nkf_char c2, nkf_char c1, nkf_char c0)
Definition: nkf.c:2120

Definition at line 4275 of file nkf.c.

Referenced by mime_begin_strict().

◆ mimebuf_f

int mimebuf_f = FALSE
static

◆ mimeout_f

int mimeout_f = FALSE
static

Definition at line 402 of file nkf.c.

Referenced by eof_mime(), mime_putc(), module_connection(), options(), rb_nkf_convert(), and reinit().

◆ mimeout_mode

int mimeout_mode = 0
static

◆ mimeout_state

struct { ... } mimeout_state

◆ ms_ucs_map_f

int ms_ucs_map_f = UCS_MAP_ASCII
static

◆ name

const char* name

Definition at line 208 of file nkf.c.

Referenced by addrinfo_inspect(), boot_defclass(), code_page(), constant_to_sym(), create_dummy_encoding_for_tk(), create_dummy_encoding_for_tk_core(), cState_aref(), cState_aset(), cto_i(), curses_keyname(), date_zone_to_diff(), define_filetest_function(), dlhandle_sym(), dump_node(), enc_check_duplication(), enc_dup_name(), enc_names_i(), enc_register(), enc_register_at(), enc_replicate(), enc_replicate_with_index(), enc_set_default_encoding(), encoding_table_get_name_core(), env_aset(), env_delete(), env_delete_m(), fc_path(), fetch_token(), fiddle_handle_sym(), file_path_convert(), fole_s_show_help(), folemethod_event_interface(), foletypelib_name(), foletypelib_s_typelibs(), get_device_once(), get_param(), get_syserr(), GetDigestPtr(), GetX509NamePtr(), glob_helper(), global_id(), host_str(), Init_curses(), init_env(), Init_ossl_asn1(), ins_methods_i(), ins_methods_priv_i(), ins_methods_prot_i(), ins_methods_pub_i(), ins_methods_push(), io_encname_bom_p(), ip_create_slave(), ip_create_slave_core(), ip_ruby_cmd_receiver_const_get(), iseq_load(), iseq_location_setup(), join_path(), load_encoding(), loaded_feature_path(), location_format(), location_to_str(), make_dummy_encoding(), make_encobj(), make_encoding(), match_backref_number(), match_inspect(), match_inspect_name_iter(), name_add(), name_err_initialize(), name_find(), name_to_backref_error(), name_to_backref_number(), new_child_iseq(), new_struct(), nkf_enc_find(), nkf_enc_find_index(), node_new_call(), num_sadded(), oldbt_iter_cfunc(), oldbt_iter_iseq(), oldbt_print(), ole_docinfo_from_type(), ole_method_docinfo_from_type(), ole_method_event(), ole_method_sub(), olemethod_from_typeinfo(), olemethod_set_member(), oletype_set_member(), onig_name_to_backref_number(), onig_name_to_group_numbers(), onigenc_property_list_add_property(), options(), ossl_cipher_initialize(), ossl_pkcs12_s_create(), ossl_pkcs7_sym2typeid(), ossl_x509_get_issuer(), ossl_x509_get_subject(), ossl_x509name_add_entry(), ossl_x509name_alloc(), ossl_x509name_hash(), ossl_x509name_initialize(), ossl_x509name_new(), ossl_x509name_to_a(), ossl_x509name_to_der(), ossl_x509name_to_s(), ossl_x509name_to_s_old(), ossl_x509req_get_subject(), parse_enclose(), prepare_iseq_build(), rb_alias(), rb_attr(), rb_builtin_type_name(), rb_check_argv(), rb_class2name(), rb_const_set(), rb_cv_get(), rb_cv_set(), rb_define_attr(), rb_define_class(), rb_define_class_under(), rb_define_class_variable(), rb_define_const(), rb_define_dummy_encoding(), rb_define_global_const(), rb_define_global_function(), rb_define_hooked_variable(), rb_define_method(), rb_define_module(), rb_define_module_function(), rb_define_module_under(), rb_define_private_method(), rb_define_protected_method(), rb_define_readonly_variable(), rb_define_singleton_method(), rb_define_variable(), rb_define_virtual_variable(), rb_dlcfunc_call(), rb_dlcfunc_initialize(), rb_dlcfunc_new(), rb_dlhandle_sym(), rb_enc_aliases_enc_i(), rb_enc_find(), rb_enc_find_index(), rb_enc_name_list_i(), rb_enc_register(), rb_enc_registered(), rb_enc_replicate(), rb_enc_set_base(), rb_encdb_declare(), rb_encdb_dummy(), rb_encdb_replicate(), rb_export_method(), rb_f_getenv(), rb_file_const(), rb_file_dirname(), rb_file_join(), rb_file_s_basename(), rb_file_s_extname(), rb_gv_get(), rb_gv_set(), rb_iseq_build_for_ruby2cext(), rb_iseq_disasm(), rb_iseq_new(), rb_iseq_new_top(), rb_iseq_new_with_bopt(), rb_iseq_new_with_bopt_and_opt(), rb_iseq_new_with_opt(), rb_iv_get(), rb_iv_set(), rb_mod_const_defined(), rb_mod_const_get(), rb_mod_const_missing(), rb_mod_const_set(), rb_mod_remove_const(), rb_mod_remove_cvar(), rb_nkf_enc_get(), rb_obj_remove_instance_variable(), rb_print_undef_str(), rb_reg_regsub(), rb_remove_method(), rb_set_class_path(), rb_set_class_path_string(), rb_stat_inspect(), rb_struct_define(), rb_struct_define_without_accessor(), rb_struct_iv_get(), rb_struct_s_def(), rb_to_id(), rb_undef_method(), rb_vm_bugreport(), rb_w32_getenv(), rb_w32_gethostbyname(), rb_w32_gethostname(), rb_w32_getprotobyname(), rb_w32_getservbyname(), rb_w32_pipe(), rb_w32_ugetenv(), reg_named_captures_iter(), reg_names_iter(), reg_open_key(), register_init_ext(), ruby_enc_find_basename(), ruby_enc_find_extname(), ruby_getpeername(), ruby_getsockname(), ruby_init_ext(), ruby_script(), ruby_set_script_name(), ruby_setenv(), ruby_unsetenv(), set_encoding_const(), set_option_encoding_once(), set_syserr(), sig_trap(), start_document(), unsupported_encoding(), usage(), validate_label(), w_encoding(), X509_CRL_set_issuer_name(), yaml_parser_scan_directive(), and yaml_parser_scan_directive_name().

◆ nfc_f

int nfc_f = FALSE
static

Definition at line 407 of file nkf.c.

Referenced by module_connection(), options(), reinit(), and set_input_encoding().

◆ nkf_encoding_table

nkf_encoding nkf_encoding_table[]

Definition at line 167 of file nkf.c.

Referenced by nkf_enc_from_index(), and nkf_utf8_encoding().

◆ nkf_state

nkf_state_t* nkf_state = NULL
static

◆ NkfEncodingASCII

nkf_native_encoding NkfEncodingASCII = { "ASCII", e_iconv, e_oconv }

Definition at line 153 of file nkf.c.

◆ NkfEncodingEUC_JP

nkf_native_encoding NkfEncodingEUC_JP = { "EUC-JP", e_iconv, e_oconv }

Definition at line 156 of file nkf.c.

◆ NkfEncodingISO_2022_JP

nkf_native_encoding NkfEncodingISO_2022_JP = { "ISO-2022-JP", e_iconv, j_oconv }

Definition at line 154 of file nkf.c.

◆ NkfEncodingShift_JIS

nkf_native_encoding NkfEncodingShift_JIS = { "Shift_JIS", s_iconv, s_oconv }

Definition at line 155 of file nkf.c.

◆ NkfEncodingUTF_16

nkf_native_encoding NkfEncodingUTF_16 = { "UTF-16", w_iconv16, w_oconv16 }

Definition at line 158 of file nkf.c.

◆ NkfEncodingUTF_32

nkf_native_encoding NkfEncodingUTF_32 = { "UTF-32", w_iconv32, w_oconv32 }

Definition at line 159 of file nkf.c.

◆ NkfEncodingUTF_8

nkf_native_encoding NkfEncodingUTF_8 = { "UTF-8", w_iconv, w_oconv }

Definition at line 157 of file nkf.c.

◆ no_best_fit_chars_f

int no_best_fit_chars_f = FALSE
static

Definition at line 357 of file nkf.c.

Referenced by options(), reinit(), and unicode_to_jis_common().

◆ no_cp932ext_f

int no_cp932ext_f = FALSE
static

Definition at line 355 of file nkf.c.

Referenced by options(), reinit(), and unicode_to_jis_common2().

◆ noout_f

int noout_f = FALSE
static

Definition at line 443 of file nkf.c.

Referenced by module_connection(), options(), and reinit().

◆ nop_f

int nop_f = FALSE
static

Definition at line 392 of file nkf.c.

Referenced by main(), noconvert(), options(), and reinit().

◆ numchar_f

int numchar_f = FALSE
static

Definition at line 437 of file nkf.c.

Referenced by module_connection(), options(), and reinit().

◆ o_base64conv

void(* o_base64conv) (nkf_char c2, nkf_char c1) = no_connection
static

Definition at line 533 of file nkf.c.

Referenced by mime_prechar(), module_connection(), and reinit().

◆ o_eol_conv

void(* o_eol_conv) (nkf_char c2, nkf_char c1) = no_connection
static

Definition at line 530 of file nkf.c.

Referenced by module_connection(), and reinit().

◆ o_fconv

void(* o_fconv) (nkf_char c2, nkf_char c1) = no_connection
static

Definition at line 529 of file nkf.c.

Referenced by fold_conv(), module_connection(), and reinit().

◆ o_hira_conv

void(* o_hira_conv) (nkf_char c2, nkf_char c1) = no_connection
static

Definition at line 532 of file nkf.c.

Referenced by module_connection(), and reinit().

◆ o_iso2022jp_check_conv

void(* o_iso2022jp_check_conv) (nkf_char c2, nkf_char c1) = no_connection
static

Definition at line 534 of file nkf.c.

Referenced by module_connection(), and reinit().

◆ o_mputc

void(* o_mputc) (nkf_char c) = std_putc
static

Definition at line 546 of file nkf.c.

Referenced by mime_putc(), module_connection(), open_mime(), and reinit().

◆ o_putc

void(* o_putc) (nkf_char c) = std_putc
static

Definition at line 538 of file nkf.c.

Referenced by module_connection(), and reinit().

◆ o_rot_conv

void(* o_rot_conv) (nkf_char c2, nkf_char c1) = no_connection
static

Definition at line 531 of file nkf.c.

Referenced by module_connection(), and reinit().

◆ o_zconv

void(* o_zconv) (nkf_char c2, nkf_char c1) = no_connection
static

Definition at line 528 of file nkf.c.

Referenced by module_connection(), and reinit().

◆ oconv

void(* oconv) (nkf_char c2, nkf_char c1) = no_connection
static

◆ option_mode

int option_mode = 0
static

Definition at line 668 of file nkf.c.

Referenced by options(), and reinit().

◆ output_bom_f

int output_bom_f = FALSE
static

Definition at line 365 of file nkf.c.

Referenced by options(), rb_nkf_convert(), reinit(), set_output_encoding(), w_oconv(), w_oconv16(), and w_oconv32().

◆ output_encoding

nkf_encoding* output_encoding = NULL
static

Definition at line 338 of file nkf.c.

Referenced by hira_conv(), module_connection(), options(), rb_nkf_convert(), and reinit().

◆ output_endian

int output_endian = ENDIAN_BIG
static

Definition at line 366 of file nkf.c.

Referenced by options(), reinit(), set_output_encoding(), and w_oconv32().

◆ output_mode

int output_mode = ASCII
static

◆ overwrite_f

int overwrite_f = FALSE
static

Definition at line 671 of file nkf.c.

Referenced by main(), and options().

◆ prefix_table

unsigned char prefix_table[256]
static

Definition at line 470 of file nkf.c.

Referenced by options(), reinit(), and s_oconv().

◆ preserve_time_f

int preserve_time_f = FALSE
static

Definition at line 672 of file nkf.c.

Referenced by main(), and options().

◆ prev_cr

nkf_char prev_cr = 0
static

Definition at line 679 of file nkf.c.

Referenced by eol_conv(), and reinit().

◆ rot_f

int rot_f = FALSE
static

Definition at line 394 of file nkf.c.

Referenced by module_connection(), options(), and reinit().

◆ score_table_8FA0

const nkf_char score_table_8FA0[]
static
Initial value:

Definition at line 2969 of file nkf.c.

Referenced by code_score().

◆ score_table_8FE0

const nkf_char score_table_8FE0[]
static
Initial value:

Definition at line 2976 of file nkf.c.

Referenced by code_score().

◆ score_table_8FF0

const nkf_char score_table_8FF0[]
static
Initial value:

Definition at line 2983 of file nkf.c.

Referenced by code_score().

◆ score_table_A0

const nkf_char score_table_A0[]
static
Initial value:
= {
0, 0, 0, 0,
0, 0, 0, 0,
}
#define SCORE_DEPEND
Definition: nkf.c:2945
#define SCORE_X0213
Definition: nkf.c:2948

Definition at line 2955 of file nkf.c.

Referenced by code_score().

◆ score_table_F0

const nkf_char score_table_F0[]
static
Initial value:
= {
}
#define SCORE_CP932
Definition: nkf.c:2946
#define SCORE_L2
Definition: nkf.c:2943
#define SCORE_ERROR
Definition: nkf.c:2951
#define SCORE_DEPEND
Definition: nkf.c:2945
#define SCORE_X0213
Definition: nkf.c:2948

Definition at line 2962 of file nkf.c.

Referenced by code_score().

◆ stdibuf

unsigned char stdibuf[IOBUF_SIZE]
static

Definition at line 383 of file nkf.c.

Referenced by main().

◆ stdobuf

unsigned char stdobuf[IOBUF_SIZE]
static

Definition at line 384 of file nkf.c.

Referenced by main().

◆ top

unsigned int top

◆ unbuf_f

int unbuf_f = FALSE
static

Definition at line 390 of file nkf.c.

Referenced by main(), mime_begin_strict(), options(), and reinit().

◆ unicode_subchar

nkf_char unicode_subchar = '?'
static

Definition at line 360 of file nkf.c.

Referenced by encode_fallback_subchar(), options(), and reinit().

◆ url_f

int url_f = FALSE
static

Definition at line 417 of file nkf.c.

Referenced by module_connection(), options(), and reinit().

◆ x0201_f

int x0201_f = NKF_UNSPECIFIED
static

◆ x0212_f

int x0212_f = FALSE
static

Definition at line 467 of file nkf.c.

Referenced by e_oconv(), main(), options(), reinit(), set_input_encoding(), and set_output_encoding().

◆ x0213_f

int x0213_f = FALSE
static

◆ z_prev1

nkf_char z_prev1 =0
static

Definition at line 3979 of file nkf.c.

Referenced by reinit(), and z_conv().

◆ z_prev2

nkf_char z_prev2 =0
static

Definition at line 3979 of file nkf.c.

Referenced by reinit(), and z_conv().