ccronexpr icon indicating copy to clipboard operation
ccronexpr copied to clipboard

Cron expression parsing in ANSI C

Results 7 ccronexpr issues
Sort by recently updated
recently updated
newest added

Like specified here: http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html We will need an implementation that supports "L" and "W" characters. We might schedule it for internal development and provide a pull request. If anyone has...

the next day of expression "0 15 10 ? * 6#3" is error

cron_prev function infinite loop on 29 February. Issue occurs in non leap years. **Example infinite loop:** Expression: "* * * 29 2 *" Current time: 2021-12-7 12:00:00 **Example correct result:**...

At this moment I really have no idea where it could be. I have narrowed it down to calling the `cron_next`. The used `cron_expr` is every time the same. I'm...

[2021-06-07 15:18:00.994] In file included from jni/../../../ccronexpr.h:37: 909[2021-06-07 15:18:00.994] D:/android-ndk/android-ndk-r20b/build//../toolchains/llvm/prebuilt/windows-x86_64/sysroot/usr/include\time64.h:36:2: error: Your time_t is already 64-bit. 910[2021-06-07 15:18:00.994] #error Your time_t is already 64-bit. 911[2021-06-07 15:18:00.994] ^ 912[2021-06-07 15:18:00.994] jni/../../../ccronexpr.cpp:133:5:...

Hi there thanks for this work! It would be great to add support for SAMD21 arduino family, like mkr nb 1500, mkr GSM 1400, mkr wifi 1010 and so on.....

cron_parse_expr parse the following two strings with no err. ``` "* * * 30 2 *" "* * * 31 4 *" ```