version 1.5, 2025/02/28 23:42:45
|
version 1.9, 2025/03/22 22:52:24
|
Line 1
|
Line 1
|
/* |
/* |
* * |
* $Id$ |
* * * |
|
* * * |
|
* *************** |
|
* * * * * |
|
* * MUMPS * |
|
* * * * * |
|
* *************** |
|
* * * |
|
* * * |
|
* * |
|
* |
|
* mpsdef0.h |
|
* common constants definitions for all mumps modules |
* common constants definitions for all mumps modules |
* |
* |
* |
* |
* Author: Serena Willis <jpw@coherent-logic.com> |
* Author: Serena Willis <snw@coherent-logic.com> |
* Copyright (C) 1998 MUG Deutschland |
* Copyright (C) 1998 MUG Deutschland |
* Copyright (C) 2020, 2023 Coherent Logic Development LLC |
* Copyright (C) 2020, 2023, 2025 Coherent Logic Development LLC |
* |
* |
* |
* |
* This file is part of FreeM. |
* This file is part of FreeM. |
Line 35
|
Line 23
|
* You should have received a copy of the GNU Affero Public License |
* You should have received a copy of the GNU Affero Public License |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* |
* |
|
* $Log$ |
|
* Revision 1.9 2025/03/22 22:52:24 snw |
|
* Add STRLEN_GBL macro to manage global string length |
|
* |
|
* Revision 1.8 2025/03/22 18:43:54 snw |
|
* Make STRLEN 255 chars and add BIGSTR macro for larger buffers |
|
* |
|
* Revision 1.7 2025/03/09 19:50:47 snw |
|
* Second phase of REUSE compliance and header reformat |
|
* |
|
* |
|
* SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC |
|
* SPDX-License-Identifier: AGPL-3.0-or-later |
**/ |
**/ |
|
|
/*#pragma GCC diagnostic ignored "-Wformat-contains-nul"*/ |
/*#pragma GCC diagnostic ignored "-Wformat-contains-nul"*/ |
Line 150
|
Line 151
|
#define ARGS_IN_ESC 5 |
#define ARGS_IN_ESC 5 |
|
|
/* maximum length of a string, 0 <= $L() <= 255 */ |
/* maximum length of a string, 0 <= $L() <= 255 */ |
#define STRLEN 65535 |
#define STRLEN 255 |
|
#define STRLEN_GBL 252 |
|
#define BIGSTR 65535 |
|
|
/* length of $ZTRAP variable */ |
/* length of $ZTRAP variable */ |
#define ZTLEN 20 |
#define ZTLEN 20 |