downstream: cosmetic changes (tabulation etc)
[profile/ivi/weston-ivi-shell.git] / shared / str-util.h
1 /*
2  * Copyright © 2014 Intel Corporation.
3  *
4  * Contact: Imran Zaman <imran.zaman@linux.intel.com>
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and
7  * its documentation for any purpose is hereby granted without fee, provided
8  * that the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of the copyright holders not be used in
11  * advertising or publicity pertaining to distribution of the software
12  * without specific, written prior permission.  The copyright holders make
13  * no representations about the suitability of this software for any
14  * purpose.  It is provided "as is" without express or implied warranty.
15  *
16  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
17  * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
18  * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
19  * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
20  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
21  * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
22  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23  */
24
25 #ifndef WESTON_STR_UTIL_H
26 #define WESTON_STR_UTIL_H
27
28 #include <stdbool.h>
29
30 #ifdef  __cplusplus
31 extern "C" {
32 #endif
33
34 bool weston_strtoi(const char *str, char **endptr, int base, int *val);
35 bool weston_strtol(const char *str, char **endptr, int base, long *val);
36 bool weston_strtoui(const char *str, char **endptr, int base, unsigned int *val);
37 bool weston_strtoul(const char *str, char **endptr, int base, unsigned long *val);
38
39 #ifdef  __cplusplus
40 }
41 #endif
42
43 #endif /* WESTON_STR_UTIL_H */