gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
gbdk-lib/libc/tolower.c
1 #include <stdint.h>
2
3 char tolower (char c) {
4 return ((uint8_t)((uint8_t)c - 'A') < ('Z' - 'A' + 1)) ? c + 32u : c;
5 }
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.