D | print_format.h | 30 #define PRIq(precision) "s%" PRIu32 ".%0" STRINGIFY(precision) PRIu32 argument 48 #define __PRIq_arg_get_frac(q, precision, shift) \ argument 49 ((__PRIq_arg_get(q, shift, 30, 0) * __CONSTPOW(1, precision)) / INT32_MAX) 55 * @param[in] precision Number of decimal points to print 58 #define PRIq_arg(q, precision, shift) \ argument 60 (uint32_t)__PRIq_arg_get_frac(q, precision, shift)
|