]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/widechar/lib_wunctrl.c
ncurses 5.6 - patch 20081012
[ncurses.git] / ncurses / widechar / lib_wunctrl.c
index f4887d125fcfa37dafcb9862aeaf9bd063f21e2f..be2259acdcffda4cf49dca6f428673cfe173abd6 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 2001 Free Software Foundation, Inc.                        *
+ * Copyright (c) 2001-2005,2007 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
 
 #include <curses.priv.h>
 
-#if USE_WIDEC_SUPPORT
-
-MODULE_ID("$Id: lib_wunctrl.c,v 1.6 2001/09/22 19:18:02 tom Exp $")
+MODULE_ID("$Id: lib_wunctrl.c,v 1.12 2007/06/12 20:22:32 tom Exp $")
 
 NCURSES_EXPORT(wchar_t *)
-wunctrl(cchar_t * wc)
+wunctrl(cchar_t *wc)
 {
-    static wchar_t str[5], *sp;
+    static wchar_t str[CCHARW_MAX + 1], *sp;
 
     if (Charable(*wc)) {
-       const char *p;
-       for (p = unctrl(wctob(CharOf(*wc))), sp = str; *p;)
-           *sp++ = btowc(*p++);
+       const char *p = unctrl((unsigned) _nc_to_char((wint_t) CharOf(*wc)));
+
+       for (sp = str; *p; ++p) {
+           *sp++ = _nc_to_widechar(*p);
+       }
+       *sp = 0;
        return str;
     } else
        return wc->chars;
 }
-
-#endif