configure.h

来自「利用C语言实现的人工智能系统」· C头文件 代码 · 共 30 行

H
30
字号
/*
*	ARTIFICIAL INTELLIGENCE SYSTEM
*
*	Copyright (C) 2007-Present Intelligence Realm Inc. All rights reserved.
*
*	See LICENSE.TXT document for licensing information.
*/

#ifndef HAVE_CONFIGURE_H
#define HAVE_CONFIGURE_H

/*	operating system platforms */
#define PLATFORM_UNIX		0
/*
#define PLATFORM_WINDOWS	1
#define PLATFORM_MAC		2
*/

#define PATH_DELIMITER			"/"

#define TRUE					1
#define FALSE					0

#define SUCCESS					0			
#define FAILURE					1

#define UUID_DATA_LENGTH		32			/* uuid */

#endif	/* HAVE_CONFIGURE_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?