git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

gbdk-lib/include/types.h

      1 /** @file types.h
      2     Basic types.  
      3     Directly include the port specific file.
      4 */
      5 #ifndef TYPES_INCLUDE
      6 #define TYPES_INCLUDE
      7 
      8 #include <asm/types.h>
      9 
     10 #ifndef NULL
     11   #define NULL (void *)0
     12 #endif
     13 
     14 /** A 'false' value.
     15  */
     16 #define FALSE 0
     17 /** A 'true' value.
     18  */
     19 #define TRUE 1
     20 
     21 /** No longer used.
     22  */
     23 typedef void * POINTER;
     24 
     25 #endif

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.