aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2023-05-15 17:52:33 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2023-05-15 17:52:38 +0200
commit415908d6ec85e96d79f7f6267ea01c9cc6f50c77 (patch)
tree858b206699ef925381c1857e8dbc589c31684215
parente7142d86490389fd66a1a31cdc30118478047902 (diff)
downloadsdep-415908d6ec85e96d79f7f6267ea01c9cc6f50c77.tar.gz
sdep-415908d6ec85e96d79f7f6267ea01c9cc6f50c77.zip
Removed argument names from prototypes
-rw-r--r--sdep.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sdep.c b/sdep.c
index 33e96de..03d0650 100644
--- a/sdep.c
+++ b/sdep.c
@@ -47,16 +47,16 @@ struct Options {
47 char *separator; 47 char *separator;
48}; 48};
49 49
50static void add_event(struct tm t, char *text, EventList *evlist); 50static void add_event(struct tm, char *, EventList *);
51static int compare_tm(const void *, const void *); 51static int compare_tm(const void *, const void *);
52static int compare_event(const void *, const void *); 52static int compare_event(const void *, const void *);
53static Options default_op(void); 53static Options default_op(void);
54static int events_in_range(EventList *evlist, Options op, Event *sel); 54static int events_in_range(EventList *, Options, Event *);
55static char *format_line(Event ev, Options op, char *out); 55static char *format_line(Event, Options, char *);
56static void read_input(Options op, EventList *evlist); 56static void read_input(Options, EventList *);
57static Options read_op(int argc, char *argv[]); 57static Options read_op(int, char *[]);
58static char *strtrim(char *t); 58static char *strtrim(char *);
59static void write_output(Options op, Event *ev, int n); 59static void write_output(Options, Event *, int);
60 60
61 61
62static void 62static void

Generated with cgit - Back to sebastiano.tronto.net