diff options
| author | Wolfgang Denk <wd@denx.de> | 2012-02-11 22:14:56 +0100 |
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2012-02-11 22:14:56 +0100 |
| commit | f57a94c2b566a647003c7885a450ba0f28dbff34 (patch) | |
| tree | 4ed0e63aaaad760e9494c1cb83e405e2ac7c07ed /include/linux/string.h | |
| parent | 6e4c1da86e77576476b566977305ddd82f9e6b8c (diff) | |
| parent | 0990dc61787ec03b0ae7579a51e5eb661112f13f (diff) | |
| download | olio-uboot-2014.01-f57a94c2b566a647003c7885a450ba0f28dbff34.tar.xz olio-uboot-2014.01-f57a94c2b566a647003c7885a450ba0f28dbff34.zip | |
Merge branch 'master' of /home/wd/git/u-boot/custodians
* 'master' of /home/wd/git/u-boot/custodians:
nand/fsl_elbc: Convert to self-init
nand: Introduce CONFIG_SYS_NAND_SELF_INIT
nand_spl: store ecc data on the stack
mtd/nand: Add ONFI support for FSL NAND controller
nand: make 1-bit software ECC configurable
nand: Sanitize ONFI strings.
nand: Merge changes to BBT from Linux nand driver
nand: Merge changes from Linux nand driver
nand: cleanup whitespace
nand: Add more NAND types from Linux nand driver
nand: Merge BCH code from Linux nand driver
NAND: Remove additional (CONFIG_SYS)_NAND_MAX_CHIPS
NAND: remove NAND_MAX_CHIPS definitions
nand_spl_simple: store ecc data on the stack
Diffstat (limited to 'include/linux/string.h')
| -rw-r--r-- | include/linux/string.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/string.h b/include/linux/string.h index 62390399b..9a8cbc24c 100644 --- a/include/linux/string.h +++ b/include/linux/string.h @@ -47,6 +47,10 @@ extern char * strchr(const char *,int); #ifndef __HAVE_ARCH_STRRCHR extern char * strrchr(const char *,int); #endif +extern char * skip_spaces(const char *); + +extern char *strim(char *); + #ifndef __HAVE_ARCH_STRSTR extern char * strstr(const char *,const char *); #endif |