bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

string_.h: break lines


From: Bruno Haible
Subject: string_.h: break lines
Date: Sat, 17 Feb 2007 20:50:30 +0100
User-agent: KMail/1.5.4

This introduces some line breaking in the source, for the GL_LINK_WARNING
arguments. Functionally a nop.

2007-02-17  Bruno Haible  <address@hidden>

        * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
        strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
        strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
        long lines.

--- lib/string_.h       15 Feb 2007 03:07:04 -0000      1.24
+++ lib/string_.h       17 Feb 2007 19:38:04 -0000
@@ -65,7 +65,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef memmem
 # define memmem(a,al,b,bl) \
-    (GL_LINK_WARNING ("memmem is unportable - use gnulib module memmem for 
portability"), \
+    (GL_LINK_WARNING ("memmem is unportable - "\
+                      "use gnulib module memmem for portability"), \
      memmem (a, al, b, bl))
 #endif
 
@@ -79,7 +80,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef mempcpy
 # define mempcpy(a,b,n) \
-    (GL_LINK_WARNING ("mempcpy is unportable - use gnulib module mempcpy for 
portability"), \
+    (GL_LINK_WARNING ("mempcpy is unportable - "\
+                      "use gnulib module mempcpy for portability"), \
      mempcpy (a, b, n))
 #endif
 
@@ -91,7 +93,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef memrchr
 # define memrchr(a,b,c) \
-    (GL_LINK_WARNING ("memrchr is unportable - use gnulib module memrchr for 
portability"), \
+    (GL_LINK_WARNING ("memrchr is unportable - "\
+                      "use gnulib module memrchr for portability"), \
      memrchr (a, b, c))
 #endif
 
@@ -103,7 +106,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef stpcpy
 # define stpcpy(a,b) \
-    (GL_LINK_WARNING ("stpcpy is unportable - use gnulib module stpcpy for 
portability"), \
+    (GL_LINK_WARNING ("stpcpy is unportable - "\
+                      "use gnulib module stpcpy for portability"), \
      stpcpy (a, b))
 #endif
 
@@ -118,7 +122,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef stpncpy
 # define stpncpy(a,b,n) \
-    (GL_LINK_WARNING ("stpncpy is unportable - use gnulib module stpncpy for 
portability"), \
+    (GL_LINK_WARNING ("stpncpy is unportable - "\
+                      "use gnulib module stpncpy for portability"), \
      stpncpy (a, b, n))
 #endif
 
@@ -135,7 +140,12 @@
    as a sequence of bytes, not of characters.   */
 # undef strcasecmp
 # define strcasecmp(a,b) \
-    (GL_LINK_WARNING ("strcasecmp cannot work correctly on character strings 
in multibyte locales - use mbscasecmp if you care about internationalization, 
or use c_strcasecmp (from gnulib module c-strcase) if you want a locale 
independent function"), \
+    (GL_LINK_WARNING ("strcasecmp cannot work correctly on character strings " 
\
+                      "in multibyte locales - "\
+                      "use mbscasecmp if you care about " \
+                      "internationalization, or use c_strcasecmp (from " \
+                      "gnulib module c-strcase) if you want a locale " \
+                      "independent function"), \
      strcasecmp (a, b))
 #endif
 
@@ -152,7 +162,12 @@
    as a sequence of bytes, not of characters.  */
 # undef strncasecmp
 # define strncasecmp(a,b,n) \
-    (GL_LINK_WARNING ("strncasecmp cannot work correctly on character strings 
in multibyte locales - use mbsncasecmp or mbspcasecmp if you care about 
internationalization, or use c_strncasecmp (from gnulib module c-strcase) if 
you want a locale independent function"), \
+    (GL_LINK_WARNING ("strncasecmp cannot work correctly on character " \
+                      "strings in multibyte locales - "\
+                      "use mbsncasecmp or mbspcasecmp if you care about " \
+                      "internationalization, or use c_strncasecmp (from " \
+                      "gnulib module c-strcase) if you want a locale " \
+                      "independent function"), \
      strncasecmp (a, b, n))
 #endif
 
@@ -161,7 +176,9 @@
    GB18030 and the character to be searched is a digit.  */
 # undef strchr
 # define strchr(s,c) \
-    (GL_LINK_WARNING ("strchr cannot work correctly on character strings in 
some multibyte locales - use mbschr if you care about internationalization"), \
+    (GL_LINK_WARNING ("strchr cannot work correctly on character strings " \
+                      "in some multibyte locales - "\
+                      "use mbschr if you care about internationalization"), \
      strchr (s, c))
 #endif
 
@@ -173,7 +190,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef strchrnul
 # define strchrnul(a,b) \
-    (GL_LINK_WARNING ("strchrnul is unportable - use gnulib module strchrnul 
for portability"), \
+    (GL_LINK_WARNING ("strchrnul is unportable - "\
+                      "use gnulib module strchrnul for portability"), \
      strchrnul (a, b))
 #endif
 
@@ -185,7 +203,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef strdup
 # define strdup(a) \
-    (GL_LINK_WARNING ("strdup is unportable - use gnulib module strdup for 
portability"), \
+    (GL_LINK_WARNING ("strdup is unportable - "\
+                      "use gnulib module strdup for portability"), \
      strdup (a))
 #endif
 
@@ -201,7 +220,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef strndup
 # define strndup(a,n) \
-    (GL_LINK_WARNING ("strndup is unportable - use gnulib module strndup for 
portability"), \
+    (GL_LINK_WARNING ("strndup is unportable - "\
+                      "use gnulib module strndup for portability"), \
      strndup (a, n))
 #endif
 
@@ -215,7 +235,8 @@
 #elif defined GNULIB_POSIXCHECK
 # undef strnlen
 # define strnlen(a,n) \
-    (GL_LINK_WARNING ("strnlen is unportable - use gnulib module strnlen for 
portability"), \
+    (GL_LINK_WARNING ("strnlen is unportable - "\
+                      "use gnulib module strnlen for portability"), \
      strnlen (a, n))
 #endif
 
@@ -226,7 +247,9 @@
    digit.  */
 # undef strcspn
 # define strcspn(s,a) \
-    (GL_LINK_WARNING ("strcspn cannot work correctly on character strings in 
multibyte locales - use mbscspn if you care about internationalization"), \
+    (GL_LINK_WARNING ("strcspn cannot work correctly on character strings " \
+                      "in multibyte locales - "\
+                      "use mbscspn if you care about internationalization"), \
      strcspn (s, a))
 #endif
 
@@ -242,13 +265,16 @@
    digit.  */
 #  undef strpbrk
 #  define strpbrk(s,a) \
-     (GL_LINK_WARNING ("strpbrk cannot work correctly on character strings in 
multibyte locales - use mbspbrk if you care about internationalization"), \
+     (GL_LINK_WARNING ("strpbrk cannot work correctly on character strings " \
+                       "in multibyte locales - "\
+                       "use mbspbrk if you care about internationalization"), \
       strpbrk (s, a))
 # endif
 #elif defined GNULIB_POSIXCHECK
 # undef strpbrk
 # define strpbrk(s,a) \
-    (GL_LINK_WARNING ("strpbrk is unportable - use gnulib module strpbrk for 
portability"), \
+    (GL_LINK_WARNING ("strpbrk is unportable - "\
+                      "use gnulib module strpbrk for portability"), \
      strpbrk (s, a))
 #endif
 
@@ -257,7 +283,9 @@
    Even in this simple case, it cannot work with multibyte strings.  */
 # undef strspn
 # define strspn(s,a) \
-    (GL_LINK_WARNING ("strspn cannot work correctly on character strings in 
multibyte locales - use mbsspn if you care about internationalization"), \
+    (GL_LINK_WARNING ("strspn cannot work correctly on character strings " \
+                      "in multibyte locales - "\
+                      "use mbsspn if you care about internationalization"), \
      strspn (s, a))
 #endif
 
@@ -266,7 +294,9 @@
    GB18030 and the character to be searched is a digit.  */
 # undef strrchr
 # define strrchr(s,c) \
-    (GL_LINK_WARNING ("strrchr cannot work correctly on character strings in 
some multibyte locales - use mbsrchr if you care about internationalization"), \
+    (GL_LINK_WARNING ("strrchr cannot work correctly on character strings " \
+                      "in some multibyte locales - "\
+                      "use mbsrchr if you care about internationalization"), \
      strrchr (s, c))
 #endif
 
@@ -293,13 +323,16 @@
 # if defined GNULIB_POSIXCHECK
 #  undef strsep
 #  define strsep(s,d) \
-     (GL_LINK_WARNING ("strsep cannot work correctly on character strings in 
multibyte locales - use mbssep if you care about internationalization"), \
+     (GL_LINK_WARNING ("strsep cannot work correctly on character strings " \
+                       "in multibyte locales - "\
+                       "use mbssep if you care about internationalization"), \
       strsep (s, d))
 # endif
 #elif defined GNULIB_POSIXCHECK
 # undef strsep
 # define strsep(s,d) \
-    (GL_LINK_WARNING ("strsep is unportable - use gnulib module strsep for 
portability"), \
+    (GL_LINK_WARNING ("strsep is unportable - "\
+                      "use gnulib module strsep for portability"), \
      strsep (s, d))
 #endif
 
@@ -310,7 +343,9 @@
    as a sequence of bytes, not of characters.  */
 # undef strstr
 # define strstr(a,b) \
-    (GL_LINK_WARNING ("strstr cannot work correctly on character strings in 
most multibyte locales - use mbsstr if you care about internationalization"), \
+    (GL_LINK_WARNING ("strstr cannot work correctly on character strings " \
+                      "in most multibyte locales - "\
+                      "use mbsstr if you care about internationalization"), \
      strstr (a, b))
 #endif
 
@@ -325,7 +360,11 @@
    locales.  */
 # undef strcasestr
 # define strcasestr(a,b) \
-    (GL_LINK_WARNING ("strcasestr does work correctly on character strings in 
multibyte locales - use mbscasestr if you care about internationalization, or 
use c-strcasestr if you want a locale independent function"), \
+    (GL_LINK_WARNING ("strcasestr does work correctly on character strings " \
+                      "in multibyte locales - "\
+                      "use mbscasestr if you care about " \
+                      "internationalization, or use c-strcasestr if you want " 
\
+                      "a locale independent function"), \
      strcasestr (a, b))
 #endif
 
@@ -359,13 +398,16 @@
 # if defined GNULIB_POSIXCHECK
 #  undef strtok_r
 #  define strtok_r(s,d,p) \
-     (GL_LINK_WARNING ("strtok_r cannot work correctly on character strings in 
multibyte locales - use mbstok_r if you care about internationalization"), \
+     (GL_LINK_WARNING ("strtok_r cannot work correctly on character strings " \
+                       "in multibyte locales - "\
+                       "use mbstok_r if you care about internationalization"), 
\
       strtok_r (s, d, p))
 # endif
 #elif defined GNULIB_POSIXCHECK
 # undef strtok_r
 # define strtok_r(s,d,p) \
-    (GL_LINK_WARNING ("strtok_r is unportable - use gnulib module strtok_r for 
portability"), \
+    (GL_LINK_WARNING ("strtok_r is unportable - "\
+                      "use gnulib module strtok_r for portability"), \
      strtok_r (s, d, p))
 #endif
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]