30f49e2046fdb724f143f43f34b0314f8223e558
[apps/livebox/livebox-service.git] / include / util.h
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 extern double util_timestamp(void);
18 extern const char *util_basename(const char *name);
19 extern unsigned long util_free_space(const char *path);
20 extern char *util_replace_string(const char *src, const char *pattern, const char *replace);
21 extern const char *util_uri_to_path(const char *uri);
22 extern int util_validate_livebox_package(const char *pkgname);
23 extern char *util_conf_get_libexec(const char *pkgname);
24 extern char *util_id_to_uri(const char *id);    /* For FILENAME id */
25
26 #define SCHEMA_FILE     "file://"
27 #define SCHEMA_PIXMAP   "pixmap://"
28 #define SCHEMA_SHM      "shm://"
29
30 /* End of a file */