r105: *** empty log message ***
[ctsim.git] / include / kstddef.h
index 3ad537aa8c843d48b1071c24675afdf49c14729b..75cde29a102805d46bbbee338813959f16ebcb08 100644 (file)
@@ -1,20 +1,15 @@
 /*****************************************************************************
-**  This is part of the CTSim program
-**  Copyright (C) 1983-2000 Kevin Rosenberg
+** FILE IDENTIFICATION
 **
-**  $Id: kstddef.h,v 1.5 2000/05/02 20:00:25 kevin Exp $
-**  $Log: kstddef.h,v $
-**  Revision 1.5  2000/05/02 20:00:25  kevin
-**  *** empty log message ***
+**     File Name:      kstddef.h
+**     Author:         Kevin Rosenberg
+**     Purpose:        Header file containing KRL standard C definitions
+**     Date Started:   Dec. 83
 **
-**  Revision 1.4  2000/04/28 18:00:55  kevin
-**  remove unused files
-**
-**  Revision 1.3  2000/04/28 17:38:16  kevin
-**  Removed unused files
+**  This is part of the CTSim program
+**  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  Revision 1.2  2000/04/28 14:14:16  kevin
-**  *** empty log message ***
+**  $Id: kstddef.h,v 1.18 2000/06/19 18:18:13 kevin Exp $
 **
 **
 **  This program is free software; you can redistribute it and/or modify
 **  along with this program; if not, write to the Free Software
 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 ******************************************************************************/
-/******************************************************************************
- *
- * FILE IDENTIFICATION
- *
- *     File Name:      STDDEF.H
- *     Author:         Kevin Rosenberg
- *     Purpose:        Header file containing KRL standard C definitions
- *     Date Started:   Dec. 83
- *
- * DESCRIPTION
- *     Header file contains KRL standard C definitions
- *
- * MODIFICATION LOG
- *
- *****************************************************************************/
 
 #ifndef STDDEF_H
 #define STDDEF_H
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <stdarg.h>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
-#undef SHELL
+#ifdef _WIN32
+#define snprintf _snprintf
+#endif
 
 #define STR_MAX_LEN 255
 #define STR_SIZE    STR_MAX_LEN+1
 
-#ifndef bool
-typedef signed int bool;               /* Boolean variable type */
-#endif
-
-typedef unsigned char string[STR_SIZE];
-
-#define UNSIGNLONG unsigned long int
-#define UNSIGNCHAR unsigned char
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdarg.h>
 
 #define TRUE   1
 #define FALSE  0
@@ -74,17 +51,10 @@ typedef unsigned char string[STR_SIZE];
 #define ERROR  FALSE
 #define YES    TRUE
 #define NO     FALSE
-#define ON     TRUE
-#define OFF    FALSE
 
 /*----------------------------------------------------------------------*/
 
-#define SHOW(var, fmt)  fprintf (stderr, "var = fmt\n", var)
-
-/*----------------------------------------------------------------------*/
-
-#define INTERNAL_FUNC  static
-#define INTERNAL_VAR   static
+#define SHOW(var, fmt)  { cerr << "var = " << var << endl; }
 
 /*----------------------------------------------------------------------*/
 
@@ -92,33 +62,11 @@ typedef unsigned char string[STR_SIZE];
 #define        TAB     '\t'
 #define EOS    '\0'
 #define BLANK  ' '
