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