sdep

A simple "date+event" line parser
git clone https://git.tronto.net/sdep
Download | Log | Files | Refs | README | LICENSE

commit b653b47420ea75d36b92dbe353d1dbbe8e39b83c
parent cfb1bec532525848427f0130c8a6834e5053cbcb
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Mon, 15 May 2023 17:36:07 +0200

Changed const to #define

Diffstat:
Msdep.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdep.c b/sdep.c @@ -10,7 +10,7 @@ * Maximum number of characters in a line. The rest will be truncated. * Change this if you need very long lines. */ -static const int MAXLEN = 10000; +#define MAXLEN 10000 /* * Default date format. Anything that strftime(3) understands works, but