VSF Documented
kstrtox.h
Go to the documentation of this file.
1#ifndef __VSF_LINUX_KSTRTOX_H__
2#define __VSF_LINUX_KSTRTOX_H__
3
4#include <linux/types.h>
5
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10extern int kstrtou16(const char *s, unsigned int base, u16 *res);
11extern int kstrtos16(const char *s, unsigned int base, s16 *res);
12extern int kstrtou8(const char *s, unsigned int base, u8 *res);
13extern int kstrtos8(const char *s, unsigned int base, s8 *res);
14
15#ifdef __cplusplus
16}
17#endif
18
19#endif
int kstrtou16(const char *s, unsigned int base, u16 *res)
Definition vsf_linux_core.c:779
int kstrtos16(const char *s, unsigned int base, s16 *res)
Definition vsf_linux_core.c:789
int kstrtos8(const char *s, unsigned int base, s8 *res)
Definition vsf_linux_core.c:809
int kstrtou8(const char *s, unsigned int base, u8 *res)
Definition vsf_linux_core.c:799
__u8 u8
Definition types.h:69
__s16 s16
Definition types.h:72
__u16 u16
Definition types.h:71
__s8 s8
Definition types.h:70