File: hostname.c

package info (click to toggle)
suckless-tools 48-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 948 kB
  • sloc: ansic: 5,415; makefile: 490; sh: 80
file content (17 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}