| Line | |
|---|
| 1 | /* $Id: kKLprintf.h,v 1.3 2001-10-19 00:04:45 bird Exp $
|
|---|
| 2 | *
|
|---|
| 3 | * printf/vprintf header file.
|
|---|
| 4 | *
|
|---|
| 5 | * Copyright (c) 1999 knut st. osmundsen
|
|---|
| 6 | *
|
|---|
| 7 | * Project Odin Software License can be found in LICENSE.TXT
|
|---|
| 8 | *
|
|---|
| 9 | */
|
|---|
| 10 |
|
|---|
| 11 | #ifndef _vprintf_h_
|
|---|
| 12 | #define _vprintf_h_
|
|---|
| 13 |
|
|---|
| 14 | #ifdef __cplusplus
|
|---|
| 15 | extern "C" {
|
|---|
| 16 | #endif
|
|---|
| 17 |
|
|---|
| 18 | #ifndef va_arg
|
|---|
| 19 | #include <stdarg.h> /* C library stdarg.h. */
|
|---|
| 20 | #endif
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 | /*
|
|---|
| 24 | * Function prototypes
|
|---|
| 25 | */
|
|---|
| 26 | int printf(const char *pszFormat, ...);
|
|---|
| 27 | int vprintf(const char *pszFormat, va_list args);
|
|---|
| 28 | int vprintf2(const char *pszFormat, va_list args);
|
|---|
| 29 |
|
|---|
| 30 | #include <kKLstdarg.h>
|
|---|
| 31 |
|
|---|
| 32 | #ifdef __cplusplus
|
|---|
| 33 | }
|
|---|
| 34 | #endif
|
|---|
| 35 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.