Hi All
working in middle of a text file trying to read in wide characters at known wide len as set
by wcslen(
while (( wc = fgetwc( fp )) != WEOF )
{
x++;
// ... process each wide character read ...
// THIS LINE WONT WORK COS TRYING TO ASSIGN AN wint_t TO A WIDE
wcscat(notestr,wc);
if ( x==charcount)
break;
}
any help would be great thanks