summaryrefslogtreecommitdiff
path: root/charspace
diff options
context:
space:
mode:
Diffstat (limited to 'charspace')
-rw-r--r--charspace/char.c2
-rw-r--r--charspace/char.h4
-rw-r--r--charspace/cmi.h2
-rw-r--r--charspace/cmi.y2
-rw-r--r--charspace/input-cmi.c2
-rw-r--r--charspace/input-cmi.h2
-rw-r--r--charspace/kern.c2
-rw-r--r--charspace/kern.h2
-rw-r--r--charspace/main.c2
-rw-r--r--charspace/main.h2
-rw-r--r--charspace/old-output.c2
-rw-r--r--charspace/output.c2
-rw-r--r--charspace/output.h2
-rw-r--r--charspace/realstrval.h2
-rw-r--r--charspace/symtab.c5
-rw-r--r--charspace/symtab.h2
-rw-r--r--charspace/version.c2
17 files changed, 37 insertions, 2 deletions
diff --git a/charspace/char.c b/charspace/char.c
index 0130f6a..651ffd9 100644
--- a/charspace/char.c
+++ b/charspace/char.c
@@ -1,3 +1,4 @@
+/*
# char.c: functions to muck with `char_type's.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#include "config.h"
diff --git a/charspace/char.h b/charspace/char.h
index 135d8c6..3809b6b 100644
--- a/charspace/char.h
+++ b/charspace/char.h
@@ -1,3 +1,4 @@
+/*
# char.h: the definition of `char_type'.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#ifndef CHAR_H
#define CHAR_H
@@ -39,7 +41,7 @@ typedef struct
#define SB_VALUE(sb) ((sb).value)
#define SB_REAL(sb) ((sb).value.real_val)
#define SB_STRING(sb) ((sb).value.string_val)
-
+
/* The information about each character in which we're interested. */
typedef struct
{
diff --git a/charspace/cmi.h b/charspace/cmi.h
index 60541e9..a48a6c3 100644
--- a/charspace/cmi.h
+++ b/charspace/cmi.h
@@ -1,3 +1,4 @@
+/*
# A Bison parser, made by GNU Bison 2.3.
# Skeleton interface for Bison's Yacc-like parsers in C
#
@@ -17,6 +18,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
diff --git a/charspace/cmi.y b/charspace/cmi.y
index 28e3827..c67a515 100644
--- a/charspace/cmi.y
+++ b/charspace/cmi.y
@@ -1,3 +1,4 @@
+/*
# cmi.y: parse a character metric information file, entering what we
# find into the symbol table.
#
@@ -16,6 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#include "config.h"
#include <kpathsea/c-ctype.h>
diff --git a/charspace/input-cmi.c b/charspace/input-cmi.c
index 25f1e39..6747821 100644
--- a/charspace/input-cmi.c
+++ b/charspace/input-cmi.c
@@ -1,3 +1,4 @@
+/*
# input-cmi.c: routines to control the CMI parsing.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#include "config.h"
#include "libfile.h"
diff --git a/charspace/input-cmi.h b/charspace/input-cmi.h
index e844807..2c92064 100644
--- a/charspace/input-cmi.h
+++ b/charspace/input-cmi.h
@@ -1,3 +1,4 @@
+/*
# input-cmi.h: declarations for top-level CMI reading.
#
# Copyright (C) 1992, 1993, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#ifndef INPUT_CMI_H
#define INPUT_CMI_H
diff --git a/charspace/kern.c b/charspace/kern.c
index c8eb2f8..4b4513a 100644
--- a/charspace/kern.c
+++ b/charspace/kern.c
@@ -1,3 +1,4 @@
+/*
# kern.c: kerns in the CMI file.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#include "config.h"
#include "kern.h"
diff --git a/charspace/kern.h b/charspace/kern.h
index 853da30..9c049fe 100644
--- a/charspace/kern.h
+++ b/charspace/kern.h
@@ -1,3 +1,4 @@
+/*
# kern.h: handle kerns in the CMI file.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#ifndef KERN_H
#define KERN_H
diff --git a/charspace/main.c b/charspace/main.c
index 7e70f48..f438857 100644
--- a/charspace/main.c
+++ b/charspace/main.c
@@ -1,3 +1,4 @@
+/*
# charspace -- find intercharacter spacing based on user information.
#
# Copyright (C) 1992, 2004, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#include "config.h"
diff --git a/charspace/main.h b/charspace/main.h
index 3db93d8..9a5784d 100644
--- a/charspace/main.h
+++ b/charspace/main.h
@@ -1,3 +1,4 @@
+/*
# main.h: global variable declarations.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#ifndef MAIN_H
#define MAIN_H
diff --git a/charspace/old-output.c b/charspace/old-output.c
index 9c0d744..ee827bf 100644
--- a/charspace/old-output.c
+++ b/charspace/old-output.c
@@ -1,3 +1,4 @@
+/*
# output.c: output
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#include "config.h"
diff --git a/charspace/output.c b/charspace/output.c
index 45b28e6..331c17d 100644
--- a/charspace/output.c
+++ b/charspace/output.c
@@ -1,3 +1,4 @@
+/*
# output.c: use the `char_type's' information to output a new font.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#include "config.h"
diff --git a/charspace/output.h b/charspace/output.h
index 0dad348..c262566 100644
--- a/charspace/output.h
+++ b/charspace/output.h
@@ -1,3 +1,4 @@
+/*
# output.h: declarations for outputting the newly spaced font.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#ifndef OUTPUT_H
#define OUTPUT_H
diff --git a/charspace/realstrval.h b/charspace/realstrval.h
index 9a956e1..377e094 100644
--- a/charspace/realstrval.h
+++ b/charspace/realstrval.h
@@ -1,3 +1,4 @@
+/*
# realstrval.h: types common to `char.h' and `symtab.h'.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#ifndef REALSTRVAL_H
#define REALSTRVAL_H
diff --git a/charspace/symtab.c b/charspace/symtab.c
index b7739fa..5955124 100644
--- a/charspace/symtab.c
+++ b/charspace/symtab.c
@@ -1,3 +1,4 @@
+/*
# symtab.c: create and update a symbol table.
#
# Copyright (C) 1992, 2011 Free Software Foundation, Inc.
@@ -15,14 +16,16 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
-
+/*
# We use a simple linear representation, since there will be a few hundred
# entries at the very most.
#
# The numbers which get stored in the symbol table should all be in
# pixels. That's what the rest of the program expects. (Unfortunately
# there's no way to check this at the time of definition.)
+*/
#include "config.h"
diff --git a/charspace/symtab.h b/charspace/symtab.h
index 813088d..ffcbb24 100644
--- a/charspace/symtab.h
+++ b/charspace/symtab.h
@@ -1,3 +1,4 @@
+/*
# symtab.h: declarations for our symbol table manipulations.
#
# Copyright (C) 1992, 1993, 2011 Free Software Foundation, Inc.
@@ -15,6 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
#ifndef SYMTAB_H
#define SYMTAB_H
diff --git a/charspace/version.c b/charspace/version.c
index 37672f1..5bc9903 100644
--- a/charspace/version.c
+++ b/charspace/version.c
@@ -1,3 +1,4 @@
+/*
# version.c: Holds the version number for the package.
#
# Copyright (C) 2011 Free Software Foundation, Inc.
@@ -15,5 +16,6 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
+*/
char *version_string = "charspace version REPLACE-WITH-VERSION";