mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
37 lines
968 B
C++
37 lines
968 B
C++
// Filename: test_strtod.cxx
|
|
// Created by: drose (14Jun09)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "pstrtod.h"
|
|
|
|
#ifndef _WIN32
|
|
#include <locale.h>
|
|
#endif
|
|
|
|
int
|
|
main(int argc, char *argv[]) {
|
|
#ifndef _WIN32
|
|
setlocale(LC_ALL, "");
|
|
#endif
|
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
char *endptr = NULL;
|
|
double result = pstrtod(argv[i], &endptr);
|
|
cerr << "pstrtod - " << argv[i] << " : " << result << " : " << endptr << "\n";
|
|
result = strtod(argv[i], &endptr);
|
|
cerr << "strtod - " << argv[i] << " : " << result << " : " << endptr << "\n";
|
|
}
|
|
|
|
return 0;
|
|
}
|