Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields   Globals  

mathprnt.h File Reference

#include "posemath.h"
#include <stdio.h>

Include dependency graph for mathprnt.h:

Include dependency graph

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

Included by dependency graph

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,...)


Function Documentation

void pmSprintf char *    string,
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 }

void pmPrintf const char *    format,
...   
 

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 }

void pmFprintf FILE *    file,
const char *    format,
...   
 

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 }


Generated on Sun Dec 2 15:57:13 2001 for rcslib by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001