MAIN
Fork of SOFT253_Template_Weather_OS_54 by
log.hpp@37:13f74964a045, 2017-05-15 (annotated)
- Committer:
- J_Satchell
- Date:
- Mon May 15 11:38:07 2017 +0000
- Revision:
- 37:13f74964a045
- Parent:
- 36:af6abc6f7590
fff
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| J_Satchell | 36:af6abc6f7590 | 1 | #ifndef LOG_H |
| J_Satchell | 36:af6abc6f7590 | 2 | #define LOG_H |
| J_Satchell | 36:af6abc6f7590 | 3 | #include "Data.hpp" |
| J_Satchell | 36:af6abc6f7590 | 4 | |
| J_Satchell | 36:af6abc6f7590 | 5 | void log_init(); |
| J_Satchell | 36:af6abc6f7590 | 6 | void log_push(Data data); |
| J_Satchell | 36:af6abc6f7590 | 7 | Data log_pop(); |
| J_Satchell | 36:af6abc6f7590 | 8 | int log_length(); |
| J_Satchell | 36:af6abc6f7590 | 9 | Data log_get(int index); |
| J_Satchell | 36:af6abc6f7590 | 10 | |
| J_Satchell | 36:af6abc6f7590 | 11 | #endif |