Jeff King | 816fb46 | 2012-06-02 14:51:42 -0400 | [diff] [blame] | 1 | #ifndef VERSION_H |
| 2 | #define VERSION_H |
| 3 | |
| 4 | extern const char git_version_string[]; |
Johannes Schindelin | ed32b78 | 2017-12-15 00:34:38 +0100 | [diff] [blame] | 5 | extern const char git_built_from_commit_string[]; |
Jeff King | 816fb46 | 2012-06-02 14:51:42 -0400 | [diff] [blame] | 6 | |
Jeff King | 42dcbb7 | 2012-06-02 15:01:12 -0400 | [diff] [blame] | 7 | const char *git_user_agent(void); |
Jeff King | ff5effd | 2012-08-03 12:19:16 -0400 | [diff] [blame] | 8 | const char *git_user_agent_sanitized(void); |
Jeff King | 42dcbb7 | 2012-06-02 15:01:12 -0400 | [diff] [blame] | 9 | |
Jeff King | 816fb46 | 2012-06-02 14:51:42 -0400 | [diff] [blame] | 10 | #endif /* VERSION_H */ |