elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
elkscmd
/
cron
/
cron.h
File editor
#ifndef _CRON_H #define _CRON_H #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include <time.h> #include "config.h" #define ELKS #define DEBUG 0 #define ALLOW_OUTPUT 0 /* 1 = output off */ /* * eventmask is 60 bits for minute, 31 bits for mday, 24 bits for hour, 12 * bits for month, 7 bits for wday */ #define CBIT(t) (1 << (t)) typedef struct { DWORD minutes[2]; /* 60 bits worth */ DWORD hours; /* 24 bits worth */ DWORD mday; /* 31 bits worth */ WORD wday; /* 7 bits worth */ WORD month; /* 12 bits worth */ } Evmask; typedef struct { Evmask trigger; char *command; char *input; } cron; typedef struct { uid_t user; /* user who owns the crontab */ time_t mtime; /* when the crontab was changed */ int flags; /* various flags */ #define ACTIVE 0x01 char **env; /* passed-in environment entries */ int nre; int sze; cron *list; /* the entries */ int nrl; int szl; } crontab; int readcrontab(crontab *, FILE *); void zerocrontab(crontab *); void tmtoEvmask(struct tm *, int, Evmask *); time_t mtime(char *); void runjob(crontab *, cron *); #define EXPAND(t,s,n) do { \ int _n = (n); \ int _s = (s); \ if (_n >= _s) { \ _s = _n ? (_n * 10) : 200; \ t = xrealloc(t, _s, sizeof t[0]); \ } \ } while(0) void *xrealloc(void *, int, int); char *fgetlol(FILE *); char *firstnonblank(char *); void error(char *,...); void fatal(char *,...); void info(char *,...); char *jobenv(crontab *, char *); void xchdir(char *); int xis_crondir(void); extern int interactive; extern int lineno; void printtrig(Evmask *m); #ifdef ELKS int setregid(gid_t rgid, gid_t egid); #endif #ifdef ELKS int setreuid(gid_t ruid, gid_t euid); #endif void * bsearch_c(const void *key, const void *base, size_t nmemb, size_t size, int (*compar) (const void *, const void *)); #endif
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history