C/Migemo 1.4
common.h
[詳解]
1// vim:set ts=8 sts=4 sw=4 tw=0 et:
2//
3// common.h - To inject shared code into all .c files, such as for debugging
4// purposes.
5
6#pragma once
7
8// Example for heap debugging on Windows. You can enable it by changing the '0'
9// below to '1'.
10#if 0
11# if defined(_WIN32) && defined(_DEBUG)
12# define _CRTDBG_MAP_ALLOC
13# include <crtdbg.h>
14# include <stdlib.h>
15# endif
16#endif