Hi,
Im writing a program and I would like to display todays time and date in western standard time
eg
Mon May 27th 19:10:52 WST 2002

Im using time_t like this:

#include <time.h>

..program.....

time_t datetime;
...for loop....
time(&datetime);
printf ("%s", ctime(&datetime));
...rest of program

Now is there another way I can display the date and time but so that its western standard time as well
like this:
Mon May 27th 19:10:52 WST 2002

Any help would be much appreciated.
Thanks