1 /*
2    This program is free software; you can redistribute it and/or modify
3    it under the terms of the GNU General Public License as published by
4    the Free Software Foundation; either version 2, or (at your option)
5    any later version.
6 
7    This program is distributed in the hope that it will be useful,
8    but WITHOUT ANY WARRANTY; without even the implied warranty of
9    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10    GNU General Public License for more details.
11 
12    You should have received a copy of the GNU General Public License
13    along with this software; see the file COPYING.  If not, a copy
14    can be downloaded from http://www.gnu.org/licenses/gpl.html, or
15    obtained by writing to the Free Software Foundation, Inc.,
16    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17 
18 /* these are functions that have very different implementions in different systems, so we
19    define them here and implemement them in sys_ansi.c or sys_win.c */
20 
21 #ifndef SYS_COMPAT_H
22 #define SYS_COMPAT_H
23 
24 #include <time.h>
25 
26 char *panoBasenameOfExecutable(void);
27 
28 int panoTimeToStrWithTimeZone(char *sTime, int len, struct tm  *time) ;
29 
30 
31 
32 #endif
33