r48: Added Microsoft Windows compatibility
authorKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 11 May 2000 01:04:44 +0000 (01:04 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 11 May 2000 01:04:44 +0000 (01:04 +0000)
include/ct.h
include/kstddef.h

index 5e66c294cca6c28c365a6efbf0ffc35709f38b32..79c6ec871cfe72208da9667c9809ab451a9d7445 100644 (file)
@@ -2,8 +2,11 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ct.h,v 1.4 2000/05/03 19:51:41 kevin Exp $
+**  $Id: ct.h,v 1.5 2000/05/11 01:04:44 kevin Exp $
 **  $Log: ct.h,v $
+**  Revision 1.5  2000/05/11 01:04:44  kevin
+**  Added Microsoft Windows compatibility
+**
 **  Revision 1.4  2000/05/03 19:51:41  kevin
 **  function renaming for phantoms and phantom elements
 **
 #ifndef CT_H
 #define CT_H
 
+#ifdef _WIN32
+typedef long off_t;
+#define HAVE_STRING_H 1
+#include <fcntl.h>
+#define snprintf _snprintf
+#define vsnprintf _vsnprintf
+#define strcasecmp stricmp
+#define strncasecmp strnicmp
+#endif
+
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif
index deb65fa70b03052ef3b06efef94bd5d4a951bd98..7b19338c1088c1848bd796f0352a04d2afecd6f4 100644 (file)
@@ -2,8 +2,11 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: kstddef.h,v 1.8 2000/05/08 20:00:48 kevin Exp $
+**  $Id: kstddef.h,v 1.9 2000/05/11 01:04:44 kevin Exp $
 **  $Log: kstddef.h,v $
+**  Revision 1.9  2000/05/11 01:04:44  kevin
+**  Added Microsoft Windows compatibility
+**
 **  Revision 1.8  2000/05/08 20:00:48  kevin
 **  ANSI C changes
 **
@@ -150,8 +153,8 @@ typedef struct timedate_st TIMEDATE;
 
 /*----------------------------------------------------------------------*/
 
-/* codes for open command */
 
+/* codes for open command */
 #if MICROSOFT
 #define OPEN_RDONLY  O_RDONLY                  /* other system use standard codes */
 #define OPEN_WRONLY  O_WRONLY                  /* for binary */