X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=include%2Fkstddef.h;h=7b19338c1088c1848bd796f0352a04d2afecd6f4;hb=182997ba0074a9e2d0f1c9780ed3baef938f7aaa;hp=e80e3e56f8311b35920f95493a5633ed2514e76b;hpb=2ddfd9280d343189cd52abe2ba0d7bd4879f9f2c;p=ctsim.git diff --git a/include/kstddef.h b/include/kstddef.h index e80e3e5..7b19338 100644 --- a/include/kstddef.h +++ b/include/kstddef.h @@ -2,8 +2,26 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: kstddef.h,v 1.3 2000/04/28 17:38:16 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 +** +** 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 ** @@ -43,6 +61,11 @@ #ifndef STDDEF_H #define STDDEF_H +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + + #include #include #include @@ -59,17 +82,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 /*----------------------------------------------------------------------*/ @@ -77,11 +95,6 @@ typedef unsigned char string[STR_SIZE]; /*----------------------------------------------------------------------*/ -#define INTERNAL_FUNC static -#define INTERNAL_VAR static - -/*----------------------------------------------------------------------*/ - #define NEWLINE '\n' #define TAB '\t' #define EOS '\0' @@ -101,8 +114,12 @@ 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 @@ -136,13 +153,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 @@ -171,54 +184,27 @@ 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); -/* 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); -/* getch.c */ -int getch(void); -void ungetch(int c); +/* kbasename.c */ +char *kbasename(const char *filename); /* iclip.c */ int iclip(int n, int lb, int ub); -/* irand.c */ -unsigned int irand(unsigned int n); -/* ltostr.c */ -int ltostr(long val, char *cp, int base); -/* s_clip.c */ -char *str_clip_tail(char *str, unsigned int nclip); /* 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_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); -/* 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 */ @@ -243,7 +229,12 @@ 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); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ #endif