File indexing completed on 2025-01-19 04:23:27

0001 /* $XFree86: xc/programs/xterm/wcwidth.h,v 1.2 2001/06/18 19:09:27 dickey Exp $ */
0002 
0003 /* Markus Kuhn -- 2001-01-12 -- public domain */
0004 /* Adaptions for KDE by Waldo Bastian <bastian@kde.org> */
0005 /*
0006     Rewritten for QT4 by e_k <e_k at users.sourceforge.net>
0007 */
0008 
0009 
0010 #ifndef _KONSOLE_WCWIDTH_H_
0011 #define _KONSOLE_WCWIDTH_H_
0012 
0013 // Standard
0014 #include <string>
0015 
0016 int konsole_wcwidth(wchar_t ucs);
0017 
0018 int string_width( const std::wstring & wstr );
0019 
0020 #endif