aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2007-04-04 19:35:09 +0000
committerFrederic Culot <calcurse@culot.org>2007-04-04 19:35:09 +0000
commitbe46b493841cbaad45719f496445e5151b9db226 (patch)
treef0d852a0bff1911964da32881c04199756ffa047
parentc5cc59c1480238cd641d4990b9ee3184ca97e6a8 (diff)
downloadcalcurse-be46b493841cbaad45719f496445e5151b9db226.tar.gz
calcurse-be46b493841cbaad45719f496445e5151b9db226.zip
use of DAYINSEC define
-rwxr-xr-xsrc/apoint.c14
-rwxr-xr-xsrc/event.c22
2 files changed, 22 insertions, 14 deletions
diff --git a/src/apoint.c b/src/apoint.c
index a7c7e4d..7889937 100755
--- a/src/apoint.c
+++ b/src/apoint.c
@@ -1,4 +1,4 @@
-/* $calcurse: apoint.c,v 1.9 2007/02/25 19:31:44 culot Exp $ */
+/* $calcurse: apoint.c,v 1.10 2007/04/04 19:35:09 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -78,16 +78,18 @@ apoint_new(char *mesg, long start, long dur, char state)
return o;
}
-unsigned apoint_inday(apoint_llist_node_t *i, long start)
+unsigned
+apoint_inday(apoint_llist_node_t *i, long start)
{
- if (i->start <= start + 3600 * 24 && i->start + i->dur > start) {
+ if (i->start <= start + DAYINSEC && i->start + i->dur > start) {
return 1;
}
return 0;
}
-void apoint_sec2str(apoint_llist_node_t *o,
- int type, long day, char *start, char *end)
+void
+apoint_sec2str(apoint_llist_node_t *o, int type, long day, char *start,
+ char *end)
{
struct tm *lt;
time_t t;
@@ -100,7 +102,7 @@ void apoint_sec2str(apoint_llist_node_t *o,
snprintf(start, HRMIN_SIZE, "%02u:%02u", lt->tm_hour,
lt->tm_min);
}
- if (o->start + o->dur > day + 24 * 3600 && type == APPT) {
+ if (o->start + o->dur > day + DAYINSEC && type == APPT) {
strncpy(end, "..:..", 6);
} else {
t = o->start + o->dur;
diff --git a/src/event.c b/src/event.c
index aeeee8d..95573ab 100755
--- a/src/event.c
+++ b/src/event.c
@@ -1,8 +1,8 @@
-/* $calcurse: event.c,v 1.2 2006/12/15 15:25:28 culot Exp $ */
+/* $calcurse: event.c,v 1.3 2007/04/04 19:37:14 culot Exp $ */
/*
* Calcurse - text-based organizer
- * Copyright (c) 2004-2006 Frederic Culot
+ * Copyright (c) 2004-2007 Frederic Culot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -30,6 +30,7 @@
#include <sys/types.h>
#include <time.h>
+#include "vars.h"
#include "i18n.h"
#include "event.h"
#include "utils.h"
@@ -37,7 +38,8 @@
struct event_s *eventlist;
/* Create a new event */
-struct event_s *event_new(char *mesg, long day, int id)
+struct event_s *
+event_new(char *mesg, long day, int id)
{
struct event_s *o, **i;
o = (struct event_s *) malloc(sizeof(struct event_s));
@@ -58,16 +60,18 @@ struct event_s *event_new(char *mesg, long day, int id)
}
/* Check if the event belongs to the selected day */
-unsigned event_inday(struct event_s *i, long start)
+unsigned
+event_inday(struct event_s *i, long start)
{
- if (i->day <= start + 3600 * 24 && i->day > start) {
+ if (i->day <= start + DAYINSEC && i->day > start) {
return 1;
}
return 0;
}
/* Write to file the event in user-friendly format */
-void event_write(struct event_s *o, FILE * f)
+void
+event_write(struct event_s *o, FILE * f)
{
struct tm *lt;
time_t t;
@@ -79,7 +83,8 @@ void event_write(struct event_s *o, FILE * f)
}
/* Load the events from file */
-struct event_s *event_scan(FILE * f, struct tm start, int id)
+struct event_s *
+event_scan(FILE * f, struct tm start, int id)
{
struct tm *lt;
char buf[MESG_MAXSIZE], *nl;
@@ -110,7 +115,8 @@ struct event_s *event_scan(FILE * f, struct tm start, int id)
}
/* Delete an event from the list */
-void event_delete_bynum(long start, unsigned num)
+void
+event_delete_bynum(long start, unsigned num)
{
unsigned n;
struct event_s *i, **iptr;