File: wcwidth.h

package info (click to toggle)
libtsm 4.1.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 948 kB
  • sloc: ansic: 13,275; makefile: 32
file content (17 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef WCWIDTH_H_INCLUDED
#define WCWIDTH_H_INCLUDED

#include <stdlib.h>

#ifdef __cplusplus
extern "C" {
#endif

int wcwidth(wchar_t ucs);

#ifdef __cplusplus
}
#endif


#endif