1234567891011121314151617181920212223242526272829303132 |
- #ifndef OSSL_TESTUTIL_OUTPUT_H
- # define OSSL_TESTUTIL_OUTPUT_H
- #include <stdarg.h>
- void test_open_streams(void);
- void test_close_streams(void);
- int test_vprintf_stdout(const char *fmt, va_list ap);
- int test_vprintf_stderr(const char *fmt, va_list ap);
- int test_flush_stdout(void);
- int test_flush_stderr(void);
- int test_printf_stdout(const char *fmt, ...);
- int test_printf_stderr(const char *fmt, ...);
- #endif
|