// Test for message: conversion '%.*s' is unreachable by input value [378]
/*
* The typical use case of snprintb is to have a format that is specifically
* tailored to a particular input value. Often, a format is only used in a
* single place. Therefore, bits that are unreachable are redundant and may
* hint at typos.
*/
/* lint1-extra-flags: -X 351 */
typedef typeof(sizeof(0)) size_t;
typedef unsigned long long uint64_t;
int snprintb(char *, size_t, const char *, uint64_t);