Unix VPS A - Starter B - Basic C - Preferred D - Commercial MPS - Dedicated Previous VPSs * Sign Up! *
Support Contact Us Online Help Handbooks Domain Status Man Pages
FAQ Virtual Servers Pricing Billing Technical
Network Facilities Connectivity Topology Map
Miscellaneous Server Agreement Year 2038 Credits
ALLEGRO_DATE - Defined to a number with the release date of Allegro.
#include <allegro.h>
#define ALLEGRO_DATE
Defined to an integer containing the release date of Allegro in the packed format `yyyymmdd'. Example:
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);
Visit the GSP FreeBSD Man Page Interface.Output converted with ManDoc.