Interface __8_format

Preprocessor macro expanding to a string

#include <SYS/TYPES.H>

__8_format

Description

This macro expands to a format string qualifier that specifies printf or scanf arguments for __s8 or __u8 types. Because different architectures have different definitions for these types, an extra definition for the qualifier is needed.

Example


__u8 variable = 3;
_printf("%"__8_format"u\n", variable);