pipeplayer/dirname.h
2022-08-08 00:42:22 +00:00

8 lines
186 B
C

#ifndef __DIRNAME_H__
#define __DIRNAME_H__
/* Get directory from path
* Return length, store in buffer */
size_t dirname(const char *path, char **buffer);
#endif /* __DIRNAME_H__ */