history.h (d101cdd6edd782f6ec56eef63ed91abd77a8b317) history.h (f4fbc49d201f81c481a33fac6ba28e19faf96260)
1/*
2 * *****************************************************************************
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 *
6 * Copyright (c) 2018-2023 Gavin D. Howard and contributors.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 159 unchanged lines hidden (view full) ---

168#define strcasecmp _stricmp
169
170#endif // _WIN32
171
172#include <status.h>
173#include <vector.h>
174#include <read.h>
175
1/*
2 * *****************************************************************************
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 *
6 * Copyright (c) 2018-2023 Gavin D. Howard and contributors.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 159 unchanged lines hidden (view full) ---

168#define strcasecmp _stricmp
169
170#endif // _WIN32
171
172#include <status.h>
173#include <vector.h>
174#include <read.h>
175
176#if BC_DEBUG_CODE
177#include <file.h>
178#endif // BC_DEBUG_CODE
179
180/// Default columns.
181#define BC_HIST_DEF_COLS (80)
182
183/// Max number of history entries.
184#define BC_HIST_MAX_LEN (128)
185
186/// Max length of a line.
187#define BC_HIST_MAX_LINE (4095)

--- 228 unchanged lines hidden ---
176/// Default columns.
177#define BC_HIST_DEF_COLS (80)
178
179/// Max number of history entries.
180#define BC_HIST_MAX_LEN (128)
181
182/// Max length of a line.
183#define BC_HIST_MAX_LINE (4095)

--- 228 unchanged lines hidden ---