Skip to content

Commit

Permalink
Update copyright and description.
Browse files Browse the repository at this point in the history
  • Loading branch information
skynavga committed Aug 16, 2021
1 parent 29fbd32 commit af74eaf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 74 deletions.
56 changes: 4 additions & 52 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,52 +1,4 @@
# Prerequisites
*.d

# Object files
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
.DS_Store
*~
*.bak
*.orig
36 changes: 14 additions & 22 deletions mac2bdf.c
Original file line number Diff line number Diff line change
@@ -1,30 +1,13 @@
/*
*
* THIS CODE WAS STOLEN FROM 'mac2bdf' BY GLENN ADAMS. THE FOLLOWING COMMENTS
* DOCUMENT THE ORIGINAL VERSION OF THIS MODULE AND NOT MY HACKS. BUT I DIDN'T
* CHANGE MUCH.
* Norm Walsh <[email protected]>
*
* Copyright (C) 2021, Glenn Adams
* Copyright (C) 1993, Norm Walsh
* Copyright (C) 1992, 1993, Metis Technology, Inc.
*
* @(#)mac2bdf.c 1.2 3/20/93
*
* STANDARD DISCLAIMERS
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the Metis General Public License as published
* by Metis Technology, Inc.; either version 2, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Metis Library General Public License for more details.
*
* In order to receive a copy of the Metis General Public License,
* write to Metis Technology, Inc., 358 Windsor St, Cambridge, MA 02141, USA.
* This license may also be retrieved by anonymous FTP from the file
* "pub/PublicLicense" on the host METIS.COM [140.186.33.40].
* This program is distributed under the BSD 2-Clause License as
* specified in the accompanying LICENSE file.
*
* PROGRAM DESCRIPTION
*
Expand Down Expand Up @@ -61,10 +44,12 @@
* -- font name handling to substitute hyphens for
* -- whitespace. Handle overflows of OWTLoc offset
* -- field for large bitmaps.
* 08/19/93 -- Modifications by Norm Walsh.
* Notes: 1. Orphaned font resources are not yet handled.
* 2. Prefixes B,I,BI,Sb,SbI need to be removed.
* 3. Add option to specify family, size, style to dump.
* Author: Glenn Adams <[email protected]>
* Authors: Glenn Adams <[email protected]> (original code)
* Norm Walsh <[email protected]> (modifications)
*
* WARNINGS
*
Expand All @@ -80,6 +65,13 @@
* 4. This program is being released in this form in the hope that it will
* be useful to someone without all the frills one would expect from a
* robust program; this program does not make any claims to robustness.
*
* N.B. The above program description is based upon a prior distribution
* by Metis Technology, Inc which contained a top-level main function.
* The code found below consists of only the primary Mac Font Resource
* to BDF conversion functions. A top-level main function would be
* invoked by a mac2bdf executable as described above is not included
* herein.
*/

#include <alloca.h>
Expand Down

0 comments on commit af74eaf

Please sign in to comment.