most.h (most-5.1.0) | : | most.h (most-5.2.0) | ||
---|---|---|---|---|
/* | /* | |||
This file is part of MOST. | This file is part of MOST. | |||
Copyright (c) 1991, 1999, 2002, 2005-2018, 2019 John E. Davis | Copyright (c) 1991, 1999, 2002, 2005-2021, 2022 John E. Davis | |||
This program is free software; you can redistribute it and/or modify it | This program is free software; you can redistribute it and/or modify it | |||
under the terms of the GNU General Public License as published by the Free | under the terms of the GNU General Public License as published by the Free | |||
Software Foundation; either version 2 of the License, or (at your option) | Software Foundation; either version 2 of the License, or (at your option) | |||
any later version. | any later version. | |||
This program is distributed in the hope that it will be useful, but WITHOUT | This program is distributed in the hope that it will be useful, but WITHOUT | |||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |||
more details. | more details. | |||
skipping to change at line 52 | skipping to change at line 52 | |||
extern int most(int, char **); | extern int most(int, char **); | |||
extern char *Most_Global_Msg; | extern char *Most_Global_Msg; | |||
extern int Most_Want_Exit; | extern int Most_Want_Exit; | |||
extern void most_initialize_most(void); | extern void most_initialize_most(void); | |||
extern void most_exit_most (void); | extern void most_exit_most (void); | |||
extern void most_exit_error (char *, ...); | extern void most_exit_error (char *, ...); | |||
extern void most_usage (void); | extern void most_usage (void); | |||
#define MOSTMALLOC most_malloc | #define MOSTMALLOC most_malloc | |||
#define MOSTREALLOC most_realloc | #define MOSTREALLOC most_realloc | |||
extern unsigned char *most_malloc(unsigned int); | extern unsigned char *most_malloc(size_t); | |||
extern unsigned char *most_realloc(unsigned char *, unsigned int); | extern unsigned char *most_realloc(unsigned char *, size_t); | |||
extern int Most_Tab_Width; | extern int Most_Tab_Width; | |||
#ifdef VMS | #ifdef VMS | |||
# ifndef isdigit | # ifndef isdigit | |||
# define isdigit(x) \ | # define isdigit(x) \ | |||
(((x >= '0') && (x <= '9')) ? 1 : 0) | (((x >= '0') && (x <= '9')) ? 1 : 0) | |||
# endif | # endif | |||
#endif | #endif | |||
#ifdef HAVE_SNPRINTF | #ifdef HAVE_SNPRINTF | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added |