comparison: sources/version.cpp
sources/version.cpp
- changeset 5
- 146825d63b9a
- parent 4
- ec5387e121fa
- child 64
- 5e968dc8d552
equal
deleted
inserted
replaced
| 36 #include <stdio.h> |
36 #include <stdio.h> |
| 37 #include <string.h> |
37 #include <string.h> |
| 38 #include "version.h" |
38 #include "version.h" |
| 39 #include "hginfo.h" |
39 #include "hginfo.h" |
| 40 |
40 |
| |
41 // ------------------------------------------------------------------------------------------------- |
| |
42 // |
| 41 FUNCTION |
43 FUNCTION |
| 42 full_version_string() -> const char* |
44 full_version_string() -> const char* |
| 43 { |
45 { |
| 44 static char buffer[128] = {0}; |
46 static char buffer[128] = {0}; |
| 45 |
47 |
| 52 } |
54 } |
| 53 |
55 |
| 54 return buffer; |
56 return buffer; |
| 55 } |
57 } |
| 56 |
58 |
| |
59 // ------------------------------------------------------------------------------------------------- |
| |
60 // |
| 57 FUNCTION |
61 FUNCTION |
| 58 changeset_date_string() -> const char* |
62 changeset_date_string() -> const char* |
| 59 { |
63 { |
| 60 return HG_DATE_STRING; |
64 return HG_DATE_STRING; |
| 61 } |
65 } |