14 lines
167 B
C++
14 lines
167 B
C++
|
#ifndef debug_hh_INCLUDED
|
||
|
#define debug_hh_INCLUDED
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace Kakoune
|
||
|
{
|
||
|
|
||
|
void write_debug(const std::string& str);
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // debug_hh_INCLUDED
|