#include <X11/IntrinsicP.h>#include "XawI18n.h"Include dependency graph for XawI18n.c:

Go to the source code of this file.
Functions | |
| wchar_t | _Xaw_atowc (unsigned char c) |
| wchar_t _Xaw_atowc | ( | unsigned char | c | ) |
Definition at line 65 of file XawI18n.c.
References str.
Referenced by _XawImWcLookupString(), _XawTextGetSTRING(), AutoFill(), CharWidth(), DisplayText(), FindDistance(), FindPosition(), InsertNewCRs(), InsertNewLineAndBackupInternal(), InsertNewLineAndIndent(), Scan(), and StripOutOldCRs().
00068 { 00069 wchar_t wc; 00070 char str[2]; 00071 00072 str[0] = c; 00073 str[1] = '\0'; 00074 00075 mbtowc(&wc, str, 1); 00076 return wc; 00077 }
Here is the caller graph for this function:

1.5.1