cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

string.h (277B)


      1/** @file string.h
      2    Generic string functions.
      3 */
      4#ifndef STD_STRING_INCLUDE
      5#define STD_STRING_INCLUDE
      6
      7#ifdef __PORT_sm83
      8  #include <asm/sm83/string.h>
      9#else
     10  #ifdef __PORT_z80
     11    #include <asm/z80/string.h>
     12  #else
     13    #error Unrecognised port
     14  #endif
     15#endif
     16
     17#endif