| 116 | } |
| 117 | |
| 118 | int |
| 119 | SimulationInformation::end(void) |
| 120 | { |
| 121 | time_t timeT; |
| 122 | if (time(&timeT) != 0) { |
| 123 | #ifdef _WIN32 |
| 124 | const char *eTime = ctime(&timeT); |
| 125 | strcpy(endTime, eTime); |
| 126 | #else |
| 127 | ctime_r(&timeT, &endTime[0]); |
| 128 | #endif |
| 129 | } |
| 130 | |
| 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | int |
| 135 | SimulationInformation::setTitle(const char *name) |
no outgoing calls
no test coverage detected