| 3333 | } |
| 3334 | |
| 3335 | static std::string getTimeDefine(const struct tm *timep) |
| 3336 | { |
| 3337 | char buf[] = "??:??:??"; |
| 3338 | strftime(buf, sizeof(buf), "%H:%M:%S", timep); |
| 3339 | return std::string("\"").append(buf).append("\""); |
| 3340 | } |
| 3341 | |
| 3342 | void simplecpp::preprocess(simplecpp::TokenList &output, const simplecpp::TokenList &rawtokens, std::vector<std::string> &files, simplecpp::FileDataCache &cache, const simplecpp::DUI &dui, simplecpp::OutputList *outputList, std::list<simplecpp::MacroUsage> *macroUsage, std::list<simplecpp::IfCond> *ifCond) |
| 3343 | { |