[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[freetype2] parthw-cleaned 3482ccb 5/6: [gf] Convert block comments to `
From: |
Parth Wazurkar |
Subject: |
[freetype2] parthw-cleaned 3482ccb 5/6: [gf] Convert block comments to `light' style in gf files. |
Date: |
Tue, 26 Jun 2018 14:01:50 -0400 (EDT) |
branch: parthw-cleaned
commit 3482ccb14ff625f8e156f8a333697c116d5063fd
Author: Parth Wazurkar <address@hidden>
Commit: Parth Wazurkar <address@hidden>
[gf] Convert block comments to `light' style in gf files.
---
src/gf/gf.c | 32 ++++++++++++++--------------
src/gf/gf.h | 34 +++++++++++++++---------------
src/gf/gfdrivr.c | 44 +++++++++++++++++++-------------------
src/gf/gfdrivr.h | 32 ++++++++++++++--------------
src/gf/gferror.h | 44 +++++++++++++++++++-------------------
src/gf/gflib.c | 64 ++++++++++++++++++++++++++++----------------------------
6 files changed, 125 insertions(+), 125 deletions(-)
diff --git a/src/gf/gf.c b/src/gf/gf.c
index 543f21c..a41ec26 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 a5e1348..b88f730 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 c0f4274..772c2b6 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 365084e..07a7564 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 b77e899..f2df33e 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 60367c6..8f2838d 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>
@@ -26,21 +26,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);
@@ -141,11 +141,11 @@
- /*************************************************************************/
- /* */
- /* API. */
- /* */
- /*************************************************************************/
+ /**************************************************************************
+ *
+ * API.
+ *
+ */
FT_LOCAL_DEF( FT_Error )
gf_read_glyph(FT_FILE* fp, GF_BITMAP bm)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [freetype2] parthw-cleaned 3482ccb 5/6: [gf] Convert block comments to `light' style in gf files.,
Parth Wazurkar <=