home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / lang / c / 13237 < prev    next >
Encoding:
Text File  |  1992-09-04  |  809 b   |  27 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!gatech!ukma!daffodil!wyvern!alpha
  3. From: alpha@wyvern.twuug.com (Joe Wright)
  4. Subject: Re: HELP !! Converting non printable characters to HEX
  5. Message-ID: <1992Sep3.134827.18049@wyvern.twuug.com>
  6. Organization: Box 68621, Virginia Beach, 23455
  7. X-Newsreader: Tin 1.1 PL4
  8. References: <1992Sep1.152149.1905@cs.uow.edu.au>
  9. Date: Thu, 3 Sep 1992 13:48:27 GMT
  10. Lines: 15
  11.  
  12. u8705957@cs.uow.edu.au (Hitesh Sanghvi) writes:
  13. : Hi there;
  14. :     Any suggestion or 'c' code on how to convert non printable 
  15. : characters to hex.
  16. : My function works for printable ascii characters but does not work
  17. : on non printable characters.
  18. ctoh(c, h) char *c, *h; {
  19.     static char a[] = "0123456789ABCDEF";
  20.     *(h+1) = a[*c & 017];
  21.     *h = a[*c >> 4 & 017];
  22. }
  23.  
  24. -- 
  25. Joe Wright  alpha@wyvern.twuug.com    
  26.