historical/toontown-classic.git/panda/include/pstrtod.h

34 lines
638 B
C
Raw Normal View History

2024-01-16 11:20:27 -06:00
/**
* 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."
*
* @file pstrtod.h
* @author drose
* @date 2009-06-13
*/
#ifndef PSTRTOD_H
#define PSTRTOD_H
#include "dtoolbase.h"
#ifdef __cplusplus
extern "C" {
#endif
EXPCL_DTOOL_DTOOLBASE double
pstrtod(const char *nptr, char **endptr);
EXPCL_DTOOL_DTOOLBASE double
patof(const char *str);
#ifdef __cplusplus
}; /* end of extern "C" */
#endif
#endif