From 57f281ebed3ffdaaccf39f2848e365c2b6f56443 Mon Sep 17 00:00:00 2001 From: enge Date: Tue, 30 Aug 2011 13:10:38 +0000 Subject: sin_cos.c: split out sin.c and cos.c to follow gnu coding standards: one external function per file get.c: renamed to get_x.c get_x.c, set_x.c, set_x_x.c contain several external functions; changing this is maybe exaggerated git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/trunk@1038 211d60ee-9f03-0410-a15a-8952a2c7a4e4 --- src/cos.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/cos.c (limited to 'src/cos.c') diff --git a/src/cos.c b/src/cos.c new file mode 100644 index 0000000..3810f3e --- /dev/null +++ b/src/cos.c @@ -0,0 +1,27 @@ +/* mpc_cos -- cosine of a complex number. + +Copyright (C) 2010, 2011 INRIA + +This file is part of GNU MPC. + +GNU MPC is free software; you can redistribute it and/or modify it under +the terms of the GNU Lesser General Public License as published by the +Free Software Foundation; either version 3 of the License, or (at your +option) any later version. + +GNU MPC is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for +more details. + +You should have received a copy of the GNU Lesser General Public License +along with this program. If not, see http://www.gnu.org/licenses/ . +*/ + +#include "mpc-impl.h" + +int +mpc_cos (mpc_ptr rop, mpc_srcptr op, mpc_rnd_t rnd) +{ + return MPC_INEX2 (mpc_sin_cos (NULL, rop, op, 0, rnd)); +} -- cgit v1.2.1