File: wcwidth.h

package info (click to toggle)
libtsm 4.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 912 kB
  • sloc: ansic: 13,501; makefile: 6
file content (17 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (3)
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