chiark / gitweb /
Commit as 2.1.0.
[mLib] / hex.c
diff --git a/hex.c b/hex.c
index 45b4f3353c1aec15bb82e3cd5698a68982419edd..dd9d93f1178b546b0acf9a6a6c25d2763702176c 100644 (file)
--- a/hex.c
+++ b/hex.c
@@ -1,13 +1,13 @@
 /* -*-c-*-
  *
- * $Id: hex.c,v 1.2 2003/05/16 00:22:58 mdw Exp $
+ * $Id: hex.c,v 1.3 2004/04/08 01:36:11 mdw Exp $
  *
  * Hexadecimal encoding and decoding.
  *
  * (c) 2001 Straylight/Edgeware
  */
 
-/*----- Licensing notice --------------------------------------------------* 
+/*----- Licensing notice --------------------------------------------------*
  *
  * This file is part of the mLib utilities library.
  *
  * it under the terms of the GNU Library General Public License as
  * published by the Free Software Foundation; either version 2 of the
  * License, or (at your option) any later version.
- * 
+ *
  * mLib 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
  * GNU Library General Public License for more details.
- * 
+ *
  * You should have received a copy of the GNU Library General Public
  * License along with mLib; if not, write to the Free
  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  * MA 02111-1307, USA.
  */
 
-/*----- Revision history --------------------------------------------------*
- *
- * $Log: hex.c,v $
- * Revision 1.2  2003/05/16 00:22:58  mdw
- * Test base64 and hex encoding.
- *
- * Revision 1.1  2002/01/13 13:26:30  mdw
- * New hex encoding stuff.
- *
- */
-
 /*----- Header files ------------------------------------------------------*/
 
 #include <stdio.h>
@@ -60,7 +49,7 @@ static const signed char decodemap[] = {
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  /* 5x */
   -1, 10, 11, 12, 13, 14, 15, -1, -1, -1, -1, -1, -1, -1, -1, -1,  /* 6x */
   -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,  /* 7x */
- };  
+ };
 
 /*----- Main code ---------------------------------------------------------*/