Home | History | Annotate | Download | only in src

Lines Matching refs:buff

12     wchar_t* buff = new wchar_t[size+1];
13 mbstowcs(buff, ascii, size);
14 buff[size] = 0x00;
15 wstring ret(buff);
16 delete[] buff;
21 char* buff = new char[size+1];
22 wcstombs(buff, wide, size);
23 buff[size] = 0;
24 string ret(buff);
25 delete[] buff;