is there any constant or #pragma to get the time and date, when the programm was beeing compiled to get a kind of an automatic version-info ?
+2
A:
__DATE__
and __TIME__
are predefined macros that will expand to the current date, and time, respectively.
Joshua Weinberg
2010-08-06 07:01:37
thank you, works fine. further information, if anybody reads this later: it returns a c-string, so use %s, %@ doesnt work as it is no object.
nico
2010-08-06 07:45:01