Imported Upstream version 0.8.0.4
[psensor-pkg-ubuntu.git] / src / lib / measure.c
1 /*
2  * Copyright (C) 2010-2013 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <string.h>
22
23 #include "measure.h"
24
25 struct measure *measures_dbl_create(int size)
26 {
27         int i;
28         struct measure *result;
29
30         result = malloc(size * sizeof(struct measure));
31
32         for (i = 0; i < size; i++) {
33                 result[i].value = UNKNOWN_DBL_VALUE;
34                 timerclear(&result[i].time);
35         }
36
37         return result;
38 }
39
40 void measures_free(struct measure *measures)
41 {
42         free(measures);
43 }
44
45 void measure_copy(struct measure *src, struct measure *dst)
46 {
47         memcpy(dst, src, sizeof(struct measure));
48 }