r64: *** empty log message ***
[ctsim.git] / include / kstddef.h
index 7b19338c1088c1848bd796f0352a04d2afecd6f4..2f1349299ccd9b16eee048ebe981b1b55dfd1b81 100644 (file)
@@ -2,8 +2,14 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: kstddef.h,v 1.9 2000/05/11 01:04:44 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
 **
@@ -42,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
@@ -123,7 +130,6 @@ typedef unsigned char string[STR_SIZE];
 #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)
 
 /*----------------------------------------------------------------------*/
@@ -188,33 +194,46 @@ typedef struct timedate_st TIMEDATE;
 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 */
 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_upper(char *str);
+
 /* 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);
@@ -233,6 +252,23 @@ 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 */