summaryrefslogtreecommitdiff
path: root/src/assistant/3rdparty/clucene/src/CLucene/config/repl_tcstod.cpp
blob: 1fd4ca770f03f80608acf97d96f0f61b1409f863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*------------------------------------------------------------------------------
* Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
* 
* Distributable under the terms of either the Apache License (Version 2.0) or 
* the GNU Lesser General Public License, as specified in the COPYING file.
------------------------------------------------------------------------------*/
 
#include "CLucene/StdHeader.h"

#ifndef _ASCII
double lucene_tcstod(const TCHAR *value, TCHAR **end){
    int32_t len = _tcslen(value)+1;
    char* avalue=_CL_NEWARRAY(char,len);
    char* aend=NULL;
    STRCPY_TtoA(avalue,value,len);
    
    double ret = strtod(avalue,&aend);
    *end=(TCHAR*)value+(aend-avalue);
    _CLDELETE_CaARRAY(avalue);

    return ret;
}
#endif