17 lines
182 B
C++
17 lines
182 B
C++
|
#ifndef string_hh_INCLUDED
|
||
|
#define string_hh_INCLUDED
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace Kakoune
|
||
|
{
|
||
|
|
||
|
typedef char Character;
|
||
|
typedef std::string String;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif // string_hh_INCLUDED
|
||
|
|