Database
time.asc
Associated article: Portable Custom Time Structures
Tags: Database
Source code accompanying the article by Donald Bryson in which he describes how he developed customized time functions for his TimeClock application which was built around the Faircom database engine
_Portable Custom Time Structures_
by Donald Bryson
Listing One
/* Example of time functions and structures */
#include <stdio.h>
#include <time.h>
void main( void )
{
struct tm *UTCtime;
struct tm *LocalTime;
long ltime;
time( <ime );
/* _tzset() ...


