logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

ALLEGRO_DATE - Defined to a number with the release date of Allegro.

Description

       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);

Allegro                                           version 4.4.3                            ALLEGRO_DATE(3alleg4)

Name

       ALLEGRO_DATE - Defined to a number with the release date of Allegro.

Synopsis

#include<allegro.h>#defineALLEGRO_DATE

See Also