r64: *** empty log message ***
[ctsim.git] / include / kstddef.h
index edb65093df35f013156dd4d0f53ea76d5d9edf83..2f1349299ccd9b16eee048ebe981b1b55dfd1b81 100644 (file)
@@ -2,8 +2,35 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: kstddef.h,v 1.2 2000/04/28 14:14:16 kevin Exp $
+**  $Id: kstddef.h,v 1.11 2000/06/03 06:29:08 kevin Exp $
 **  $Log: kstddef.h,v $
+**  Revision 1.11  2000/06/03 06:29:08  kevin
+**  *** empty log message ***
+**
+**  Revision 1.10  2000/05/16 04:33:17  kevin
+**  Updated documentation
+**
+**  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
+**
+**  Revision 1.7  2000/05/07 12:46:19  kevin
+**  made c++ compatible
+**
+**  Revision 1.6  2000/05/03 19:51:41  kevin
+**  function renaming for phantoms and phantom elements
+**
+**  Revision 1.5  2000/05/02 20:00:25  kevin
+**  *** empty log message ***
+**
+**  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
+**
 **  Revision 1.2  2000/04/28 14:14:16  kevin
 **  *** empty log message ***
 **
@@ -21,6 +48,7 @@
 **  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
 #ifndef STDDEF_H
 #define STDDEF_H
 
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -56,17 +89,12 @@ typedef signed int bool;            /* Boolean variable type */
 
 typedef unsigned char string[STR_SIZE];
 
-#define UNSIGNLONG unsigned long int
-#define UNSIGNCHAR unsigned char
-
 #define TRUE   1
 #define FALSE  0
 #define OK     TRUE
 #define ERROR  FALSE
 #define YES    TRUE
 #define NO     FALSE
-#define ON     TRUE
-#define OFF    FALSE
 
 /*----------------------------------------------------------------------*/
 
@@ -74,11 +102,6 @@ typedef unsigned char string[STR_SIZE];
 
 /*----------------------------------------------------------------------*/
 
-#define INTERNAL_FUNC  static
-#define INTERNAL_VAR   static
-
-/*----------------------------------------------------------------------*/
-
 #define        NEWLINE '\n'
 #define        TAB     '\t'
 #define EOS    '\0'
@@ -98,12 +121,15 @@ typedef unsigned char string[STR_SIZE];
 #define ABS(x)    ((x) < 0 ? -(x) : (x))
 #define SQR(x)    ((x) * (x))
 
+#ifndef MAX
 #define MAX(a,b)  ((a) > (b) ? (a) : (b))
+#endif
+#ifndef MIN
 #define MIN(a,b)  ((a) <= (b) ? (a) : (b))
+#endif
 #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)
 
 /*----------------------------------------------------------------------*/
@@ -133,13 +159,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
@@ -168,108 +190,87 @@ typedef struct timedate_st TIMEDATE;
 #define S_IWRITE S_IWUSR
 #endif
 
-/* alloc.c */
-void *alloc(unsigned int nbytes);
 /* allocnum.c */
 float *alloc_float(int n);
 double *alloc_double(int n);
 int *alloc_int(int n);
-/* cant.c */
-void cant(const char *fname);
-/* cdate.c */
-char *td_str_cdate(DATE *d);
-char *td_month_name(int n);
-char *td_day_name(int n);
-/* ctoi.c */
-char *ctoi(const char *s, int *ival);
+
 /* fexist.c */
 int file_exists(const char *fname);
-/* fmax.c */
-double fmax(double a, double b);
-/* get_yn.c */
-int get_yn(const char *prompt);
-/* getbits.c */
-unsigned int getbits(unsigned int x, int p, int n);
-/* getch.c */
-int getch(void);
-void ungetch(int c);
-/* getdate.c */
-DATE *td_get_date(DATE *d);
-/* gettime.c */
-TIME *td_get_time(TIME *t);
+
+/* kbasename.c */
+char *kbasename(const char *filename);
+
 /* iclip.c */
 int iclip(int n, int lb, int ub);
