forked from nuttx/nuttx-update
C library: Add support for rindex().
This commit is contained in:
parent
2cfbf9c8d8
commit
6d1f3da289
1 changed files with 2 additions and 0 deletions
|
@ -55,6 +55,8 @@
|
|||
|
||||
#define bcopy(b1,b2,len) (void)memmove(b2,b1,len)
|
||||
|
||||
#define rindex(s,c) strrchr(s,c)
|
||||
|
||||
/****************************************************************************
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
|
Loading…
Reference in a new issue