mirror of
https://github.com/git/git.git
synced 2026-01-11 21:33:13 +09:00
Currently, get_uname_info() function provides the full OS information. In a following commit, we will need it to provide only the OS name. Let's extend it to accept a "full" flag that makes it switch between providing full OS information and providing only the OS name. We may need to refactor this function in the future if an `osVersion.format` is added. Mentored-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Usman Akinyemi <usmanakinyemi202@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
18 lines
480 B
C
18 lines
480 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
extern const char git_version_string[];
|
|
extern const char git_built_from_commit_string[];
|
|
|
|
const char *git_user_agent(void);
|
|
const char *git_user_agent_sanitized(void);
|
|
|
|
/*
|
|
Try to get information about the system using uname(2).
|
|
Return -1 and put an error message into 'buf' in case of uname()
|
|
error. Return 0 and put uname info into 'buf' otherwise.
|
|
*/
|
|
int get_uname_info(struct strbuf *buf, unsigned int full);
|
|
|
|
#endif /* VERSION_H */
|