Commit 1799cb61 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: remove WILC_strlen function

Remove WILC_strlen function that is changed to strlen.
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ff96dfb5
...@@ -50,12 +50,3 @@ s32 WILC_strncmp(const char *pcStr1, const char *pcStr2, ...@@ -50,12 +50,3 @@ s32 WILC_strncmp(const char *pcStr1, const char *pcStr2,
return s32Result; return s32Result;
} }
/*!
* @author syounan
* @date 18 Aug 2010
* @version 1.0
*/
u32 WILC_strlen(const char *pcStr)
{
return (u32)strlen(pcStr);
}
...@@ -95,15 +95,5 @@ char *WILC_strncpy(char *pcTarget, const char *pcSource, ...@@ -95,15 +95,5 @@ char *WILC_strncpy(char *pcTarget, const char *pcSource,
s32 WILC_strncmp(const char *pcStr1, const char *pcStr2, s32 WILC_strncmp(const char *pcStr1, const char *pcStr2,
u32 u32Count); u32 u32Count);
/*!
* @brief gets the length of a string
* @param[in] pcStr the string
* @return the length
* @note this function repeats the functionality of standard strlen
* @author syounan
* @date 18 Aug 2010
* @version 1.0
*/
u32 WILC_strlen(const char *pcStr);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment