Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
ALLEGRO_DATE(3) 		 Allegro manual 		 ALLEGRO_DATE(3)

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

SYNOPSIS
     #include <allegro.h>

     #define ALLEGRO_DATE

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(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=ALLEGRO_DATE&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help