ReactOS 0.4.16-dev-197-g92996da
|
#include <apitest.h>
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include <math.h>
#include <stdarg.h>
#include <windows.h>
Go to the source code of this file.
Classes | |
struct | _STRING |
Macros | |
#define | ok_str(x, y) ok(strcmp(x, y) == 0, "got '%s', expected '%s'\n", x, y); |
#define | ok_int(x, y) ok(x == y, "got %d, expected %d\n", x, y); |
#define | sprintf(buf, format, ...) my_sprintf(buf, format, __VA_ARGS__); |
#define | swprintf(buf, format, ...) my_swprintf((wchar_t*)buf, format, __VA_ARGS__); |
Typedefs | |
typedef struct _STRING | STRING |
Functions | |
int | my_sprintf (char *buf, const char *format,...) |
int | my_swprintf (wchar_t *buf, const wchar_t *format,...) |
void | test_c () |
void | test_d () |
void | test_u () |
void | test_x () |
void | test_p () |
void | test_o () |
void | test_s () |
void | test_n () |
void | test_f () |
void | test_e () |
void | test_Z () |
void | test_other () |
START_TEST (sprintf) | |
Variables | |
int(* | p_vsprintf )(char *buf, const char *fmt, va_list argptr) |
Definition at line 28 of file sprintf.c.
START_TEST | ( | sprintf | ) |
Definition at line 508 of file sprintf.c.
void test_c | ( | ) |
Definition at line 59 of file sprintf.c.
Referenced by START_TEST().
void test_d | ( | ) |
Definition at line 102 of file sprintf.c.
Referenced by START_TEST().
void test_e | ( | ) |
Definition at line 418 of file sprintf.c.
Referenced by START_TEST().
void test_f | ( | ) |
Definition at line 360 of file sprintf.c.
Referenced by START_TEST().
void test_n | ( | ) |
void test_o | ( | ) |
void test_other | ( | ) |
void test_p | ( | ) |
Definition at line 242 of file sprintf.c.
Referenced by START_TEST().
void test_s | ( | ) |
Definition at line 295 of file sprintf.c.
Referenced by START_TEST().
void test_u | ( | ) |
Definition at line 188 of file sprintf.c.
Referenced by START_TEST().
void test_x | ( | ) |
Definition at line 213 of file sprintf.c.
Referenced by START_TEST().
void test_Z | ( | ) |
Definition at line 457 of file sprintf.c.
Referenced by START_TEST().