]> git.wh0rd.org Git - nano.git/commitdiff
move nstrnlen() to chars.c, and add a multibyte equivalent of strnlen()
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 14 Jan 2005 04:22:14 +0000 (04:22 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Fri, 14 Jan 2005 04:22:14 +0000 (04:22 +0000)
to it

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2259 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/chars.c
src/nano.h
src/proto.h
src/search.c
src/utils.c

index 3c8217abefd85f0627d197d0ad9a06b4e54f3d64..e5f1b82b877ef81cc97b6a1782091f5aec9f2370 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -94,9 +94,10 @@ CVS code -
          character-specific functions to their own source file.  New
          file chars.c; new functions is_blank_mbchar(),
          is_blank_wchar(), is_cntrl_mbchar(), is_cntrl_wchar(),
-         control_mbrep(), control_wrep(), mbwidth(), mb_cur_max(), and
-         make_mbchar(); changes to is_blank_char() (moved to chars.c),
-         is_cntrl_char() (moved to chars.c), parse_char() (renamed
+         mbstrnlen(), control_mbrep(), control_wrep(), mbwidth(),
+         mb_cur_max(), and make_mbchar(); changes to is_blank_char()
+         (moved to chars.c), is_cntrl_char() (moved to chars.c),
+         nstrnlen() (moved to chars.c), parse_char() (renamed
          parse_mbchar() and moved to chars.c), do_home(),
          do_verbatim_input(), do_delete(), do_tab(), do_input(),
          do_output(), get_buffer(), unget_input(), unget_kbinput(),
index 64a15e44324d9bf42c90e04f8a2484bac2332dac..b97813b9d4f3c4746d97652fd5beda548229c482 100644 (file)
@@ -24,6 +24,7 @@
 #endif
 
 #include <stdlib.h>
+#include <string.h>
 #include <ctype.h>
 #include <assert.h>
 #include "proto.h"
@@ -124,6 +125,59 @@ bool is_cntrl_wchar(wchar_t wc)
 }
 #endif
 
+#ifndef HAVE_STRNLEN
+/* This function is equivalent to strnlen(). */
+size_t nstrnlen(const char *s, size_t maxlen)
+{
+    size_t n = 0;
+
+    assert(s != NULL);
+
+    for (; maxlen > 0 && *s != '\0'; maxlen--, n++, s++)
+       ;
+
+    return n;
+}
+#endif
+
+/* This function is equivalent to strnlen() for multibyte strings. */
+size_t mbstrnlen(const char *s, size_t maxlen)
+{
+#ifdef NANO_WIDE
+    if (ISSET(NO_UTF8)) {
+       size_t n = 0;
+       char *s_mb = charalloc(mb_cur_max());
+       int s_mb_len;
+
+       assert(s != NULL);
+
+       while (*s != '\0') {
+           s_mb_len = parse_mbchar(s + n, s_mb
+#ifdef NANO_WIDE
+               , NULL
+#endif
+               , NULL);
+
+           maxlen -= s_mb_len;
+           n += s_mb_len;
+
+           if (maxlen == 0)
+               break;
+       }
+
+       free(s_mb);
+
+       return n;
+    } else
+#endif
+       return
+#ifdef HAVE_STRNLEN
+               strnlen(s, maxlen);
+#else
+               nstrnlen(s, maxlen);
+#endif
+}
+
 /* c is a control character.  It displays as ^@, ^?, or ^[ch] where ch
  * is c + 64.  We return that character. */
 unsigned char control_rep(unsigned char c)
index cd64b492714893fa0995a6546fbc8b4d913da450..270321d6a3abb954f8ac9700e890569ec0ae3558 100644 (file)
 # endif
 #endif
 
-/* If no strcasecmp(), strncasecmp(), strcasestr(), strnlen(),
- * getdelim(), or getline(), use the versions we have. */
+/* If no strcasecmp(), strncasecmp(), strcasestr(), getdelim(), or
+ * getline(), use the versions we have. */
 #ifndef HAVE_STRCASECMP
 #define strcasecmp nstricmp
 #endif
 #define strcasestr nstristr
 #endif
 
-#ifndef HAVE_STRNLEN
-#define strnlen nstrnlen
-#endif
-
 #ifndef HAVE_GETDELIM
 #define getdelim ngetdelim
 #endif
index 6b6396da092249c1a68476b68abb5daf5868321d..b35862b7b9e3be0d2ef4c10bdd61b0933fbe6fe4 100644 (file)
@@ -161,6 +161,10 @@ bool is_cntrl_mbchar(const char *c);
 #ifdef NANO_WIDE
 bool is_cntrl_wchar(wchar_t wc);
 #endif
+#ifndef HAVE_STRNLEN
+size_t nstrnlen(const char *s, size_t maxlen);
+#endif
+size_t mbstrnlen(const char *s, size_t maxlen);
 unsigned char control_rep(unsigned char c);
 char *control_mbrep(const char *c, char *crep, int *crep_len);
 #ifdef NANO_WIDE
index 02c054d59636157ab93f37ee3baac257642ef8fd..7fb3c81f2f5caac4c2f46243776e06a46641353a 100644 (file)
@@ -84,7 +84,7 @@ void not_found_msg(const char *str)
     assert(str != NULL);
 
     disp = display_string(str, 0, (COLS / 2) + 1, FALSE);
-    numchars = strnlen(disp, COLS / 2);
+    numchars = mbstrnlen(disp, COLS / 2);
 
     statusbar(_("\"%.*s%s\" not found"), numchars, disp,
        (disp[numchars] == '\0') ? "" : "...");
index f471ef5fd5c79a4f0ba614ff603dcd79a80fed02..46b1d616003bd2c16ee034d8c5088f5fa1bad577 100644 (file)
@@ -261,21 +261,6 @@ const char *revstristr(const char *haystack, const char *needle, const
 }
 #endif /* !NANO_SMALL */
 
-#ifndef HAVE_STRNLEN
-/* This function is equivalent to strnlen(). */
-size_t nstrnlen(const char *s, size_t maxlen)
-{
-    size_t n = 0;
-
-    assert(s != NULL);
-
-    for (; maxlen > 0 && *s != '\0'; maxlen--, n++, s++)
-       ;
-
-    return n;
-}
-#endif
-
 #if !defined(NANO_SMALL) && defined(ENABLE_NANORC)
 #ifndef HAVE_GETLINE
 /* This function is equivalent to getline().  It was adapted from