src/util/prtime.c File Reference

#include <stdio.h>
#include "util.h"
Include dependency graph for prtime.c:

Go to the source code of this file.

Functions

char * util_print_time (long t)

Function Documentation

char* util_print_time ( long  t  ) 

Definition at line 21 of file prtime.c.

00022 {
00023     static char s[40];
00024 
00025     (void) sprintf(s, "%ld.%02ld sec", t/1000, (t%1000)/10);
00026     return s;
00027 }


Generated on Tue Jan 12 13:57:29 2010 for glu-2.2 by  doxygen 1.6.1