| 3326 | } |
| 3327 | |
| 3328 | static std::string getDateDefine(const struct tm *timep) |
| 3329 | { |
| 3330 | char buf[] = "??? ?? ????"; |
| 3331 | strftime(buf, sizeof(buf), "%b %d %Y", timep); |
| 3332 | return std::string("\"").append(buf).append("\""); |
| 3333 | } |
| 3334 | |
| 3335 | static std::string getTimeDefine(const struct tm *timep) |
| 3336 | { |