home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / sys / sgi / 16764 < prev    next >
Encoding:
Internet Message Format  |  1992-11-23  |  1.3 KB

  1. Path: sparky!uunet!cs.utexas.edu!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!spool.mu.edu!olivea!sgigate!odin!news
  2. From: ib@ivan.asd.sgi.com (Ivan Bach)
  3. Newsgroups: comp.sys.sgi
  4. Subject: Re: CDAUDIO.H
  5. Keywords: uchar, unsigned character, cdaudio.h
  6. Message-ID: <1992Nov23.161714.2449@odin.corp.sgi.com>
  7. Date: 23 Nov 92 16:17:14 GMT
  8. References: <sljeggg@zuni.esd.sgi.com>
  9. Sender: news@odin.corp.sgi.com (Net News)
  10. Organization: Silicon Graphics, Inc., Mountain View, CA
  11. Lines: 17
  12. Nntp-Posting-Host: ivan.asd.sgi.com
  13.  
  14. In <1992Nov21.162022.13540@discus.technion.ac.il> ori@marvin.technion.ac.il 
  15. (Ori Degani) writes:
  16. > Can anyone tell me what the type  unchar  means?
  17. > It shows up in /usr/include/{cdaudio dataudio}.h
  18. As Dave Olson posted, 'uchar' stands for 'unsigned char.'
  19.  
  20. One C compiler (cc) option I find very useful is the option -P:
  21.  
  22.     "Run only the C macro preprocessor and put the result for each
  23.     source file (by suffix convention, i.e., '.c' and '.s') in a
  24.     corresponding `.i' file. The `.i' file has no `#' lines in it."
  25.  
  26. If you look at a .i file, you can see where things are defined, what was
  27. included in your program, and how your code was preprocessed, i.e., you can 
  28. see the preprocessed code that is used as input to a C compiler.
  29.  
  30. Ivan Bach, ib@sgi.com
  31.