|
1 | 1 | #ifndef __TIDY_PLATFORM_H__ |
2 | 2 | #define __TIDY_PLATFORM_H__ |
3 | 3 |
|
4 | | -/** @file tidyplatform.h - Platform specifics |
5 | | -
|
6 | | - (c) 1998-2016 (W3C) MIT, ERCIM, Keio University |
7 | | - See tidy.h for the copyright notice. |
8 | | - |
9 | | - This file is included by tidy.h, and need not |
10 | | - be included sepearately. It sets a number of |
11 | | - default defines, and a PLATFORM_NAME, and includes |
12 | | - the most common system headers. |
13 | | -
|
14 | | -*/ |
| 4 | +/**************************************************************************//** |
| 5 | + * @file |
| 6 | + * Platform specific definitions, specifics, and headers. This file is |
| 7 | + * included by `tidy.h` already, and need not be included separately. Among |
| 8 | + * other things, the PLATFORM_NAME is defined and the most common systems |
| 9 | + * headers are included. |
| 10 | + * |
| 11 | + * @note It should be largely unnecessary to modify this file unless adding |
| 12 | + * support for a completely new architecture. Most options defined in this |
| 13 | + * file specify defaults that can be overriden by the build system; for |
| 14 | + * example, passing -D flags to CMake. |
| 15 | + * |
| 16 | + * @author Charles Reitzel [creitzel@rcn.com] |
| 17 | + * @author HTACG, et al (consult git log) |
| 18 | + * |
| 19 | + * @copyright |
| 20 | + * Copyright (c) 1998-2017 World Wide Web Consortium (Massachusetts |
| 21 | + * Institute of Technology, European Research Consortium for Informatics |
| 22 | + * and Mathematics, Keio University). |
| 23 | + * @copyright |
| 24 | + * See tidy.h for license. |
| 25 | + * |
| 26 | + * @date Created 2001-05-20 by Charles Reitzel |
| 27 | + * @date Updated 2002-07-01 by Charles Reitzel |
| 28 | + * @date Further modifications: consult git log. |
| 29 | + ******************************************************************************/ |
15 | 30 |
|
16 | 31 | #ifdef __cplusplus |
17 | 32 | extern "C" { |
|
0 commit comments