home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume10 / complex-lib / cxconj.c < prev    next >
C/C++ Source or Header  |  1987-07-14  |  278b  |  22 lines

  1. /*
  2.     CxConj -- conjugate a complex
  3.  
  4.     CxConj( &c )    conjugates  c  and returns  &c
  5.  
  6.     last edit:    86/01/04    D A Gwyn
  7.  
  8.     SCCS ID:    @(#)cxconj.c    1.1
  9. */
  10.  
  11. #include    <complex.h>
  12.  
  13. complex *
  14. CxConj( cp )
  15.     register complex    *cp;
  16.     {
  17.     /* (real part unchanged) */
  18.     cp->im = -cp->im;
  19.  
  20.     return cp;
  21.     }
  22.