mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 09:37:10 +02:00
* Create an `src/3rdparty` folder for third-party code (to add the Grisu2B alfogithm soon). * Split the formatted printer into gint's kprint (src/kprint), its extension and interface (include/gint/kprint.h), and its use in the standard stdio functions (src/std/print.c). * Slightly improve the interface of kformat_geometry() to avoid relying on knowing format specifiers. * Add a function to register more formatters, to allow floating-point formatters without requiring them.
43 lines
815 B
C
43 lines
815 B
C
//---
|
|
// gint:src:print - Standard formatted printing functions
|
|
//---
|
|
|
|
#include <gint/std/stdio.h>
|
|
#include <gint/kprint.h>
|
|
#include <stdarg.h>
|
|
|
|
/* sprintf() */
|
|
GWEAK int sprintf(char *str, char const *format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
|
|
int count = kvsprint(str, 65536, format, &args);
|
|
|
|
va_end(args);
|
|
return count;
|
|
}
|
|
|
|
/* vsprintf() */
|
|
GWEAK int vsprintf(char *str, char const *format, va_list args)
|
|
{
|
|
return kvsprint(str, 65536, format, &args);
|
|
}
|
|
|
|
/* snprintf() */
|
|
GWEAK int snprintf(char *str, size_t n, char const *format, ...)
|
|
{
|
|
va_list args;
|
|
va_start(args, format);
|
|
|
|
int count = kvsprint(str, n, format, &args);
|
|
|
|
va_end(args);
|
|
return count;
|
|
}
|
|
|
|
/* vsprintf() */
|
|
GWEAK int vsnprintf(char *str, size_t n, char const *format, va_list args)
|
|
{
|
|
return kvsprint(str, n, format, &args);
|
|
}
|