michael@0: // michael@0: // Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: // michael@0: michael@0: #ifndef COMPILER_UTIL_H michael@0: #define COMPILER_UTIL_H michael@0: michael@0: #ifdef __cplusplus michael@0: extern "C" { michael@0: #endif michael@0: michael@0: // atof_dot is like atof but forcing C locale, i.e. forcing '.' as decimal point. michael@0: double atof_dot(const char *str); michael@0: michael@0: #ifdef __cplusplus michael@0: } // end extern "C" michael@0: #endif michael@0: michael@0: #endif // COMPILER_UTIL_H