File: konsole_wcwidth.h

package info (click to toggle)
neovim-qt 0.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,300 kB
  • ctags: 917
  • sloc: cpp: 7,751; ansic: 3,366; python: 223; makefile: 19
file content (16 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* $XFree86: xc/programs/xterm/wcwidth.h,v 1.5 2005/05/03 00:38:25 dickey Exp $ */

/* Markus Kuhn -- 2001-01-12 -- public domain */
/* Adaptions for KDE by Waldo Bastian <bastian@kde.org> */

#ifndef KONSOLE_WCWIDTH_H
#define KONSOLE_WCWIDTH_H

// Qt
#include <QtCore/QString>

int konsole_wcwidth(quint16 oucs);

int string_width(const QString& text);

#endif