Versione finale del client ECHO su TCP, con esempio di uso della funzione
[gapil.git] / listati / timeval.h
1 struct timeval 
2 {
3     long tv_sec;            /* seconds */
4     long tv_usec;           /* microseconds */
5 };
6 struct timespec {
7     time_t  tv_sec;         /* seconds */
8     long    tv_nsec;        /* nanoseconds */
9 };