|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | 03-May-2022 | - |
| config/ | H | 26-Nov-2008 | - | 11,358 | 9,049 |
| cpp-test/ | H | 03-Mar-2008 | - | 18,960 | 16,512 |
| doc/ | H | 03-May-2022 | - | 81 | 76 |
| doc-jp/ | H | 03-May-2022 | - | 30 | 28 |
| noconfig/ | H | 24-Nov-2008 | - | 2,700 | 2,373 |
| src/ | H | 03-May-2022 | - | 19,614 | 14,849 |
| test-c/ | H | 03-Mar-2008 | - | 5,798 | 3,701 |
| test-l/ | H | 22-May-2007 | - | 11,575 | 11,214 |
| test-t/ | H | 27-Nov-2008 | - | 11,166 | 9,484 |
| tests/ | H | 29-Nov-2008 | - | 541 | 451 |
| tool/ | H | 03-May-2022 | - | 801 | 633 |
| ChangeLog | H A D | 29-Nov-2008 | 17.8 KiB | 326 | 316 |
| ChangeLog.old | H A D | 06-Aug-2006 | 17.3 KiB | 352 | 339 |
| INSTALL | H A D | 23-Nov-2008 | 23.9 KiB | 542 | 411 |
| LICENSE | H A D | 11-Jan-2008 | 1.4 KiB | 30 | 28 |
| Makefile.am | H A D | 05-May-2008 | 1.3 KiB | 39 | 31 |
| Makefile.in | H A D | 26-Nov-2008 | 22.1 KiB | 710 | 630 |
| NEWS | H A D | 26-Nov-2008 | 3.8 KiB | 121 | 75 |
| README | H A D | 12-Mar-2007 | 2.2 KiB | 54 | 41 |
| aclocal.m4 | H A D | 26-Nov-2008 | 245.2 KiB | 6,965 | 6,241 |
| configure | H A D | 26-Nov-2008 | 726.8 KiB | 23,148 | 18,404 |
| configure.ac | H A D | 26-Nov-2008 | 25.5 KiB | 779 | 696 |
| mcpp-gcc.1 | H A D | 03-Mar-2008 | 5 KiB | 159 | 158 |
| mcpp.1 | H A D | 03-Mar-2008 | 4 KiB | 121 | 120 |
README
1<< What is MCPP >>
2
3MCPP is a C/C++ preprocessor with the following features:
4
5 1. Implements all of C90, C99 and C++98 features. It has the highest
6 conformance.
7 2. Accompanies a validation suite to test the C/C++ preprocessors
8 comprehensively. When it is applied to the existing preprocessors,
9 MCPP shows outstanding result.
10 3. Has a variety of accurate diagnostic messages. This allows
11 examination of most preprocessing problems of source, like potential
12 bugs or portability problems.
13 4. Has various #pragma directives to output debug information.
14 5. Supports the various encodings of multi-byte characters for Japan,
15 China, Taiwan and Korea.
16 6. Highly portable. Supports many compiler systems on UNIX-like
17 systems and Windows. It can replace resident preprocessor of the
18 compiler system. It can also behave independently from any compiler
19 systems. Moreover, it can be built as a subroutine from any other
20 main program, too.
21 7. Preprocessors of various behavior specifications can be generated
22 from the source.
23 8. Is an open source software released under BSD-style-license.
24 9. Full documentations in Japanese and English are attached.
25
26MCPP is probably the best C preprocessor in the world.
27
28MCPP was selected as one of the "Exploratory Software Projects" of the
29Information-technology Promotion Agency (IPA), Japan, in year 2002 and
302003. With its achievements, the author was evaluated as one of the
31highest rank programmers.
32
33The sources and documents of MCPP are found at:
34
35 http://mcpp.sourceforge.net/
36
37Please read mcpp-summary.pdf for the overview of MCPP and Validation
38Suite.
39
40Please read INSTALL (INSTALL-jp) for how to install MCPP on your system
41from the source. Refer to the above web page for installation of the
42binary packages of MCPP.
43
44All the files except mcpp-summary.pdf are normal text files. In the
45.tar.gz file, newline of the text files are [LF], and encoding of
46INSTALL-jp is EUC-JP. In the .zip file, newline of the text files are
47[CR][LF], and encoding of INSTALL-jp is shift-JIS.
48
49I would like to hear from many C programmers for reviews, comments and
50the interest to participate in development.
51
52Kiyoshi Matsui <kmatsui@t3.rim.or.jp>
53
54