gm2tools/m2color.c reformatted to use GNU coding standards.

Reformatted gm2tools/m2color.c to use GNU coding standards.

Signed-off-by: Gaius Mulley <gaius.mulley@southwales.ac.uk>
This commit is contained in:
Gaius Mulley 2022-05-18 16:15:44 +01:00
parent 4476710042
commit 31ab57c82f
2 changed files with 10 additions and 4 deletions

View File

@ -2,6 +2,8 @@
* gm2l.1: Corrected default implementation/program module
extension to .mod.
* m2color.c: Reformatted to use GNU coding standard
formatting.
2022-05-17 Gaius Mulley <gaius.mulley@southwales.ac.uk>

View File

@ -23,23 +23,27 @@ along with GNU Modula-2; see the file COPYING3. If not see
extern "C" {
const char *m2color_colorize_start (bool show_color, char *name, unsigned int name_len)
const char *
m2color_colorize_start (bool show_color, char *name, unsigned int name_len)
{
return "";
}
const char *m2color_colorize_stop (bool show_color)
const char *
m2color_colorize_stop (bool show_color)
{
return "";
}
void _M2_m2color_init ()
void
_M2_m2color_init ()
{
}
void _M2_m2color_finish ()
void
_M2_m2color_finish ()
{
}