mirror of
https://github.com/open-simh/simtools.git
synced 2026-02-04 15:44:10 +00:00
Too much to list all, but includes (in no particular order): - Cleanup for 64-bit builds, MSVC warnings. - Structured help - Help file compiler. - Supports volsets, writes/create work. - Support for I18n in messages, help. - Makefiles. - Initialize volume/volset - Command line editing/history Builds and works on Linux and Windows (VS). Not recently built or tested on other platforms, but not intentinonally broken.
92 lines
2.3 KiB
C
92 lines
2.3 KiB
C
/* Timothe Litt March 2016
|
|
* Copyright (C) 2016 Timothe litt
|
|
* litt at acm dot org
|
|
*
|
|
* Free for use with the ODS2 package. All other rights reserved.
|
|
*/
|
|
|
|
/*
|
|
* This is distributed as part of ODS2, originally written by
|
|
* Paul Nankervis, email address: Paulnank@au1.ibm.com
|
|
*
|
|
* ODS2 is distributed freely for all members of the
|
|
* VMS community to use. However all derived works
|
|
* must maintain comments in their source to acknowledge
|
|
* the contributions of the original author and
|
|
* subsequent contributors.
|
|
*/
|
|
|
|
#ifndef COMPAT_H
|
|
#define COMPAT_H
|
|
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1900
|
|
|
|
#define snprintf c99_snprintf
|
|
#define vsnprintf c99_vsnprintf
|
|
|
|
#include <stdarg.h>
|
|
int c99_vsnprintf(char *outBuf, size_t size, const char *format, va_list ap);
|
|
int c99_snprintf(char *outBuf, size_t size, const char *format, ...);
|
|
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#include <stdio.h>
|
|
FILE *openf( const char *filename, const char *mode );
|
|
#else
|
|
#define openf fopen
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#include <errno.h>
|
|
#include <stdarg.h>
|
|
#include <windows.h>
|
|
#include <direct.h>
|
|
#undef getcwd
|
|
#define getcwd(_buf,_siz) _getcwd((_buf), (int)(_siz))
|
|
#undef chdir
|
|
#define chdir _chdir
|
|
#undef tzset
|
|
#define tzset _tzset
|
|
#undef setenv
|
|
#define setenv(name, value, overwrite) _putenv_s(name, value)
|
|
#undef unsetenv
|
|
#define unsetenv(name) _putenv_s(name,"")
|
|
#define Unlink _unlink
|
|
#define Fileno(x) _fileno(x)
|
|
#include <io.h>
|
|
#include <sys/stat.h>
|
|
#define Chmod _chmod
|
|
#ifndef S_IREAD
|
|
#define S_IREAD _S_IREAD
|
|
#define S_IWRITE _S_IWRITE
|
|
#endif
|
|
|
|
#undef strerror
|
|
#define strerror(n) ods2_strerror(n)
|
|
const char *ods2_strerror( errno_t errn );
|
|
|
|
TCHAR *w32_errstr( DWORD eno, ... );
|
|
char *driveFromLetter( const char *letter );
|
|
|
|
#else /* Not WIN32 */
|
|
#include <unistd.h>
|
|
#define Unlink unlink
|
|
#define Fileno(x) fileno(x)
|
|
#define Chmod chmod
|
|
#endif
|
|
|
|
char *get_username( void );
|
|
char *get_env( const char *name );
|
|
char *homefile( int dotfile, const char *filename, const char *ext );
|
|
char *get_realpath( const char *filnam );
|
|
char *Ctime( time_t *tval );
|
|
char *fgetline( FILE *stream, int keepnl, char **buf, size_t *bufsize );
|
|
|
|
#define UNUSED(x) (void)(x)
|
|
|
|
#endif
|