/*
#define	L	{string}
##
L"fred"
ctype wont work with 32bit chars
wstrcpy
wgetc
ctype.h
*/
#include <stdio.h>
#include <stddef.h>
main()
{
wchar_t	fred[] = L"blah" ;
printf("hi\n");
wprintf("%s\n",fred);
}
