]> git.pond.sub.org Git - empserver/blobdiff - src/lib/common/hours.c
Update copyright notice
[empserver] / src / lib / common / hours.c
index 1f8b2e7a247d418497d50ec63c7288d47e754710..e82ccb28e473d11e638bbb1c1a2186910506e22a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2013, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2016, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                Ken Stevens, Steve McClure, Markus Armbruster
  *
  *  Empire is free software: you can redistribute it and/or modify
 #include "prototypes.h"
 
 static char *weekday(char *str, int *wday);
-static char *daytime(char *str, int *min);
 static char *daytime_range(char *str, int *from_min, int *to_min);
 
 /*
- * Is week day WDAY (Sunday is 0) allowed by restriction DAYS?
- * If DAYS is not empty, it lists the allowed week day names.  See
+ * Is week day @wday (Sunday is 0) allowed by restriction @days?
+ * If @days is not empty, it lists the allowed week day names.  See
  * weekday() for syntax.
  */
 int
@@ -66,8 +65,9 @@ is_wday_allowed(int wday, char *days)
 }
 
 /*
- * Is day time DTIME (minutes since midnight) allowed by restriction TIMES?
- * If TIMES is not empty, it lists the allowed day time ranges.  See
+ * Is day time @dtime allowed by restriction @times?
+ * @dtime is in minutes since midnight.
+ * If @times is not empty, it lists the allowed day time ranges.  See
  * daytime_range() for syntax.
  */
 int
@@ -100,8 +100,8 @@ gamehours(time_t t)
 }
 
 /*
- * Parse weekday name in STR.
- * On success assign day number (Sunday is 0) to *WDAY and return
+ * Parse weekday name in @str.
+ * On success assign day number (Sunday is 0) to *@wday and return
  * pointer to first character not parsed.
  * Else return NULL.
  * Abbreviated names are recognized, but not single characters.
@@ -136,8 +136,8 @@ weekday(char *str, int *wday)
 }
 
 /*
- * Parse day time in STR.
- * On success store minutes since midnight in *MIN and return pointer
+ * Parse day time in @str.
+ * On success store minutes since midnight in *@min and return pointer
  * to first character not parsed.
  * Else return NULL.
  * Time format is HOUR:MINUTE.  Initial whitespace is ignored.
@@ -171,9 +171,9 @@ daytime(char *str, int *min)
 }
 
 /*
- * Parse a day time range in STR.
- * On success store minutes since midnight in *FROM and *TO, return
- * pointer to first character not parsed.
+ * Parse a day time range in @str.
+ * On success, store minutes since midnight in *@from_min, *@to_min,
+ * and return pointer to first character not parsed.
  * Else return NULL.
  * Format is HOUR:MINUTE-HOUR:MINUTE.  Initial whitespace is ignored.
  */