summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParth Wazurkar <parthwazurkar@gmail.com>2018-06-07 12:34:28 +0530
committerParth Wazurkar <parthwazurkar@gmail.com>2018-07-03 01:57:09 +0530
commit3ff144c5d9fda9b38c825ed601ed48e9acf1fd80 (patch)
tree1b532a688833ef4b74ed7b7a2b0618c65651f0b7
parent781a67cb82383d6de94ef45cde1bb8caf1ca4a97 (diff)
downloadfreetype2-3ff144c5d9fda9b38c825ed601ed48e9acf1fd80.tar.gz
[gf] Convert block comments to `light' style in gf files.
-rw-r--r--src/gf/gf.c32
-rw-r--r--src/gf/gf.h34
-rw-r--r--src/gf/gfdrivr.c44
-rw-r--r--src/gf/gfdrivr.h32
-rw-r--r--src/gf/gferror.h44
-rw-r--r--src/gf/gflib.c64
6 files changed, 125 insertions, 125 deletions
diff --git a/src/gf/gf.c b/src/gf/gf.c
index 543f21ce4..a41ec26c4 100644
--- a/src/gf/gf.c
+++ b/src/gf/gf.c
@@ -1,19 +1,19 @@
-/***************************************************************************/
-/* */
-/* gf.c */
-/* */
-/* FreeType font driver for TeX's GF FONT files */
-/* */
-/* Copyright 1996-2018 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
+/****************************************************************************
+ *
+ * gf.c
+ *
+ * FreeType font driver for TeX's GF FONT files
+ *
+ * Copyright 1996-2018 by
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
+ *
+ * This file is part of the FreeType project, and may only be used,
+ * modified, and distributed under the terms of the FreeType project
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
+ * this file you indicate that you have read the license and
+ * understand and accept it fully.
+ *
+ */
#define FT_MAKE_OPTION_SINGLE_OBJECT
diff --git a/src/gf/gf.h b/src/gf/gf.h
index a5e134829..b88f73031 100644
--- a/src/gf/gf.h
+++ b/src/gf/gf.h
@@ -1,19 +1,19 @@
-/***************************************************************************/
-/* */
-/* gf.h */
-/* */
-/* FreeType font driver for TeX's GF FONT files */
-/* */
-/* Copyright 1996-2018 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
+/****************************************************************************
+ *
+ * gf.h
+ *
+ * FreeType font driver for TeX's GF FONT files
+ *
+ * Copyright 1996-2018 by
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
+ *
+ * This file is part of the FreeType project, and may only be used,
+ * modified, and distributed under the terms of the FreeType project
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
+ * this file you indicate that you have read the license and
+ * understand and accept it fully.
+ *
+ */
#ifndef GF_H_
@@ -50,7 +50,7 @@ FT_BEGIN_HEADER
#define GF_SKIP2 72
#define GF_SKIP3 73
#define GF_NEW_ROW_0 74
-#define GF_NEW_ROW_164 238
+#define GF_NEW_ROW_164 238
#define GF_XXX1 239
#define GF_XXX2 240
#define GF_XXX3 241
diff --git a/src/gf/gfdrivr.c b/src/gf/gfdrivr.c
index 1d6c4ef45..30ba893c6 100644
--- a/src/gf/gfdrivr.c
+++ b/src/gf/gfdrivr.c
@@ -1,19 +1,19 @@
-/***************************************************************************/
-/* */
-/* gfdrivr.h */
-/* */
-/* FreeType font driver for TeX's GF FONT files */
-/* */
-/* Copyright 1996-2018 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
+/****************************************************************************
+ *
+ * gfdrivr.h
+ *
+ * FreeType font driver for TeX's GF FONT files
+ *
+ * Copyright 1996-2018 by
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
+ *
+ * This file is part of the FreeType project, and may only be used,
+ * modified, and distributed under the terms of the FreeType project
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
+ * this file you indicate that you have read the license and
+ * understand and accept it fully.
+ *
+ */
#include <ft2build.h>
@@ -27,12 +27,12 @@
#include "gferror.h"
- /*************************************************************************/
- /* */
- /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
- /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
- /* messages during execution. */
- /* */
+ /**************************************************************************
+ *
+ * The macro FT_COMPONENT is used in trace mode. It is an implicit
+ * parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log
+ * messages during execution.
+ */
#undef FT_COMPONENT
#define FT_COMPONENT trace_gfdriver
diff --git a/src/gf/gfdrivr.h b/src/gf/gfdrivr.h
index 9d8afb788..20058204e 100644
--- a/src/gf/gfdrivr.h
+++ b/src/gf/gfdrivr.h
@@ -1,19 +1,19 @@
-/***************************************************************************/
-/* */
-/* gfdrivr.h */
-/* */
-/* FreeType font driver for TeX's GF FONT files */
-/* */
-/* Copyright 1996-2018 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
+/****************************************************************************
+ *
+ * gfdrivr.h
+ *
+ * FreeType font driver for TeX's GF FONT files
+ *
+ * Copyright 1996-2018 by
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
+ *
+ * This file is part of the FreeType project, and may only be used,
+ * modified, and distributed under the terms of the FreeType project
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
+ * this file you indicate that you have read the license and
+ * understand and accept it fully.
+ *
+ */
#ifndef GFDRIVR_H_
diff --git a/src/gf/gferror.h b/src/gf/gferror.h
index b77e899d1..f2df33e93 100644
--- a/src/gf/gferror.h
+++ b/src/gf/gferror.h
@@ -1,25 +1,25 @@
-/***************************************************************************/
-/* */
-/* gferror.h */
-/* */
-/* FreeType font driver for TeX's GF FONT files */
-/* */
-/* Copyright 1996-2018 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
-
- /*************************************************************************/
- /* */
- /* This file is used to define the GF error enumeration constants. */
- /* */
- /*************************************************************************/
+/****************************************************************************
+ *
+ * gferror.h
+ *
+ * FreeType font driver for TeX's GF FONT files
+ *
+ * Copyright 1996-2018 by
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
+ *
+ * This file is part of the FreeType project, and may only be used,
+ * modified, and distributed under the terms of the FreeType project
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
+ * this file you indicate that you have read the license and
+ * understand and accept it fully.
+ *
+ */
+
+ /**************************************************************************
+ *
+ * This file is used to define the GF error enumeration constants.
+ *
+ */
#ifndef GFERROR_H_
#define GFERROR_H_
diff --git a/src/gf/gflib.c b/src/gf/gflib.c
index bcbf308e9..05bede4a5 100644
--- a/src/gf/gflib.c
+++ b/src/gf/gflib.c
@@ -1,19 +1,19 @@
-/***************************************************************************/
-/* */
-/* gfdrivr.h */
-/* */
-/* FreeType font driver for TeX's GF FONT files */
-/* */
-/* Copyright 1996-2018 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
+/****************************************************************************
+ *
+ * gfdrivr.h
+ *
+ * FreeType font driver for TeX's GF FONT files
+ *
+ * Copyright 1996-2018 by
+ * David Turner, Robert Wilhelm, and Werner Lemberg.
+ *
+ * This file is part of the FreeType project, and may only be used,
+ * modified, and distributed under the terms of the FreeType project
+ * license, LICENSE.TXT. By continuing to use, modify, or distribute
+ * this file you indicate that you have read the license and
+ * understand and accept it fully.
+ *
+ */
#include <ft2build.h>
@@ -27,21 +27,21 @@
#include "gferror.h"
- /*************************************************************************/
- /* */
- /* The macro FT_COMPONENT is used in trace mode. It is an implicit */
- /* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log */
- /* messages during execution. */
- /* */
+ /**************************************************************************
+ *
+ * The macro FT_COMPONENT is used in trace mode. It is an implicit
+ * parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log
+ * messages during execution.
+ */
#undef FT_COMPONENT
#define FT_COMPONENT trace_gflib
- /*************************************************************************/
- /* */
- /* GF font utility functions. */
- /* */
- /*************************************************************************/
+ /**************************************************************************
+ *
+ * GF font utility functions.
+ *
+ */
long gf_read_intn(FILE*,int);
unsigned long gf_read_uintn(FILE*,int);
@@ -142,11 +142,11 @@
- /*************************************************************************/
- /* */
- /* API. */
- /* */
- /*************************************************************************/
+ /**************************************************************************
+ *
+ * API.
+ *
+ */
FT_LOCAL_DEF( FT_Error )
gf_read_glyph(FT_FILE* fp, GF_BITMAP bm)