C Tutorial/wctype.h/towlower — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 10:31, 25 мая 2010

wint_t towlower(wint_t ch)

Function char Equivalent wint_t towlower(wint_t ch) tolower()


#include <stdio.h>
#include <wctype.h>
int main(void)
{
   int wc;
   for (wc=0; wc <= 0xFF; wc++) {
      printf("%3d", wc);
      printf(" %#4x ", wc);
      printf("%3s", towlower(wc)  ? "AN" : " ");
      putchar("\n");
   }
}