mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-18 04:36:30 +01:00
12 lines
216 B
C
12 lines
216 B
C
|
|
#ifndef __stupid_dirname_h__
|
||
|
|
#define __stupid_dirname_h__
|
||
|
|
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace PBD {
|
||
|
|
extern char *dirname (const char *);
|
||
|
|
extern std::string dirname (const std::string);
|
||
|
|
}
|
||
|
|
#endif // __stupid_dirname_h__
|