git.y1.nz

gbdk-2020

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

gbdk-lib/libc/puts.c

      1 #include <stdio.h>
      2 
      3 extern const char *__crlf;
      4 
      5 void puts(const char *s) NONBANKED
      6 {
      7     while (*s)
      8         putchar(*s++);
      9 
     10     for (s = __crlf; (*s); )
     11         putchar(*s++);
     12 }

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