forked from KolibriOS/kolibrios
ddk: update
git-svn-id: svn://kolibrios.org@4065 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
@@ -142,4 +142,15 @@ static inline bool strstarts(const char *str, const char *prefix)
|
||||
|
||||
extern size_t memweight(const void *ptr, size_t bytes);
|
||||
|
||||
/**
|
||||
* kbasename - return the last part of a pathname.
|
||||
*
|
||||
* @path: path to extract the filename from.
|
||||
*/
|
||||
static inline const char *kbasename(const char *path)
|
||||
{
|
||||
const char *tail = strrchr(path, '/');
|
||||
return tail ? tail + 1 : path;
|
||||
}
|
||||
|
||||
#endif /* _LINUX_STRING_H_ */
|
||||
|
Reference in New Issue
Block a user