cpython/Include/complexobject.h

31 lines
728 B
C
Raw Permalink Normal View History

/* Complex number structure */
#ifndef Py_COMPLEXOBJECT_H
#define Py_COMPLEXOBJECT_H
1996-01-11 20:47:05 -04:00
#ifdef __cplusplus
extern "C" {
#endif
/* Complex object interface */
PyAPI_DATA(PyTypeObject) PyComplex_Type;
1996-01-11 20:47:05 -04:00
#define PyComplex_Check(op) PyObject_TypeCheck((op), &PyComplex_Type)
#define PyComplex_CheckExact(op) Py_IS_TYPE((op), &PyComplex_Type)
1996-01-11 20:47:05 -04:00
PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
1996-01-11 20:47:05 -04:00
PyAPI_FUNC(double) PyComplex_RealAsDouble(PyObject *op);
PyAPI_FUNC(double) PyComplex_ImagAsDouble(PyObject *op);
1996-01-11 20:47:05 -04:00
2010-12-03 16:14:31 -04:00
#ifndef Py_LIMITED_API
# define Py_CPYTHON_COMPLEXOBJECT_H
# include "cpython/complexobject.h"
# undef Py_CPYTHON_COMPLEXOBJECT_H
2010-12-03 16:14:31 -04:00
#endif
2009-04-29 22:00:33 -03:00
1996-01-11 20:47:05 -04:00
#ifdef __cplusplus
}
#endif
#endif /* !Py_COMPLEXOBJECT_H */