|
| static void | _out_buffer (char character, void *buffer, size_t idx, size_t maxlen) |
| |
| static void | _out_null (char character, void *buffer, size_t idx, size_t maxlen) |
| |
| static void | _out_char (char character, void *buffer, size_t idx, size_t maxlen) |
| |
| static void | _out_fct (char character, void *buffer, size_t idx, size_t maxlen) |
| |
| static unsigned int | _strlen (const char *str) |
| |
| static bool | _is_digit (char ch) |
| |
| static unsigned int | _atoi (const char **str) |
| |
| static size_t | _ntoa_format (out_fct_type out, char *buffer, size_t idx, size_t maxlen, char *buf, size_t len, bool negative, unsigned int base, unsigned int prec, unsigned int width, unsigned int flags) |
| |
| static size_t | _ntoa_long (out_fct_type out, char *buffer, size_t idx, size_t maxlen, unsigned long value, bool negative, unsigned long base, unsigned int prec, unsigned int width, unsigned int flags) |
| |
| static int | _vsnprintf (out_fct_type out, char *buffer, const size_t maxlen, const char *format, va_list va) |
| |
| int | sprintf (char *buffer, const char *format,...) |
| |
| int | snprintf (char *buffer, size_t count, const char *format,...) |
| |
| int | vsnprintf (char *buffer, size_t count, const char *format, va_list va) |
| |
| int | fctprintf (void(*out)(char character, void *arg), void *arg, const char *format,...) |
| |