00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef ISC_PRINT_H
00021 #define ISC_PRINT_H 1
00022
00023
00024
00025
00026
00027
00028
00029 #include <isc/formatcheck.h>
00030 #include <isc/lang.h>
00031 #include <isc/platform.h>
00032
00033
00034
00035
00036
00037
00038
00039 #if !defined(ISC_PLATFORM_NEEDVSNPRINTF) && defined(ISC__PRINT_SOURCE)
00040 #define ISC_PLATFORM_NEEDVSNPRINTF
00041 #undef snprintf
00042 #undef vsnprintf
00043 #endif
00044
00045 #if !defined(ISC_PLATFORM_NEEDSPRINTF) && defined(ISC__PRINT_SOURCE)
00046 #define ISC_PLATFORM_NEEDSPRINTF
00047 #undef sprintf
00048 #endif
00049
00050
00051
00052
00053 #define ISC_PRINT_QUADFORMAT ISC_PLATFORM_QUADFORMAT
00054
00055
00056
00057
00058
00059 #ifdef ISC_PLATFORM_NEEDVSNPRINTF
00060 #include <stdarg.h>
00061 #include <stddef.h>
00062 #endif
00063 #ifdef ISC_PLATFORM_NEEDSPRINTF
00064 #include <stdio.h>
00065 #endif
00066
00067
00068 ISC_LANG_BEGINDECLS
00069
00070 #ifdef ISC_PLATFORM_NEEDVSNPRINTF
00071 int
00072 isc_print_vsnprintf(char *str, size_t size, const char *format, va_list ap)
00073 ISC_FORMAT_PRINTF(3, 0);
00074 #define vsnprintf isc_print_vsnprintf
00075
00076 int
00077 isc_print_snprintf(char *str, size_t size, const char *format, ...)
00078 ISC_FORMAT_PRINTF(3, 4);
00079 #define snprintf isc_print_snprintf
00080 #endif
00081
00082 #ifdef ISC_PLATFORM_NEEDSPRINTF
00083 int
00084 isc_print_sprintf(char *str, const char *format, ...) ISC_FORMAT_PRINTF(2, 3);
00085 #define sprintf isc_print_sprintf
00086 #endif
00087
00088 ISC_LANG_ENDDECLS
00089
00090 #endif