.\" Generated by the Allegro makedoc utility .TH ALLEGRO_DATE 3alleg4 "version 4.4.3" "Allegro" "Allegro manual" .SH NAME ALLEGRO_DATE \- Defined to a number with the release date of Allegro.\& .SH SYNOPSIS .B #include .sp .B #define ALLEGRO_DATE .SH DESCRIPTION Defined to an integer containing the release date of Allegro in the packed format `yyyymmdd'. Example: .nf const int year = ALLEGRO_DATE / 10000; const int month = (ALLEGRO_DATE / 100) % 100; const int day = ALLEGRO_DATE % 100; allegro_message("Year %d, month %d, day %d\\n", year, month, day); .fi