c
// Define CF_MAX_ITERATIONS as a constant expression
#define CF_MAX_ITERATIONS (1000)

static int CFReserve_RedisCommand(RedisModuleCtx *ctx, RedisModuleString **argv, int argc) {
    // ...
    long long maxIterations = CF_MAX_ITERATIONS;
    // ...
}
