riscv-pke/util/snprintf.h

12 lines
227 B
C
Raw Normal View History

2021-08-18 10:29:50 +08:00
// 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