ReactOS 0.4.16-dev-2110-ge3521eb
libgen.h File Reference
#include <corecrt.h>
Include dependency graph for libgen.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

__cdecl __MINGW_NOTHROW charbasename (char *)
 
__cdecl __MINGW_NOTHROW chardirname (char *)
 

Function Documentation

◆ basename()

__cdecl __MINGW_NOTHROW char * basename ( char path)

Definition at line 110 of file util.c.

111{
112 char *base;
113
115 if (base)
116 return ++base;
117 return path;
118}
_ACRTIMP char *__cdecl strrchr(const char *, int)
Definition: string.c:3298
#define PATH_CHAR
Definition: rmkdir.c:17

◆ dirname()