/* Copyright (C) 2014 Olivier Marty This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef H_TIME #define H_TIME #include typedef struct timespec mytime; void timeInitialize(); // start the clock void timeShift(double rel); // arr rel seconde to the clock mytime timeGetRelative(); int timeInFuture(mytime t); mytime timeCreate(time_t s, long ns); mytime timeDiff(mytime a, mytime b); // f should be >= 0 // this function was wrong, now it returns a mytime timeFactor(mytime a, double f); void timePause(int pause); // pause and resume the clock int timeIsPaused(); #endif