_fopen with wchar_t*


 
Thread Tools Search this Thread
Top Forums Programming _fopen with wchar_t*
# 1  
Old 06-27-2005
_fopen with wchar_t*

how can I use function _fopen(char* , char*) if name of the file with wide char symbols?
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Programming

wchar_t

1. Can anybody tell me why this outputs: Ros? (My locale is: en_US.UTF-8 and I'm using gcc) 2. I need wchar_t if I want to use chars with accents ? 3. Can I use UTF-8 with wchar_t ? #include <stdio.h> #include <wchar.h> int main(void) { wchar_t VAR= L"Rosé"; wprintf(VAR);... (1 Reply)
Discussion started by: cyler
1 Replies
Login or Register to Ask a Question
WCSCHR(3)						     Linux Programmer's Manual							 WCSCHR(3)

NAME
wcschr - search a wide character in a wide-character string SYNOPSIS
#include <wchar.h> wchar_t *wcschr(const wchar_t *wcs, wchar_t wc); DESCRIPTION
The wcschr() function is the wide-character equivalent of the strchr(3) function. It searches the first occurrence of wc in the wide-char- acter string pointed to by wcs. RETURN VALUE
The wcschr() function returns a pointer to the first occurrence of wc in the wide-character string pointed to by wcs, or NULL if wc does not occur in the string. CONFORMING TO
C99. SEE ALSO
strchr(3), wcspbrk(3), wcsrchr(3), wcsstr(3), wmemchr(3) COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. GNU
1999-07-25 WCSCHR(3)