1234567891011121314151617181920212223242526272829 |
- #ifndef __UTILS_H__
- #define __UTILS_H__
- #include <stdio.h>
- #include <unistd.h>
- #include <sys/time.h>
- struct timeval* showTime(struct timeval* start);
- void scheduler_realtime();
- void scheduler_standard();
- #endif
|