WELCOME TO Quintus Prolog The Industry Standard |
|
Quintus Home > Year 2000 | |
Year 2000 and Quintus PrologQuintus Prolog Is Year 2000 Compliant.Products and installations built using Quintus Prolog are year 2000 compliant in so far as their functions use Quintus Prolog. What Does Year 2000 Compliant Mean?This explanation is with thanks to our customer ICL. A typical definition of 2000 compliance requires that a product may only be said to be Year 2000 compliant when it satisfies the following conditions:
How Does Quintus Prolog Achieve Year 2000 Compliance?For date dependent functionality Quintus Prolog uses the ANSI
defined C stucture struct tm { int tm_sec; /* seconds after the minute - [0,59] */ int tm_min; /* minutes after the hour - [0,59] */ int tm_hour; /* hours since midnight - [0,23] */ int tm_mday; /* day of the month - [1,31] */ int tm_mon; /* months since January - [0,11] */ int tm_year; /* years since 1900 */ int tm_wday; /* days since Sunday - [0,6] */ int tm_yday; /* days since January 1 - [0,365] */ int tm_isdst; /* daylight savings time flag */ };< The only thing relevant to year 2000 compliance is the
|