stdio-common: Add printf specifier registry to <printf.h>
authorFlorian Weimer <fweimer@redhat.com>
Tue, 24 May 2022 06:03:11 +0000 (08:03 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Tue, 24 May 2022 06:03:11 +0000 (08:03 +0200)
Add  __printf_arginfo_table, __printf_function_table,
__printf_va_arg_table, __register_printf_specifier to
include/printf.h.

include/printf.h
stdio-common/printf-parse.h
stdio-common/printf-prs.c
stdio-common/reg-printf.c
stdio-common/vfprintf-internal.c

index 0ed6e8738799a17ccae6464646e3e4cf63547105..fb0b71fa4c0375eadd871a8e3c65732e7812b9db 100644 (file)
 
 # ifndef _ISOMAC
 
+/* Internal interfaces for registered specifiers.  */
+extern printf_arginfo_size_function **__printf_arginfo_table attribute_hidden;
+extern printf_function **__printf_function_table attribute_hidden;
+extern printf_va_arg_function **__printf_va_arg_table attribute_hidden;
+int __register_printf_specifier (int, printf_function,
+                                printf_arginfo_size_function);
+libc_hidden_proto (__register_printf_specifier)
+
 #include <bits/types/locale_t.h>
 
 /* Now define the internal interfaces.  */
index de0f289c1f714fab43dbcf4d1a571c0bc9eeb017..362cce1ead04827436cd2c933c5dee3cf6fe1c20 100644 (file)
@@ -97,12 +97,6 @@ read_int (const UCHAR_T * *pstr)
 #endif
 
 
-/* These are defined in reg-printf.c.  */
-extern printf_arginfo_size_function **__printf_arginfo_table attribute_hidden;
-extern printf_function **__printf_function_table attribute_hidden;
-extern printf_va_arg_function **__printf_va_arg_table attribute_hidden;
-
-
 /* Find the next spec in FORMAT, or the end of the string.  Returns
    a pointer into FORMAT, to a '%' or a '\0'.  */
 __extern_always_inline const unsigned char *
index 55d1c471d7825708a607941097c5237a2658d2d4..f2fb9182b83a433522c1425d4317042dce0ff2a6 100644 (file)
@@ -21,6 +21,7 @@
 #include <string.h>
 #include <wchar.h>
 #include <sys/param.h>
+#include <printf.h>
 
 #include "../locale/localeinfo.h"
 
index 400b99d2f64f09b5341e3686fdd5e6786aec03a5..5f4c6a24c20074664db6ed0f6aea4a1655ae0b71 100644 (file)
@@ -30,13 +30,6 @@ printf_function **__printf_function_table attribute_hidden;
 
 __libc_lock_define_initialized (static, lock)
 
-int __register_printf_specifier (int, printf_function,
-                                printf_arginfo_size_function);
-libc_hidden_proto (__register_printf_specifier)
-int __register_printf_function (int, printf_function,
-                               printf_arginfo_function);
-
-
 /* Register FUNC to be called to format SPEC specifiers.  */
 int
 __register_printf_specifier (int spec, printf_function converter,
index 1986c4bdb5e9a2749d55bc594ff8fb57678f1461..f8aa2fdafb9d040bcf9946c577fa10f614ff689f 100644 (file)
@@ -1379,7 +1379,6 @@ printf_positional (FILE *s, const CHAR_T *format, int readonly_format,
       /* Process format specifiers.  */
       while (1)
        {
-         extern printf_function **__printf_function_table;
          int function_done;
 
          if (spec <= UCHAR_MAX