Update License
[platform/framework/web/livebox.git] / src / util.c
1 /*
2  * Copyright 2013  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://floralicense.org
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <stdio.h>
18 #include <string.h>
19 #include <errno.h>
20 #include <sys/time.h>
21
22 #include <dlog.h>
23
24 #include "debug.h"
25 #include "util.h"
26
27 int errno;
28
29 int util_check_extension(const char *filename, const char *check_ptr)
30 {
31         int name_len;
32
33         name_len = strlen(filename);
34         while (--name_len >= 0 && *check_ptr) {
35                 if (filename[name_len] != *check_ptr)
36                         return -EINVAL;
37
38                 check_ptr ++;
39         }
40
41         return 0;
42 }
43
44 double util_get_timestamp(void)
45 {
46         struct timeval tv;
47
48         gettimeofday(&tv, NULL);
49
50         return (double)tv.tv_sec + (double)tv.tv_usec / 1000000.0f;
51 }
52
53 /* End of a file */