mirror of
https://github.com/ziglang/zig.git
synced 2026-02-10 19:41:16 +00:00
8 lines
151 B
C
8 lines
151 B
C
#include "complex_impl.h"
|
|
|
|
float complex ctanf(float complex z)
|
|
{
|
|
z = ctanhf(CMPLXF(-cimagf(z), crealf(z)));
|
|
return CMPLXF(cimagf(z), -crealf(z));
|
|
}
|