Engleski nazivi dana u tjednu su zamijenjeni kraticama dana u tjednu na hrvatskom jeziku.
Dependents: SUSTAV_KONTROLE_PRISTUPA
debug.h@13:d1de45595c90, 2020-02-02 (annotated)
- Committer:
- boki96
- Date:
- Sun Feb 02 10:05:31 2020 +0000
- Revision:
- 13:d1de45595c90
- Parent:
- 12:67d9685eaeb0
The names of the days of the week in English have been replaced by the abbreviations of days of the week in Croatian.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
dmartic | 12:67d9685eaeb0 | 1 | //Debug library korišten za RTC1307 |
dmartic | 12:67d9685eaeb0 | 2 | |
dmartic | 12:67d9685eaeb0 | 3 | #ifndef __DEBUG_H__ |
dmartic | 12:67d9685eaeb0 | 4 | #define __DEBUG_H__ |
dmartic | 12:67d9685eaeb0 | 5 | |
dmartic | 12:67d9685eaeb0 | 6 | |
dmartic | 12:67d9685eaeb0 | 7 | #ifdef DEBUG |
dmartic | 12:67d9685eaeb0 | 8 | #define INFO(x, ...) std::printf("[INFO: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__); |
dmartic | 12:67d9685eaeb0 | 9 | #define WARN(x, ...) std::printf("[WARN: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__); |
dmartic | 12:67d9685eaeb0 | 10 | #define ERR(x, ...) std::printf("[ERR: %s:%d]"x"\r\n", __FILE__, __LINE__, ##__VA_ARGS__); |
dmartic | 12:67d9685eaeb0 | 11 | #else |
dmartic | 12:67d9685eaeb0 | 12 | #define INFO(x, ...) |
dmartic | 12:67d9685eaeb0 | 13 | #define WARN(x, ...) |
dmartic | 12:67d9685eaeb0 | 14 | #define ERR(x, ...) |
dmartic | 12:67d9685eaeb0 | 15 | #endif |
dmartic | 12:67d9685eaeb0 | 16 | |
dmartic | 12:67d9685eaeb0 | 17 | |
dmartic | 12:67d9685eaeb0 | 18 | #endif |
dmartic | 12:67d9685eaeb0 | 19 |