You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
riscv-pke/util/snprintf.h

12 lines
227 B

// borrowed from https://github.com/riscv/riscv-pk : util/snprintf.c
#ifndef _SNPRINTF_H
#define _SNPRINTF_H
#include <stdarg.h>
#include "util/types.h"
int vsnprintf(char* out, size_t n, const char* s, va_list vl);
#endif