8#ifndef MESHX_TINY_PRINTF_H
9#define MESHX_TINY_PRINTF_H
int meshx_tiny_vprintf(const char *fmt, va_list args)
Definition meshx_tiny_printf.c:157
int meshx_tiny_printf(const char *fmt,...)
Lightweight printf that writes directly to console.
Definition meshx_tiny_printf.c:166
int meshx_tiny_vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
Lightweight vsnprintf replacement. Supports: s, d, u, x, X, p, c, %%. Supports padding with '0' and w...
Definition meshx_tiny_printf.c:74
int meshx_tiny_snprintf(char *buf, size_t size, const char *fmt,...)
Lightweight snprintf replacement.
Definition meshx_tiny_printf.c:149