/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/time.h

  • Committer: edam
  • Date: 2012-03-12 15:22:57 UTC
  • Revision ID: tim@ed.am-20120312152257-gb30ihjxq8jb0lss
added newline

Show diffs side-by-side

added added

removed removed

93
93
         */
94
94
        void init();
95
95
 
96
 
        /**
97
 
         * Increment the hours and save the time.
98
 
         */
99
 
        void inc_hours();
100
 
 
101
 
        /**
102
 
         * Increment the minutes and save the time.
103
 
         */
104
 
        void inc_minutes();
105
 
 
106
 
        /**
107
 
         * Reset the seconds and save the time.
108
 
         */
109
 
        void reset_seconds();
110
 
 
111
 
        /**
112
 
         * Increment the year and save the time.
113
 
         */
114
 
        void inc_year();
115
 
 
116
 
        /**
117
 
         * Increment the month and save the time.
118
 
         */
119
 
        void inc_month();
120
 
 
121
 
        /**
122
 
         * Increment the day and save the time.
123
 
         */
124
 
        void inc_day();
125
 
 
126
96
};
127
97
 
128
98
 
129
 
#endif //_TIME_H_
 
99
#endif _TIME_H_