tsuki 0.2.2

Lua 5.4 ported to Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdarg.h>
#include <stdio.h>

extern "C" int tsuki_snprintf(char *buffer, size_t count, const char *format, ...)
{
    va_list args;
    int ret;

    va_start(args, format);
    ret = vsnprintf(buffer, count, format, args);
    va_end(args);

    return ret;
}