Move strnlen related code from chise.h to chise.c.
authortomo <tomo>
Sat, 12 Jul 2003 10:18:29 +0000 (10:18 +0000)
committertomo <tomo>
Sat, 12 Jul 2003 10:18:29 +0000 (10:18 +0000)
chise.c
chise.h

diff --git a/chise.c b/chise.c
index 6e8bb46..4681fe3 100644 (file)
--- a/chise.c
+++ b/chise.c
@@ -2,6 +2,22 @@
 #  include "config.h"
 #endif
 
+#ifndef HAVE_STRNLEN
+/* original in mysql, strings/strnlen.c.
+uint strnlen(register const char *s, register uint maxlen)
+{
+  const char *end= (const char *)memchr(s, '\0', maxlen);
+  return end ? (uint) (end - s) : maxlen;
+}
+*/
+static inline int
+strnlen (register const char *s, register int maxlen)
+{
+  const char *end= (const char *)memchr(s, '\0', maxlen);
+  return end ? (int) (end - s) : maxlen;
+}
+#endif
+
 #include "chise.h"
 
 #define xzero(lvalue) ((void) memset (&(lvalue), '\0', sizeof (lvalue)))
diff --git a/chise.h b/chise.h
index e384802..4a06504 100644 (file)
--- a/chise.h
+++ b/chise.h
@@ -3,26 +3,6 @@
 #include <db.h>
 #include <errno.h>
 
-#ifndef HAVE_STRNLEN
-
-/* original in mysql, strings/strnlen.c.
-uint strnlen(register const char *s, register uint maxlen)
-{
-  const char *end= (const char *)memchr(s, '\0', maxlen);
-  return end ? (uint) (end - s) : maxlen;
-}
-*/
-
-static inline int
-strnlen (register const char *s, register int maxlen)
-{
-  const char *end= (const char *)memchr(s, '\0', maxlen);
-  return end ? (int) (end - s) : maxlen;
-}
-
-#endif
-
-
 typedef enum CHISE_DS_Type
 {
   CHISE_DS_NONE,