mirror of
https://github.com/tailix/libkernaux.git
synced 2024-11-13 11:04:27 -05:00
26 lines
564 B
C
26 lines
564 B
C
|
#include <kernaux/printf.h>
|
||
|
|
||
|
#include <assert.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#define BUFFER_SIZE 1024
|
||
|
|
||
|
static char buffer[BUFFER_SIZE];
|
||
|
|
||
|
static int my_snprintf(const char *const format, ...)
|
||
|
{
|
||
|
va_list va;
|
||
|
va_start(va, format);
|
||
|
const int result = kernaux_vsnprintf(buffer, sizeof(buffer), format, va);
|
||
|
va_end(va);
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
const int result = my_snprintf("Hello, %s! Session ID: %u.", "Alex", 123);
|
||
|
assert((size_t)result == strlen(buffer));
|
||
|
assert(strcmp(buffer, "Hello, Alex! Session ID: 123.") == 0);
|
||
|
return 0;
|
||
|
}
|