diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-18 12:53:45 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-18 12:53:45 -0500 |
commit | d1f0177d8d525eac0e0795d67467b09b57dbe7b0 (patch) | |
tree | 61f8253913c50d0fffc3f36d035f5b27781caeef /components/hostname.c |
Diffstat (limited to 'components/hostname.c')
-rwxr-xr-x | components/hostname.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/components/hostname.c b/components/hostname.c new file mode 100755 index 0000000..dab8b63 --- /dev/null +++ b/components/hostname.c @@ -0,0 +1,17 @@ +/* See LICENSE file for copyright and license details. */ +#include <stdio.h> +#include <unistd.h> + +#include "../slstatus.h" +#include "../util.h" + +const char * +hostname(const char *unused) +{ + if (gethostname(buf, sizeof(buf)) < 0) { + warn("gethostbyname:"); + return NULL; + } + + return buf; +} |