asciiTranslator function

int asciiTranslator(
  1. int codePoint
)

Implementation

int asciiTranslator(int codePoint) {
  return codePoint;
}