I am trying to load time.h directly with Cython instead of Python\'s import time
but it doesn\'t work.
All I get is an error
Call with w
Pass in NULL to time. Also you can use the builtin libc.time:
from libc.time cimport time,time_t
cdef time_t t = time(NULL)
print t
which gives
1471622065
The parameter to time
is the address (i.e.: "pointer") of a time_t
value to fill or NULL.
To quote man 2 time
:
time_t time(time_t *t);
[...]
If t is non-NULL, the return value is also stored in the memory pointed to by t.
It is an oddity of some standard functions to both return a value and (possibly) store the same value in a provided address. It is perfectly safe to pass 0
as parameter as in most architecture NULL is equivalent to ((void*)0)
. In that case, time
will only return the result, and will not attempt to store it in the provided address.