cargf.c 90 B

123456
  1. #include "libm.h"
  2. float cargf(float complex z)
  3. {
  4. return atan2f(cimagf(z), crealf(z));
  5. }