mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-14 15:55:30 +00:00
ee8df0fe52
Add --heading option to place contact before table-of-contents and intro. Tweak the mxmldoc test suite. Use " instead of ' for attribute values. Quote titles, etc. as needed. Move TOC and HTML header generation to separate functions in preparation for frame support.
9 lines
236 B
C++
9 lines
236 B
C++
typedef enum foo_enum_e /* Sample enumeration type */
|
|
{
|
|
FOO_ONE, /* One fish */
|
|
FOO_TWO, /* Two fish */
|
|
FOO_RED, /* Red fish */
|
|
FOO_BLUE, /* Blue fish */
|
|
FOO_PRIVATE /* Private fish @private@ */
|
|
} foo_enum_t;
|