summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/log10/dlog10a.c
blob: 0eadbc52b430448874078a693422670c69e97d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
**  -*- C -*-
**
** dlog10a.c
** Made by  Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on  Thu Sep  6 16:23:09 2007 bruno
** Last update Mon Oct 22 09:52:35 2007 bruno
**
** Copyright INRIA 2007
*/

#include "log10.h"

void		dlog10a(double* in, int size, double* out) {
  int i = 0;
  for (i = 0 ; i < size ; ++i) {
    out[i] = dlog10s(in[i]);
  }
}