mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
23 lines
425 B
C
23 lines
425 B
C
|
#include <kernaux/printf.h>
|
||
|
|
||
|
#include <assert.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#define BUFFER_SIZE 1024
|
||
|
|
||
|
static char buffer[BUFFER_SIZE];
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
const int result = kernaux_snprintf(
|
||
|
buffer,
|
||
|
sizeof(buffer),
|
||
|
"Hello, %s! Session ID: %u.",
|
||
|
"Alex",
|
||
|
123
|
||
|
);
|
||
|
assert((size_t)result == strlen(buffer));
|
||
|
assert(strcmp(buffer, "Hello, Alex! Session ID: 123.") == 0);
|
||
|
return 0;
|
||
|
}
|