I have a mistake in the function for reading the file but I don't know what is wrong. all the symbols are read correctly when the symbol is beyond the ASCII table.

while ((c = fgetwc(file)) != WEOF) {
        if (c != L'\n') {
            if (i == buf_length) {
                buf_length += BUF;
                wchar_t *rebuf = realloc(tmp, buf_length * sizeof(wchar_t));
                if (rebuf == NULL) {
                    free(tmp);
                    tmp = NULL;
                    buf_length = 0;
                    return EALLOC;
                } else {
                    tmp = rebuf;
                }
            }
            tmp[i] = (wchar_t)c;
            i++;
        } else {
            list->size++;
            tmp[i] = L'\0';
            insertLast(list, tmp);
            i = 0;
        }
link|improve this question

3  
And the problem is...? – fge Dec 18 '11 at 14:16
I think your file might not be saved in unicode encoding – Ulterior Dec 18 '11 at 14:17
The problem is that when it reads some sybmols such like this ďšě that's not saving in linked list :( – nikigx2 Dec 18 '11 at 14:20
1  
fgetwc() doesn't do what you think it does. It only reads wide characters when the file was opened in binary mode. In text mode it still falls back to 8-bit encoding. You need to document the compiler you use. There are non-standard extensions to deal with Unicode encoded text files. – Hans Passant Dec 18 '11 at 15:12
1  
You have an off-by-one error by not considering space for the wide null string terminator. – pmg Dec 18 '11 at 15:26
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

Is _UNICODE defined? Also, check that you do not get an error (use ferror and feof) when you encounter WEOF as it could mean either.

http://msdn.microsoft.com/en-us/library/c7sskzc1%28v=vs.71%29.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.