I have a C program containing a structure
struct S{
           int x;
           struct timeval t;
 };
and a function
int func(struct S s1, struct S s2)
I need to call this function from my python program. I am using ctypes.The parallel structure on Python
import ctypes
from ctypes import *
class S(Structure):
        _fields_ = [("x",c_int),
                     ("t", ?)]
Now, my question is what will I write in the ? place and any dependencies related to it. Thanks in advance.