-#define ETX    26      /* end of text signal for PC-DOS */
-
-/*----------------------------------------------------------------------*/
-
-#define MAXPATHNAME  65                /* max length of pathname + 1 */
-#define MAXFILENAME  13                /* rootname(8) + '.'(1) + extension(3) + EOS */
-#define MAXROOTNAME   8
-#define MAXEXTNAME    3
-#define MAXFULLNAME  MAXPATHNAME + MAXFILENAME
-
-/*----------------------------------------------------------------------*/
-
-#define ABS(x)    ((x) < 0 ? -(x) : (x))
-#define SQR(x)    ((x) * (x))
-
-#define MAX(a,b)  ((a) > (b) ? (a) : (b))
-#define MIN(a,b)  ((a) <= (b) ? (a) : (b))
-#define ISWAP(a,b) {int i; i = a; a = b; b = i;}
-
-#define CLIP(n,lb,ub)  if (n < lb) n = lb; else if (n > ub) n = ub
-#define FOREVER         for (;;)
-#define STR_EQUAL(s1,s2) (strcmp (s1, s2) == 0)
 
 /*----------------------------------------------------------------------*/
 
 struct time_st {
-       int hour, minute, second, hs;
+       int hour, minute, second, ms;
 };
 
 struct date_st {
@@ -142,13 +90,9 @@ typedef struct timedate_st TIMEDATE;
 
 /*----------------------------------------------------------------------*/
 
-/* codes for open command */
 
-#ifdef LATTICE
-#define OPEN_RDONLY  0x8000            /* Lattice codes for binary i/o */
-#define OPEN_WRONLY  0x8001
-#define OPEN_RDWR    0x8002
-#elif MICROSOFT
+/* codes for open command */
+#if MICROSOFT
 #define OPEN_RDONLY  O_RDONLY                  /* other system use standard codes */
 #define OPEN_WRONLY  O_WRONLY                  /* for binary */
 #define OPEN_RDWR    O_RDWR
@@ -160,15 +104,6 @@ typedef struct timedate_st TIMEDATE;
 
 /*----------------------------------------------------------------------*/
 
-/* codes for input (inp_*) routines */
-
-#define INP_ERROR   -1
-#define INP_NO      FALSE
-#define INP_YES     TRUE
-#define INP_NEITHER 'b'
-#define INP_RETURN  'r'
-#define INP_BREAK   0x8000
-
 #ifndef O_BINARY
 #define O_BINARY (0)
 #endif
@@ -177,38 +112,62 @@ typedef struct timedate_st TIMEDATE;
 #define S_IWRITE S_IWUSR
 #endif
 
-/* allocnum.c */
-float *alloc_float(int n);
-double *alloc_double(int n);
-int *alloc_int(int n);
-/* fexist.c */
-int file_exists(const char *fname);
-/* kbasename.c */
-char *kbasename(const char *filename);
-/* iclip.c */
-int iclip(int n, int lb, int ub);
-/* s_head.c */
-char *str_skip_head(const char *str, const char *charlist);
-/* s_lower.c */
+/*----------------------------------------------------------------------*/
+
+#if defined(MICROSOFT) || ! defined(SIZEOF_INT)
+   #define SIZEOF_INT 4
+   #define SIZEOF_LONG 4
+   #define SIZEOF_SHORT 2
+   #define SIZEOF_FLOAT 4
+   #define SIZEOF_DOUBLE 8
+#endif
+
+typedef signed char kint8;
+typedef unsigned char kuint8;
+
+#if SIZEOF_INT == 4
+    typedef int kint32;
+    typedef unsigned int kuint32;
+#elif SIZEOF_LONG == 4
+    typedef long int kint32;
+    typedef unsigned int kuint32;
+#endif
+
+#if SIZEOF_SHORT == 2
+    typedef short int kint16;
+    typedef unsigned short int kuint16;
+#elif SIZEOF_INT == 2
+    typedef int kint16;
+    typedef unsigned int kuint16;
+#endif
+
+#if SIZEOF_FLOAT == 4
+    typedef float kfloat32;
+#endif
+#if SIZEOF_DOUBLE == 8
+    typedef double kfloat64;
+#endif
+
+
+/* filefuncs.cpp */
+bool file_exists(const char* fname);
+const char* fileBasename(const char* filename);
+FILE *sys_fopen(const char *filename, const char *mode, const char *progname);
+
+/* strfuncs.cpp */
+char* str_skip_head(const char* str, const char* const charlist);
+char* str_skip_head(const char* str, char* charlist);
 char *str_lower(char *s);
-/* s_rmtail.c */
 char *str_wrm_tail(char *str);
-char *str_rm_tail(char *str, const char *charlist);
-/* s_save.c */
-char *str_save(const char *s);
-/* s_upper.c */
+char *str_rm_tail(char *str, const char* const charlist);
 char *str_upper(char *str);
-/* sysalloc.c */
-void *sys_alloc(const int nbytes, const char *name);
-/* syserror.c */
+
+/* syserror.cpp */
 void sys_error(int severity, const char *msg, ...);
 void sys_verror(int severity, const char *msg, va_list arg);
 void sys_error_level(int severity);
-/* sysfopen.c */
-FILE *sys_fopen(const char *filename, const char *mode, const char *progname);
-/* sysfree.c */
-void sys_free(void *ptr, const char *name);
-/* timedate.c */
+
+/* timedate.cpp */
 DATE *td_get_date(DATE *d);
 TIME *td_get_time(TIME *t);
 double td_current_sec(void);