My slstatus configuration
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

hostname.c 252 B

12345678910111213141516
  1. /* See LICENSE file for copyright and license details. */
  2. #include <stdio.h>
  3. #include <unistd.h>
  4. #include "../util.h"
  5. const char *
  6. hostname(void)
  7. {
  8. if (gethostname(buf, sizeof(buf)) < 0) {
  9. warn("gethostbyname:");
  10. return NULL;
  11. }
  12. return buf;
  13. }