Staging
v0.5.1
Revision 43baef41fdf4b448d74fbd88ca738b1f4ddc6670 authored by Barry Warsaw on 21 November 2008, 01:18:21 UTC, committed by Barry Warsaw on 21 November 2008, 01:18:21 UTC
1 parent 2d71822
Raw File
timefuncs.h
/*  timefuncs.h
 */

/* Utility function related to timemodule.c. */

#ifndef TIMEFUNCS_H
#define TIMEFUNCS_H
#ifdef __cplusplus
extern "C" {
#endif


/* Cast double x to time_t, but raise ValueError if x is too large
 * to fit in a time_t.  ValueError is set on return iff the return
 * value is (time_t)-1 and PyErr_Occurred().
 */
PyAPI_FUNC(time_t) _PyTime_DoubleToTimet(double x);


#ifdef __cplusplus
}
#endif
#endif  /* TIMEFUNCS_H */
back to top