File: hz.h

package info (click to toggle)
w3m 0.5.3-37
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 20,124 kB
  • sloc: ansic: 58,496; perl: 4,437; sh: 4,212; makefile: 956; cpp: 869; ruby: 776; awk: 78; sed: 16
file content (20 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#ifndef _WC_HZ_H
#define _WC_HZ_H

#define WC_C_HZ_TILDA	'~'
#define WC_C_HZ_SI	'{'
#define WC_C_HZ_SO	'}'

#define WC_HZ_NOSTATE	0
#define WC_HZ_TILDA	1
#define WC_HZ_TILDA_MB	2
#define WC_HZ_MBYTE	3
#define WC_HZ_MBYTE1	4
#define WC_HZ_MBYTE1_GR	5

extern Str  wc_conv_from_hz(Str is, wc_ces ces);
extern void wc_push_to_hz(Str os, wc_wchar_t cc, wc_status *st);
extern void wc_push_to_hz_end(Str os, wc_status *st);

#endif