diff src/mappers.cc @ 2889:8aa189b811d0

[project @ 1997-04-28 01:35:18 by jwe]
author jwe
date Mon, 28 Apr 1997 01:39:00 +0000
parents 8b262e771614
children 057273789b87
line wrap: on
line diff
--- a/src/mappers.cc	Mon Apr 28 01:27:28 1997 +0000
+++ b/src/mappers.cc	Mon Apr 28 01:39:00 1997 +0000
@@ -26,98 +26,101 @@
 
 #include <cctype>
 
+#include "lo-mappers.h"
+
 #include "defun.h"
 #include "error.h"
 #include "mappers.h"
+#include "oct-mapper.h"
 
 // XXX FIXME XXX -- perhaps this could be avoided by determining
 // whether the is* functions are actually functions or just macros.
 
-int
+static int
 xisalnum (int c)
 {
   return isalnum (c);
 }
 
-int
+static int
 xisalpha (int c)
 {
   return isalpha (c);
 }
 
-int
+static int
 xisascii (int c)
 {
   return isascii (c);
 }
 
-int
+static int
 xiscntrl (int c)
 {
   return iscntrl (c);
 }
 
-int
+static int
 xisdigit (int c)
 {
   return isdigit (c);
 }
 
-int
+static int
 xisgraph (int c)
 {
   return isgraph (c);
 }
 
-int
+static int
 xislower (int c)
 {
   return islower (c);
 }
 
-int
+static int
 xisprint (int c)
 {
   return isprint (c);
 }
 
-int
+static int
 xispunct (int c)
 {
   return ispunct (c);
 }
 
-int
+static int
 xisspace (int c)
 {
   return isspace (c);
 }
 
-int
+static int
 xisupper (int c)
 {
   return isupper (c);
 }
 
-int
+static int
 xisxdigit (int c)
 {
   return isxdigit (c);
 }
 
-int
+static int
 xtoascii (int c)
 {
   return toascii (c);
 }
 
-int
+static int
 xtolower (int c)
 {
   return tolower (c);
 }
 
-int
+static int
 xtoupper (int c)
 {
   return toupper (c);