Main Page   Data Structures   File List   Data Fields   Globals   Related Pages  

nix-common/pglobals.c

Go to the documentation of this file.
00001 
00005 #include <zakdef.h>
00006 #include <time.h>
00007 
00017 char *
00018 getMonthString(UInt16 month, Char *string, UInt16 length)
00019 {
00020         struct tm tm;
00021         tm.tm_mon = month;
00022         strftime(string, length, "%b", &tm);
00023         return (string);
00024 }
00025 

Generated on Mon Aug 30 19:44:15 2004 for pocketcity by doxygen1.2.18