File: wcwidth.h

package info (click to toggle)
vnc4 4.1.1%2BX4.3.0-37.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 171,644 kB
  • sloc: ansic: 2,205,268; cpp: 56,345; sh: 38,092; pascal: 13,773; asm: 12,656; tcl: 9,182; lisp: 7,831; perl: 3,364; makefile: 2,957; yacc: 2,902; objc: 2,698; xml: 2,614; python: 2,383; lex: 1,477; awk: 901; csh: 58; sed: 50
file content (15 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* $XFree86: xc/programs/xterm/wcwidth.h,v 1.4 2002/09/30 00:39:07 dickey Exp $ */

#ifndef	included_wcwidth_h
#define	included_wcwidth_h 1

#include <stddef.h>

extern int mk_wcswidth(const wchar_t * pwcs, size_t n);
extern int mk_wcswidth_cjk(const wchar_t * pwcs, size_t n);
extern int mk_wcwidth(wchar_t ucs);
extern int mk_wcwidth_cjk(wchar_t ucs);
extern int wcswidth(const wchar_t * pwcs, size_t n);
extern int wcswidth_cjk(const wchar_t * pwcs, size_t n);

#endif /* included_wcwidth_h */