diff options
author | Piotr Wilczek | 2013-01-27 22:59:24 +0000 |
---|---|---|
committer | Tom Rini | 2013-02-19 17:01:26 -0500 |
commit | 7df54d316e70e2d6ae080ef98aa9d2388bbb8af9 (patch) | |
tree | ef54472e87f03f989e5aa944f764736e3d68637b /include/exports.h | |
parent | 7b395232da84ae59bd32985bf944a0a9f417a543 (diff) |
vsprintf: add ustrtoll function
Add 'ustrtoull' function to convert size from string (ex: 1GiB)
to unsigned long long type
Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'include/exports.h')
-rw-r--r-- | include/exports.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exports.h b/include/exports.h index 6cf31aa5e79..41d5085e16c 100644 --- a/include/exports.h +++ b/include/exports.h @@ -24,6 +24,7 @@ int setenv (const char *varname, const char *varvalue); long simple_strtol(const char *cp,char **endp,unsigned int base); int strcmp(const char * cs,const char * ct); unsigned long ustrtoul(const char *cp, char **endp, unsigned int base); +unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base); #if defined(CONFIG_CMD_I2C) int i2c_write (uchar, uint, int , uchar* , int); int i2c_read (uchar, uint, int , uchar* , int); |