view dmd/Escape.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children 766e6dc390e1
line wrap: on
line source

module dmd.Escape;

struct Escape
{
    const(char)* strings[256];

    static const(char)* escapeChar(uint c)
	{
		assert(false);
	}
}