mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
10 lines
219 B
C
10 lines
219 B
C
#include <stdio.h>
|
|
typedef int (__cdecl *PFN_sntprintf)(char *_Dest, size_t _Count, const char *_Format, ...);
|
|
#define str_sntprintf "_snprintf"
|
|
#include "_sntprintf.h"
|
|
|
|
START_TEST(_snprintf)
|
|
{
|
|
Test__sntprintf();
|
|
}
|