-/* infofn.c */
-int infofn(unsigned int *attrib, long int *filesize, TIMEDATE *td);
-/* irand.c */
-unsigned int irand(unsigned int n);
-/* itostr.c */
-int itostr(int n, char str[], int size);
-/* ltostr.c */
-int ltostr(long val, char *cp, int base);
-/* makefnam.c */
-int makefnam(const char *rawfn, const char *template_str, char *result);
-int getfnam(const char fullname[], char pathname[], char filename[]);
-int getexten(const char *fullname, char *exten);
-int validfn(const char filename[]);
-/* putdec.c */
-void putdec(const int n, int w, FILE *fd_out);
-/* s_clip.c */
-char *str_clip_tail(char *str, unsigned int nclip);
-/* s_esc.c */
-char *str_conv_esc(const char *from, char *to);
-/* s_esc_c.c */
-char *s_esc_char(const char *str, char *c);
-/* s_get.c */
-unsigned int str_get_last_char(const char *str);
+
 /* s_head.c */
 char *str_skip_head(const char *str, const char *charlist);
+
 /* s_lower.c */
 char *str_lower(char *s);
-/* s_make.c */
-char *str_make(char *str, int c, const int n);
-/* s_revers.c */
-char *str_reverse(char *s);
-/* s_rmhead.c */
-char *str_wrm_head(char *str);
-char *str_rm_head(char *str, const char *skip_str);
+
 /* 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_upper(char *str);
-/* s_wtail.c */
-char *str_wrm_tail(char *str);
-/* searchfn.c */
-int searchfn(const char pat[], const unsigned int attrib);
-int getfn(const char name[]);
-/* stime.c */
-double td_current_sec(void);
-double td_time_to_sec(TIME *t);
-TIME *td_time_sub(const TIME *t1, const TIME *t2, TIME *tdiff);
-TIME *td_time_add(const TIME *t1, const TIME *t2, TIME *tsum);
-TIME *td_time_copy(TIME *to, const TIME *from);
-TIME *td_time_norm(TIME *t);
-/* strncmpc.c */
-int strncmpc(const char *s, const char *t, int n);
+
 /* sysalloc.c */
 void *sys_alloc(const int nbytes, const char *name);
+
 /* syserror.c */
 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 */
+DATE *td_get_date(DATE *d);
+TIME *td_get_time(TIME *t);
+double td_current_sec(void);
+double td_time_to_sec(TIME *t);
+TIME *td_time_sub(const TIME *t1, const TIME *t2, TIME *tdiff);
+TIME *td_time_add(const TIME *t1, const TIME *t2, TIME *tsum);
+TIME *td_time_copy(TIME *to, const TIME *from);
+TIME *td_time_norm(TIME *t);
 void td_get_tmdt(TIMEDATE *td);
 const char *td_str_tmdt(const TIMEDATE *td);
 const char *td_str_time(const TIME *t);
 const char *td_str_stime(const TIME *t);
 const char *td_str_date(const DATE *d);
-/* kbasename.c */
-char *kbasename(const char *filename);
+char *td_str_cdate(DATE *d);
+char *td_month_name(int n);
+char *td_day_name(int n);
+
+/* netorder.c */
+void *strreverse (void *dest, const void *src, size_t n);
+#if SIZEOF_SHORT == 4
+int read_n32bint (unsigned short *n, int fd);
+int write_n32bint (unsigned short const *n, int fd);
+#elif SIZEOF_LONG == 4
+int read_n32bint (unsigned long *n, int fd);
+int write_n32bint (unsigned long const *n, int fd);
+#else
+int read_n32bint (unsigned int *n, int fd);
+int write_n32bint (unsigned int const *n, int fd);
+#endif
+int read_nfloat (float *f, int fd);
+int write_nfloat (float const *f, int fd);
+int read_ndouble (double *d, int fd);
+int write_ndouble (double const *d, int fd);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
 
 #endif