summaryrefslogtreecommitdiff
path: root/xddm/miniport/minimal_snprintf.h
blob: e26f1da4978ff5025d635a29639fd9544f81ccb0 (plain)
1
2
3
4
5
6
7
8
9
#ifndef MINIMAL_SNPRINTF_H
#define MINIMAL_SNPRINTF_H

#include <stdarg.h>

int snprintf(char *str, size_t count, const char *fmt, ...);
int vsnprintf(char *str, size_t count, const char *fmt, va_list args);

#endif // MINIMAL_SNPRINTF_H