[BACK]Return to day.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / calendar

Diff for /src/usr.bin/calendar/day.c between version 1.13 and 1.14

version 1.13, 2001/09/27 18:19:20 version 1.14, 2001/11/19 19:02:13
Line 565 
Line 565 
   
 int  int
 getmonth(s)  getmonth(s)
         register char *s;          char *s;
 {  {
         register char **p;          char **p;
         struct fixs *n;          struct fixs *n;
   
         for (n = fnmonths; n->name; ++n)          for (n = fnmonths; n->name; ++n)
Line 585 
Line 585 
   
 int  int
 getday(s)  getday(s)
         register char *s;          char *s;
 {  {
         register char **p;          char **p;
         struct fixs *n;          struct fixs *n;
   
         for (n = fndays; n->name; ++n)          for (n = fndays; n->name; ++n)
Line 609 
Line 609 
  */   */
 int  int
 getdayvar(s)  getdayvar(s)
         register char *s;          char *s;
 {  {
         register int offset;          int offset;
   
   
         offset = strlen(s);          offset = strlen(s);

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14