#include "posemath.h"#include <stdio.h>Include dependency graph for mathprnt.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| void | pmSprintf (char *string, const char *format,...) |
| void | pmPrintf (const char *format,...) |
| void | pmFprintf (FILE *file, const char *format,...) |
|
||||||||||||||||
|
Definition at line 265 of file _mathprnt.c. Referenced by test_math_printf().
00266 {
00267 va_list ap;
00268
00269 va_start(ap, fmt);
00270 _pmSprintf(string, fmt, ap);
00271 va_end(ap);
00272 }
|
|
||||||||||||
|
Definition at line 274 of file _mathprnt.c. Referenced by test_math_printf().
00275 {
00276 va_list ap;
00277 char string[512];
00278
00279 va_start(ap, fmt);
00280 _pmSprintf(string, fmt, ap);
00281 printf("%s", string);
00282 va_end(ap);
00283 }
|
|
||||||||||||||||
|
Definition at line 285 of file _mathprnt.c. Referenced by test_math_printf().
00286 {
00287 va_list ap;
00288 char string[512];
00289
00290 va_start(ap, fmt);
00291 _pmSprintf(string, fmt, ap);
00292 fprintf(fp, "%s", string);
00293 va_end(ap);
00294 }
|
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001