home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / lang / c / 11585 < prev    next >
Encoding:
Text File  |  1992-07-25  |  690 b   |  30 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!gatech!concert!mercury!newton
  3. From: newton@mercury.ncat.edu (Cynthia D. Newton)
  4. Subject: gethostnamae(), novice question...
  5. Message-ID: <1992Jul25.070709.7498@mercury.ncat.edu>
  6. Organization: North Carolina A&T State University
  7. Date: Sat, 25 Jul 1992 07:07:09 GMT
  8. Lines: 20
  9.  
  10.  
  11. #include <stdio.h>
  12.  
  13. main()    {
  14.     char *host[64];
  15.     gethostname(host, sizeof host);
  16.     printf("%s\n",host);
  17. }
  18.  
  19. Hi:
  20.  
  21. This program gets the hostname as 'mercury.ncat.edu'. What's the decent
  22. way/s to strip off the .ncat.edu part? I know how to do that by sed. The
  23. solution should be general, I mean should be applicable to any hostname with
  24. domain name in it.
  25.  
  26. Thanks.
  27.  
  28. --
  29. C Newton
  30.