Inform - Support - Source

Back to List

Inventory
Complete

Backward
Forward

Plain
Coloured
Gaudy

This code
in plain text

Browsing parserm.h

LowerCase (lines 6145-6163)

6145  #Ifdef TARGET_ZCODE;
6146   
6147  [ LowerCase c;
6148     switch (c) {
6149       'A' to 'Z':
6150         c = c + 32;
6151       202, 204, 212, 214, 221:
6152         c--;
6153       217, 218:
6154         c = c - 2;
6155       158 to 160, 167 to 169, 208 to 210:
6156         c = c - 3;
6157       186 to 190, 196 to 200:
6158         c = c - 5 ;
6159       175 to 180:
6160         c = c - 6;
6161     }
6162     return c;
6163  ];


Last updated 27 February 2004. This site is no longer supported; information may be out of date.
Maintained as a historical archive by the Interactive Fiction Technology Foundation. Copyright 1993-2018 IFTF, CC-BY-SA unless otherwise noted.
This page was originally managed by Graham Nelson assisted by C Knight.