00001 /*************************************************************************** 00002 * Copyright (C) 2007 by Aleksander Morgado Juez * 00003 * scitime@aleksander_morgado.mm.st * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU Library General Public License as * 00007 * published by the Free Software Foundation; either version 2 of the * 00008 * License, or (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU Library General Public * 00016 * License along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00019 ***************************************************************************/ 00020 00021 00022 #ifndef scitime_H 00023 #define scitime_H 00024 00025 //So that I can have macros like NAN 00026 #define _GNU_SOURCE 00027 00028 //Include standard C libraries 00029 #include <stdio.h> 00030 #include <stdlib.h> 00031 #include <malloc.h> 00032 #include <string.h> 00033 #include <sys/types.h> 00034 #include <math.h> 00035 00036 00037 //Include SCT common types and enumerations 00038 #include "sct_common.h" 00039 00040 //Include SCT setter and getter functions (I/O) 00041 #include "sct_io.h" 00042 00043 //Include SCT common operations 00044 #include "sct_operations.h" 00045 00046 //Include SCT allocation/deallocation functions 00047 #include "sct_alloc.h" 00048 00049 //Include SCT accuracy management functions 00050 #include "sct_accuracy.h" 00051 00052 //Include SCT timescale management functions 00053 #include "sct_timescales.h" 00054 00055 00056 #endif //scitime_H